From 0a9eaa528864fdd19a798d47139358e20c369889 Mon Sep 17 00:00:00 2001 From: Ishaan Mittal Date: Wed, 13 Sep 2023 01:59:52 +0530 Subject: [PATCH 1/2] models updates as per new database --- .gitignore | 4 +- entrypoint.sh | 2 +- home/admin.py | 176 ++++++++++++++++++++--------------------- home/resources.py | 2 + home/views.py | 15 ++-- templates/base.html | 14 +++- templates/contact.html | 2 +- 7 files changed, 113 insertions(+), 102 deletions(-) diff --git a/.gitignore b/.gitignore index 4adc365..7093028 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ .env .vscode - -__pycache__ db.sqlite3 +db1.sqlite3 +__pycache__ migrations diff --git a/entrypoint.sh b/entrypoint.sh index 4aaf1d0..a428841 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -8,4 +8,4 @@ python manage.py migrate --noinput python manage.py collectstatic --noinput # Start server -gunicorn messWebsite.wsgi:application --bind 0.0.0.0:80 +gunicorn messWebsite.wsgi:application --bind 0.0.0.0:8000 diff --git a/home/admin.py b/home/admin.py index 379bfb5..3cc68b4 100644 --- a/home/admin.py +++ b/home/admin.py @@ -909,59 +909,59 @@ def export_as_csv(self, request, queryset): "description": "%s" % ALLOCATION_DESC_TEXT, } -@admin.register(AllocationAutumn22) -class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): - resource_class = AllocationResource - model = AllocationAutumn22 - search_fields = ("roll_no__name","roll_no__roll_no","roll_no__hostel","roll_no__email","student_id", "caterer_name", "high_tea") - list_filter = ("month", "caterer_name", "high_tea","roll_no__hostel","roll_no__degree","roll_no__department",) - list_display = ("student_id","email", "month", "caterer_name", "high_tea") - fieldsets = ((None,allocation_fields,),) - - @admin.display(description="email") - def email(self, obj): - return obj.roll_no.email +# @admin.register(AllocationAutumn22) +# class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): +# resource_class = AllocationResource +# model = AllocationAutumn22 +# search_fields = ("roll_no__name","roll_no__roll_no","roll_no__hostel","roll_no__email","student_id", "caterer_name", "high_tea") +# list_filter = ("month", "caterer_name", "high_tea","roll_no__hostel","roll_no__degree","roll_no__department",) +# list_display = ("student_id","email", "month", "caterer_name", "high_tea") +# fieldsets = ((None,allocation_fields,),) + +# @admin.display(description="email") +# def email(self, obj): +# return obj.roll_no.email - actions = ["export_as_csv"] - - def export_as_csv(self, request, queryset): - """ - Export action available in the admin page - """ - resource = AllocationResource() - dataset = resource.export(queryset) - response = HttpResponse(dataset.csv, content_type="text/csv") - response["Content-Disposition"] = 'attachment; filename="allocation.csv"' - return response - - export_as_csv.short_description = "Export Allocation details to CSV" - -@admin.register(AllocationSpring23) -class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): - resource_class = AllocationResource - model = AllocationSpring23 - search_fields = ("roll_no__name","roll_no__roll_no","roll_no__hostel","roll_no__email","student_id", "caterer_name", "high_tea",) - list_filter = ("month", "caterer_name", "high_tea","roll_no__hostel","roll_no__degree","roll_no__department",) - list_display = ("student_id","email", "month", "caterer_name", "high_tea") - fieldsets = ((None,allocation_fields,),) - - @admin.display(description="email") - def email(self, obj): - return obj.roll_no.email +# actions = ["export_as_csv"] + +# def export_as_csv(self, request, queryset): +# """ +# Export action available in the admin page +# """ +# resource = AllocationResource() +# dataset = resource.export(queryset) +# response = HttpResponse(dataset.csv, content_type="text/csv") +# response["Content-Disposition"] = 'attachment; filename="allocation.csv"' +# return response + +# export_as_csv.short_description = "Export Allocation details to CSV" + +# @admin.register(AllocationSpring23) +# class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): +# resource_class = AllocationResource +# model = AllocationSpring23 +# search_fields = ("roll_no__name","roll_no__roll_no","roll_no__hostel","roll_no__email","student_id", "caterer_name", "high_tea",) +# list_filter = ("month", "caterer_name", "high_tea","roll_no__hostel","roll_no__degree","roll_no__department",) +# list_display = ("student_id","email", "month", "caterer_name", "high_tea") +# fieldsets = ((None,allocation_fields,),) + +# @admin.display(description="email") +# def email(self, obj): +# return obj.roll_no.email - actions = ["export_as_csv"] +# actions = ["export_as_csv"] - def export_as_csv(self, request, queryset): - """ - Export action available in the admin page - """ - resource = AllocationResource() - dataset = resource.export(queryset) - response = HttpResponse(dataset.csv, content_type="text/csv") - response["Content-Disposition"] = 'attachment; filename="allocation.csv"' - return response +# def export_as_csv(self, request, queryset): +# """ +# Export action available in the admin page +# """ +# resource = AllocationResource() +# dataset = resource.export(queryset) +# response = HttpResponse(dataset.csv, content_type="text/csv") +# response["Content-Disposition"] = 'attachment; filename="allocation.csv"' +# return response - export_as_csv.short_description = "Export Allocation details to CSV" +# export_as_csv.short_description = "Export Allocation details to CSV" @admin.register(Allocation) class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): @@ -1039,47 +1039,47 @@ class about_Admin(admin.ModelAdmin): # "description": "%s" % CATERER_BILL_DESC_TEXT, } -@admin.register(CatererBillsAutumn22) -class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): - resource_class = CatererBillsResource - model = CatererBillsAutumn22 - fieldsets = ((None,caterer_bill_fields,),) - list_display = ("__str__", "period1_bills", "period2_bills", "period3_bills", "period4_bills", "period5_bills", "period6_bills",) - search_fields = ("caterer__name",) - actions = ["export_as_csv"] - - def export_as_csv(self, request, queryset): - """ - Export action available in the admin page - """ - resource = CatererBillsResource() - dataset = resource.export(queryset) - response = HttpResponse(dataset.csv, content_type="text/csv") - response["Content-Disposition"] = 'attachment; filename="caterer_bills.csv"' - return response - - export_as_csv.short_description = "Export Caterer Bills details to CSV" - -@admin.register(CatererBillsSpring23) -class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): - resource_class = CatererBillsResource - model = CatererBillsSpring23 - fieldsets = ((None,caterer_bill_fields,),) - list_display = ("__str__", "period1_bills", "period2_bills", "period3_bills", "period4_bills", "period5_bills", "period6_bills",) - search_fields = ("caterer__name",) - actions = ["export_as_csv"] +# @admin.register(CatererBillsAutumn22) +# class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): +# resource_class = CatererBillsResource +# model = CatererBillsAutumn22 +# fieldsets = ((None,caterer_bill_fields,),) +# list_display = ("__str__", "period1_bills", "period2_bills", "period3_bills", "period4_bills", "period5_bills", "period6_bills",) +# search_fields = ("caterer__name",) +# actions = ["export_as_csv"] + +# def export_as_csv(self, request, queryset): +# """ +# Export action available in the admin page +# """ +# resource = CatererBillsResource() +# dataset = resource.export(queryset) +# response = HttpResponse(dataset.csv, content_type="text/csv") +# response["Content-Disposition"] = 'attachment; filename="caterer_bills.csv"' +# return response + +# export_as_csv.short_description = "Export Caterer Bills details to CSV" + +# @admin.register(CatererBillsSpring23) +# class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): +# resource_class = CatererBillsResource +# model = CatererBillsSpring23 +# fieldsets = ((None,caterer_bill_fields,),) +# list_display = ("__str__", "period1_bills", "period2_bills", "period3_bills", "period4_bills", "period5_bills", "period6_bills",) +# search_fields = ("caterer__name",) +# actions = ["export_as_csv"] - def export_as_csv(self, request, queryset): - """ - Export action available in the admin page - """ - resource = CatererBillsResource() - dataset = resource.export(queryset) - response = HttpResponse(dataset.csv, content_type="text/csv") - response["Content-Disposition"] = 'attachment; filename="caterer_bills.csv"' - return response +# def export_as_csv(self, request, queryset): +# """ +# Export action available in the admin page +# """ +# resource = CatererBillsResource() +# dataset = resource.export(queryset) +# response = HttpResponse(dataset.csv, content_type="text/csv") +# response["Content-Disposition"] = 'attachment; filename="caterer_bills.csv"' +# return response - export_as_csv.short_description = "Export Caterer Bills details to CSV" +# export_as_csv.short_description = "Export Caterer Bills details to CSV" @admin.register(CatererBills) class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): diff --git a/home/resources.py b/home/resources.py index 9f17340..23d8959 100644 --- a/home/resources.py +++ b/home/resources.py @@ -147,6 +147,8 @@ class AllocationNewResource(resources.ModelResource): class Meta: model = Allocation + exclude="id" + import_id_fields = ["email__name","email_hostel"] fields = ( "email__roll_no", "email__email", diff --git a/home/views.py b/home/views.py index 78f6c58..01d6350 100644 --- a/home/views.py +++ b/home/views.py @@ -283,12 +283,13 @@ def allocation(request): third_pref=None # getting period object - if 'Period' in csv_data.columns and 'Semester' in csv_data.columns: - period = str(record["Period"]).capitalize() - semester = str(record["Semester"]).capitalize() - period_obj = Period.objects.get(Sno=period, semester=Semester.objects.get(name=semester)) - else: - period_obj = Period.objects.filter().last() + # if 'Period' in csv_data.columns and 'Semester' in csv_data.columns: + # period = str(record["Period"]).capitalize() + # semester = str(record["Semester"]).capitalize() + # period_obj = Period.objects.get(Sno=period, semester=Semester.objects.get(name=semester)) + # else: + # period_obj = Period.objects.filter().last() + period_obj = Period.objects.filter().last() # getting high tea high_tea = record["High Tea"] @@ -298,7 +299,7 @@ def allocation(request): else: high_tea=False - student = Student.objects.filter(email=record["Email"]).first() + student = Student.objects.filter(name=record["Name"], hostel=record["Hostel"]).first() if(student==None): messages+=str(record["Email"]) print(student) diff --git a/templates/base.html b/templates/base.html index 389b5d6..ce9c0f8 100644 --- a/templates/base.html +++ b/templates/base.html @@ -135,12 +135,20 @@
Contact Us

-
-
Copyright ©2023 All rights reserved by:
-
+
+
+
Copyright ©2023 All rights reserved by: Central Dining Facility - IIT Indore
+
+
+
+ Developed by: + + Ishaan Mittal +
+
diff --git a/templates/contact.html b/templates/contact.html index 2c523bd..74190d8 100644 --- a/templates/contact.html +++ b/templates/contact.html @@ -64,7 +64,7 @@
{{i.occupation}}
Developer:
- Ishaan Mittal + Ishaan Mittal

9971260556
me210003039@iiti.ac.in From aa4a9e99619f18c53ff2c15044834eee9e439b73 Mon Sep 17 00:00:00 2001 From: Ishaan Mittal Date: Thu, 21 Sep 2023 22:01:34 +0530 Subject: [PATCH 2/2] jain food option available --- data.json | 1 - home/admin.py | 120 +++++----------------------------- home/models/allocation.py | 4 ++ home/resources.py | 3 + home/views.py | 8 ++- templates/allocationForm.html | 15 +++-- templates/base.html | 2 +- 7 files changed, 42 insertions(+), 111 deletions(-) delete mode 100644 data.json diff --git a/data.json b/data.json deleted file mode 100644 index c9b8ba3..0000000 --- a/data.json +++ /dev/null @@ -1 +0,0 @@ -[{"model": "home.cafeteria", "pk": 2, "fields": {"name": "Bakeology", "poc": "Mr. Himanshu", "contact": "9630468448", "image": "media/static/images/Bakelogy_ijo3ng"}}, {"model": "home.cafeteria", "pk": 3, "fields": {"name": "Noor's", "poc": "Mr. Suraj", "contact": "7898831885", "image": "media/static/images/Noors_Kitchen_f3my6j"}}, {"model": "home.cafeteria", "pk": 4, "fields": {"name": "Tapri IITians Ki", "poc": "Mr. prakash", "contact": "6267114204", "image": "media/static/images/DSC09907_vmursh"}}, {"model": "home.cafeteria", "pk": 5, "fields": {"name": "Aladeen's", "poc": "Mukesh", "contact": "0799967127", "image": "media/static/images/Aladdin_gaeyqi"}}, {"model": "home.cafeteria", "pk": 6, "fields": {"name": "Amul Parlor", "poc": "Ankit", "contact": "9009982238", "image": "media/static/images/Amul_Parlor_z2jd9l"}}, {"model": "home.cafeteria", "pk": 7, "fields": {"name": "Maa Laundry", "poc": "Suraj", "contact": "0782856354", "image": "media/static/images/Laundry_aizvse"}}, {"model": "home.cafeteria", "pk": 8, "fields": {"name": "Juicilicious", "poc": "Pikesh", "contact": "0996892973", "image": "media/static/images/WhatsApp_Image_2023-06-06_at_11.50.08_naebr8"}}, {"model": "home.cafeteria", "pk": 9, "fields": {"name": "Tea Post", "poc": "Jayant", "contact": "0982660008", "image": "media/static/images/teapost_hu6r3d"}}, {"model": "home.cafeteria", "pk": 10, "fields": {"name": "AS Canteen", "poc": "Shyam", "contact": "0626306166", "image": "media/static/images/WhatsApp_Image_2023-06-06_at_11.50.07_rnnq0p"}}, {"model": "home.cafeteria", "pk": 11, "fields": {"name": "My Village Cafe", "poc": "Sadashiv", "contact": "0982786210", "image": ""}}, {"model": "home.cafeteria", "pk": 12, "fields": {"name": "La Fresco", "poc": "Ankit", "contact": "0887117775", "image": "media/static/images/Pic_Lfresco1_aiwt6d"}}, {"model": "home.cafeteria", "pk": 13, "fields": {"name": "Electronic Zone", "poc": "Patil", "contact": "0835883126", "image": ""}}, {"model": "home.cafeteria", "pk": 14, "fields": {"name": "Sainath Juice Center", "poc": "Ashok", "contact": "0786986219", "image": "media/static/images/WhatsApp_Image_2023-06-06_at_11.50.071_jljtvv"}}, {"model": "home.cafeteria", "pk": 15, "fields": {"name": "Scissor's Hair Art", "poc": "Radheshyam", "contact": "0957525915", "image": "media/static/images/Cutting_edge_l80kfn"}}, {"model": "home.cafeteria", "pk": 16, "fields": {"name": "Nandini Beauty parlour", "poc": "Nirali", "contact": "0704994476", "image": "media/static/images/WhatsApp_Image_2023-06-06_at_11.24.221_uncwrl"}}, {"model": "home.cafeteria", "pk": 17, "fields": {"name": "Ravechi Xerox", "poc": "Hitesh", "contact": "0879959339", "image": "media/static/images/WhatsApp_Image_2023-06-06_at_11.55.591_bzzt4k"}}, {"model": "home.cafeteria", "pk": 18, "fields": {"name": "Daily Needs", "poc": "Ashish", "contact": "0930275668", "image": "media/static/images/WhatsApp_Image_2023-06-06_at_11.50.081_ets8td"}}, {"model": "home.caterer", "pk": 3, "fields": {"name": "Gauri", "upper_description": "Ajit(Manager) - 9919483552", "sheet_url": "https://docs.google.com/spreadsheets/d/1FDs-feG8dSFnaFvCEfft10OG-oE-Dq_l1nJSRzeFNxI/edit?usp=sharing", "lower_description": "Lorem ipsum, dolor sit amet consectetur \r\n adipisicing elit. Quisquam, nam? Neque quasi nemo impedit, \r\n eveniet vel alias modi asperiores sunt doloremque exercitationem!\r\n Nisi cumque minus blanditiis consectetur magni, \r\n alias repudiandae!", "student_limit": 999, "visible": true}}, {"model": "home.caterer", "pk": 4, "fields": {"name": "Kanaka", "upper_description": "Laxman(Manager) - 7974521179", "sheet_url": "https://docs.google.com/spreadsheets/d/1FDs-feG8dSFnaFvCEfft10OG-oE-Dq_l1nJSRzeFNxI/edit?usp=sharing", "lower_description": "lorem ipsum", "student_limit": 1000, "visible": true}}, {"model": "home.caterer", "pk": 5, "fields": {"name": "K-Star", "upper_description": "Bhupendra Rawat (08959592447", "sheet_url": "https://docs.google.com/spreadsheets/d/1FDs-feG8dSFnaFvCEfft10OG-oE-Dq_l1nJSRzeFNxI/edit#gid=1495286291", "lower_description": "New caterer joined recently at IIT Indore, commenced services from 24 July, 2023", "student_limit": 600, "visible": true}}, {"model": "home.contact", "pk": 3, "fields": {"occupation": "General Secretary, Mess, Cafeteria and Allied Services", "hostel_sec": false, "name": "Mr. Shubham Sadhya", "contact": "7000431620", "email": "gs.dining@iiti.ac.in"}}, {"model": "home.contact", "pk": 4, "fields": {"occupation": "APJ", "hostel_sec": true, "name": "Arush Pradhan", "contact": "7087387357", "email": "me200003015@iiti.ac.in"}}, {"model": "home.contact", "pk": 5, "fields": {"occupation": "CVR", "hostel_sec": true, "name": "Girish Jarwal", "contact": "8269516962", "email": "ee210002033@iiti.ac.in"}}, {"model": "home.contact", "pk": 6, "fields": {"occupation": "VSB", "hostel_sec": true, "name": "Prosenjit Mondal", "contact": "9163957819", "email": "mt2202105008@iiti.ac.in"}}, {"model": "home.contact", "pk": 7, "fields": {"occupation": "HJB", "hostel_sec": true, "name": "Shubham Sadhya", "contact": "7000431620", "email": "phd2201103010@iiti.ac.in"}}, {"model": "home.contact", "pk": 8, "fields": {"occupation": "DA", "hostel_sec": true, "name": "Amishi Vijay", "contact": "8560845920", "email": "phd2101202001@iiti.ac.in"}}, {"model": "home.contact", "pk": 9, "fields": {"occupation": "Office of Dining Warden", "hostel_sec": false, "name": null, "contact": "0731-6603368", "email": "diningwardenoffice@iiti.ac.in"}}, {"model": "home.about", "pk": 1, "fields": {"description": "Central Dining Facility, comprising of 02 big and 04 small kitchens, can house 1500\r\ndiners at a time. There is also an Executive Dining Hall to cater for guests. The kitchens\r\nare equipped with world-class equipment to serve healthy and nutritious meals. The\r\nmenu is decided by the Students� Dining Committee. Feedback mechanism helps in\r\nimproving the quality and services. All payments are cashless.\r\nOther than regular dining services, other eateries and services are also available to\r\nserve the students."}}, {"model": "home.carousel", "pk": 1, "fields": {"image": "static/images/DSC09913_SJSrIuf.JPG"}}, {"model": "home.carousel", "pk": 2, "fields": {"image": "static/images/DSC09910_Ps4lp9e.JPG"}}, {"model": "home.carousel", "pk": 3, "fields": {"image": "static/images/DSC09911_F8UqzUJ.JPG"}}, {"model": "home.carousel", "pk": 4, "fields": {"image": "static/images/IMG-7560.jpg"}}, {"model": "home.carousel", "pk": 5, "fields": {"image": "media/static/images/mess_cover_psczii"}}, {"model": "home.update", "pk": 1, "fields": {"update": "The allotement form for the month of June is closed. Please collect your mess cards from hostel office.", "time_stamp": "2023-04-18T19:40:21.782Z"}}, {"model": "home.form", "pk": 2, "fields": {"heading": "Caterer's Allotment Form", "description": "Valid Upto - 28th August 2023, 05:30 PM", "url": "https://docs.google.com/forms/d/e/1FAIpQLSdh4tcfe0VLyaJQ3m1R1TiOII4jiD1rSz8BerA4kDw4zXVXLA/viewform?usp=sf_link"}}, {"model": "home.form", "pk": 3, "fields": {"heading": "Short Rebate Form", "description": "", "url": "http://diningfee.iiti.ac.in/rebateForm/"}}, {"model": "home.form", "pk": 4, "fields": {"heading": "Long Rebate Form", "description": "", "url": "http://diningfee.iiti.ac.in/longRebate/"}}, {"model": "home.form", "pk": 5, "fields": {"heading": "Grievance Form", "description": "", "url": "https://docs.google.com/forms/d/e/1FAIpQLSdSpkLReVg6ORODFm9GcBMyBRpExUmV7uwLSZ2rMy9HGA94MQ/viewform?usp=sf_link"}}, {"model": "home.rule", "pk": 1, "fields": {"rule": "Any act of manhandling, group fighting, intimidation or violence, wilful damage to property or\r\n drunken behaviour will be considered as a serious offence. Strict punitive action will be taken\r\n against person/s involved in such activities."}}, {"model": "home.rule", "pk": 2, "fields": {"rule": "The students shall not indulge in any immoral act and misbehaviour with any staff/service\r\n provider, dining hall staff, dining committee members, hospitality manager, hall of residence\r\n manager, caretaker, etc.,. It will lead to strict disciplinary action. Your conduct and language\r\n should reflect the reputation of the Institute."}}, {"model": "home.rule", "pk": 3, "fields": {"rule": "All hostellers must dine in the central dining facility with any one of the caterers."}}, {"model": "home.rule", "pk": 4, "fields": {"rule": "Cooking is strictly prohibited in hostels."}}, {"model": "home.rule", "pk": 5, "fields": {"rule": "Meals will be served strictly during indicated timings of operation only."}}, {"model": "home.rule", "pk": 6, "fields": {"rule": "In case of illness, sick diet will be provided to the students upon receipt of a written\r\nadvice from the Institute Health Centre. Hall residents are advised to inform the caterer\r\nin advance about the requirement of any special meal."}}, {"model": "home.rule", "pk": 7, "fields": {"rule": "Hall residents should not take the utensils/food outside the dining hall. (Exempted only\r\nunder circumstances mentioned in rule no. 6)"}}, {"model": "home.rule", "pk": 8, "fields": {"rule": "No hall resident is allowed to enter the kitchen area except for the Students� Dining\r\nCommittee who are involved in inspection of kitchen and store area."}}, {"model": "home.rule", "pk": 9, "fields": {"rule": "No meals should be shared with other students under any circumstances. Plates should\r\nbe taken individually by each student."}}, {"model": "home.rule", "pk": 10, "fields": {"rule": "Only those Suggestions/Complaints which are submitted through the Hall of Residence\r\nPortal and/or through the Student Gymkhana body will be considered. The language\r\nused for such purpose should be strictly official and the complaint should be objective,\r\nrather than emotive."}}, {"model": "home.rule", "pk": 11, "fields": {"rule": "Students are advised to approach appropriate authority and are strictly prohibited to\r\nuse social media/press/mass emailing of IITI community members as a platform to\r\naddress their grievances."}}, {"model": "home.rule", "pk": 12, "fields": {"rule": "The Institute strictly prohibits the unlawful possession, use, or distribution of illicit drugs\r\nand alcohol by students in campus and it reserves the right to take strict action,\r\nexpulsion from Hall of Residence to expulsion from the institute."}}, {"model": "home.rule", "pk": 14, "fields": {"rule": "Smoking is strictly prohibited in the central dining facility building and defaulters will be\r\nsubjected to disciplinary action."}}, {"model": "home.rule", "pk": 15, "fields": {"rule": "Non-compliance of rules 1-13 may lead to disciplinary action decided by Wardens/Hall\r\nof Residence staff."}}, {"model": "home.rule", "pk": 16, "fields": {"rule": "The decision regarding fines and penalties imposed is non-negotiable; hence no\r\ndiscussion/ argument will be entertained."}}, {"model": "home.shortrebate", "pk": 9, "fields": {"desc": "1. Mess is mandatory for Hostellers. Students cannot mess out on their own and cannot claim mess rebate for the same.\r\n2. Residents, desirous of availing mess rebate, will be required to inform the caterer, through the Dining Committee,\r\n3. All rebate requests are to be filled in the prescribed form and no email request will be entertained.\r\n4. As per current rules, short term rebate can be applied for a minimum of 2-7 consecutive days. Further, a maximum of 8 days/month of rebate can be availed in short term rebate.\r\n5. For a period exceeding 7 consecutive days, residents are to apply for long term rebate duly recommended by the concerned Faculty Advisor/Supervisor/HoD.\r\n6. All recommended applications for a rebate should be submitted to the Dining Office, two days before the day of commencement of rebate period, latest by 5 p.m.\r\n7. No resident, who is on rebate, will be allowed to avail the mess facility based on extras or guest of other residents.\r\n8. Full rebate is admissible on below mentioned cases, subject to providing information to the Caterer, through the Dining Committee, as mentioned Para 1 of Rebate Rules: \r\n (a) Resident is on vacation leave during the vacation period declared by the Institute.\r\n (b) Resident is out of station and needs to supported by documentary proof from the concerned department or Institute i.e. Faculty Advisor/Supervisor/DPGC Convener/ HoD/ Project Coordinator.\r\n (c) Resident is on medical leave as certified by Institute Health Centre.\r\n (d) Resident is unable to take mess food owing to health reasons as certified by Health Centre.\r\n9. Residents found violating any of the above-mentioned rules will be fined with a penalty which will be deposited in the Institute account.\r\n10. The rebate rules are subject to change from time to time and the latest rules prevails."}}, {"model": "home.periodspring23", "pk": 1, "fields": {"Sno": 1, "start_date": "2023-01-02", "end_date": "2023-01-31"}}, {"model": "home.periodspring23", "pk": 2, "fields": {"Sno": 2, "start_date": "2023-02-01", "end_date": "2023-02-28"}}, {"model": "home.periodspring23", "pk": 3, "fields": {"Sno": 3, "start_date": "2023-03-01", "end_date": "2023-03-31"}}, {"model": "home.periodspring23", "pk": 4, "fields": {"Sno": 4, "start_date": "2023-04-01", "end_date": "2023-05-08"}}, {"model": "home.periodspring23", "pk": 8, "fields": {"Sno": 5, "start_date": "2023-05-09", "end_date": "2023-06-15"}}, {"model": "home.periodspring23", "pk": 9, "fields": {"Sno": 6, "start_date": "2023-06-16", "end_date": "2023-07-23"}}, {"model": "home.allocationspring23", "pk": 13694, "fields": {"roll_no": null, "student_id": "K400", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13695, "fields": {"roll_no": null, "student_id": "K399", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13696, "fields": {"roll_no": null, "student_id": "K398", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13697, "fields": {"roll_no": null, "student_id": "KH397", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13698, "fields": {"roll_no": null, "student_id": "K396", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13699, "fields": {"roll_no": null, "student_id": "G400", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13700, "fields": {"roll_no": null, "student_id": "K395", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13701, "fields": {"roll_no": null, "student_id": "G399", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13702, "fields": {"roll_no": null, "student_id": "K394", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13703, "fields": {"roll_no": null, "student_id": "K393", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13704, "fields": {"roll_no": null, "student_id": "K392", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13705, "fields": {"roll_no": null, "student_id": "K391", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13706, "fields": {"roll_no": null, "student_id": "K390", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13707, "fields": {"roll_no": null, "student_id": "G398", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13708, "fields": {"roll_no": null, "student_id": "KH389", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13709, "fields": {"roll_no": null, "student_id": "G397", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13710, "fields": {"roll_no": null, "student_id": "K388", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13711, "fields": {"roll_no": null, "student_id": "K387", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13712, "fields": {"roll_no": null, "student_id": "G396", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13713, "fields": {"roll_no": null, "student_id": "K386", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13714, "fields": {"roll_no": null, "student_id": "KH385", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13715, "fields": {"roll_no": null, "student_id": "G395", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13716, "fields": {"roll_no": null, "student_id": "G394", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13717, "fields": {"roll_no": null, "student_id": "G393", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13718, "fields": {"roll_no": null, "student_id": "G392", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13719, "fields": {"roll_no": null, "student_id": "G391", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13720, "fields": {"roll_no": null, "student_id": "KH384", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13721, "fields": {"roll_no": null, "student_id": "GH390", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13722, "fields": {"roll_no": null, "student_id": "K383", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13723, "fields": {"roll_no": null, "student_id": "K382", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13724, "fields": {"roll_no": null, "student_id": "G389", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13725, "fields": {"roll_no": null, "student_id": "G388", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13726, "fields": {"roll_no": null, "student_id": "K381", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13727, "fields": {"roll_no": null, "student_id": "G387", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13728, "fields": {"roll_no": null, "student_id": "K380", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13729, "fields": {"roll_no": null, "student_id": "KH379", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13730, "fields": {"roll_no": null, "student_id": "G386", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13731, "fields": {"roll_no": null, "student_id": "G385", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13732, "fields": {"roll_no": null, "student_id": "KH378", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13733, "fields": {"roll_no": null, "student_id": "G384", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13734, "fields": {"roll_no": null, "student_id": "K377", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13735, "fields": {"roll_no": null, "student_id": "K376", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13736, "fields": {"roll_no": null, "student_id": "KH375", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13737, "fields": {"roll_no": null, "student_id": "G383", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13738, "fields": {"roll_no": null, "student_id": "KH374", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13739, "fields": {"roll_no": null, "student_id": "K373", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13740, "fields": {"roll_no": null, "student_id": "KH372", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13741, "fields": {"roll_no": null, "student_id": "G382", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13742, "fields": {"roll_no": null, "student_id": "K371", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13743, "fields": {"roll_no": null, "student_id": "K370", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13744, "fields": {"roll_no": null, "student_id": "G381", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13745, "fields": {"roll_no": null, "student_id": "K369", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13746, "fields": {"roll_no": null, "student_id": "K368", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13747, "fields": {"roll_no": null, "student_id": "K367", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13748, "fields": {"roll_no": null, "student_id": "KH366", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13749, "fields": {"roll_no": null, "student_id": "G380", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13750, "fields": {"roll_no": null, "student_id": "GH379", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13751, "fields": {"roll_no": null, "student_id": "K365", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13752, "fields": {"roll_no": null, "student_id": "K364", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13753, "fields": {"roll_no": null, "student_id": "K363", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13754, "fields": {"roll_no": null, "student_id": "GH378", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13755, "fields": {"roll_no": null, "student_id": "K362", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13756, "fields": {"roll_no": null, "student_id": "G377", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13757, "fields": {"roll_no": null, "student_id": "K361", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13758, "fields": {"roll_no": null, "student_id": "K360", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13759, "fields": {"roll_no": null, "student_id": "K359", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13760, "fields": {"roll_no": null, "student_id": "K358", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13761, "fields": {"roll_no": null, "student_id": "K357", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13762, "fields": {"roll_no": null, "student_id": "K356", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13763, "fields": {"roll_no": null, "student_id": "K355", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13764, "fields": {"roll_no": null, "student_id": "KH354", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13765, "fields": {"roll_no": null, "student_id": "G376", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13766, "fields": {"roll_no": null, "student_id": "G375", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13767, "fields": {"roll_no": null, "student_id": "K353", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13768, "fields": {"roll_no": null, "student_id": "KH352", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13769, "fields": {"roll_no": null, "student_id": "K351", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13770, "fields": {"roll_no": null, "student_id": "G374", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13771, "fields": {"roll_no": null, "student_id": "K350", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13772, "fields": {"roll_no": null, "student_id": "K349", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13773, "fields": {"roll_no": null, "student_id": "K348", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13774, "fields": {"roll_no": null, "student_id": "K347", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13775, "fields": {"roll_no": null, "student_id": "K346", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13776, "fields": {"roll_no": null, "student_id": "K345", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13777, "fields": {"roll_no": null, "student_id": "KH344", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13778, "fields": {"roll_no": null, "student_id": "K343", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13779, "fields": {"roll_no": null, "student_id": "K342", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13780, "fields": {"roll_no": null, "student_id": "G373", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13781, "fields": {"roll_no": null, "student_id": "K341", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13782, "fields": {"roll_no": null, "student_id": "K340", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13783, "fields": {"roll_no": null, "student_id": "G372", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13784, "fields": {"roll_no": null, "student_id": "G371", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13785, "fields": {"roll_no": null, "student_id": "G370", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13786, "fields": {"roll_no": null, "student_id": "G369", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13787, "fields": {"roll_no": null, "student_id": "G368", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13788, "fields": {"roll_no": null, "student_id": "K339", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13789, "fields": {"roll_no": null, "student_id": "KH338", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13790, "fields": {"roll_no": null, "student_id": "KH337", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13791, "fields": {"roll_no": null, "student_id": "K336", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13792, "fields": {"roll_no": null, "student_id": "K335", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13793, "fields": {"roll_no": null, "student_id": "G367", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13794, "fields": {"roll_no": null, "student_id": "KH334", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13795, "fields": {"roll_no": null, "student_id": "K333", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13796, "fields": {"roll_no": null, "student_id": "K332", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13797, "fields": {"roll_no": null, "student_id": "G366", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13798, "fields": {"roll_no": null, "student_id": "G365", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13799, "fields": {"roll_no": null, "student_id": "K331", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13800, "fields": {"roll_no": null, "student_id": "G364", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13801, "fields": {"roll_no": null, "student_id": "K330", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13802, "fields": {"roll_no": null, "student_id": "G363", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13803, "fields": {"roll_no": null, "student_id": "G362", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13804, "fields": {"roll_no": null, "student_id": "K329", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13805, "fields": {"roll_no": null, "student_id": "G361", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13806, "fields": {"roll_no": null, "student_id": "G360", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13807, "fields": {"roll_no": null, "student_id": "G359", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13808, "fields": {"roll_no": null, "student_id": "K328", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13809, "fields": {"roll_no": null, "student_id": "G358", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13810, "fields": {"roll_no": null, "student_id": "G357", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13811, "fields": {"roll_no": null, "student_id": "G356", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13812, "fields": {"roll_no": null, "student_id": "K327", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13813, "fields": {"roll_no": null, "student_id": "K326", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13814, "fields": {"roll_no": null, "student_id": "K325", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13815, "fields": {"roll_no": null, "student_id": "K324", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13816, "fields": {"roll_no": null, "student_id": "G355", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13817, "fields": {"roll_no": null, "student_id": "G354", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13818, "fields": {"roll_no": null, "student_id": "K323", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13819, "fields": {"roll_no": null, "student_id": "G353", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13820, "fields": {"roll_no": null, "student_id": "K322", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13821, "fields": {"roll_no": null, "student_id": "K321", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13822, "fields": {"roll_no": null, "student_id": "G352", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13823, "fields": {"roll_no": null, "student_id": "K320", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13824, "fields": {"roll_no": null, "student_id": "G351", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13825, "fields": {"roll_no": null, "student_id": "G350", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13826, "fields": {"roll_no": null, "student_id": "G349", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13827, "fields": {"roll_no": null, "student_id": "G348", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13828, "fields": {"roll_no": null, "student_id": "K319", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13829, "fields": {"roll_no": null, "student_id": "G347", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13830, "fields": {"roll_no": null, "student_id": "KH318", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13831, "fields": {"roll_no": null, "student_id": "K317", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13832, "fields": {"roll_no": null, "student_id": "G346", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13833, "fields": {"roll_no": null, "student_id": "G345", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13834, "fields": {"roll_no": null, "student_id": "G344", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13835, "fields": {"roll_no": null, "student_id": "K316", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13836, "fields": {"roll_no": null, "student_id": "G343", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13837, "fields": {"roll_no": null, "student_id": "K315", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13838, "fields": {"roll_no": null, "student_id": "G342", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13839, "fields": {"roll_no": null, "student_id": "K314", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13840, "fields": {"roll_no": null, "student_id": "K313", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13841, "fields": {"roll_no": null, "student_id": "K312", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13842, "fields": {"roll_no": null, "student_id": "G341", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13843, "fields": {"roll_no": null, "student_id": "K311", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13844, "fields": {"roll_no": null, "student_id": "G340", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13845, "fields": {"roll_no": null, "student_id": "GH339", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13846, "fields": {"roll_no": null, "student_id": "KH310", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13847, "fields": {"roll_no": null, "student_id": "G338", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13848, "fields": {"roll_no": null, "student_id": "K309", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13849, "fields": {"roll_no": null, "student_id": "K308", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13850, "fields": {"roll_no": null, "student_id": "K307", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13851, "fields": {"roll_no": null, "student_id": "K306", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13852, "fields": {"roll_no": null, "student_id": "K305", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13853, "fields": {"roll_no": null, "student_id": "G337", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13854, "fields": {"roll_no": null, "student_id": "K304", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13855, "fields": {"roll_no": null, "student_id": "K303", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13856, "fields": {"roll_no": null, "student_id": "KH302", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13857, "fields": {"roll_no": null, "student_id": "GH336", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13858, "fields": {"roll_no": null, "student_id": "K301", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13859, "fields": {"roll_no": null, "student_id": "K300", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13860, "fields": {"roll_no": null, "student_id": "G335", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13861, "fields": {"roll_no": null, "student_id": "G334", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13862, "fields": {"roll_no": null, "student_id": "K299", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13863, "fields": {"roll_no": null, "student_id": "G333", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13864, "fields": {"roll_no": null, "student_id": "G332", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13865, "fields": {"roll_no": null, "student_id": "G331", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13866, "fields": {"roll_no": null, "student_id": "G330", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13867, "fields": {"roll_no": null, "student_id": "G329", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13868, "fields": {"roll_no": null, "student_id": "G328", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13869, "fields": {"roll_no": null, "student_id": "G327", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13870, "fields": {"roll_no": null, "student_id": "K298", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13871, "fields": {"roll_no": null, "student_id": "K297", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13872, "fields": {"roll_no": null, "student_id": "K296", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13873, "fields": {"roll_no": null, "student_id": "G326", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13874, "fields": {"roll_no": null, "student_id": "K295", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13875, "fields": {"roll_no": null, "student_id": "G325", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13876, "fields": {"roll_no": null, "student_id": "KH294", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13877, "fields": {"roll_no": null, "student_id": "K293", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13878, "fields": {"roll_no": null, "student_id": "KH292", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13879, "fields": {"roll_no": null, "student_id": "G324", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13880, "fields": {"roll_no": null, "student_id": "G323", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13881, "fields": {"roll_no": null, "student_id": "G322", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13882, "fields": {"roll_no": null, "student_id": "KH291", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13883, "fields": {"roll_no": null, "student_id": "G321", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13884, "fields": {"roll_no": null, "student_id": "K290", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13885, "fields": {"roll_no": null, "student_id": "G320", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13886, "fields": {"roll_no": null, "student_id": "G319", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13887, "fields": {"roll_no": null, "student_id": "KH289", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13888, "fields": {"roll_no": null, "student_id": "G318", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13889, "fields": {"roll_no": null, "student_id": "GH317", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13890, "fields": {"roll_no": null, "student_id": "G316", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13891, "fields": {"roll_no": null, "student_id": "G315", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13892, "fields": {"roll_no": null, "student_id": "K288", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13893, "fields": {"roll_no": null, "student_id": "G314", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13894, "fields": {"roll_no": null, "student_id": "G313", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13895, "fields": {"roll_no": null, "student_id": "K287", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13896, "fields": {"roll_no": null, "student_id": "G312", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13897, "fields": {"roll_no": null, "student_id": "K286", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13898, "fields": {"roll_no": null, "student_id": "G311", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13899, "fields": {"roll_no": null, "student_id": "KH285", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13900, "fields": {"roll_no": null, "student_id": "K284", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13901, "fields": {"roll_no": null, "student_id": "KH283", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13902, "fields": {"roll_no": null, "student_id": "G310", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13903, "fields": {"roll_no": null, "student_id": "G309", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13904, "fields": {"roll_no": null, "student_id": "G308", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13905, "fields": {"roll_no": null, "student_id": "K282", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13906, "fields": {"roll_no": null, "student_id": "K281", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13907, "fields": {"roll_no": null, "student_id": "KH280", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13908, "fields": {"roll_no": null, "student_id": "K279", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13909, "fields": {"roll_no": null, "student_id": "K278", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13910, "fields": {"roll_no": null, "student_id": "G307", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13911, "fields": {"roll_no": null, "student_id": "GH306", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13912, "fields": {"roll_no": null, "student_id": "KH277", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13913, "fields": {"roll_no": null, "student_id": "K276", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13914, "fields": {"roll_no": null, "student_id": "G305", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13915, "fields": {"roll_no": null, "student_id": "K275", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13916, "fields": {"roll_no": null, "student_id": "G304", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13917, "fields": {"roll_no": null, "student_id": "G303", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13918, "fields": {"roll_no": null, "student_id": "GH302", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13919, "fields": {"roll_no": null, "student_id": "K274", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13920, "fields": {"roll_no": null, "student_id": "G301", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13921, "fields": {"roll_no": null, "student_id": "K273", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13922, "fields": {"roll_no": null, "student_id": "G300", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13923, "fields": {"roll_no": null, "student_id": "K272", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13924, "fields": {"roll_no": null, "student_id": "K271", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13925, "fields": {"roll_no": null, "student_id": "K270", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13926, "fields": {"roll_no": null, "student_id": "G299", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13927, "fields": {"roll_no": null, "student_id": "K269", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13928, "fields": {"roll_no": null, "student_id": "K268", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13929, "fields": {"roll_no": null, "student_id": "K267", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13930, "fields": {"roll_no": null, "student_id": "G298", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13931, "fields": {"roll_no": null, "student_id": "G297", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13932, "fields": {"roll_no": null, "student_id": "K266", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13933, "fields": {"roll_no": null, "student_id": "K265", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13934, "fields": {"roll_no": null, "student_id": "G296", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13935, "fields": {"roll_no": null, "student_id": "K264", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13936, "fields": {"roll_no": null, "student_id": "G295", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13937, "fields": {"roll_no": null, "student_id": "G294", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13938, "fields": {"roll_no": null, "student_id": "G293", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13939, "fields": {"roll_no": null, "student_id": "G292", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13940, "fields": {"roll_no": null, "student_id": "K263", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13941, "fields": {"roll_no": null, "student_id": "K262", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13942, "fields": {"roll_no": null, "student_id": "G291", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13943, "fields": {"roll_no": null, "student_id": "K261", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13944, "fields": {"roll_no": null, "student_id": "G290", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13945, "fields": {"roll_no": null, "student_id": "K260", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13946, "fields": {"roll_no": null, "student_id": "G289", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13947, "fields": {"roll_no": null, "student_id": "K259", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13948, "fields": {"roll_no": null, "student_id": "K258", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13949, "fields": {"roll_no": null, "student_id": "K257", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13950, "fields": {"roll_no": null, "student_id": "K256", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13951, "fields": {"roll_no": null, "student_id": "G288", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13952, "fields": {"roll_no": null, "student_id": "G287", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13953, "fields": {"roll_no": null, "student_id": "G286", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13954, "fields": {"roll_no": null, "student_id": "K255", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13955, "fields": {"roll_no": null, "student_id": "G285", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13956, "fields": {"roll_no": null, "student_id": "K254", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13957, "fields": {"roll_no": null, "student_id": "K253", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13958, "fields": {"roll_no": null, "student_id": "K252", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13959, "fields": {"roll_no": null, "student_id": "G284", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13960, "fields": {"roll_no": null, "student_id": "K251", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13961, "fields": {"roll_no": null, "student_id": "KH250", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13962, "fields": {"roll_no": null, "student_id": "K249", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13963, "fields": {"roll_no": null, "student_id": "K248", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13964, "fields": {"roll_no": null, "student_id": "GH283", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13965, "fields": {"roll_no": null, "student_id": "G282", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13966, "fields": {"roll_no": null, "student_id": "K247", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13967, "fields": {"roll_no": null, "student_id": "G281", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13968, "fields": {"roll_no": null, "student_id": "G280", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13969, "fields": {"roll_no": null, "student_id": "K246", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13970, "fields": {"roll_no": null, "student_id": "GH279", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13971, "fields": {"roll_no": null, "student_id": "G278", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13972, "fields": {"roll_no": null, "student_id": "K245", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13973, "fields": {"roll_no": null, "student_id": "G277", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13974, "fields": {"roll_no": null, "student_id": "K244", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13975, "fields": {"roll_no": null, "student_id": "K243", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13976, "fields": {"roll_no": null, "student_id": "KH242", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13977, "fields": {"roll_no": null, "student_id": "G276", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13978, "fields": {"roll_no": null, "student_id": "K241", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13979, "fields": {"roll_no": null, "student_id": "K240", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13980, "fields": {"roll_no": null, "student_id": "K239", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13981, "fields": {"roll_no": null, "student_id": "G275", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13982, "fields": {"roll_no": null, "student_id": "K238", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13983, "fields": {"roll_no": null, "student_id": "K237", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13984, "fields": {"roll_no": null, "student_id": "K236", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13985, "fields": {"roll_no": null, "student_id": "G274", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13986, "fields": {"roll_no": null, "student_id": "K235", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13987, "fields": {"roll_no": null, "student_id": "K234", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13988, "fields": {"roll_no": null, "student_id": "KH233", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13989, "fields": {"roll_no": null, "student_id": "K232", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13990, "fields": {"roll_no": null, "student_id": "K231", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13991, "fields": {"roll_no": null, "student_id": "G273", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13992, "fields": {"roll_no": null, "student_id": "K230", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13993, "fields": {"roll_no": null, "student_id": "G272", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13994, "fields": {"roll_no": null, "student_id": "G271", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13995, "fields": {"roll_no": null, "student_id": "G270", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13996, "fields": {"roll_no": null, "student_id": "K229", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13997, "fields": {"roll_no": null, "student_id": "K228", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13998, "fields": {"roll_no": null, "student_id": "K227", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 13999, "fields": {"roll_no": null, "student_id": "K226", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14000, "fields": {"roll_no": null, "student_id": "K225", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14001, "fields": {"roll_no": null, "student_id": "G269", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14002, "fields": {"roll_no": null, "student_id": "G268", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14003, "fields": {"roll_no": null, "student_id": "K224", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14004, "fields": {"roll_no": null, "student_id": "G267", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14005, "fields": {"roll_no": null, "student_id": "GH266", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14006, "fields": {"roll_no": null, "student_id": "G265", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14007, "fields": {"roll_no": null, "student_id": "K223", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14008, "fields": {"roll_no": null, "student_id": "G264", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14009, "fields": {"roll_no": null, "student_id": "GH263", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14010, "fields": {"roll_no": null, "student_id": "G262", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14011, "fields": {"roll_no": null, "student_id": "K222", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14012, "fields": {"roll_no": null, "student_id": "G261", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14013, "fields": {"roll_no": null, "student_id": "GH260", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14014, "fields": {"roll_no": null, "student_id": "K221", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14015, "fields": {"roll_no": null, "student_id": "K220", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14016, "fields": {"roll_no": null, "student_id": "G259", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14017, "fields": {"roll_no": null, "student_id": "K219", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14018, "fields": {"roll_no": null, "student_id": "K218", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14019, "fields": {"roll_no": null, "student_id": "K217", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14020, "fields": {"roll_no": null, "student_id": "G258", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14021, "fields": {"roll_no": null, "student_id": "KH216", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14022, "fields": {"roll_no": null, "student_id": "KH215", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14023, "fields": {"roll_no": null, "student_id": "K214", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14024, "fields": {"roll_no": null, "student_id": "G257", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14025, "fields": {"roll_no": null, "student_id": "G256", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14026, "fields": {"roll_no": null, "student_id": "G255", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14027, "fields": {"roll_no": null, "student_id": "G254", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14028, "fields": {"roll_no": null, "student_id": "K213", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14029, "fields": {"roll_no": null, "student_id": "K212", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14030, "fields": {"roll_no": null, "student_id": "G253", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14031, "fields": {"roll_no": null, "student_id": "K211", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14032, "fields": {"roll_no": null, "student_id": "K210", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14033, "fields": {"roll_no": null, "student_id": "K209", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14034, "fields": {"roll_no": null, "student_id": "K208", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14035, "fields": {"roll_no": null, "student_id": "K207", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14036, "fields": {"roll_no": null, "student_id": "K206", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14037, "fields": {"roll_no": null, "student_id": "K205", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14038, "fields": {"roll_no": null, "student_id": "KH204", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14039, "fields": {"roll_no": null, "student_id": "KH203", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14040, "fields": {"roll_no": null, "student_id": "K202", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14041, "fields": {"roll_no": null, "student_id": "G252", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14042, "fields": {"roll_no": null, "student_id": "K201", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14043, "fields": {"roll_no": null, "student_id": "K200", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14044, "fields": {"roll_no": null, "student_id": "GH251", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14045, "fields": {"roll_no": null, "student_id": "K199", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14046, "fields": {"roll_no": null, "student_id": "K198", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14047, "fields": {"roll_no": null, "student_id": "K197", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14048, "fields": {"roll_no": null, "student_id": "K196", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14049, "fields": {"roll_no": null, "student_id": "K195", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14050, "fields": {"roll_no": null, "student_id": "K194", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14051, "fields": {"roll_no": null, "student_id": "KH193", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14052, "fields": {"roll_no": null, "student_id": "G250", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14053, "fields": {"roll_no": null, "student_id": "G249", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14054, "fields": {"roll_no": null, "student_id": "K192", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14055, "fields": {"roll_no": null, "student_id": "G248", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14056, "fields": {"roll_no": null, "student_id": "K191", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14057, "fields": {"roll_no": null, "student_id": "G247", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14058, "fields": {"roll_no": null, "student_id": "GH246", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14059, "fields": {"roll_no": null, "student_id": "G245", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14060, "fields": {"roll_no": null, "student_id": "G244", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14061, "fields": {"roll_no": null, "student_id": "G243", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14062, "fields": {"roll_no": null, "student_id": "G242", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14063, "fields": {"roll_no": null, "student_id": "G241", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14064, "fields": {"roll_no": null, "student_id": "K190", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14065, "fields": {"roll_no": null, "student_id": "K189", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14066, "fields": {"roll_no": null, "student_id": "K188", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14067, "fields": {"roll_no": null, "student_id": "G240", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14068, "fields": {"roll_no": null, "student_id": "G239", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14069, "fields": {"roll_no": null, "student_id": "G238", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14070, "fields": {"roll_no": null, "student_id": "G237", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14071, "fields": {"roll_no": null, "student_id": "G236", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14072, "fields": {"roll_no": null, "student_id": "K187", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14073, "fields": {"roll_no": null, "student_id": "K186", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14074, "fields": {"roll_no": null, "student_id": "K185", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14075, "fields": {"roll_no": null, "student_id": "K184", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14076, "fields": {"roll_no": null, "student_id": "K183", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14077, "fields": {"roll_no": null, "student_id": "K182", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14078, "fields": {"roll_no": null, "student_id": "K181", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14079, "fields": {"roll_no": null, "student_id": "K180", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14080, "fields": {"roll_no": null, "student_id": "K179", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14081, "fields": {"roll_no": null, "student_id": "G235", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14082, "fields": {"roll_no": null, "student_id": "K178", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14083, "fields": {"roll_no": null, "student_id": "K177", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14084, "fields": {"roll_no": null, "student_id": "K176", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14085, "fields": {"roll_no": null, "student_id": "K175", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14086, "fields": {"roll_no": null, "student_id": "GH234", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14087, "fields": {"roll_no": null, "student_id": "G233", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14088, "fields": {"roll_no": null, "student_id": "K174", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14089, "fields": {"roll_no": null, "student_id": "K173", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14090, "fields": {"roll_no": null, "student_id": "K172", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14091, "fields": {"roll_no": null, "student_id": "K171", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14092, "fields": {"roll_no": null, "student_id": "K170", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14093, "fields": {"roll_no": null, "student_id": "G232", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14094, "fields": {"roll_no": null, "student_id": "G231", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14095, "fields": {"roll_no": null, "student_id": "KH169", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14096, "fields": {"roll_no": null, "student_id": "G230", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14097, "fields": {"roll_no": null, "student_id": "K168", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14098, "fields": {"roll_no": null, "student_id": "K167", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14099, "fields": {"roll_no": null, "student_id": "K166", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14100, "fields": {"roll_no": null, "student_id": "K165", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14101, "fields": {"roll_no": null, "student_id": "K164", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14102, "fields": {"roll_no": null, "student_id": "K163", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14103, "fields": {"roll_no": null, "student_id": "K162", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14104, "fields": {"roll_no": null, "student_id": "KH161", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14105, "fields": {"roll_no": null, "student_id": "K160", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14106, "fields": {"roll_no": null, "student_id": "G229", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14107, "fields": {"roll_no": null, "student_id": "KH159", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14108, "fields": {"roll_no": null, "student_id": "K158", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14109, "fields": {"roll_no": null, "student_id": "K157", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14110, "fields": {"roll_no": null, "student_id": "K156", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14111, "fields": {"roll_no": null, "student_id": "G228", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14112, "fields": {"roll_no": null, "student_id": "K155", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14113, "fields": {"roll_no": null, "student_id": "K154", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14114, "fields": {"roll_no": null, "student_id": "K153", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14115, "fields": {"roll_no": null, "student_id": "G227", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14116, "fields": {"roll_no": null, "student_id": "G226", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14117, "fields": {"roll_no": null, "student_id": "G225", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14118, "fields": {"roll_no": null, "student_id": "GH224", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14119, "fields": {"roll_no": null, "student_id": "G223", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14120, "fields": {"roll_no": null, "student_id": "K152", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14121, "fields": {"roll_no": null, "student_id": "G222", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14122, "fields": {"roll_no": null, "student_id": "K151", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14123, "fields": {"roll_no": null, "student_id": "G221", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14124, "fields": {"roll_no": null, "student_id": "K150", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14125, "fields": {"roll_no": null, "student_id": "G220", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14126, "fields": {"roll_no": null, "student_id": "G219", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14127, "fields": {"roll_no": null, "student_id": "K149", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14128, "fields": {"roll_no": null, "student_id": "K148", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14129, "fields": {"roll_no": null, "student_id": "K147", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14130, "fields": {"roll_no": null, "student_id": "K146", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14131, "fields": {"roll_no": null, "student_id": "KH145", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14132, "fields": {"roll_no": null, "student_id": "K144", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14133, "fields": {"roll_no": null, "student_id": "K143", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14134, "fields": {"roll_no": null, "student_id": "K142", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14135, "fields": {"roll_no": null, "student_id": "K141", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14136, "fields": {"roll_no": null, "student_id": "G218", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14137, "fields": {"roll_no": null, "student_id": "G217", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14138, "fields": {"roll_no": null, "student_id": "K140", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14139, "fields": {"roll_no": null, "student_id": "K139", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14140, "fields": {"roll_no": null, "student_id": "KH138", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14141, "fields": {"roll_no": null, "student_id": "KH137", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14142, "fields": {"roll_no": null, "student_id": "K136", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14143, "fields": {"roll_no": null, "student_id": "G216", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14144, "fields": {"roll_no": null, "student_id": "K135", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14145, "fields": {"roll_no": null, "student_id": "K134", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14146, "fields": {"roll_no": null, "student_id": "K133", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14147, "fields": {"roll_no": null, "student_id": "K132", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14148, "fields": {"roll_no": null, "student_id": "G215", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14149, "fields": {"roll_no": null, "student_id": "G214", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14150, "fields": {"roll_no": null, "student_id": "K131", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14151, "fields": {"roll_no": null, "student_id": "G213", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14152, "fields": {"roll_no": null, "student_id": "K130", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14153, "fields": {"roll_no": null, "student_id": "K129", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14154, "fields": {"roll_no": null, "student_id": "K128", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14155, "fields": {"roll_no": null, "student_id": "G212", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14156, "fields": {"roll_no": null, "student_id": "K127", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14157, "fields": {"roll_no": null, "student_id": "G211", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14158, "fields": {"roll_no": null, "student_id": "G210", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14159, "fields": {"roll_no": null, "student_id": "G209", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14160, "fields": {"roll_no": null, "student_id": "G208", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14161, "fields": {"roll_no": null, "student_id": "G207", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14162, "fields": {"roll_no": null, "student_id": "K126", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14163, "fields": {"roll_no": null, "student_id": "G206", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14164, "fields": {"roll_no": null, "student_id": "K125", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14165, "fields": {"roll_no": null, "student_id": "G205", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14166, "fields": {"roll_no": null, "student_id": "G204", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14167, "fields": {"roll_no": null, "student_id": "K124", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14168, "fields": {"roll_no": null, "student_id": "K123", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14169, "fields": {"roll_no": null, "student_id": "G203", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14170, "fields": {"roll_no": null, "student_id": "K122", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14171, "fields": {"roll_no": null, "student_id": "K121", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14172, "fields": {"roll_no": null, "student_id": "K120", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14173, "fields": {"roll_no": null, "student_id": "G202", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14174, "fields": {"roll_no": null, "student_id": "K119", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14175, "fields": {"roll_no": null, "student_id": "G201", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14176, "fields": {"roll_no": null, "student_id": "K118", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14177, "fields": {"roll_no": null, "student_id": "K117", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14178, "fields": {"roll_no": null, "student_id": "K116", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14179, "fields": {"roll_no": null, "student_id": "GH200", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14180, "fields": {"roll_no": null, "student_id": "G199", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14181, "fields": {"roll_no": null, "student_id": "K115", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14182, "fields": {"roll_no": null, "student_id": "G198", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14183, "fields": {"roll_no": null, "student_id": "G197", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14184, "fields": {"roll_no": null, "student_id": "G196", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14185, "fields": {"roll_no": null, "student_id": "G195", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14186, "fields": {"roll_no": null, "student_id": "K114", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14187, "fields": {"roll_no": null, "student_id": "K113", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14188, "fields": {"roll_no": null, "student_id": "G194", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14189, "fields": {"roll_no": null, "student_id": "K112", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14190, "fields": {"roll_no": null, "student_id": "KH111", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14191, "fields": {"roll_no": null, "student_id": "K110", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14192, "fields": {"roll_no": null, "student_id": "K109", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14193, "fields": {"roll_no": null, "student_id": "K108", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14194, "fields": {"roll_no": null, "student_id": "G193", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14195, "fields": {"roll_no": null, "student_id": "K107", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14196, "fields": {"roll_no": null, "student_id": "K106", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14197, "fields": {"roll_no": null, "student_id": "K105", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14198, "fields": {"roll_no": null, "student_id": "K104", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14199, "fields": {"roll_no": null, "student_id": "K103", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14200, "fields": {"roll_no": null, "student_id": "K102", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14201, "fields": {"roll_no": null, "student_id": "KH101", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14202, "fields": {"roll_no": null, "student_id": "K100", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14203, "fields": {"roll_no": null, "student_id": "K99", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14204, "fields": {"roll_no": null, "student_id": "GH192", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14205, "fields": {"roll_no": null, "student_id": "G191", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14206, "fields": {"roll_no": null, "student_id": "G190", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14207, "fields": {"roll_no": null, "student_id": "K98", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14208, "fields": {"roll_no": null, "student_id": "G189", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14209, "fields": {"roll_no": null, "student_id": "K97", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14210, "fields": {"roll_no": null, "student_id": "G188", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14211, "fields": {"roll_no": null, "student_id": "KH96", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14212, "fields": {"roll_no": null, "student_id": "K95", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14213, "fields": {"roll_no": null, "student_id": "K94", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14214, "fields": {"roll_no": null, "student_id": "K93", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14215, "fields": {"roll_no": null, "student_id": "G187", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14216, "fields": {"roll_no": null, "student_id": "K92", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14217, "fields": {"roll_no": null, "student_id": "G186", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14218, "fields": {"roll_no": null, "student_id": "G185", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14219, "fields": {"roll_no": null, "student_id": "G184", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14220, "fields": {"roll_no": null, "student_id": "G183", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14221, "fields": {"roll_no": null, "student_id": "K91", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14222, "fields": {"roll_no": null, "student_id": "K90", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14223, "fields": {"roll_no": null, "student_id": "GH182", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14224, "fields": {"roll_no": null, "student_id": "KH89", "month": 9, "caterer_name": "Kanaka", "high_tea": true, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14225, "fields": {"roll_no": null, "student_id": "K88", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14226, "fields": {"roll_no": null, "student_id": "G181", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14227, "fields": {"roll_no": null, "student_id": "K87", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14228, "fields": {"roll_no": null, "student_id": "K86", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14229, "fields": {"roll_no": null, "student_id": "K85", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14230, "fields": {"roll_no": null, "student_id": "G180", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14231, "fields": {"roll_no": null, "student_id": "K84", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14232, "fields": {"roll_no": null, "student_id": "G179", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14233, "fields": {"roll_no": null, "student_id": "K83", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14234, "fields": {"roll_no": null, "student_id": "G178", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14235, "fields": {"roll_no": null, "student_id": "G177", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14236, "fields": {"roll_no": null, "student_id": "G176", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14237, "fields": {"roll_no": null, "student_id": "G175", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14238, "fields": {"roll_no": null, "student_id": "G174", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14239, "fields": {"roll_no": null, "student_id": "G173", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14240, "fields": {"roll_no": null, "student_id": "GH172", "month": 9, "caterer_name": "Gauri", "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14241, "fields": {"roll_no": null, "student_id": "G171", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14242, "fields": {"roll_no": null, "student_id": "K82", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14243, "fields": {"roll_no": null, "student_id": "K81", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14244, "fields": {"roll_no": null, "student_id": "K80", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14245, "fields": {"roll_no": null, "student_id": "G170", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14246, "fields": {"roll_no": null, "student_id": "G169", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14247, "fields": {"roll_no": null, "student_id": "G168", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14248, "fields": {"roll_no": null, "student_id": "K79", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14249, "fields": {"roll_no": null, "student_id": "G167", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14250, "fields": {"roll_no": null, "student_id": "K78", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Gauri", "third_pref": null}}, {"model": "home.allocationspring23", "pk": 14251, "fields": {"roll_no": null, "student_id": "G166", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14252, "fields": {"roll_no": null, "student_id": "K77", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14253, "fields": {"roll_no": null, "student_id": "K76", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14254, "fields": {"roll_no": null, "student_id": "K75", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14255, "fields": {"roll_no": null, "student_id": "K74", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14256, "fields": {"roll_no": null, "student_id": "K73", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14257, "fields": {"roll_no": null, "student_id": "K72", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14258, "fields": {"roll_no": null, "student_id": "K71", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14259, "fields": {"roll_no": null, "student_id": "K70", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14260, "fields": {"roll_no": null, "student_id": "K69", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14261, "fields": {"roll_no": null, "student_id": "K68", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14262, "fields": {"roll_no": null, "student_id": "K67", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14263, "fields": {"roll_no": null, "student_id": "K66", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14264, "fields": {"roll_no": null, "student_id": "K65", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14265, "fields": {"roll_no": null, "student_id": "K64", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14266, "fields": {"roll_no": null, "student_id": "K63", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14267, "fields": {"roll_no": null, "student_id": "K62", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14268, "fields": {"roll_no": null, "student_id": "K61", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14269, "fields": {"roll_no": null, "student_id": "K60", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14270, "fields": {"roll_no": null, "student_id": "K59", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14271, "fields": {"roll_no": null, "student_id": "K58", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14272, "fields": {"roll_no": null, "student_id": "K57", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14273, "fields": {"roll_no": null, "student_id": "K56", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14274, "fields": {"roll_no": null, "student_id": "K55", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14275, "fields": {"roll_no": null, "student_id": "K54", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14276, "fields": {"roll_no": null, "student_id": "K53", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14277, "fields": {"roll_no": null, "student_id": "K52", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14278, "fields": {"roll_no": null, "student_id": "K51", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14279, "fields": {"roll_no": null, "student_id": "K50", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14280, "fields": {"roll_no": null, "student_id": "K49", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14282, "fields": {"roll_no": null, "student_id": "K48", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14283, "fields": {"roll_no": null, "student_id": "K47", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14284, "fields": {"roll_no": null, "student_id": "K46", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14286, "fields": {"roll_no": null, "student_id": "K45", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14287, "fields": {"roll_no": null, "student_id": "K43", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14289, "fields": {"roll_no": null, "student_id": "K41", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14290, "fields": {"roll_no": null, "student_id": "K40", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14291, "fields": {"roll_no": null, "student_id": "K39", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14292, "fields": {"roll_no": null, "student_id": "K38", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14293, "fields": {"roll_no": null, "student_id": "K37", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14294, "fields": {"roll_no": null, "student_id": "K36", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14295, "fields": {"roll_no": null, "student_id": "K35", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14296, "fields": {"roll_no": null, "student_id": "K34", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14297, "fields": {"roll_no": null, "student_id": "K33", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14298, "fields": {"roll_no": null, "student_id": "K32", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14299, "fields": {"roll_no": null, "student_id": "K31", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14300, "fields": {"roll_no": null, "student_id": "K30", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14301, "fields": {"roll_no": null, "student_id": "K44", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14302, "fields": {"roll_no": null, "student_id": "K42", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14303, "fields": {"roll_no": null, "student_id": "K27", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14305, "fields": {"roll_no": null, "student_id": "K26", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14306, "fields": {"roll_no": null, "student_id": "K25", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14307, "fields": {"roll_no": null, "student_id": "K24", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14308, "fields": {"roll_no": null, "student_id": "K23", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14309, "fields": {"roll_no": null, "student_id": "K22", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14310, "fields": {"roll_no": null, "student_id": "K21", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14312, "fields": {"roll_no": null, "student_id": "K20", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14313, "fields": {"roll_no": null, "student_id": "K19", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14314, "fields": {"roll_no": null, "student_id": "K18", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14315, "fields": {"roll_no": null, "student_id": "K17", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14316, "fields": {"roll_no": null, "student_id": "K16", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14317, "fields": {"roll_no": null, "student_id": "K15", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14318, "fields": {"roll_no": null, "student_id": "K14", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14319, "fields": {"roll_no": null, "student_id": "K13", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14320, "fields": {"roll_no": null, "student_id": "K12", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14321, "fields": {"roll_no": null, "student_id": "K11", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14322, "fields": {"roll_no": null, "student_id": "K10", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14324, "fields": {"roll_no": null, "student_id": "K8", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14325, "fields": {"roll_no": null, "student_id": "K7", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14326, "fields": {"roll_no": null, "student_id": "K6", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14327, "fields": {"roll_no": null, "student_id": "K29", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14328, "fields": {"roll_no": null, "student_id": "K28", "month": 9, "caterer_name": "Kanaka", "high_tea": false, "first_pref": "Kanaka", "second_pref": "Kanaka", "third_pref": "Kanaka"}}, {"model": "home.allocationspring23", "pk": 14329, "fields": {"roll_no": null, "student_id": "G165", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14330, "fields": {"roll_no": null, "student_id": "G164", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14331, "fields": {"roll_no": null, "student_id": "G163", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14332, "fields": {"roll_no": null, "student_id": "G162", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14333, "fields": {"roll_no": null, "student_id": "G161", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14334, "fields": {"roll_no": null, "student_id": "G160", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14335, "fields": {"roll_no": null, "student_id": "G159", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14336, "fields": {"roll_no": null, "student_id": "G158", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14337, "fields": {"roll_no": null, "student_id": "G157", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14338, "fields": {"roll_no": null, "student_id": "G156", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14339, "fields": {"roll_no": null, "student_id": "G155", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14340, "fields": {"roll_no": null, "student_id": "G154", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14341, "fields": {"roll_no": null, "student_id": "G153", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14342, "fields": {"roll_no": null, "student_id": "G152", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14343, "fields": {"roll_no": null, "student_id": "G151", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14344, "fields": {"roll_no": null, "student_id": "G150", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14345, "fields": {"roll_no": null, "student_id": "G149", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14346, "fields": {"roll_no": null, "student_id": "G148", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14347, "fields": {"roll_no": null, "student_id": "G147", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14348, "fields": {"roll_no": null, "student_id": "G146", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14349, "fields": {"roll_no": null, "student_id": "G145", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14350, "fields": {"roll_no": null, "student_id": "G144", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14351, "fields": {"roll_no": null, "student_id": "G143", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14352, "fields": {"roll_no": null, "student_id": "G142", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14353, "fields": {"roll_no": null, "student_id": "G141", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14354, "fields": {"roll_no": null, "student_id": "G140", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14355, "fields": {"roll_no": null, "student_id": "G139", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14356, "fields": {"roll_no": null, "student_id": "G138", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14357, "fields": {"roll_no": null, "student_id": "G137", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14358, "fields": {"roll_no": null, "student_id": "G136", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14359, "fields": {"roll_no": null, "student_id": "G135", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14360, "fields": {"roll_no": null, "student_id": "G134", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14361, "fields": {"roll_no": null, "student_id": "G133", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14362, "fields": {"roll_no": null, "student_id": "G132", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14363, "fields": {"roll_no": null, "student_id": "G131", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14364, "fields": {"roll_no": null, "student_id": "G130", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14365, "fields": {"roll_no": null, "student_id": "G129", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14366, "fields": {"roll_no": null, "student_id": "G128", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14367, "fields": {"roll_no": null, "student_id": "G127", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14368, "fields": {"roll_no": null, "student_id": "G126", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14369, "fields": {"roll_no": null, "student_id": "G125", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14370, "fields": {"roll_no": null, "student_id": "G124", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14371, "fields": {"roll_no": null, "student_id": "G123", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14372, "fields": {"roll_no": null, "student_id": "G122", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14373, "fields": {"roll_no": null, "student_id": "G121", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14374, "fields": {"roll_no": null, "student_id": "G120", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14375, "fields": {"roll_no": null, "student_id": "G119", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14376, "fields": {"roll_no": null, "student_id": "G118", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14377, "fields": {"roll_no": null, "student_id": "G117", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14378, "fields": {"roll_no": null, "student_id": "G116", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14379, "fields": {"roll_no": null, "student_id": "G115", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14380, "fields": {"roll_no": null, "student_id": "G114", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14381, "fields": {"roll_no": null, "student_id": "G113", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14382, "fields": {"roll_no": null, "student_id": "G112", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14383, "fields": {"roll_no": null, "student_id": "G111", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14384, "fields": {"roll_no": null, "student_id": "G110", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14385, "fields": {"roll_no": null, "student_id": "G109", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.allocationspring23", "pk": 14386, "fields": {"roll_no": null, "student_id": "G108", "month": 9, "caterer_name": "Gauri", "high_tea": false, "first_pref": "Gauri", "second_pref": "Gauri", "third_pref": "Gauri"}}, {"model": "home.rebatespring23", "pk": 1, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 3, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 4, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 5, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 6, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 13, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 7, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 8, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 9, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 13, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 10, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 11, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 12, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 36, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 13, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 14, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 30, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 15, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 29, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 16, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 23, "period4_high_tea": false, "period4_bill": 1725, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 17, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 26, "period4_high_tea": false, "period4_bill": 1380, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 18, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 4, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4420, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 19, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 4, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3910}}, {"model": "home.rebatespring23", "pk": 20, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 21, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 22, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 23, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 24, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 23, "period4_high_tea": false, "period4_bill": 1725, "period5_short": 0, "period5_long": 22, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 25, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 26, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 27, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 28, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 29, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 31, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 30, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 31, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 32, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 33, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 36, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 34, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 30, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 35, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 36, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 37, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 38, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 39, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 40, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 41, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 32, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 42, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 43, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 33, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 44, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 36, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 45, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 31, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 46, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 47, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 30, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 48, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 49, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 50, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 51, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 52, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 53, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 35, "period5_high_tea": false, "period5_bill": 345, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 54, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 32, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 55, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 56, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 57, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 58, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 59, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 60, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 35, "period5_high_tea": false, "period5_bill": 345, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 61, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 62, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 63, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 21, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 64, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 65, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 66, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": true, "period5_bill": 130, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 67, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 68, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 69, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 35, "period5_high_tea": false, "period5_bill": 345, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 70, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 71, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 72, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 9, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 73, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 74, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 75, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 76, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 77, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 2, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 78, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 79, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 80, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 81, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 82, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 83, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 84, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1840, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 85, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 86, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 87, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 88, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 89, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 90, "fields": {"email": null, "period1_short": 6, "period1_long": 7, "period1_high_tea": true, "period1_bill": 1170, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 91, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 92, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 93, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 94, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 7, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4030, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 95, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 96, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 97, "fields": {"email": null, "period1_short": 7, "period1_long": 8, "period1_high_tea": true, "period1_bill": 910, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 98, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2080, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 99, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 100, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 102, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 106, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 32, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 110, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 11, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 112, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 121, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 129, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 131, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 9, "period5_high_tea": false, "period5_bill": 3335, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 132, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 133, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 134, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 135, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 137, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 141, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 33, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 146, "fields": {"email": null, "period1_short": 1, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 0, "period2_long": 9, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 147, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 148, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 150, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 151, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 153, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 26, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 157, "fields": {"email": null, "period1_short": 1, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 162, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 164, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3510, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 165, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 169, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 171, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 175, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 176, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 177, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 178, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 179, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 180, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 181, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 182, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 185, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 186, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 187, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 188, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 189, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 190, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 191, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 192, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 193, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 194, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 195, "fields": {"email": null, "period1_short": 4, "period1_long": 8, "period1_high_tea": false, "period1_bill": 1150, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 196, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 197, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 198, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 199, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 200, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 201, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 202, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 203, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 204, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 205, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 206, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 207, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 208, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 209, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 210, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 211, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 212, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 213, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 214, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 215, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 216, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 217, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 218, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 219, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 220, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 221, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 222, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 223, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 224, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 225, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 226, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 227, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 228, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 229, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 230, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 231, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 232, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 233, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 234, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 235, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 236, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 237, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 238, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 239, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 240, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2470, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 241, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 242, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 243, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 244, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 245, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 246, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 247, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 248, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 249, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2185, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 250, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 251, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 252, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 253, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 254, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 255, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 256, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 257, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 258, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 259, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 260, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 261, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 262, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 263, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 264, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 265, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 266, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 267, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 268, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": true, "period1_bill": 1690, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 269, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 270, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 271, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 272, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 273, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 274, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2470, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 275, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 276, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 277, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2080, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 278, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 279, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 280, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 281, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 282, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 283, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 284, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 285, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 286, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 287, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 288, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 289, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 290, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 291, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 292, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 293, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 294, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 295, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 296, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 297, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 298, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 299, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 300, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 301, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 4, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3120, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 302, "fields": {"email": null, "period1_short": 4, "period1_long": 8, "period1_high_tea": true, "period1_bill": 1300, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 303, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 304, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 305, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 306, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 3, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 307, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 308, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 309, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 310, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 311, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 312, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 313, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 314, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 315, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 316, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 317, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 318, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 319, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 320, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 321, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 322, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 323, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 324, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 325, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 326, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 5, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 327, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 328, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 329, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 4, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 2, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 330, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 331, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 332, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 333, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 334, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 335, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 336, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 337, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 338, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 339, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 340, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 341, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 342, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 343, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 344, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 345, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 346, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 347, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 348, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 349, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 350, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 351, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 352, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 353, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 354, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 355, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 356, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 357, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 358, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 359, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 360, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 361, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 362, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 363, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 364, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 365, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 366, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 367, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 368, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 369, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 370, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 371, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 372, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 373, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 374, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 375, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 376, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 377, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 378, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 379, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 380, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 381, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 382, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 383, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 384, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 385, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 386, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 387, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 388, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 389, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 390, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 391, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 392, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 393, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 394, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 395, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 396, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 397, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 398, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 399, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 400, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 401, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 402, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 403, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 404, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 405, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 406, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 407, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 408, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 409, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 410, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 411, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 412, "fields": {"email": null, "period1_short": 0, "period1_long": 15, "period1_high_tea": false, "period1_bill": 805, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 413, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 414, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": true, "period1_bill": 1300, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 415, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": false, "period1_bill": 1150, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 416, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 417, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 418, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 1, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3450, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 419, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 420, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 421, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 422, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 423, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 424, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 425, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 426, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 427, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 428, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 429, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 430, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 431, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 432, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 433, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 434, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 435, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 436, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 437, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 438, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 439, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 440, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 441, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 442, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 443, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 18, "period3_high_tea": false, "period3_bill": 1495, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 444, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 445, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 446, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 447, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 448, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 449, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 450, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 451, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 452, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 453, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 454, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 455, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 26, "period4_high_tea": false, "period4_bill": 1380, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 456, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 457, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 458, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 459, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 460, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 461, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 28, "period2_high_tea": false, "period2_bill": 0, "period3_short": 0, "period3_long": 31, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": 37, "period4_high_tea": false, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 462, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 463, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 12, "period3_high_tea": false, "period3_bill": 1380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 464, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 465, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 466, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 467, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 10, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 468, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 469, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 470, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 471, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 472, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 473, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 474, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 475, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 476, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 477, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 478, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 479, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 480, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 481, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 482, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 483, "fields": {"email": null, "period1_short": 1, "period1_long": 6, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 1, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 484, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 485, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 486, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 22, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 487, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 488, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 489, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 490, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 491, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 5, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 7, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4030, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 492, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 493, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 9, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 494, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 495, "fields": {"email": null, "period1_short": 0, "period1_long": 28, "period1_high_tea": false, "period1_bill": 230, "period2_short": 10, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 496, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2730, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 497, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 498, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 499, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 15, "period2_high_tea": false, "period2_bill": 1495, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 500, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 501, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 5, "period2_long": 7, "period2_high_tea": false, "period2_bill": 1840, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 15, "period4_high_tea": false, "period4_bill": 2645, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 502, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 503, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 504, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 505, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 506, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 507, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 508, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 509, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 510, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 511, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 512, "fields": {"email": null, "period1_short": 0, "period1_long": 15, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 15, "period4_high_tea": true, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 513, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 514, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 515, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 516, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 1, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3450, "period4_short": 0, "period4_long": 22, "period4_high_tea": false, "period4_bill": 1840, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 517, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 518, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 519, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 13, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 520, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 521, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 522, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 523, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 524, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 525, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 7, "period2_high_tea": false, "period2_bill": 1725, "period3_short": 0, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 526, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 527, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 528, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 529, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 530, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 531, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 532, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 533, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 534, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 535, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 536, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 537, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 538, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 539, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 540, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 541, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 542, "fields": {"email": null, "period1_short": 0, "period1_long": 10, "period1_high_tea": false, "period1_bill": 2300, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 543, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 544, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 545, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 546, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 547, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 548, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 22, "period4_high_tea": false, "period4_bill": 1840, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 549, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 550, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 551, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 552, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 553, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 554, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 555, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 9, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 556, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 557, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 558, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 559, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 7, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2730, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 560, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 561, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 8, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 562, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 563, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 564, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 565, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 566, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 567, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 568, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 569, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 570, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 571, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 572, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 573, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 574, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 575, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 576, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 577, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 578, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 579, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 580, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 581, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 582, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 583, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 11, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 584, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 585, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 586, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 587, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 588, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 589, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 590, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 591, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 592, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 593, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 594, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 595, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 596, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 597, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 598, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 599, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 600, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 601, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 602, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 603, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 604, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 605, "fields": {"email": null, "period1_short": 5, "period1_long": 2, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 606, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 607, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 608, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 609, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 610, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 611, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 612, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 613, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 614, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 615, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 616, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 617, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 618, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 619, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 620, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 621, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 622, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 623, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 624, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 625, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 626, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 627, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 628, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 629, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 630, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 631, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 632, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 633, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 634, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 8, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 635, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 636, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 637, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 638, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 639, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 640, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 641, "fields": {"email": null, "period1_short": 7, "period1_long": 15, "period1_high_tea": true, "period1_bill": 1040, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 642, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 643, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 644, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 645, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 646, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 647, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 15, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 648, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 649, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 650, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 651, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 652, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 653, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 654, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 655, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 656, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 657, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 658, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 659, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 660, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 661, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 662, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 663, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 664, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 665, "fields": {"email": null, "period1_short": 0, "period1_long": 10, "period1_high_tea": false, "period1_bill": 2300, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 666, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 667, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 668, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 669, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 670, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3120, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 671, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 672, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 673, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 674, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 675, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 676, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 677, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 3, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3250, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 10, "period4_high_tea": true, "period4_bill": 3640, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 678, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 679, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 680, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 681, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 682, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 683, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 684, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 685, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 686, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 687, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 688, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 689, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 690, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 691, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 692, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 693, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 694, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 695, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 696, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 697, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 698, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 699, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 700, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 701, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 702, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 703, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 704, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 705, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 706, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 707, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 708, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4255, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 709, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 710, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 711, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 712, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 713, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 714, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 715, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 4, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 716, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 717, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 718, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 719, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 720, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 3, "period6_long": 0, "period6_high_tea": false, "period6_bill": -1035}}, {"model": "home.rebatespring23", "pk": 721, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 722, "fields": {"email": null, "period1_short": 5, "period1_long": 8, "period1_high_tea": false, "period1_bill": 1955, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 723, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 724, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 725, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 726, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 727, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 728, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 729, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 730, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 731, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 732, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 733, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 734, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 735, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 736, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 737, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 738, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 739, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 740, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 741, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 742, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 743, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 744, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 745, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 746, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 747, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 748, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 749, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 750, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3250, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 751, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 752, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 753, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 754, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 755, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 756, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 757, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 758, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 759, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 760, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 761, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 762, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 763, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 764, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 765, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 766, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 1, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 767, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 768, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 769, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 770, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 771, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 772, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 773, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 774, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 775, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 776, "fields": {"email": null, "period1_short": 6, "period1_long": 7, "period1_high_tea": false, "period1_bill": 1955, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 777, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 778, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 779, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 780, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 781, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 782, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 783, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 784, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 785, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 786, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 787, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 788, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 789, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 790, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 791, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 792, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 793, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 794, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 795, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 796, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 797, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 798, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 799, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 800, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 801, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 802, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 803, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 804, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 805, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 806, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 807, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 808, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 809, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4810, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 810, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 811, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4810, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 812, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 813, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 814, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 815, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 816, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 817, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 818, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 819, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 18, "period3_high_tea": false, "period3_bill": 1495, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 820, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 821, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 822, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 823, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 824, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 825, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 826, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 827, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 828, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 829, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 830, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 831, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 832, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 833, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 834, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 835, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 836, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 837, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 838, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 839, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 840, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 841, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 842, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 843, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 844, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 7, "period2_high_tea": false, "period2_bill": 1840, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 5, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 845, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 9, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 846, "fields": {"email": null, "period1_short": 0, "period1_long": 11, "period1_high_tea": false, "period1_bill": 2185, "period2_short": 0, "period2_long": 12, "period2_high_tea": false, "period2_bill": 1840, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 847, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 848, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 849, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 8, "period5_long": 0, "period5_high_tea": true, "period5_bill": 3900, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 850, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 851, "fields": {"email": null, "period1_short": 7, "period1_long": 1, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 4, "period2_high_tea": true, "period2_bill": 3120, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 14, "period4_high_tea": true, "period4_bill": 3120, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 852, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 853, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 15, "period4_high_tea": false, "period4_bill": 2645, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 854, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 855, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 856, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 857, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 858, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 10, "period2_high_tea": false, "period2_bill": 1725, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 859, "fields": {"email": null, "period1_short": 2, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 4, "period3_long": 16, "period3_high_tea": false, "period3_bill": 1265, "period4_short": 0, "period4_long": 16, "period4_high_tea": false, "period4_bill": 2530, "period5_short": 0, "period5_long": 12, "period5_high_tea": true, "period5_bill": 0, "period6_short": 2, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4140}}, {"model": "home.rebatespring23", "pk": 860, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 861, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 862, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 14, "period2_high_tea": false, "period2_bill": 1610, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 863, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 864, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 12, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 865, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 866, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 13, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 867, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 868, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 869, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 5, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 870, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 871, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 872, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 873, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 28, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 874, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 875, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 876, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 877, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 878, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 879, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 10, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 20, "period4_high_tea": false, "period4_bill": 2070, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 4, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3908}}, {"model": "home.rebatespring23", "pk": 880, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 881, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 882, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 883, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 1, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4255, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 884, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 885, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 886, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 887, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 888, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 10, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 889, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 890, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 891, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 9, "period5_high_tea": false, "period5_bill": 3335, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 892, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 893, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 894, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 895, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 896, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3380, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 8, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 897, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 898, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 899, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 11, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 900, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 901, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 902, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 903, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 904, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 21, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 905, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 906, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 907, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 908, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 11, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 909, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 910, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 911, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 912, "fields": {"email": null, "period1_short": 0, "period1_long": 11, "period1_high_tea": false, "period1_bill": 2185, "period2_short": 0, "period2_long": 10, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 11, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 913, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 914, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 10, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 915, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 916, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 11, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 917, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 11, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 918, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 21, "period4_high_tea": false, "period4_bill": 1955, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 919, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 920, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 6, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3680}}, {"model": "home.rebatespring23", "pk": 921, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 4, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3120, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 922, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 923, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 924, "fields": {"email": null, "period1_short": 0, "period1_long": 20, "period1_high_tea": false, "period1_bill": 1150, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 925, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 926, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 927, "fields": {"email": null, "period1_short": 0, "period1_long": 17, "period1_high_tea": false, "period1_bill": 1495, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 928, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 929, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 930, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 931, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 932, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 933, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 934, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 935, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 936, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 937, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 10, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 16, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 938, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 1, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3450, "period4_short": 0, "period4_long": 26, "period4_high_tea": false, "period4_bill": 1380, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 939, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 940, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 941, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 942, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 943, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 944, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 945, "fields": {"email": null, "period1_short": 6, "period1_long": 7, "period1_high_tea": false, "period1_bill": 1955, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 946, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 947, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 948, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 949, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 950, "fields": {"email": null, "period1_short": 5, "period1_long": 4, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 3, "period2_long": 5, "period2_high_tea": true, "period2_bill": 2600, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 951, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 952, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 953, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 954, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 955, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 7, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4030, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 956, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 957, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 958, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 959, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 960, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 961, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 962, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 963, "fields": {"email": null, "period1_short": 4, "period1_long": 3, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 964, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 965, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 11, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 966, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 967, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 968, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 969, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 15, "period2_high_tea": true, "period2_bill": 1690, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 970, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 15, "period4_high_tea": false, "period4_bill": 2645, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 971, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 972, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 973, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 36, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 974, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 975, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 976, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 977, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 978, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 979, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 980, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 981, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 982, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 10, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 983, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 984, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 985, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 986, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 11, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 987, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 988, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 989, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3640, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 990, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 991, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 16, "period2_high_tea": false, "period2_bill": 1380, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 992, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 993, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 5, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 994, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 25, "period4_high_tea": false, "period4_bill": 1495, "period5_short": 0, "period5_long": 25, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 995, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 996, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 997, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 3, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3250, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 998, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 999, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1000, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1001, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1002, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1003, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 7, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4030}}, {"model": "home.rebatespring23", "pk": 1004, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1005, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1006, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 4, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3910}}, {"model": "home.rebatespring23", "pk": 1007, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1008, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 21, "period2_high_tea": false, "period2_bill": 805, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1009, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1010, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1011, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1012, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1013, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1014, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1015, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1016, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1017, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 3, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1018, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1019, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1020, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1021, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 9, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1022, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1023, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1024, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1025, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1026, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 9, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1027, "fields": {"email": null, "period1_short": 2, "period1_long": 3, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1028, "fields": {"email": null, "period1_short": 2, "period1_long": 6, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1029, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1030, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1031, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1032, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 17, "period2_high_tea": false, "period2_bill": 1265, "period3_short": 14, "period3_long": 0, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 7, "period4_long": 20, "period4_high_tea": false, "period4_bill": 1265, "period5_short": 0, "period5_long": 10, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1033, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 11, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1034, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1035, "fields": {"email": null, "period1_short": 1, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 0, "period2_long": 14, "period2_high_tea": false, "period2_bill": 1610, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1036, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1037, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1038, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1039, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1040, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1041, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1042, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 13, "period5_high_tea": true, "period5_bill": 3250, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1043, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 16, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1044, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1045, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1046, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 8, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 6, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 6, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3680}}, {"model": "home.rebatespring23", "pk": 1047, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4030, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1048, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 5, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1049, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 11, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1050, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1051, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1052, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1053, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1054, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1055, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1056, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1057, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1058, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 13, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1059, "fields": {"email": null, "period1_short": 2, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1060, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1061, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 2, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 0, "period4_long": 40, "period4_high_tea": true, "period4_bill": -260, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1062, "fields": {"email": null, "period1_short": 0, "period1_long": 18, "period1_high_tea": false, "period1_bill": 1380, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1063, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1064, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 8, "period6_high_tea": false, "period6_bill": 3450}}, {"model": "home.rebatespring23", "pk": 1065, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 14, "period2_high_tea": false, "period2_bill": 1610, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1066, "fields": {"email": null, "period1_short": 2, "period1_long": 1, "period1_high_tea": true, "period1_bill": 3510, "period2_short": 6, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2860, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 8, "period5_long": 0, "period5_high_tea": true, "period5_bill": 3900, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1067, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 10, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1068, "fields": {"email": null, "period1_short": 6, "period1_long": 2, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 19, "period2_high_tea": false, "period2_bill": 1035, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 3, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4025}}, {"model": "home.rebatespring23", "pk": 1069, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1070, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1071, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1072, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1073, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1074, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1075, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1076, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1077, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 13, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1078, "fields": {"email": null, "period1_short": 0, "period1_long": 13, "period1_high_tea": false, "period1_bill": 1955, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 3, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1079, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1080, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1081, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 10, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1082, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1083, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 10, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1084, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1085, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1086, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 21, "period2_high_tea": false, "period2_bill": 805, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1087, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 2, "period2_long": 9, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 36, "period4_high_tea": false, "period4_bill": 230, "period5_short": 0, "period5_long": 7, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 2, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4140}}, {"model": "home.rebatespring23", "pk": 1088, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1089, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1090, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1091, "fields": {"email": null, "period1_short": 3, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 8, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 17, "period4_high_tea": false, "period4_bill": 2415, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1092, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1093, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1094, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1095, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1096, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1097, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1098, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1099, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1102, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 15, "period4_high_tea": false, "period4_bill": 2645, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1112, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1114, "fields": {"email": null, "period1_short": 2, "period1_long": 7, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 4, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3120, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1117, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1118, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1119, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1121, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1122, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1123, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1126, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1129, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1132, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1134, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1135, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1137, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1140, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1141, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1147, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1148, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1150, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1151, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1152, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1153, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1157, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1162, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1164, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1165, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1169, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1171, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1175, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 2, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1176, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1177, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1178, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1179, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1180, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1181, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1182, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1185, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3250, "period2_short": 8, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2600, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 17, "period4_high_tea": true, "period4_bill": 2730, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1186, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1187, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1188, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 16, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1189, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1190, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2730, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1191, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 9, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1192, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1193, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1194, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3120, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1195, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1196, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1197, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1198, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1199, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1200, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1201, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1202, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1203, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1204, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1205, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1206, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1207, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1208, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1209, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1210, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1211, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 10, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1212, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1213, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1214, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1215, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1216, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1217, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1218, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1219, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1220, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1221, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1222, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1223, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1224, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1225, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1226, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1227, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1228, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1229, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1230, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1231, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1232, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1233, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1234, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1235, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1236, "fields": {"email": null, "period1_short": 3, "period1_long": 4, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 3, "period2_long": 6, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 6, "period3_long": 11, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1237, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1238, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1239, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1240, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1241, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1242, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1243, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1244, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1245, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1246, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1247, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1248, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1249, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1250, "fields": {"email": null, "period1_short": 6, "period1_long": 2, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1251, "fields": {"email": null, "period1_short": 6, "period1_long": 2, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1252, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1253, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1254, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1255, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1256, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1257, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1258, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1259, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1260, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 4, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1261, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1262, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1263, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1264, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1265, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1266, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1267, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1268, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1269, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1270, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1271, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1272, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1273, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1274, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1275, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1276, "fields": {"email": null, "period1_short": 5, "period1_long": 8, "period1_high_tea": false, "period1_bill": 1955, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1277, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1278, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1279, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1280, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1281, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1282, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 8, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1283, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1284, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1285, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1286, "fields": {"email": null, "period1_short": 4, "period1_long": 7, "period1_high_tea": true, "period1_bill": 2470, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1287, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1288, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1289, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1290, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1291, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1292, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1293, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1294, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 31, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1295, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1296, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1297, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1298, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1299, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1300, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1301, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1302, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1303, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1304, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1305, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1306, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1307, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1308, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1309, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1310, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1311, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1312, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1313, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1314, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1315, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1316, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1317, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1318, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1319, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 1, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4810, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1320, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1321, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1322, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1323, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1324, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1325, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1326, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1327, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1328, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1329, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1330, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1331, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1332, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1333, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1334, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1335, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1336, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1337, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1338, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1339, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1340, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1341, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1342, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1343, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1344, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1345, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1346, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1347, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1348, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1349, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1350, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1351, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1352, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1353, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1354, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1355, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1356, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1357, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1358, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1359, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1360, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1361, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1362, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1363, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1364, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 7, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2730, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1365, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 7, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4030, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1366, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 6, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1367, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1368, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1369, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1370, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1371, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1372, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1373, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1374, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1375, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1376, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1377, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1378, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1379, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1380, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1381, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1382, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1383, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1384, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1385, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1386, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1387, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1388, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1389, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1390, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1391, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1392, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1393, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1394, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1395, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1396, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1397, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1398, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1399, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1400, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1401, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1402, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1403, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1404, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1405, "fields": {"email": null, "period1_short": 0, "period1_long": 10, "period1_high_tea": true, "period1_bill": 2600, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1406, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1407, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1408, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1409, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1410, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1411, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1412, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1413, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1414, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1415, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1416, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1417, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1418, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1419, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1420, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1421, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1422, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1423, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1424, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1425, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1426, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1427, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1428, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1429, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1430, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1431, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1432, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1433, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 4, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1434, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1435, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4160, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1436, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1437, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1438, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1439, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1440, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1441, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1442, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1443, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1444, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1445, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1446, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1447, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1448, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 4, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3120, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 1449, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1450, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1451, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1452, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1453, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1454, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1455, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1456, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1457, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1458, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1459, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1460, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1461, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1462, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1463, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1464, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1465, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 10, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1466, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1467, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1468, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 2, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1469, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1470, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1471, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1472, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1473, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1474, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1475, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1476, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1477, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1478, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1479, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1480, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1481, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1482, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1483, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1484, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1485, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1486, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1487, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1488, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1489, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1490, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1491, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1492, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1493, "fields": {"email": null, "period1_short": 4, "period1_long": 7, "period1_high_tea": false, "period1_bill": 2185, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1494, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1495, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1496, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1497, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1498, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1499, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1500, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1501, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1502, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1503, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1504, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1505, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1506, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1507, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1508, "fields": {"email": null, "period1_short": 4, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1509, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1510, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1511, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1512, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1513, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1514, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1515, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1516, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1517, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1518, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1519, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1520, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1521, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1522, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1523, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1524, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1525, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1526, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1527, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1528, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1529, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1530, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1531, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 1532, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1533, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1534, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1535, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1536, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1537, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1538, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1539, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1540, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1541, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1542, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1543, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1544, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1545, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1546, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1547, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1548, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1549, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1550, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1551, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1552, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1553, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1554, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1555, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1556, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1557, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1558, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1559, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1560, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1561, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1562, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1563, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1564, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1565, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1566, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1567, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1568, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1569, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1570, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1571, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1572, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1573, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1574, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1575, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1576, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1577, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1578, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1579, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1580, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1581, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1582, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1583, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1584, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1585, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1586, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1587, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1588, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 3, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1589, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 2, "period2_long": 6, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1590, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 3, "period2_long": 5, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 9, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3335, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1591, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1592, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1593, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1594, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1595, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1596, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1597, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1598, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 25, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1599, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1600, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1601, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 4, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3910}}, {"model": "home.rebatespring23", "pk": 1602, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1603, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 29, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1604, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1605, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1606, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1607, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1608, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1609, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1610, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1611, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1612, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1613, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 1, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3450, "period4_short": 0, "period4_long": 30, "period4_high_tea": false, "period4_bill": 920, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1614, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1615, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1616, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1617, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1618, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1619, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1620, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1621, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1622, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 14, "period5_high_tea": true, "period5_bill": 3120, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1623, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1624, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1625, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 15, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1626, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1627, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1628, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1629, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1630, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 24, "period5_high_tea": true, "period5_bill": 1820, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1631, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 18, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1632, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 1633, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 21, "period4_high_tea": false, "period4_bill": 1955, "period5_short": 0, "period5_long": 21, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1634, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1635, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1636, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1637, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 33, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1638, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1639, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1640, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1641, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 37, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1642, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1643, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1644, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 35, "period5_high_tea": false, "period5_bill": 345, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1645, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 26, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1646, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1647, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 38, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1648, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 36, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1649, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1650, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 26, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1651, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 11, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 36, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1652, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1653, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1654, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1655, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1656, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1657, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1658, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1659, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1660, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1661, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3120, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1662, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1663, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1664, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1665, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1666, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1667, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1668, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1669, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1670, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1671, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1672, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1673, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1674, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1675, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1676, "fields": {"email": null, "period1_short": 5, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2300, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1677, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 5, "period2_long": 4, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 0, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1678, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1679, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1680, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1681, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1682, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1683, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1684, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1685, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1686, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 1, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4810, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1687, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1688, "fields": {"email": null, "period1_short": 2, "period1_long": 7, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 3, "period2_long": 4, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 6, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1689, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1690, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1691, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1692, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1693, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1694, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1695, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1696, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1697, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1698, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1699, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4810, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1700, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1701, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1702, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1703, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1704, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1705, "fields": {"email": null, "period1_short": 0, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1706, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 6, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4160, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1707, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1708, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1709, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1710, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1711, "fields": {"email": null, "period1_short": 5, "period1_long": 8, "period1_high_tea": false, "period1_bill": 1955, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1712, "fields": {"email": null, "period1_short": 3, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1713, "fields": {"email": null, "period1_short": 3, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2185, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 5, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1714, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1715, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 3, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1716, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1717, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1718, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1719, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1720, "fields": {"email": null, "period1_short": 0, "period1_long": 7, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1721, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1722, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 1, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 1, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4810, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1723, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1724, "fields": {"email": null, "period1_short": 0, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1725, "fields": {"email": null, "period1_short": 0, "period1_long": 7, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1726, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1727, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1728, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1729, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1730, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1731, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1732, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1733, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1734, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1735, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1736, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1737, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1738, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 15, "period4_high_tea": false, "period4_bill": 2645, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1739, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1740, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1741, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1742, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1743, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1744, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1745, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1746, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1747, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1748, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1749, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1750, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1751, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1752, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1753, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1754, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1755, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1756, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1757, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1758, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1759, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1760, "fields": {"email": null, "period1_short": 6, "period1_long": 12, "period1_high_tea": false, "period1_bill": 1380, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1761, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1762, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1763, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1764, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1765, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1766, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1767, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1768, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1769, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1770, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1771, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1772, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1773, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1774, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1775, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1776, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1777, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1778, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1779, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1780, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1781, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1782, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1783, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1784, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1785, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1786, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1787, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1788, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1789, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1790, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1791, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1792, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1793, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1794, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1795, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1796, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1797, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1798, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1799, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1800, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1801, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1802, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1803, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1804, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1805, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1806, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1807, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1808, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1809, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1810, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1811, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1812, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1813, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1814, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1815, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1816, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1817, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1818, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1819, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1820, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1821, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1822, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1823, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3250, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1824, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1825, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1826, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1827, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1828, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1829, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1830, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1831, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1832, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1833, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1834, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 6, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3680}}, {"model": "home.rebatespring23", "pk": 1835, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1836, "fields": {"email": null, "period1_short": 0, "period1_long": 8, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1837, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1838, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1839, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1840, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1841, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 3, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3250, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1842, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1843, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1844, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1845, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1846, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1847, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1848, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1849, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1850, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1851, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1852, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1853, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1854, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1855, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 11, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1856, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1857, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 18, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1858, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1859, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 1, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 0, "period5_long": 29, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1860, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1861, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1862, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1863, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1864, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1865, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1866, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1867, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1868, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1869, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1870, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1871, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1872, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1873, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 1874, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1875, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1876, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 17, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1877, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 4, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1878, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1879, "fields": {"email": null, "period1_short": 0, "period1_long": 9, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1880, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1881, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1882, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 9, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1883, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 2, "period2_long": 5, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 18, "period4_high_tea": false, "period4_bill": 2300, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1884, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1885, "fields": {"email": null, "period1_short": 2, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1886, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 8, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2300, "period3_short": 3, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 30, "period4_high_tea": false, "period4_bill": 920, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1887, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1888, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1889, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1890, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1891, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1892, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 23, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1893, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1894, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1895, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1896, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3380, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1897, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1898, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1899, "fields": {"email": null, "period1_short": 1, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1900, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1901, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1902, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1903, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1904, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 13, "period2_high_tea": false, "period2_bill": 1725, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1905, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1906, "fields": {"email": null, "period1_short": 9, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 9, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 9, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1907, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1908, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1909, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 3, "period2_long": 20, "period2_high_tea": false, "period2_bill": 575, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1910, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1911, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1912, "fields": {"email": null, "period1_short": 6, "period1_long": 3, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 6, "period2_long": 3, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 10, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 8, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3450}}, {"model": "home.rebatespring23", "pk": 1913, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1914, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 5, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4290, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1915, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 8, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3450}}, {"model": "home.rebatespring23", "pk": 1916, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1917, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 13, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1918, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1919, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1920, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1921, "fields": {"email": null, "period1_short": 1, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1922, "fields": {"email": null, "period1_short": 2, "period1_long": 4, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 2, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1923, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1924, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 9, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1925, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1926, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1927, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1928, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1929, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1930, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 12, "period2_high_tea": false, "period2_bill": 1840, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1931, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1932, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1933, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1934, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1935, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3120, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1936, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1937, "fields": {"email": null, "period1_short": 3, "period1_long": 11, "period1_high_tea": false, "period1_bill": 1840, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1938, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 13, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1939, "fields": {"email": null, "period1_short": 2, "period1_long": 5, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1940, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 0, "period2_long": 16, "period2_high_tea": false, "period2_bill": 1380, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 9, "period5_high_tea": false, "period5_bill": 3335, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1941, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 17, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1942, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 4, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 17, "period4_high_tea": false, "period4_bill": 2415, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1943, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 2, "period2_long": 8, "period2_high_tea": false, "period2_bill": 2070, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1944, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 5, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3795, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1945, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1946, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3380, "period2_short": 7, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2730, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1947, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1948, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 1, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 13, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1949, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1950, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 19, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1951, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1952, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4940, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 1953, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1954, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 2, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4140, "period5_short": 4, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4420, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1955, "fields": {"email": null, "period1_short": 0, "period1_long": 12, "period1_high_tea": false, "period1_bill": 2070, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1956, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 12, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1957, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 19, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1958, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1959, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 19, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1960, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1961, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 4, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 12, "period5_high_tea": true, "period5_bill": 3380, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1962, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 24, "period2_high_tea": false, "period2_bill": 460, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 6, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3680, "period6_short": 3, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4025}}, {"model": "home.rebatespring23", "pk": 1963, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1964, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 3, "period2_long": 4, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 8, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3450}}, {"model": "home.rebatespring23", "pk": 1965, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1966, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1967, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 6, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 11, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 8, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1968, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1969, "fields": {"email": null, "period1_short": 0, "period1_long": 20, "period1_high_tea": false, "period1_bill": 1150, "period2_short": 0, "period2_long": 6, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 1, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4255, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1970, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1971, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 9, "period5_high_tea": false, "period5_bill": 3335, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1972, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1973, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 13, "period2_high_tea": false, "period2_bill": 1725, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1974, "fields": {"email": null, "period1_short": 0, "period1_long": 15, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 28, "period2_high_tea": false, "period2_bill": 0, "period3_short": 0, "period3_long": 16, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 27, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1975, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1976, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 21, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1977, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 10, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1978, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1979, "fields": {"email": null, "period1_short": 0, "period1_long": 20, "period1_high_tea": false, "period1_bill": 1150, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 22, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1980, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1981, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1982, "fields": {"email": null, "period1_short": 0, "period1_long": 17, "period1_high_tea": false, "period1_bill": 1495, "period2_short": 0, "period2_long": 25, "period2_high_tea": false, "period2_bill": 345, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1983, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 20, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1984, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1985, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 15, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1986, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 28, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1987, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1988, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 11, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1989, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1990, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1991, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1992, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 6, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4160, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1993, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1994, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 1995, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 3, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4025}}, {"model": "home.rebatespring23", "pk": 1996, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 18, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1997, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 5, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 1, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3450, "period4_short": 0, "period4_long": 19, "period4_high_tea": false, "period4_bill": 2185, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 7, "period6_long": 0, "period6_high_tea": false, "period6_bill": 3565}}, {"model": "home.rebatespring23", "pk": 1998, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 1999, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2000, "fields": {"email": null, "period1_short": 4, "period1_long": 4, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 2, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 2, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 4, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4140, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2001, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2875, "period2_short": 7, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2002, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 14, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2003, "fields": {"email": null, "period1_short": 6, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2760, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2004, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2005, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2006, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 2007, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2008, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4025, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2009, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2010, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2011, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2012, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2013, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3380, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 7, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 3, "period5_long": 0, "period5_high_tea": true, "period5_bill": 4550, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 2014, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2015, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2016, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2017, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2018, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2019, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 3, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2020, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2645, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 16, "period4_high_tea": false, "period4_bill": 2530, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2021, "fields": {"email": null, "period1_short": 4, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 1, "period4_long": 21, "period4_high_tea": false, "period4_bill": 1840, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2022, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2023, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2024, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2025, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2026, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2027, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2028, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2029, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 3, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2030, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2031, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2032, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2033, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2034, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2035, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2036, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2037, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2038, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2039, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2040, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2041, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2042, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2043, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2044, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2045, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2046, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2047, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2048, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2049, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2050, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2051, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2052, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2053, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2054, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2055, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2056, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2057, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2058, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2059, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 5, "period3_high_tea": true, "period3_bill": 2730, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2060, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2061, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2062, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2063, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2064, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2065, "fields": {"email": null, "period1_short": 5, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2066, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2067, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2068, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 2069, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2070, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2071, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2072, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2073, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2074, "fields": {"email": null, "period1_short": 7, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1950, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2075, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2076, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2077, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2078, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2079, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1610, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2080, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2081, "fields": {"email": null, "period1_short": 3, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2470, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 0, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2082, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4940, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2083, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4550, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2084, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2085, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4370, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 2086, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 1, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2087, "fields": {"email": null, "period1_short": 8, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1820, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 4025, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2088, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2089, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2090, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2091, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2092, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2093, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2094, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2095, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2096, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2097, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2098, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2099, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 4, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3910, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 19, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 8, "period6_long": 0, "period6_high_tea": true, "period6_bill": 3900}}, {"model": "home.rebatespring23", "pk": 2117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 9, "period5_high_tea": false, "period5_bill": 3335, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 8, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3450, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 18, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 7, "period5_long": 0, "period5_high_tea": false, "period5_bill": 3565, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2157, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebatespring23", "pk": 2160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2162, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2164, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2165, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2169, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2171, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 4940}}, {"model": "home.rebatespring23", "pk": 2174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2181, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2182, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.rebatespring23", "pk": 2185, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": false, "period5_bill": 4370, "period6_short": 0, "period6_long": 0, "period6_high_tea": false, "period6_bill": 4370}}, {"model": "home.catererbillsspring23", "pk": 1, "fields": {"caterer": 3, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 8515}}, {"model": "home.catererbillsspring23", "pk": 2, "fields": {"caterer": 6, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 460, "period6_bills": 0}}, {"model": "home.catererbillsspring23", "pk": 3, "fields": {"caterer": 4, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 2185, "period6_bills": 7925}}, {"model": "home.semester", "pk": 1, "fields": {"name": "Autumn 2023"}}, {"model": "home.period", "pk": 1, "fields": {"semester": 1, "Sno": 1, "start_date": "2023-07-24", "end_date": "2023-08-31"}}, {"model": "home.period", "pk": 2, "fields": {"semester": 1, "Sno": 3, "start_date": "2023-09-01", "end_date": "2023-09-28"}}, {"model": "home.allocation", "pk": 3, "fields": {"email": null, "student_id": "KH299", "period": 1, "caterer": 4, "high_tea": true, "first_pref": "Gauri", "second_pref": "Kanaka", "third_pref": null}}, {"model": "home.rebate", "pk": 1, "fields": {"email": null, "allocation_id": 3, "start_date": "2023-07-29", "end_date": "2023-07-31", "approved": true, "date_applied": "2023-07-27"}}, {"model": "home.longrebate", "pk": 11, "fields": {"email": null, "start_date": "2023-05-10", "end_date": "2023-05-28", "days": 19, "approved": true, "date_applied": "2023-06-09", "file": "media/documents/Rahul_Chaudhari_CL_June_2023_page-0001_qhnbes"}}, {"model": "home.longrebate", "pk": 12, "fields": {"email": null, "start_date": "2023-06-15", "end_date": "2023-06-23", "days": 9, "approved": true, "date_applied": "2023-06-12", "file": "media/documents/Mess_Rebate_form_ijwxln"}}, {"model": "home.longrebate", "pk": 14, "fields": {"email": null, "start_date": "2023-07-27", "end_date": "2023-08-19", "days": 24, "approved": false, "date_applied": "2023-07-25", "file": "media/documents/medical_certificate_nxvavs"}}, {"model": "home.longrebate", "pk": 15, "fields": {"email": null, "start_date": "2023-08-01", "end_date": "2023-08-10", "days": 10, "approved": false, "date_applied": "2023-08-03", "file": "media/documents/WhatsApp_Image_2023-08-03_at_14.35.29_hqnwqs"}}, {"model": "home.longrebate", "pk": 16, "fields": {"email": null, "start_date": "2023-08-20", "end_date": "2023-09-02", "days": 14, "approved": false, "date_applied": "2023-08-18", "file": "media/documents/Subhasmita_Mahapatra_CL_Aug_2023-1_mezhnb"}}, {"model": "home.leftlongrebate", "pk": 21, "fields": {"email": "mtphd1806103001@iiti.ac.in", "start_date": "2023-06-15", "end_date": "2023-06-23"}}, {"model": "home.leftshortrebate", "pk": 3, "fields": {"email": "phd2001241005@iiti.ac.in", "start_date": "2023-07-24", "end_date": "2023-07-25", "date_applied": "2023-07-16"}}, {"model": "home.leftshortrebate", "pk": 4, "fields": {"email": "mtphd2006103001@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-03", "date_applied": "2023-08-24"}}, {"model": "home.leftshortrebate", "pk": 5, "fields": {"email": "phd2201101015@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-01", "date_applied": "2023-08-25"}}, {"model": "home.leftshortrebate", "pk": 6, "fields": {"email": "mems200005006@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-03", "date_applied": "2023-08-26"}}, {"model": "home.leftshortrebate", "pk": 7, "fields": {"email": "phd2201161007@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-01", "date_applied": "2023-08-27"}}, {"model": "home.leftshortrebate", "pk": 8, "fields": {"email": "phd2201161007@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-04", "date_applied": "2023-08-27"}}, {"model": "home.leftshortrebate", "pk": 9, "fields": {"email": "phd2001241002@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-07", "date_applied": "2023-08-28"}}, {"model": "home.leftshortrebate", "pk": 10, "fields": {"email": "mems200005030@iiti.ac.in", "start_date": "2023-09-01", "end_date": "2023-09-06", "date_applied": "2023-08-29"}}, {"model": "home.allocationform", "pk": 1, "fields": {"heading": "dfdfas", "description": "dsaf", "period": 2, "active": true, "start_time": "2023-08-31T17:32:32Z", "end_time": "2023-09-01T07:27:50Z"}}, {"model": "home.periodautumn22", "pk": 2, "fields": {"Sno": 2, "start_date": "2022-09-01", "end_date": "2023-09-30"}}, {"model": "home.periodautumn22", "pk": 3, "fields": {"Sno": 3, "start_date": "2023-10-01", "end_date": "2022-10-31"}}, {"model": "home.periodautumn22", "pk": 4, "fields": {"Sno": 4, "start_date": "2022-11-01", "end_date": "2022-12-04"}}, {"model": "home.periodautumn22", "pk": 5, "fields": {"Sno": 5, "start_date": "2022-12-05", "end_date": "2023-01-01"}}, {"model": "home.periodautumn22", "pk": 6, "fields": {"Sno": 1, "start_date": "2022-07-25", "end_date": "2022-08-31"}}, {"model": "home.rebateautumn22", "pk": 1, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 3, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 4, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2470, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 5, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 6, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 7, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 8, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 9, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 10, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 11, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 12, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 13, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 14, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 15, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 16, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 17, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 18, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 19, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 20, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 21, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 22, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 23, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 24, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 25, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 26, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 27, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 28, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 29, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 30, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 31, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 32, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 33, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 34, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 35, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 36, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 37, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": 7, "period3_long": 7, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 38, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 39, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 40, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 41, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 42, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 43, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 44, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 45, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 46, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 47, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 48, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 49, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 50, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 51, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 52, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 53, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 54, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 55, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 56, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": -2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 57, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 58, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 59, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 60, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 61, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 62, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 63, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 64, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 65, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 66, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 67, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 68, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 69, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2340, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 70, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 71, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 72, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 73, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 74, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 75, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 76, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 77, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 78, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 79, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 80, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 81, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 82, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 83, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": 3, "period5_long": null, "period5_high_tea": true, "period5_bill": 3250, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 84, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 85, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 86, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 87, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 88, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 89, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 90, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 91, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 92, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 93, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 94, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 95, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 96, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 97, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 98, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 99, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 102, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 112, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 121, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 129, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 132, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 134, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 135, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 137, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 141, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 9, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 147, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 148, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 150, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 151, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 153, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 157, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 26, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 162, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 164, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": true, "period5_bill": 2730, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 165, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 169, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 171, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 175, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 176, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 177, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 178, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 179, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 180, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 181, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 182, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 185, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 186, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 187, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 188, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 189, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 190, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 191, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 192, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 193, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 194, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 195, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 196, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 197, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 198, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 199, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 200, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 201, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 202, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 203, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 204, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 205, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 206, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 207, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 208, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 209, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 210, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 211, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 212, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 213, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 214, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 215, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 216, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 217, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 218, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 219, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 220, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": 10, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 221, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 222, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 223, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 224, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 4550, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 225, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 226, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 227, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 228, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 229, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 230, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 231, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 232, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": 10, "period5_high_tea": true, "period5_bill": 2340, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 233, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 234, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 235, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 236, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 237, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 238, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 239, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 240, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 241, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 242, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 243, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 244, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 245, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 246, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 247, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 248, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 249, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 250, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 251, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 252, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 253, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 254, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 255, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 256, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 257, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 258, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 259, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 260, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 261, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 262, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 263, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 264, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 265, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 266, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 267, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 268, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 269, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 270, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 271, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 272, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 273, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 274, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 275, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 276, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 277, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 278, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 279, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 280, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 281, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 282, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 283, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 284, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 285, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 286, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 287, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 288, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 289, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 290, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 291, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 292, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 293, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 294, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 295, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 296, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 297, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 298, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 299, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 300, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 301, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 302, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 303, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 304, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 305, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 306, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 307, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": 10, "period5_high_tea": true, "period5_bill": 2340, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 308, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 309, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 310, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 311, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 312, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 313, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 314, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 315, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 316, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 317, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 318, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 319, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 3, "period4_long": null, "period4_high_tea": true, "period4_bill": 4680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 320, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 321, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 322, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 323, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 324, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 325, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 326, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 327, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 328, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 329, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 330, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 331, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 332, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 333, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 334, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 335, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 336, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 337, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 338, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 339, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 340, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 341, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 342, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 343, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 344, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 345, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 346, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 347, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 348, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 349, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 350, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 351, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 352, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 353, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 354, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 355, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 356, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 357, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 358, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 359, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 360, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 361, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 362, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 363, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 364, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 365, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 366, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 367, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 368, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 369, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 370, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 371, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 372, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 373, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 374, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 375, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 376, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 377, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 378, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 379, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 380, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 381, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 382, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 383, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 384, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 385, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 386, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 387, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 388, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 389, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 390, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 391, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 392, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 393, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 394, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 395, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 396, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 397, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 398, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 399, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 400, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 401, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 402, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 403, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 404, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 405, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 406, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 407, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 408, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 409, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 410, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 411, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 412, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 413, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 414, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 415, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 416, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 417, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 418, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": null, "period3_long": 3, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 419, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 420, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 421, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 422, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 423, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 424, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 425, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 426, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 427, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 428, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 429, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 430, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 431, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3510, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 432, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 9, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 433, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 434, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 435, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 436, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 437, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 438, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 439, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 440, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 441, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 442, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 11, "period5_high_tea": true, "period5_bill": 2210, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 443, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 444, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 445, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 446, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 447, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": 7, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 448, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 449, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 450, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 451, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 452, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 453, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 4, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 454, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 455, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 26, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 456, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 457, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 458, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 459, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 460, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 461, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 462, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 463, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 1380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 464, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 465, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 466, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 467, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 468, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 469, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4810, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 2, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 6, "period4_long": 6, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 470, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 4, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 471, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 472, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 473, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 474, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 475, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 476, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 477, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 478, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 20, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 479, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 3, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 480, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 481, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4290, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 482, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 483, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 484, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 485, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 486, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 487, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 488, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 489, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 490, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 491, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 492, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 493, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 494, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 28, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 495, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1265, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 1610, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 496, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 497, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 16, "period5_high_tea": true, "period5_bill": 1560, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 498, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 22, "period5_high_tea": true, "period5_bill": 780, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 499, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 500, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 501, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1035, "period4_short": 8, "period4_long": 8, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 502, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 503, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 504, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 505, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 506, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 507, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 508, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 20, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 509, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 510, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 511, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 512, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3380, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1820, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 513, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 514, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3565, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 515, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 516, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 517, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 27, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 518, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 519, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2860, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 520, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2860, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 7, "period4_long": 7, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 6, "period5_long": null, "period5_high_tea": true, "period5_bill": 2860, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 521, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 522, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 523, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 7, "period4_high_tea": true, "period4_bill": 3510, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 524, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 525, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 8, "period4_long": 8, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 526, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": 9, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 527, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 528, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": 6, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 529, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 530, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 531, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 532, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 533, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 1, "period3_high_tea": false, "period3_bill": 3450, "period4_short": 5, "period4_long": 5, "period4_high_tea": true, "period4_bill": 3770, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 534, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 7, "period4_long": 7, "period4_high_tea": true, "period4_bill": 3510, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 535, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 536, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 537, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 538, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 539, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 540, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 541, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": 4, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 542, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 543, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 544, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1380, "period4_short": 0, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 545, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 546, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 547, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3450, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 920, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 548, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 20, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 549, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 550, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 551, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 552, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 553, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 554, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 1380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 555, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 556, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 557, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 558, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 559, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 560, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 561, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 562, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 563, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 564, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 565, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 566, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 19, "period5_high_tea": true, "period5_bill": 1430, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 567, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 1300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 568, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 19, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 569, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 570, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 571, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 572, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 573, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 574, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 575, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 576, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 577, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 578, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 579, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 580, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 5, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 581, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 8, "period4_long": 8, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 582, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 583, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 584, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 585, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 6, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 586, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 587, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 5, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 588, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 6, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 589, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 590, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 591, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": 9, "period3_long": 6, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 592, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 593, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 594, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 4, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 595, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 596, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 597, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 598, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 599, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 600, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 1040, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 601, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 602, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 603, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 604, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 605, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3640, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 606, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 607, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 608, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 609, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 610, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 611, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 612, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 613, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 614, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 615, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 616, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 617, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 618, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 619, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 620, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 621, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 622, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 623, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 624, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 625, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 626, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 2, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 6, "period4_long": 6, "period4_high_tea": true, "period4_bill": 3640, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 627, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 4, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 3, "period4_long": 3, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 628, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 629, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 630, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 1560, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 631, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 1690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 632, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 633, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2730, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 6, "period4_long": 6, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 634, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 635, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 636, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 1560, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 637, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 638, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 639, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 1820, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 640, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 641, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 5, "period4_long": 5, "period4_high_tea": true, "period4_bill": 3770, "period5_short": 7, "period5_long": null, "period5_high_tea": true, "period5_bill": 1170, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 642, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 6, "period4_long": 6, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 643, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 9, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 644, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2860, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 6, "period4_long": 6, "period4_high_tea": true, "period4_bill": 3640, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 645, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 646, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 647, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 648, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 345, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 649, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 650, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 651, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 652, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 653, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 3, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 654, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 655, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": 4, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 656, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 657, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 658, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 659, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 660, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 661, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 662, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 663, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 664, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 665, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 7, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 666, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 667, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 668, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 669, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 6, "period4_long": 6, "period4_high_tea": true, "period4_bill": 3640, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 670, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 4, "period4_long": 4, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 6, "period5_long": 9, "period5_high_tea": true, "period5_bill": 1690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 671, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 6, "period4_long": 6, "period4_high_tea": true, "period4_bill": 3640, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 672, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 2, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 673, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 674, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 675, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 20, "period5_high_tea": true, "period5_bill": 1560, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 676, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 9, "period3_long": 6, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 677, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 678, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 679, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 8, "period3_long": 8, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 680, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 681, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 1560, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 682, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 683, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 4, "period4_long": 4, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 684, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 685, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 686, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 687, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 688, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 689, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 690, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 9, "period3_long": 5, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 691, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 1040, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 692, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 693, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 3, "period3_high_tea": true, "period3_bill": 2470, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 694, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 695, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 696, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 697, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 698, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 699, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 3, "period4_long": 3, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 700, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 701, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 3, "period4_long": 3, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 702, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 3, "period4_long": 3, "period4_high_tea": true, "period4_bill": 4030, "period5_short": 2, "period5_long": 11, "period5_high_tea": true, "period5_bill": 1950, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 703, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 704, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 705, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 706, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 707, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 3, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 708, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 709, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 710, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 711, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 712, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 713, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 714, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 715, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 4, "period4_long": 4, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 716, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 717, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 718, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 719, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 5, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 720, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 721, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 722, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 723, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 724, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 725, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 726, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 727, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 728, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 729, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 730, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 731, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 732, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 733, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 734, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 735, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 115, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 736, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 4, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 737, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 738, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 739, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 740, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 741, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 742, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 743, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 744, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 745, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 746, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 747, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 748, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 749, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 750, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 751, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 4, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 752, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 753, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 754, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 755, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": 8, "period3_long": 7, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 756, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 7, "period4_long": 7, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 757, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 758, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 759, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 760, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 761, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 762, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 763, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 764, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 765, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 766, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 3, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 767, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 5, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 768, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 769, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 4, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 770, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 771, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 772, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 5, "period4_long": 5, "period4_high_tea": true, "period4_bill": 3770, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 773, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 774, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 775, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 8, "period4_long": 8, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 776, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": 8, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 1, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 777, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 778, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 779, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 780, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 20, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 781, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 782, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 783, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 784, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 5, "period4_long": 5, "period4_high_tea": true, "period4_bill": 3770, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 785, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 345, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 786, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 787, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 4, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 788, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 8, "period3_high_tea": true, "period3_bill": 1820, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 789, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 5, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 790, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 791, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 5, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 792, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 793, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 794, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 795, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 796, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 797, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 1950, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 798, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 799, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3770, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 800, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 801, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 802, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 3, "period4_long": 3, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 803, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 804, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 805, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 806, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 807, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 5, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 808, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 809, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 7, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 810, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 811, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 812, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 813, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 814, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 815, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 816, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 8, "period3_high_tea": true, "period3_bill": 1820, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 817, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 818, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 819, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 820, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 821, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": 3, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 822, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 823, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 824, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 825, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 6, "period4_long": 6, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 826, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 4, "period4_long": 4, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 827, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": 4, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 828, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 829, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 830, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 831, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 832, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 7, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 833, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 3, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 834, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 460, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 835, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 836, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": null, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 837, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 9, "period3_long": null, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 838, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 839, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 840, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 841, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 842, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 843, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1380, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 844, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 845, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 2875, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 846, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 847, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 848, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 849, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 850, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 851, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3250, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": true, "period5_bill": 2730, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 852, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 853, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 854, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 855, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 856, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 857, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 858, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": 14, "period4_high_tea": false, "period4_bill": 2300, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 859, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2530, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 16, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 860, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 861, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 862, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2210, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2300, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 13, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 863, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 864, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 865, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 866, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 867, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 868, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 869, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 870, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 871, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 872, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4420, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": 6, "period4_high_tea": false, "period4_bill": 2530, "period5_short": 7, "period5_long": 9, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 873, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 2760, "period5_short": 3, "period5_long": 10, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 874, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 875, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 876, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 877, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 878, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 10, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 879, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": null, "period3_long": 31, "period3_high_tea": false, "period3_bill": 0, "period4_short": 8, "period4_long": 6, "period4_high_tea": false, "period4_bill": 2300, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 880, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 881, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 882, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 10, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 883, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 884, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 885, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 886, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 10, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 887, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 888, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 889, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 890, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 891, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 892, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2860, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 893, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 20, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 894, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 895, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 896, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 897, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 898, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 899, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 900, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 901, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 902, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 903, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 904, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 905, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 906, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 9, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 907, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 12, "period4_high_tea": false, "period4_bill": 2530, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 908, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 4, "period3_long": 15, "period3_high_tea": false, "period3_bill": 1380, "period4_short": 4, "period4_long": 20, "period4_high_tea": false, "period4_bill": 1150, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 909, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 910, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 911, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 912, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 4, "period4_long": 16, "period4_high_tea": false, "period4_bill": 1610, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 913, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 914, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 915, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": true, "period4_bill": 3770, "period5_short": 5, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 916, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 917, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 918, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 919, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 920, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 6, "period4_long": 2, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 921, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 1300, "period3_short": null, "period3_long": 10, "period3_high_tea": true, "period3_bill": 2730, "period4_short": 0, "period4_long": 32, "period4_high_tea": false, "period4_bill": 230, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 922, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 923, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 924, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 19, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 925, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 926, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 17, "period3_high_tea": false, "period3_bill": 1150, "period4_short": 0, "period4_long": 34, "period4_high_tea": false, "period4_bill": 0, "period5_short": 10, "period5_long": null, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 927, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 928, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 929, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 930, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 931, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 932, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 933, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 934, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 13, "period3_long": null, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2415, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 935, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 936, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 937, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 5, "period4_long": 3, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 938, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 939, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3380, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 805, "period3_short": 5, "period3_long": 11, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 6, "period4_long": 3, "period4_high_tea": false, "period4_bill": 2875, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 940, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3680, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 941, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 942, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 943, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 944, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 945, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 5, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 946, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 947, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3105, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 948, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 949, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 950, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 16, "period3_high_tea": false, "period3_bill": 1265, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 8, "period5_long": null, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 951, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 952, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 953, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 954, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 955, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 956, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 957, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": 9, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 958, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 959, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 3450, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 960, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 961, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 962, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4290, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 9, "period5_long": null, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 963, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 964, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 16, "period4_high_tea": true, "period4_bill": 2340, "period5_short": null, "period5_long": 16, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 965, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 16, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 966, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 967, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 968, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 969, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 970, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 8, "period5_long": null, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 971, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 972, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3380, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 973, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 974, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 975, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 16, "period4_high_tea": false, "period4_bill": 2070, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 976, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 977, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 978, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 979, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4140, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 980, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 34, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": 28, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 981, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 982, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 983, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 19, "period3_high_tea": false, "period3_bill": 1380, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 984, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 985, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 986, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3120, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": true, "period4_bill": 3120, "period5_short": 2, "period5_long": null, "period5_high_tea": true, "period5_bill": 3380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 987, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 988, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 1170, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 989, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 8, "period4_long": null, "period4_high_tea": true, "period4_bill": 3380, "period5_short": 6, "period5_long": null, "period5_high_tea": true, "period5_bill": 2860, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 990, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 2, "period5_long": 9, "period5_high_tea": true, "period5_bill": 2210, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 991, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 992, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 16, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 993, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 994, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 995, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 996, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": null, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 3, "period4_long": null, "period4_high_tea": true, "period4_bill": 4030, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 997, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 998, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 999, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1000, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1001, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1002, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1003, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1004, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1005, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1006, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1007, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1008, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 8, "period4_long": null, "period4_high_tea": true, "period4_bill": 3380, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1009, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1010, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": null, "period4_high_tea": true, "period4_bill": 4030, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1011, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1012, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1013, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1014, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3380, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1015, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1016, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": null, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1017, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1018, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1019, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1020, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1021, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1022, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 2875, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1023, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1024, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1025, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 2875, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1026, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1027, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1028, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1029, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1030, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1031, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1032, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1033, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1034, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1035, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1036, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1037, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1038, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1039, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1040, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1041, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1042, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1043, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3910, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1044, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1045, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1046, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1047, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1048, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1049, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1050, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1051, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1052, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 3, "period5_long": null, "period5_high_tea": true, "period5_bill": 3250, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1053, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1054, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1055, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": 9, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1056, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1057, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1058, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1059, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 8, "period5_long": null, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1060, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1061, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1062, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": 0, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1063, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1064, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1065, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 1, "period5_long": 8, "period5_high_tea": true, "period5_bill": 2470, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1066, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 3, "period5_long": null, "period5_high_tea": true, "period5_bill": 3250, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1067, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 1, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1068, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 2, "period3_long": null, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1069, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1070, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1071, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1072, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1073, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1074, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1075, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1076, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": null, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1077, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1078, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1079, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1080, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1081, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 26, "period5_high_tea": false, "period5_bill": 230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1082, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 19, "period4_high_tea": false, "period4_bill": 1725, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1083, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1084, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1085, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1086, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1087, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4290, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": 2, "period3_long": 1, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1088, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1089, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1090, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1091, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 24, "period3_high_tea": false, "period3_bill": 805, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1092, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1093, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1094, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1095, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1096, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1097, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1098, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1099, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3510, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1102, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1112, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 2, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1121, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1129, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3250, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1132, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 460, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3250, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1134, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1135, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1137, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1141, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1147, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1148, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1150, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1151, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 1, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3900, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1153, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1157, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 1950, "period3_short": null, "period3_long": 15, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1162, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1164, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1165, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1169, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1171, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1175, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1176, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1177, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1178, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1179, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1180, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1181, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1182, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1185, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": null, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1186, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1187, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1188, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1189, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1190, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1191, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1192, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1193, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1194, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1195, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1196, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1197, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1198, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1199, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1200, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1201, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1202, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1203, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1204, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1205, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1206, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1207, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1208, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1209, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1210, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1211, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1212, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1213, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1214, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1215, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1216, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1217, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1218, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1219, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1220, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1221, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1222, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1223, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1224, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1225, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1226, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1227, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1228, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1229, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1230, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1231, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 14, "period3_high_tea": false, "period3_bill": 1150, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1232, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1233, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1234, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1235, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1236, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1237, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1238, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1239, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1240, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1241, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1242, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1243, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1244, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1245, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1246, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1247, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1248, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1249, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1250, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1251, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1252, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1253, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1254, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1255, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1256, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1257, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2875, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1258, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1259, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1260, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1261, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1262, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1263, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1264, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1265, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1266, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1267, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1268, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1269, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1270, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1271, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1272, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1273, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1274, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1275, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1276, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1277, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1278, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1279, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1280, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1281, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1282, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1283, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1284, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1285, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1286, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1287, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1288, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 805, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1289, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1290, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1291, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1292, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1293, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1294, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1295, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1296, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1297, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1298, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1299, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1300, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1301, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1302, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1303, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1304, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1305, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1306, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1307, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1308, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1309, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1310, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1311, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1312, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1313, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1314, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1315, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1316, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1317, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1318, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1319, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 3, "period4_long": null, "period4_high_tea": true, "period4_bill": 4030, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1320, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1321, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1322, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1323, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1324, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1325, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 10, "period3_high_tea": true, "period3_bill": 2730, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1326, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1327, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1328, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3795, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1329, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 5, "period4_long": null, "period4_high_tea": true, "period4_bill": 3770, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1330, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1331, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1332, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1333, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1334, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1335, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1336, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1337, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1338, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1339, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1340, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1341, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1342, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1343, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1344, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1345, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1346, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1347, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2730, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1348, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1349, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1350, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1351, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1352, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1353, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1354, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1355, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1356, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1357, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1358, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1359, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1360, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1361, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1362, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1363, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1364, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1365, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1366, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2415, "period3_short": 4, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1367, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1368, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1369, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1370, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1371, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1372, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1373, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1374, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1375, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1376, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1377, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1378, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1379, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 8, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1380, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1381, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1382, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1383, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1384, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1385, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1386, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1387, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 7, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1388, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1389, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1390, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1391, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1392, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1393, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1394, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3795, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1395, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1396, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1397, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1398, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1399, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1400, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1401, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1402, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1403, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1404, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1405, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1406, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1407, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1408, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1409, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1410, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1411, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1412, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1413, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1414, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1415, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1416, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1417, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1418, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1419, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1420, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1421, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1422, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1423, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1424, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1425, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1426, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1427, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1428, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1429, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1430, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1431, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 10, "period3_high_tea": true, "period3_bill": 2730, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1432, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1433, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1434, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1435, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1436, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1437, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1438, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1439, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1440, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1441, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1442, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 16, "period3_high_tea": false, "period3_bill": 920, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1443, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1444, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1445, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1446, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1447, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 8, "period3_long": 0, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1448, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 5, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 2, "period4_long": null, "period4_high_tea": true, "period4_bill": 4160, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1449, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1450, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1451, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1452, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": null, "period4_high_tea": true, "period4_bill": 4160, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1453, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 7, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 2, "period4_long": null, "period4_high_tea": true, "period4_bill": 4160, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1454, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1455, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1456, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1457, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1458, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1459, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1460, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1461, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 8, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1462, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1463, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1464, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1465, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1466, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1467, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1468, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1469, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 6, "period4_long": null, "period4_high_tea": true, "period4_bill": 3640, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1470, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1471, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1472, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1473, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1474, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1475, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1476, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1477, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1478, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1479, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1480, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1481, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3250, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1482, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4025, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1483, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1484, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1485, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1486, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1487, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1488, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1489, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1490, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1491, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1492, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1493, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2300, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 1955, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1494, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1495, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1496, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1497, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1498, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1499, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1500, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1501, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1502, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1503, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1504, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 3, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1505, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1506, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1507, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1508, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1509, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1510, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1511, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1512, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1513, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": 6, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1514, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1515, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1516, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1517, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3640, "period3_short": 2, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1518, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 2, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1519, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1520, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1521, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1522, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1523, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1524, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1525, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1526, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1527, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1528, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1529, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1530, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1531, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1532, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1533, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1534, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1535, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1536, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1537, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1538, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1539, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1540, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1541, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1542, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1543, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1544, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1545, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1546, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1547, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1548, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1549, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1550, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1551, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1552, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1553, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1554, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1555, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1556, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1557, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3335, "period3_short": 7, "period3_long": 15, "period3_high_tea": false, "period3_bill": 1035, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1558, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1559, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1560, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1561, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1562, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1563, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1564, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1565, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1566, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1567, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1568, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1569, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1570, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1571, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1572, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1573, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1574, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1575, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1576, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1577, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1578, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1579, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1580, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1581, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1610, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1582, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1583, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1584, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1585, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": 0, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1586, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 0, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1587, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 25, "period3_high_tea": false, "period3_bill": 690, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1588, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1589, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1590, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4420, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1591, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1592, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1593, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1594, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 15, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1595, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 2760, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1596, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1597, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 460, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": 2, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 19, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1598, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1599, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": 19, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1600, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1601, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 9, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1602, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1603, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1604, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1605, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1606, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1607, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1608, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1609, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1610, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1611, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1612, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1613, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1614, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1615, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1616, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1617, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1618, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1619, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1620, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 22, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1621, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1622, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1623, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1624, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3510, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1625, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1626, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1627, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1628, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1629, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1630, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1631, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1632, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1633, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1634, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1635, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1636, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1637, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1638, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1639, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1640, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1641, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1642, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1643, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1644, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1645, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1646, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1647, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1648, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1649, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1650, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1651, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1652, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1653, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1654, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1655, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1656, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1657, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1658, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1659, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1660, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1661, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1662, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1663, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1664, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1665, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1666, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2990, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1667, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1668, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1669, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1670, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 15, "period5_high_tea": true, "period5_bill": 1690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1671, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 15, "period5_high_tea": true, "period5_bill": 1690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1672, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1673, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1674, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1675, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1676, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1677, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3565, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2530, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1678, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1725, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1679, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1680, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1681, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1682, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1683, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1684, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1685, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1686, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1687, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1688, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3565, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1689, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1690, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 2, "period3_long": null, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1691, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 8, "period5_high_tea": true, "period5_bill": 2080, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1692, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1693, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1694, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1695, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1696, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1697, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1698, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1699, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1700, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1701, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1702, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1703, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1704, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1705, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1706, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1707, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1708, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1709, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1710, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1711, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 2, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1712, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 6, "period4_long": null, "period4_high_tea": true, "period4_bill": 3640, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1713, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 9, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1714, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1715, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1716, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1717, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 6, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1718, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1719, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 3, "period5_long": null, "period5_high_tea": true, "period5_bill": 3250, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1720, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1721, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3450, "period3_short": 3, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1722, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 460, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1723, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1724, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1725, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1726, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1727, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1728, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1729, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 21, "period5_high_tea": true, "period5_bill": 910, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1730, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1731, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1732, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1733, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1734, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1735, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1736, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1737, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": -230, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1738, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": -2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1739, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": -2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1740, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1741, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1742, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1743, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1744, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1745, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1746, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1747, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1748, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1749, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1750, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1751, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1752, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1753, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1754, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1755, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1756, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1757, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1758, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 9, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 8, "period4_long": null, "period4_high_tea": true, "period4_bill": 3380, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1759, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1760, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 8, "period4_long": null, "period4_high_tea": true, "period4_bill": 3380, "period5_short": 2, "period5_long": null, "period5_high_tea": true, "period5_bill": 3250, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1761, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1762, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 2, "period3_long": null, "period3_high_tea": true, "period3_bill": 3770, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1763, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 19, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1764, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1765, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 2185, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1766, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1767, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1768, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1769, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1840, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1770, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1771, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1772, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1773, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1774, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1775, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1776, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1777, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1778, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1779, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1780, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": 10, "period3_high_tea": false, "period3_bill": 1495, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1781, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1782, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1783, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1784, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1785, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2080, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1786, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1787, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1788, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1789, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1790, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1791, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1792, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1793, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1794, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1795, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1796, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1797, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1798, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1799, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1800, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1801, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1802, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1803, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1804, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1805, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1806, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1807, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1808, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1809, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1810, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1811, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 4, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1812, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1813, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1814, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1815, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1816, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1817, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1818, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1819, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1820, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1821, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1822, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1823, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1824, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1825, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1826, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1827, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1828, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 2, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1829, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1830, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1831, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1832, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 4, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1833, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1834, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1835, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1836, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1837, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1838, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1839, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3335, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 11, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1840, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 10, "period5_long": null, "period5_high_tea": false, "period5_bill": 690, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1841, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1842, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 8, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1843, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1844, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1845, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1846, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1847, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1848, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1849, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1850, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1851, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1852, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 7, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1853, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 2, "period4_long": null, "period4_high_tea": true, "period4_bill": 4160, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1854, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2185, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1855, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1856, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1857, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1858, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1859, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1860, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1861, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": null, "period4_long": null, "period4_high_tea": false, "period4_bill": null, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1862, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1863, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1864, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1865, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 11, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1866, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1867, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1868, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1869, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1870, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1871, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1872, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 4, "period5_long": null, "period5_high_tea": true, "period5_bill": 3120, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1873, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": null, "period4_long": null, "period4_high_tea": false, "period4_bill": null, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1874, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1875, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1876, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 1840, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1877, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2990, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1878, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1879, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 1820, "period3_short": null, "period3_long": 16, "period3_high_tea": true, "period3_bill": 1950, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1880, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1881, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": null, "period4_long": null, "period4_high_tea": false, "period4_bill": null, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1882, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 2600, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": 34, "period4_high_tea": false, "period4_bill": 0, "period5_short": 2, "period5_long": 6, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1883, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 4, "period4_long": null, "period4_high_tea": true, "period4_bill": 3900, "period5_short": 2, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1884, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 10, "period4_high_tea": true, "period4_bill": 3120, "period5_short": 4, "period5_long": null, "period5_high_tea": true, "period5_bill": 3120, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1885, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": 17, "period5_high_tea": false, "period5_bill": 460, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1886, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 4, "period5_long": 8, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1887, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1888, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1889, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1890, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1891, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 19, "period5_high_tea": false, "period5_bill": 1035, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1892, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": null, "period4_long": null, "period4_high_tea": false, "period4_bill": null, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1893, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 4, "period3_long": null, "period3_high_tea": true, "period3_bill": 3510, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1894, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 4, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 10, "period5_high_tea": true, "period5_bill": 2340, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1895, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": 6, "period3_high_tea": true, "period3_bill": 2470, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1896, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 14, "period3_high_tea": true, "period3_bill": 2210, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1897, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1898, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1899, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1900, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1901, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1902, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1903, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1904, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1905, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1906, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1907, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 2, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1908, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": 28, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1909, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1910, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1911, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1912, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2760, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1913, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 12, "period3_high_tea": false, "period3_bill": 2185, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1914, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1915, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3900, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2990, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1916, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": null, "period4_high_tea": true, "period4_bill": 4030, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1917, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1918, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1919, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1920, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1921, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 16, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1922, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1923, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1924, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 7, "period5_long": 9, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1925, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1926, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": true, "period3_bill": 3380, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1927, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1928, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": 7, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1929, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1930, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": null, "period5_long": 21, "period5_high_tea": false, "period5_bill": 805, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1931, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1932, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1933, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1934, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1935, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": true, "period3_bill": 3250, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1936, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1937, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 12, "period5_long": null, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1938, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": 1, "period5_long": null, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1939, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4160, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": 3, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 5, "period4_long": 5, "period4_high_tea": false, "period4_bill": 2760, "period5_short": 2, "period5_long": 9, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1940, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3680, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1941, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 5, "period5_long": null, "period5_high_tea": true, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1942, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2070, "period4_short": 8, "period4_long": 1, "period4_high_tea": false, "period4_bill": 2875, "period5_short": 3, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1943, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4420, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": 24, "period3_high_tea": false, "period3_bill": 345, "period4_short": 4, "period4_long": 19, "period4_high_tea": false, "period4_bill": 1265, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1944, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1945, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 9, "period3_high_tea": false, "period3_bill": 1725, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1946, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": true, "period5_bill": 2730, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1947, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1948, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3220, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1949, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 1950, "period3_short": null, "period3_long": 20, "period3_high_tea": false, "period3_bill": 1265, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1950, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": null, "period4_long": null, "period4_high_tea": false, "period4_bill": null, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1951, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 0, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1952, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 8, "period4_long": null, "period4_high_tea": true, "period4_bill": 3380, "period5_short": null, "period5_long": 8, "period5_high_tea": true, "period5_bill": 2600, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1953, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1954, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1955, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1956, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1957, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 7, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1958, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1959, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1960, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1961, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 22, "period5_high_tea": true, "period5_bill": 780, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1962, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 2, "period5_long": null, "period5_high_tea": false, "period5_bill": 2990, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1963, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1964, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3220, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 8, "period5_long": null, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1965, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1966, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1967, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3770, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1968, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 24, "period3_high_tea": false, "period3_bill": 805, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1969, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": 8, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1970, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1971, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1972, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1973, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1974, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 30, "period4_high_tea": false, "period4_bill": 460, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1975, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": 11, "period3_high_tea": true, "period3_bill": 1690, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1976, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 1, "period4_high_tea": false, "period4_bill": 3795, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1977, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 10, "period4_high_tea": false, "period4_bill": 2760, "period5_short": null, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1955, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1978, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": true, "period4_bill": 3770, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1979, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 1, "period5_high_tea": false, "period5_bill": 3105, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1980, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": 7, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1981, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 11, "period3_high_tea": false, "period3_bill": 2300, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1982, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 24, "period3_high_tea": false, "period3_bill": 805, "period4_short": 0, "period4_long": 23, "period4_high_tea": false, "period4_bill": 1265, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1983, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 13, "period3_high_tea": true, "period3_bill": 2340, "period4_short": 7, "period4_long": null, "period4_high_tea": true, "period4_bill": 3510, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1984, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1985, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1986, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 9, "period3_high_tea": true, "period3_bill": 2860, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1987, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1988, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1989, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1990, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 5, "period4_long": null, "period4_high_tea": false, "period4_bill": 3335, "period5_short": 5, "period5_long": 11, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1991, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 7, "period4_long": null, "period4_high_tea": false, "period4_bill": 3105, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1992, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 3, "period4_long": null, "period4_high_tea": true, "period4_bill": 4030, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1993, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1994, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 23, "period5_high_tea": false, "period5_bill": 575, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1995, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1996, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 11, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 2875, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1997, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 14, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1998, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 11, "period3_high_tea": true, "period3_bill": 2600, "period4_short": 0, "period4_long": 15, "period4_high_tea": false, "period4_bill": 2185, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 1999, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": 9, "period4_high_tea": false, "period4_bill": 2875, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2000, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4290, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3380, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 3, "period4_long": null, "period4_high_tea": false, "period4_bill": 3565, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2001, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3105, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 4, "period4_long": null, "period4_high_tea": false, "period4_bill": 3450, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2002, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2003, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2004, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2005, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2006, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2007, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2008, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2009, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2010, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2011, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 21, "period4_high_tea": false, "period4_bill": 1495, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2012, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2013, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 8, "period3_high_tea": true, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2014, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2015, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 20, "period5_high_tea": false, "period5_bill": 920, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2016, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2017, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 10, "period5_high_tea": false, "period5_bill": 2070, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2018, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2019, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 3, "period3_long": null, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2020, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2021, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4140, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2022, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2023, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2024, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2025, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2026, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2027, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2028, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2029, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2030, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2031, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2032, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2033, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2034, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2035, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2036, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2037, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2038, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2039, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2040, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2041, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2042, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2043, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2044, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2045, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2046, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2047, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2048, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2049, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2050, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2051, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2052, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2053, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2054, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2055, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2056, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2057, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2058, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2059, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2060, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2061, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2062, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2063, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2064, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2065, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2066, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2067, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2068, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2069, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2070, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2071, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2072, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2073, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2074, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2075, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2076, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2077, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2078, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2079, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2080, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2081, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2082, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2083, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2084, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2085, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2086, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2087, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": null, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": null, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": null, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 5070, "period5_short": null, "period5_long": 11, "period5_high_tea": true, "period5_bill": 2210, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2088, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 0, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2089, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 6, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2090, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4030, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": 6, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2091, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2092, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": 0, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2093, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 5, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2094, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2095, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2096, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2097, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3680, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2098, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": 7, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2099, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": 5, "period4_high_tea": false, "period4_bill": 3335, "period5_short": null, "period5_long": 13, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": 18, "period3_high_tea": true, "period3_bill": 1690, "period4_short": 0, "period4_long": 16, "period4_high_tea": false, "period4_bill": 2070, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 5, "period4_long": 11, "period4_high_tea": false, "period4_bill": 2070, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 18, "period5_high_tea": false, "period5_bill": 1150, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 2415, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2645, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 5, "period5_long": null, "period5_high_tea": false, "period5_bill": 2645, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 8, "period3_long": null, "period3_high_tea": false, "period3_bill": 2645, "period4_short": 2, "period4_long": null, "period4_high_tea": false, "period4_bill": 3680, "period5_short": 4, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4160, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 3450, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 4, "period5_long": null, "period5_high_tea": false, "period5_bill": 2760, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 3680, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 6, "period3_long": null, "period3_high_tea": false, "period3_bill": 2875, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": true, "period3_bill": 4030, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": 13, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 10, "period3_high_tea": false, "period3_bill": 2415, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 3, "period5_long": null, "period5_high_tea": false, "period5_bill": 2875, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 8, "period5_long": null, "period5_high_tea": false, "period5_bill": 2300, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 7, "period3_long": null, "period3_high_tea": true, "period3_bill": 3120, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": null, "period5_long": null, "period5_high_tea": true, "period5_bill": 3640, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 7, "period3_long": null, "period3_high_tea": false, "period3_bill": 2760, "period4_short": 8, "period4_long": null, "period4_high_tea": false, "period4_bill": 2990, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4810, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 4, "period3_long": null, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 2, "period3_long": null, "period3_high_tea": false, "period3_bill": 3335, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": 24, "period5_high_tea": false, "period5_bill": 460, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 14, "period3_high_tea": false, "period3_bill": 1955, "period4_short": 0, "period4_long": 13, "period4_high_tea": false, "period4_bill": 2415, "period5_short": null, "period5_long": 16, "period5_high_tea": false, "period5_bill": 1380, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 3510, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 805, "period3_short": null, "period3_long": 4, "period3_high_tea": false, "period3_bill": 3105, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 15, "period5_high_tea": false, "period5_bill": 1495, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 2300, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 5, "period5_long": 8, "period5_high_tea": false, "period5_bill": 1725, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": 5, "period3_long": null, "period3_high_tea": false, "period3_bill": 2990, "period4_short": 6, "period4_long": null, "period4_high_tea": false, "period4_bill": 3220, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": null, "period2_bill": 0, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 0, "period4_short": 0, "period4_long": 7, "period4_high_tea": true, "period4_bill": 3510, "period5_short": null, "period5_long": 14, "period5_high_tea": false, "period5_bill": 1610, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": 9, "period3_high_tea": false, "period3_bill": 2530, "period4_short": 0, "period4_long": 3, "period4_high_tea": false, "period4_bill": 3565, "period5_short": null, "period5_long": 12, "period5_high_tea": false, "period5_bill": 1840, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3510, "period3_short": 2, "period3_long": 16, "period3_high_tea": true, "period3_bill": 1690, "period4_short": 0, "period4_long": null, "period4_high_tea": true, "period4_bill": 4420, "period5_short": 6, "period5_long": null, "period5_high_tea": false, "period5_bill": 2530, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4290, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": null, "period3_high_tea": false, "period3_bill": 3220, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": 3, "period3_long": 19, "period3_high_tea": false, "period3_bill": 1035, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": 7, "period5_long": null, "period5_high_tea": false, "period5_bill": 2415, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 3450, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2157, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": null, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": false, "period2_bill": 1265, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": false, "period1_bill": 4370, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": null, "period5_high_tea": false, "period5_bill": 3220, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn22", "pk": 2159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 4940, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 3900, "period3_short": null, "period3_long": null, "period3_high_tea": false, "period3_bill": 3565, "period4_short": 0, "period4_long": null, "period4_high_tea": false, "period4_bill": 3910, "period5_short": null, "period5_long": 17, "period5_high_tea": false, "period5_bill": 1265, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.catererbillsautumn22", "pk": 1, "fields": {"caterer": 6, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 0}}, {"model": "home.catererbillsautumn22", "pk": 2, "fields": {"caterer": 3, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 0}}, {"model": "home.catererbillsautumn22", "pk": 3, "fields": {"caterer": 4, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 0}}, {"model": "home.rebateautumn23", "pk": 1, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 3, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 4, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 5, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 6, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 7, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 8, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 9, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 10, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 11, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 12, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 13, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 14, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 15, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 16, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 17, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 18, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 19, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 20, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 21, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 22, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 23, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 24, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 25, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 26, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 27, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 28, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 29, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 30, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 31, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 32, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 33, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 34, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 35, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 36, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 37, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 38, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 39, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 40, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 41, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 42, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 43, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 44, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 45, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 46, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 47, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 48, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 49, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 50, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 51, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 52, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 53, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 54, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 55, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 56, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 57, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 58, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 59, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 60, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 61, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 62, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 63, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 64, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 65, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 66, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 67, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 68, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 69, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 70, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 71, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 72, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 73, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 74, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 75, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 76, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 77, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 78, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 79, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 80, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 81, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 82, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 83, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 84, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 85, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 86, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 87, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 88, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 89, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 90, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 91, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 92, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 93, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 94, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 95, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 96, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 97, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 98, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 99, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 102, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 112, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 121, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 129, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 132, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 134, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 135, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 137, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 141, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 147, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 148, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 150, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 151, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 153, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 157, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 162, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 164, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 165, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 169, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 171, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 175, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 176, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 177, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 178, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 179, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 180, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 181, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 182, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 185, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 186, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 187, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 188, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 189, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 190, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 191, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 192, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 193, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 194, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 195, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 196, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 197, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 198, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 199, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 200, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 201, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 202, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 203, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 204, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 205, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 206, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 207, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 208, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 209, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 210, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 211, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 212, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 213, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 214, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 215, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 216, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 217, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 218, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 219, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 220, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 221, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 222, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 223, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 224, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 225, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 226, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 227, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 228, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 229, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 230, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 231, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 232, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 233, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 234, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 235, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 236, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 237, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 238, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 239, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 240, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 241, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 242, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 243, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 244, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 245, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 246, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 247, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 248, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 249, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 250, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 251, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 252, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 253, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 254, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 255, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 256, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 257, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 258, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 259, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 260, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 261, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 262, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 263, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 264, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 265, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 266, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 267, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 268, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 269, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 270, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 271, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 272, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 273, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 274, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 275, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 276, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 277, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 278, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 279, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 280, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 281, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 282, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 283, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 284, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 285, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 286, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 287, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 288, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 289, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 290, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 291, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 292, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 293, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 294, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 295, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 296, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 297, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 298, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 299, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 300, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 301, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 302, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 303, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 304, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 305, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 306, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 307, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 308, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 309, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 310, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 311, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 312, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 313, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 314, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 315, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 316, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 317, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 318, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 319, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 320, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 321, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 322, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 323, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 324, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 325, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 326, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 327, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 328, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 329, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 330, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 331, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 332, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 333, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 334, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 335, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 336, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 337, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 338, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 339, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 340, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 341, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 342, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 343, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 344, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 345, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 346, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 347, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 348, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 349, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 350, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 351, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 352, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 353, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 354, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 355, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 356, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 357, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 358, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 359, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 360, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 361, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 362, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 363, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 364, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 365, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 366, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 367, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 368, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 369, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 370, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 371, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 372, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 373, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 374, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 375, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 376, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 377, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 378, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 379, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 380, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 381, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 382, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 383, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 384, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 385, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 386, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 387, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 388, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 389, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 390, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 391, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 392, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 393, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 394, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 395, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 396, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 397, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 398, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 399, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 400, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 401, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 402, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 403, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 404, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 405, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 406, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 407, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 408, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 409, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 410, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 411, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 412, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 413, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 414, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 415, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 416, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 417, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 418, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 419, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 420, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 421, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 422, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 423, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 424, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 425, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 426, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 427, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 428, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 429, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 430, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 431, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 432, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 433, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 434, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 435, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 436, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 437, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 438, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 439, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 440, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 441, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 442, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 443, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 444, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 445, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 446, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 447, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 448, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 449, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 450, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 451, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 452, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 453, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 454, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 455, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 456, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 457, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 458, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 459, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 460, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 461, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 462, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 463, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 464, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 465, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 466, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 467, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 468, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 469, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 470, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 471, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 472, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 473, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 474, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 475, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 476, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 477, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 478, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 479, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 480, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 481, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 482, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 483, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 484, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 485, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 486, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 487, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 488, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 489, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 490, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 491, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 492, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 493, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 494, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 495, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 496, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 497, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 498, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 499, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 500, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 501, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 502, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 503, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 504, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 505, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 506, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 507, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 508, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 509, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 510, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 511, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 512, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 513, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 514, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 515, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 516, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 517, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 518, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 519, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 520, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 521, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 522, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 523, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 524, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 525, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 526, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 527, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 528, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 529, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 530, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 531, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 532, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 533, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 534, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 535, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 536, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 537, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 538, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 539, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 540, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 541, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 542, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 543, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 544, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 545, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 546, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 547, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 548, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 549, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 550, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 551, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 552, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 553, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 554, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 555, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 556, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 557, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 558, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 559, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 560, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 561, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 562, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 563, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 564, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 565, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 566, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 567, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 568, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 569, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 570, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 571, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 572, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 573, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 574, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 575, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 576, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 577, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 578, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 579, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 580, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 581, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 582, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 583, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 584, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 585, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 586, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 587, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 588, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 589, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 590, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 591, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 592, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 593, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 594, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 595, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 596, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 597, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 598, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 599, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 600, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 601, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 602, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 603, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 604, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 605, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 606, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 607, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 608, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 609, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 610, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 611, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 612, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 613, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 614, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 615, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 616, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 617, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 618, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 619, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 620, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 621, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 622, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 623, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 624, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 625, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 626, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 627, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 628, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 629, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 630, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 631, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 632, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 633, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 634, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 635, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 636, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 637, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 638, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 639, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 640, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 641, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 642, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 643, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 644, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 645, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 646, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 647, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 648, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 649, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 650, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 651, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 652, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 653, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 654, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 655, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 656, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 657, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 658, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 659, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 660, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 661, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 662, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 663, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 664, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 665, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 666, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 667, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 668, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 669, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 670, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 671, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 672, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 673, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 674, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 675, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 676, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 677, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 678, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 679, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 680, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 681, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 682, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 683, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 684, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 685, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 686, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 687, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 688, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 689, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 690, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 691, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 692, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 693, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 694, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 695, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 696, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 697, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 698, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 699, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 700, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 701, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 702, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 703, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 704, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 705, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 706, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 707, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 708, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 709, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 710, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 711, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 712, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 713, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 714, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 715, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 716, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 717, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 718, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 719, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 720, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 721, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 722, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 723, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 724, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 725, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 726, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 727, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 728, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 729, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 730, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 731, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 732, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 733, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 734, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 735, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 736, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 737, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 738, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 739, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 740, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 741, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 742, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 743, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 744, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 745, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 746, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 747, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 748, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 749, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 750, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 751, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 752, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 753, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 754, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 755, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 756, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 757, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 758, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 759, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 760, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 761, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 762, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 763, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 764, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 765, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 766, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 767, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 768, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 769, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 770, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 771, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 772, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 773, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 774, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 775, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 776, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 777, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 778, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 779, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 780, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 781, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 782, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 783, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 784, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 785, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 786, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 787, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 788, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 789, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 790, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 791, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 792, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 793, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 794, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 795, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 796, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 797, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 798, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 799, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 800, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 801, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 802, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 803, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 804, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 805, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 806, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 807, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 808, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 809, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 810, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 811, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 812, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 813, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 814, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 815, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 816, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 817, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 818, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 819, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 820, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 821, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 822, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 823, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 824, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 825, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 826, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 827, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 828, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 829, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 830, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 831, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 832, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 833, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 834, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 835, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 836, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 837, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 838, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 839, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 840, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 841, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 842, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 843, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 844, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 845, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 846, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 847, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 848, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 849, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 850, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 851, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 852, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 853, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 854, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 855, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 856, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 857, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 858, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 859, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 860, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 861, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 862, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 863, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 864, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 865, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 866, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 867, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 868, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 869, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 870, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 871, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 872, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 873, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 874, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 875, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 876, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 877, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 878, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 879, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 880, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 881, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 882, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 883, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 884, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 885, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 886, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 887, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 888, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 889, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 890, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 891, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 892, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 893, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 894, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 895, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 896, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 897, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 898, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 899, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 900, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 901, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 902, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 903, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 904, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 905, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 906, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 907, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 908, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 909, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 910, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 911, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 912, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 913, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 914, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 915, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 916, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 917, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 918, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 919, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 920, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 921, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 922, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 923, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 924, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 925, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 926, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 927, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 928, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 929, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 930, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 931, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 932, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 933, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 934, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 935, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 936, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 937, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 938, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 939, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 940, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 941, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 942, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 943, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 944, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 945, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 946, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 947, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 948, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 949, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 950, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 951, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 952, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 953, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 954, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 955, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 956, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 957, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 958, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 959, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 960, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 961, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 962, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 963, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 964, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 965, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 966, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 967, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 968, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 969, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 970, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 971, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 972, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 973, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 974, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 975, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 976, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 977, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 978, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 979, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 980, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 981, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 982, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 983, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 984, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 985, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 986, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 987, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 988, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 989, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 990, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 991, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 992, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 993, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 994, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 995, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 996, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 997, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 998, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 999, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1000, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1001, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1002, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1003, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1004, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1005, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1006, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1007, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1008, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1009, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1010, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1011, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1012, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1013, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1014, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1015, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1016, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1017, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1018, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1019, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1020, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1021, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1022, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1023, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1024, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1025, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1026, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1027, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1028, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1029, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1030, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1031, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1032, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1033, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1034, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1035, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1036, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1037, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1038, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1039, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1040, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1041, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1042, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1043, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1044, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1045, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1046, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1047, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1048, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1049, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1050, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1051, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1052, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1053, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1054, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1055, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1056, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1057, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1058, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1059, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1060, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1061, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1062, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1063, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1064, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1065, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1066, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1067, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1068, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1069, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1070, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1071, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1072, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1073, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1074, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1075, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1076, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1077, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1078, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1079, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1080, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1081, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1082, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1083, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1084, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1085, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1086, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1087, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1088, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1089, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1090, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1091, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1092, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1093, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1094, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1095, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1096, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1097, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1098, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1099, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1102, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1112, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1117, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1118, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1119, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1120, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1121, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1122, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1123, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1124, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1125, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1126, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1127, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1128, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1129, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1130, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1131, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1132, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1133, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1134, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1135, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1136, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1137, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1138, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1139, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1140, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1141, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1142, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1143, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1144, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1145, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1146, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1147, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1148, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1149, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1150, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1151, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1152, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1153, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1154, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1155, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1156, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1157, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1158, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1159, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1160, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1161, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1162, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1163, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1164, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1165, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1166, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1167, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1168, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1169, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1170, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1171, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1172, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1173, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1174, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1175, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1176, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1177, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1178, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1179, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1180, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1181, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1182, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1183, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1184, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1185, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1186, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1187, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1188, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1189, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1190, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1191, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1192, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1193, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1194, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1195, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1196, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1197, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1198, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1199, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1200, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1201, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1202, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1203, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1204, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1205, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1206, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1207, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1208, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1209, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1210, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1211, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1212, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1213, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1214, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1215, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1216, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1217, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1218, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1219, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1220, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1221, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1222, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1223, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1224, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1225, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1226, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1227, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1228, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1229, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1230, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1231, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1232, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1233, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1234, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1235, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1236, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1237, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1238, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1239, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1240, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1241, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1242, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1243, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1244, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1245, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1246, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1247, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1248, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1249, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1250, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1251, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1252, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1253, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1254, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1255, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1256, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1257, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1258, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1259, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1260, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1261, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1262, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1263, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1264, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1265, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1266, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1267, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1268, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1269, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1270, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1271, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1272, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1273, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1274, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1275, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1276, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1277, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1278, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1279, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1280, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1281, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1282, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1283, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1284, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1285, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1286, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1287, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1288, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1289, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1290, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1291, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1292, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1293, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1294, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1295, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1296, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1297, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1298, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1299, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1300, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1301, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1302, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1303, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1304, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1305, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1306, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1307, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1308, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1309, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1310, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1311, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1312, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1313, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1314, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1315, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1316, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1317, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1318, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1319, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1320, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1321, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1322, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1323, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1324, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1325, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1326, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1327, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1328, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1329, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1330, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1331, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1332, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1333, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1334, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1335, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1336, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1337, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1338, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1339, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1340, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1341, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1342, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1343, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1344, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1345, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1346, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1347, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1348, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1349, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1350, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1351, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1352, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1353, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1354, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1355, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1356, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1357, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1358, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1359, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1360, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1361, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1362, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1363, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1364, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1365, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1366, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1367, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1368, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1369, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1370, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1371, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1372, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1373, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1374, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1375, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1376, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1377, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1378, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1379, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1380, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1381, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1382, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1383, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1384, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1385, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1386, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1387, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1388, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1389, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1390, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1391, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1392, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1393, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1394, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1395, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1396, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1397, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1398, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1399, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1400, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1401, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1402, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1403, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1404, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1405, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1406, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1407, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1408, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1409, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1410, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1411, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1412, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1413, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1414, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1415, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1416, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1417, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1418, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1419, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1420, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1421, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1422, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1423, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1424, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1425, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1426, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1427, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1428, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1429, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1430, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1431, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1432, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1433, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1434, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1435, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1436, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1437, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1438, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1439, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1440, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1441, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1442, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1443, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1444, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1445, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1446, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1447, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1448, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1449, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1450, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1451, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1452, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1453, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1454, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1455, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1456, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1457, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1458, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1459, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1460, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1461, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1462, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1463, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1464, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1465, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1466, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1467, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1468, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1469, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1470, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1471, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1472, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1473, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1474, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1475, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1476, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1477, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1478, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1479, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1480, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1481, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1482, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1483, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1484, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1485, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1486, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1487, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1488, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1489, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1490, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1491, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1492, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1493, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1494, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1495, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1496, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1497, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1498, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1499, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1500, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1501, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1502, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1503, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1504, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1505, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1506, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1507, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1508, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1509, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1510, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1511, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1512, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1513, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1514, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1515, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1516, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1517, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1518, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1519, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1520, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1521, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1522, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1523, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1524, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1525, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1526, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1527, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1528, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1529, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1530, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1531, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1532, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1533, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1534, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1535, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1536, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1537, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1538, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1539, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1540, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1541, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1542, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1543, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1544, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1545, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1546, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1547, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1548, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1549, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1550, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1551, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1552, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1553, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1554, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1555, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1556, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1557, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1558, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1559, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1560, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1561, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1562, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1563, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1564, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1565, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1566, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1567, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1568, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1569, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1570, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1571, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1572, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1573, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1574, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1575, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1576, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1577, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1578, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1579, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1580, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1581, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1582, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1583, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1584, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1585, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1586, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1587, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1588, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1589, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1590, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1591, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1592, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1593, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1594, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1595, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1596, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1597, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1598, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1599, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1600, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1601, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1602, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1603, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1604, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1605, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1606, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1607, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1608, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1609, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1610, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1611, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1612, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1613, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1614, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1615, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1616, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1617, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1618, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1619, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1620, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1621, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1622, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1623, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1624, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1625, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1626, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1627, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1628, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1629, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1630, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1631, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1632, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1633, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1634, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1635, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1636, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1637, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1638, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1639, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1640, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1641, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1642, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1643, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1644, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1645, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1646, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1647, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1648, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1649, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1650, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1651, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1652, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1653, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1654, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1655, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1656, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1657, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1658, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1659, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1660, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1661, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1662, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1663, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1664, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1665, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1666, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1667, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1668, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1669, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1670, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1671, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1672, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1673, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1674, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1675, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1676, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1677, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1678, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1679, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1680, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1681, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1682, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1683, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1684, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1685, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1686, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1687, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1688, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1689, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1690, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1691, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1692, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1693, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1694, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1695, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1696, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1697, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1698, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1699, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1700, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1701, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1702, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1703, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1704, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1705, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1706, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1707, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1708, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1709, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1710, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1711, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1712, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1713, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1714, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1715, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1716, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1717, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1718, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1719, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1720, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1721, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1722, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1723, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1724, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1725, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1726, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1727, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1728, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1729, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1730, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1731, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1732, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1733, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1734, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1735, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1736, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1737, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1738, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1739, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1740, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1741, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1742, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1743, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1744, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1745, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1746, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1747, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1748, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1749, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1750, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1751, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1752, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1753, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1754, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1755, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1756, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1757, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1758, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1759, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1760, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1761, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1762, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1763, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1764, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1765, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1766, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1767, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1768, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1769, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1770, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1771, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1772, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1773, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1774, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1775, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1776, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1777, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1778, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1779, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1780, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1781, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1782, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1783, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1784, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1785, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1786, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1787, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1788, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1789, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1790, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1791, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1792, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1793, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1794, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1795, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1796, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1797, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1798, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1799, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1800, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1801, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1802, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1803, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1804, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1805, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1806, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1807, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1808, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1809, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1810, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1811, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1812, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1813, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1814, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1815, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1816, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1817, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1818, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1819, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1820, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1821, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1822, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1823, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1824, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1825, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1826, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1827, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1828, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1829, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1830, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1831, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1832, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1833, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1834, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1835, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1836, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1837, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1838, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1839, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1840, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1841, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1842, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1843, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1844, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1845, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1846, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1847, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1848, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1849, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1850, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1851, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1852, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1853, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1854, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1855, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1856, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1857, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1858, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1859, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1860, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1861, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1862, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1863, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1864, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1865, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1866, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1867, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1868, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1869, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1870, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1871, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1872, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1873, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1874, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1875, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1876, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1877, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1878, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1879, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1880, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1881, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1882, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1883, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1884, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1885, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1886, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1887, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1888, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1889, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1890, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1891, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1892, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1893, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1894, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1895, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1896, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1897, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1898, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1899, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1900, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1901, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1902, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1903, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1904, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1905, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1906, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1907, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1908, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1909, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1910, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1911, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1912, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1913, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1914, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1915, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1916, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1917, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1918, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1919, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1920, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1921, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1922, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1923, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1924, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1925, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1926, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1927, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1928, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1929, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1930, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1931, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1932, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1933, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1934, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1935, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1936, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1937, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1938, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1939, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1940, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1941, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1942, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1943, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1944, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1945, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1946, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1947, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1948, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1949, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1950, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1951, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1952, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1953, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1954, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1955, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1956, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1957, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1958, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1959, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1960, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1961, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1962, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1963, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1964, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1965, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1966, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1967, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1968, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1969, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1970, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1971, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1972, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1973, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1974, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1975, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1976, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1977, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1978, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1979, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1980, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1981, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1982, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1983, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1984, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1985, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1986, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1987, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1988, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1989, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1990, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1991, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1992, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1993, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1994, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1995, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1996, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1997, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1998, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 1999, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2000, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2001, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2002, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2003, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2004, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2005, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2006, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2007, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2008, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2009, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2010, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2011, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2012, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2013, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2014, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2015, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2016, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2017, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2018, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2019, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2020, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2021, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2022, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2023, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2024, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2025, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2026, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2027, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2028, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2029, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2030, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2031, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2032, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2033, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2034, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2035, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2036, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2037, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2038, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2039, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2040, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2041, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2042, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2043, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2044, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2045, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2046, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2047, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2048, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2049, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2050, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2051, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2052, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2053, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2054, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2055, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2056, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2057, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2058, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2059, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2060, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2061, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2062, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2063, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2064, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2065, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2066, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2067, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2068, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2069, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2070, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2071, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2072, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2073, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2074, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2075, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2076, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2077, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2078, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2079, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2080, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2081, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2082, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2083, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2084, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2085, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2086, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2087, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2088, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2089, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2090, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2091, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2092, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2093, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2094, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2095, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2096, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2097, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2098, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2099, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2100, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2101, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2102, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2103, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2104, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2105, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2106, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2107, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2108, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2109, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2110, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2111, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2112, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2113, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2114, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2115, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.rebateautumn23", "pk": 2116, "fields": {"email": null, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.catererbillsautumn23", "pk": 1, "fields": {"caterer": 6, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 0}}, {"model": "home.catererbillsautumn23", "pk": 2, "fields": {"caterer": 3, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 0}}, {"model": "home.catererbillsautumn23", "pk": 3, "fields": {"caterer": 4, "period1_bills": 0, "period2_bills": 0, "period3_bills": 0, "period4_bills": 0, "period5_bills": 0, "period6_bills": 0}}, {"model": "home.studentbills", "pk": 1, "fields": {"email": null, "semester": 1, "period1_short": 2, "period1_long": 0, "period1_high_tea": true, "period1_bill": 5070, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 3640, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 2, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 3, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 4, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 5, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 6, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 7, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 8, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 9, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 10, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 11, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 12, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 13, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 14, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 15, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 16, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 17, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 18, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 19, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 20, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 21, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 22, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 23, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 24, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 25, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 26, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 27, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 28, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 29, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 30, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 31, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 32, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 33, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 34, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 35, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 36, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.studentbills", "pk": 37, "fields": {"email": null, "semester": 1, "period1_short": 0, "period1_long": 0, "period1_high_tea": true, "period1_bill": 0, "period2_short": 0, "period2_long": 0, "period2_high_tea": true, "period2_bill": 0, "period3_short": 0, "period3_long": 0, "period3_high_tea": true, "period3_bill": 0, "period4_short": 0, "period4_long": 0, "period4_high_tea": true, "period4_bill": 0, "period5_short": 0, "period5_long": 0, "period5_high_tea": true, "period5_bill": 0, "period6_short": 0, "period6_long": 0, "period6_high_tea": true, "period6_bill": 0}}, {"model": "home.fee", "pk": 1, "fields": {"prev_sem_fee": 16550, "upcoming_sem_fee": 17680, "program": "BTech"}}] \ No newline at end of file diff --git a/home/admin.py b/home/admin.py index e8bcb37..1d4a3d0 100644 --- a/home/admin.py +++ b/home/admin.py @@ -288,29 +288,6 @@ class about_Admin(admin.ModelAdmin): # export_as_csv.short_description = "Export Allocation details to CSV" -# # Define the import action -# def import_csv(self, request, queryset): -# # Get the selected file from the request -# file = request.FILES['file'] - -# # Read the CSV file -# reader = csv.DictReader(file) - -# # Loop over each row in the CSV file -# for row in reader: -# # Create a new Book object and save it -# a = Allocatio( -# ) -# book.save() - -# # Return a success message -# self.message_user(request, 'CSV file imported successfully.') - -# import_csv.short_description = 'Import CSV' - -# # Override the default actions to include the import action -# actions = [import_csv] + ModelAdmin.actions - @admin.register(Student) class about_Admin(ImportExportMixin, admin.ModelAdmin): @@ -552,6 +529,7 @@ def unregister_student(obj): period=period, caterer=caterer, high_tea=high_tea, + jain=False, first_pref=caterer, second_pref=caterer, third_pref=caterer, @@ -895,81 +873,14 @@ def export_as_csv(self, request, queryset): export_as_csv.short_description = "Export Rebate details to CSV" -allocation_fields = { - "fields": ( - "roll_no", - "month", - "student_id", - "caterer_name", - "high_tea", - "first_pref", - "second_pref", - "third_pref", - ), - "description": "%s" % ALLOCATION_DESC_TEXT, - } - -# @admin.register(AllocationAutumn22) -# class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): -# resource_class = AllocationResource -# model = AllocationAutumn22 -# search_fields = ("roll_no__name","roll_no__roll_no","roll_no__hostel","roll_no__email","student_id", "caterer_name", "high_tea") -# list_filter = ("month", "caterer_name", "high_tea","roll_no__hostel","roll_no__degree","roll_no__department",) -# list_display = ("student_id","email", "month", "caterer_name", "high_tea") -# fieldsets = ((None,allocation_fields,),) - -# @admin.display(description="email") -# def email(self, obj): -# return obj.roll_no.email - -# actions = ["export_as_csv"] - -# def export_as_csv(self, request, queryset): -# """ -# Export action available in the admin page -# """ -# resource = AllocationResource() -# dataset = resource.export(queryset) -# response = HttpResponse(dataset.csv, content_type="text/csv") -# response["Content-Disposition"] = 'attachment; filename="allocation.csv"' -# return response - -# export_as_csv.short_description = "Export Allocation details to CSV" - -# @admin.register(AllocationSpring23) -# class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): -# resource_class = AllocationResource -# model = AllocationSpring23 -# search_fields = ("roll_no__name","roll_no__roll_no","roll_no__hostel","roll_no__email","student_id", "caterer_name", "high_tea",) -# list_filter = ("month", "caterer_name", "high_tea","roll_no__hostel","roll_no__degree","roll_no__department",) -# list_display = ("student_id","email", "month", "caterer_name", "high_tea") -# fieldsets = ((None,allocation_fields,),) - -# @admin.display(description="email") -# def email(self, obj): -# return obj.roll_no.email - -# actions = ["export_as_csv"] - -# def export_as_csv(self, request, queryset): -# """ -# Export action available in the admin page -# """ -# resource = AllocationResource() -# dataset = resource.export(queryset) -# response = HttpResponse(dataset.csv, content_type="text/csv") -# response["Content-Disposition"] = 'attachment; filename="allocation.csv"' -# return response - -# export_as_csv.short_description = "Export Allocation details to CSV" @admin.register(Allocation) class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): resource_class = AllocationNewResource model = Allocation search_fields = ("email__name","email__roll_no","email__hostel","email__email","student_id", "caterer__name", "high_tea",) - list_filter = ("period", "caterer", "high_tea","email__hostel","email__degree","email__department",) - list_display = ("student_id","email", "period", "caterer", "high_tea") + list_filter = ("period", "caterer", "high_tea","jain","email__hostel","email__degree","email__department",) + list_display = ("student_id","email", "period", "caterer", "high_tea","jain") fieldsets = ((None, { "fields": ( @@ -978,6 +889,7 @@ class about_Admin(ImportExportModelAdmin, admin.ModelAdmin): "student_id", "caterer", "high_tea", + "jain", "first_pref", "second_pref", "third_pref", @@ -1005,19 +917,19 @@ def export_as_csv(self, request, queryset): export_as_csv.short_description = "Export Allocation details to CSV" -@admin.register(PeriodAutumn22) -class about_Admin(admin.ModelAdmin): - list_display = ("Sno", "start_date", "end_date") - model = PeriodAutumn22 - fieldsets = ( - (None,{"fields": ("Sno", "start_date", "end_date")},),) +# @admin.register(PeriodAutumn22) +# class about_Admin(admin.ModelAdmin): +# list_display = ("Sno", "start_date", "end_date") +# model = PeriodAutumn22 +# fieldsets = ( +# (None,{"fields": ("Sno", "start_date", "end_date")},),) -@admin.register(PeriodSpring23) -class about_Admin(admin.ModelAdmin): - list_display = ("Sno", "start_date", "end_date") - model = PeriodSpring23 - fieldsets = ( - (None,{"fields": ("Sno", "start_date", "end_date")},),) +# @admin.register(PeriodSpring23) +# class about_Admin(admin.ModelAdmin): +# list_display = ("Sno", "start_date", "end_date") +# model = PeriodSpring23 +# fieldsets = ( +# (None,{"fields": ("Sno", "start_date", "end_date")},),) @admin.register(Period) class about_Admin(admin.ModelAdmin): diff --git a/home/models/allocation.py b/home/models/allocation.py index 91b9a63..08043cd 100644 --- a/home/models/allocation.py +++ b/home/models/allocation.py @@ -55,6 +55,10 @@ class Allocation(models.Model): _("High Tea"), help_text="This contains the info if high tea is taken or not", default=False,null=True,blank=True ) + jain = models.BooleanField( + _("Jain"), help_text="This contains the info if jain food is taken or not", + default=False,null=True,blank=True + ) first_pref = models.CharField( _("First Preference"), default=None, diff --git a/home/resources.py b/home/resources.py index 23d8959..1ed44c7 100644 --- a/home/resources.py +++ b/home/resources.py @@ -76,6 +76,7 @@ class AllocationResource(resources.ModelResource): student_id = fields.Field(attribute="student_id", column_name="Student ID") caterer_name = fields.Field(attribute="caterer_name", column_name="Caterer Allocated") high_tea = fields.Field(attribute="high_tea", column_name="High Tea") + jain=fields.Field(attribute="jain", column_name="Jain") first_pref = fields.Field(attribute="first_pref", column_name="First Preferences") second_pref = fields.Field( attribute="second_pref", column_name="Second Preferences" @@ -97,6 +98,7 @@ class Meta: "student_id", "caterer_name", "high_tea", + "jain", "first_pref", "second_pref", "third_pref", @@ -114,6 +116,7 @@ class Meta: "student_id", "caterer_name", "high_tea", + "jain", "first_pref", "second_pref", "third_pref", diff --git a/home/views.py b/home/views.py index 01d6350..d95b018 100644 --- a/home/views.py +++ b/home/views.py @@ -293,6 +293,7 @@ def allocation(request): # getting high tea high_tea = record["High Tea"] + jain = record["Jain"] print(high_tea) if(high_tea=="Yes" or high_tea==True or high_tea=="TRUE"): high_tea=True @@ -328,6 +329,7 @@ def allocation(request): period=period_obj, caterer=caterer, high_tea=high_tea, + jain=jain, first_pref=first_pref, second_pref=second_pref, third_pref=third_pref, @@ -431,6 +433,7 @@ def allocationForm(request): try: period_obj = alloc_form.period high_tea = request.POST["high_tea"] + jain = request.POST["jain"] if caterer_list.count()<1: first_pref = None else: @@ -464,6 +467,8 @@ def allocationForm(request): student_id += "H" else: student_id+="NH" + if jain == "True": + student_id += "J" student_id += str(caterer.student_limit) allocation = Allocation( email=student, @@ -471,6 +476,7 @@ def allocationForm(request): period=period_obj, caterer=caterer, high_tea=high_tea, + jain=jain, first_pref=first_pref, second_pref=second_pref, third_pref=third_pref, @@ -510,7 +516,7 @@ def profile(request): #improve this alignment of text to be shown on the profile section if allocation: allocation_info_list = [allocation.student_id, allocation.caterer.name, str(allocation.high_tea)] - allocation_info = "Allocation ID: " + allocation.student_id + " Caterer: " + allocation.caterer.name + " High Tea: " + str(allocation.high_tea) + allocation_info = "Allocation ID: " + allocation.student_id + " Caterer: " + allocation.caterer.name + " High Tea: " + str(allocation.high_tea) + " Jain: " + str(allocation.jain) else: allocation_info = "Not allocated for this period" if len(socialaccount_obj): diff --git a/templates/allocationForm.html b/templates/allocationForm.html index fd4fab5..c13eb88 100644 --- a/templates/allocationForm.html +++ b/templates/allocationForm.html @@ -33,13 +33,20 @@

+
+ + +
{%if caterer_list.count > 0%}
{%for caterer in caterer_list%}
@@ -52,7 +59,7 @@

{%for caterer in caterer_list%}
@@ -65,7 +72,7 @@

{%for caterer in caterer_list%}
@@ -102,7 +109,7 @@

if(second_pref[i].checked){ cat_list[i]++; } - if(third_pref.length==first_pref.length && third_pref[i].checked){ + if(third_pref.length==3 && third_pref[i].checked){ cat_list[i]++; } } diff --git a/templates/base.html b/templates/base.html index ce9c0f8..2e51443 100644 --- a/templates/base.html +++ b/templates/base.html @@ -135,7 +135,7 @@

Contact Us

-
+
Copyright ©2023 All rights reserved by: