-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_dump.json
1360 lines (1360 loc) · 45 KB
/
project_dump.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"model": "cars.car",
"pk": 1,
"fields": {
"car_title": "Honda Odyssey",
"city": "Tipperary SR",
"country": "Ireland",
"color": "Grey",
"model": "Odyssey Pro",
"year": 2012,
"condition": "Excellent",
"price": 14000,
"description": "<table cellspacing=\"0\" style=\"border-collapse:collapse; width:1841px\">\r\n\t<tbody>\r\n\t\t<tr>\r\n\t\t\t<td style=\"border-bottom:none; border-left:none; border-right:none; border-top:none; height:19px; vertical-align:bottom; white-space:nowrap; width:1842px\"><span style=\"color:black\">Readily available. Excellent condition, clean title, clean carfax, no accident. I am the second owner, purchased it and replaced the new battery and tires in Dec. 2019, I have to sell it just because I will leave USA due to my visiting period expired in June. Have 8 seats (2+3+3), automatic passenger and back door. You can drive it with family have a long time and distance travel. The cruise function can help you to easy to drive, DVD can play movie for your kids, and have two Bluetooth headphones to give others a quiet environment. Comfortable leather seats, driver's and copilot's seats are power and heated. The third-row seats can be put down, and the second-row seats can be got out, you can sleep in this minivan with your kids when you have a camp night. 19 mpg/City and 28 mpg/highway. The owner is better for me, the dealer can contact me if you accept the price. Phone number: show contact info (just text first).</span></td>\r\n\t\t</tr>\r\n\t</tbody>\r\n</table>",
"car_photo": "photos/2023/27/12/00851.jpg",
"car_photo1": "photos/2023/27/12/00851_3H4U0xM.jpg",
"car_photo2": "",
"car_photo3": "",
"car_photo4": "",
"features": "Cruise Control,Airbags,Seat Heating,ParkAssist,Reversing Camera,Auto Start/Stop,Bluetooth Handset",
"body_style": "Mini-Van",
"engine": "6 Cylinders",
"transmission": "Automatic",
"interior": "White",
"miles": 10000,
"doors": "4",
"passengers": 8,
"vin_no": "WPA76834697",
"milage": 18,
"fuel_type": "Diesel",
"no_of_owners": "2",
"is_featured": false,
"created_date": "2023-04-12T15:22:06"
}
},
{
"model": "cars.car",
"pk": 2,
"fields": {
"car_title": "Honda Odyssey",
"city": "Louth",
"country": "Ireland",
"color": "Grey",
"model": "Odyssey Pro",
"year": 2012,
"condition": "Excellent",
"price": 14000,
"description": "<table cellspacing=\"0\" style=\"border-collapse:collapse; width:1841px\">\r\n\t<tbody>\r\n\t\t<tr>\r\n\t\t\t<td style=\"border-bottom:none; border-left:none; border-right:none; border-top:none; height:19px; vertical-align:bottom; white-space:nowrap; width:1842px\">\r\n\t\t\t<p><span style=\"color:black\">Readily available. Excellent condition, clean title, clean carfax, no accident. </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">I am the second owner, purchased it and replaced the new battery and tires in Dec. 2019, I have to sell it just because </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">I will leave USA due to my visiting period expired in June. Have 8 seats (2+3+3), automatic passenger and back door. </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">You can drive it with family have a long time and distance travel. The cruise function can help you to easy to drive, </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">DVD can play movie for your kids, and have two Bluetooth headphones to give others a quiet environment. </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">Comfortable leather seats, driver's and copilot's seats are power and heated. </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">The third-row seats can be put down, and the second-row seats can be got out, you can sleep in this minivan with your kids</span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">when you have a camp night. 19 mpg/City and 28 mpg/highway. </span></p>\r\n\r\n\t\t\t<p><span style=\"color:black\">The owner is better for me, the dealer can contact me if you accept the price. Phone number: show contact info (just text first).</span></p>\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t</tbody>\r\n</table>",
"car_photo": "photos/2023/27/12/00851_b1Q86PY.jpg",
"car_photo1": "photos/2023/27/12/00851_bkWZ042.jpg",
"car_photo2": "photos/2023/46/12/02054.jpg",
"car_photo3": "photos/2023/46/12/01513.jpg",
"car_photo4": "photos/2023/46/12/01867.jpg",
"features": "Cruise Control,Airbags,Seat Heating,ParkAssist,Reversing Camera,Auto Start/Stop,Bluetooth Handset",
"body_style": "Mini-Van",
"engine": "6 Cylinders",
"transmission": "Automatic",
"interior": "White",
"miles": 10000,
"doors": "4",
"passengers": 8,
"vin_no": "WPA76834697",
"milage": 18,
"fuel_type": "Diesel",
"no_of_owners": "2",
"is_featured": true,
"created_date": "2023-04-12T15:22:06"
}
},
{
"model": "cars.car",
"pk": 3,
"fields": {
"car_title": "Dodge Charger rt 4dr sedan",
"city": "Galway",
"country": "Ireland",
"color": "Grey",
"model": "Charger rt 4dr sedan",
"year": 2017,
"condition": "Excellent",
"price": 16000,
"description": "<table cellspacing=\"0\" style=\"border-collapse:collapse; width:1841px\">\r\n\t<tbody>\r\n\t\t<tr>\r\n\t\t\t<td style=\"border-bottom:none; border-left:none; border-right:none; border-top:none; height:19px; vertical-align:bottom; white-space:nowrap; width:1842px\"><span style=\"color:black\">2017 dodge charger rt runs great Euro15,000.00</span></td>\r\n\t\t</tr>\r\n\t</tbody>\r\n</table>",
"car_photo": "photos/2023/30/12/00455.jpg",
"car_photo1": "",
"car_photo2": "",
"car_photo3": "",
"car_photo4": "",
"features": "Cruise Control,Audio Interface,Air Conditioning,Alarm System,ParkAssist,Direct Fuel Injection,Auto Start/Stop,Bluetooth Handset",
"body_style": "Sedan",
"engine": "6 Cylinders",
"transmission": "Automatic",
"interior": "Black",
"miles": 12000,
"doors": "4",
"passengers": 4,
"vin_no": "A7312144944",
"milage": 12,
"fuel_type": "Diesel",
"no_of_owners": "1",
"is_featured": true,
"created_date": "2023-04-12T15:27:24"
}
},
{
"model": "cars.car",
"pk": 4,
"fields": {
"car_title": "Chrysler",
"city": "Limerick",
"country": "Ireland",
"color": "Blue",
"model": "Town & Country",
"year": 2003,
"condition": "Excellent",
"price": 16000,
"description": "<table cellspacing=\"0\" style=\"border-collapse:collapse; width:1841px\">\r\n\t<tbody>\r\n\t\t<tr>\r\n\t\t\t<td style=\"border-bottom:none; border-left:none; border-right:none; border-top:none; height:19px; vertical-align:bottom; white-space:nowrap; width:1842px\"><span style=\"color:black\">2003 Chrysler Town and Country Handicapped Accessible van. Only 30,376 miles, almost new tires. Just serviced at Express Lube Opelika. Death in family, no longer needed. Power fold out ramp on right side. Dropped floor with 4 anchor points with straps to hold wheel chair. Removable front passenger seat. Excellent condition, runs and drives great. Gets exceptional fuel mileage. Ramp can be operated from inside van or remotely with magnetic switch.</span></td>\r\n\t\t</tr>\r\n\t</tbody>\r\n</table>",
"car_photo": "photos/2023/34/12/03919.jpg",
"car_photo1": "",
"car_photo2": "",
"car_photo3": "",
"car_photo4": "",
"features": "Cruise Control,Seat Heating,ParkAssist,Reversing Camera",
"body_style": "Van",
"engine": "8 Cylinders",
"transmission": "Mannual",
"interior": "White",
"miles": 8000,
"doors": "5",
"passengers": 8,
"vin_no": "B7307730503",
"milage": 21,
"fuel_type": "Electric",
"no_of_owners": "3",
"is_featured": true,
"created_date": "2023-04-12T15:30:53"
}
},
{
"model": "cars.car",
"pk": 5,
"fields": {
"car_title": "BMW 525i",
"city": "Galway",
"country": "Ireland",
"color": "Black",
"model": "525i",
"year": 2000,
"condition": "Fair",
"price": 2500,
"description": "<table cellspacing=\"0\" style=\"border-collapse:collapse; width:1841px\">\r\n\t<tbody>\r\n\t\t<tr>\r\n\t\t\t<td style=\"border-bottom:none; border-left:none; border-right:none; border-top:none; height:19px; vertical-align:bottom; white-space:nowrap; width:1842px\"><span style=\"color:black\">For sale is a 1995 BMW 525i. Engine runs great. Leather seats are in great condition. New radiator, new fan and shroud. New battery. 4 new tires with less than 100 miles on them. New front and rear lights, most of the removed lights are also included. Does need inside compartment work. Window motors need replacing. AC is not cooling, not sure why. Call or text me at Two Zero Five Nine One Five Four Four One Eight if you are interested. Hoover Alabama. Title in hand. Asking Euro 2500, but will consider best offer.</span></td>\r\n\t\t</tr>\r\n\t</tbody>\r\n</table>",
"car_photo": "photos/2023/38/12/00233.jpg",
"car_photo1": "",
"car_photo2": "",
"car_photo3": "",
"car_photo4": "",
"features": "Cruise Control,Air Conditioning,Alarm System,ParkAssist,Direct Fuel Injection,Auto Start/Stop,Wind Deflector,Bluetooth Handset",
"body_style": "Sedan",
"engine": "6 Cylinders",
"transmission": "Mannual",
"interior": "Black",
"miles": 40000,
"doors": "4",
"passengers": 4,
"vin_no": "F7315998032",
"milage": 40000,
"fuel_type": "Gas",
"no_of_owners": "3",
"is_featured": true,
"created_date": "2023-04-12T15:34:11"
}
},
{
"model": "cars.car",
"pk": 6,
"fields": {
"car_title": "cadillac",
"city": "Dublin",
"country": "Ireland",
"color": "Grey",
"model": "xt4 sport suv 4d",
"year": 2008,
"condition": "Fair",
"price": 1200,
"description": "<table cellspacing=\"0\" style=\"border-collapse:collapse; width:1841px\">\r\n\t<tbody>\r\n\t\t<tr>\r\n\t\t\t<td style=\"border-bottom:none; border-left:none; border-right:none; border-top:none; height:19px; vertical-align:bottom; white-space:nowrap; width:1842px\"><span style=\"color:black\">Carvana is the safer way to buy a car During these uncertain times, Carvana is dedicated to ensuring safety for all of our customers. In addition to our 100% online shopping and selling experience that allows all customers to buy and trade their cars without ever leaving the safety of their house, we\ufffd\ufffd\ufffdre providing touchless delivery that make all aspects of our process even safer. Now, you can get the car you want, and trade in your old one, while avoiding person-to-person contact with our friendly advocates. There are some things that can\ufffd\ufffd\ufffdt be put off. And if buying a car is one of them, know that we\ufffd\ufffd\ufffdre doing everything we can to keep you keep moving while continuing to put your health safety, and happiness first. Vehicle Stock# 2000908647\ufffd\ufffd\ufffd\ufffd Want to instantly check this car\ufffd\ufffd\ufffds availability? Call us at 334-758-9176Just text that stock number to 855-976-4304 or head to http://www.carvanaauto.com/7014324-74502 and plug it into the search bar!Get PRE-QUALIFIED for your auto loan in 2 minutes - no hit to your credit:http://finance.carvanaauto.com/7014324-74502Looking for more cars like this one? We have 6 GMC Sierra 1500 Regular Cab in stock for as low as $16990!Why buy with Carvana? We have one standard: the highest. Take a look at just some of the qualifications all of our cars must meet before we list them.150-POINT INSPECTION: We put each vehicle through a 150-point inspection so that you can be 100% confident in its quality and safety. See everything that goes into our inspections at:http://www.carvanaauto.com/7014324-74502NO REPORTED ACCIDENTS: We do not sell cars that have been in a reported accident or have a frame or structural damage.7 DAY TEST OWN MONEY BACK GUARANTEE: Every Carvana car comes with a 7-day money-back guarantee. Why? It takes more than 15-minutes to make a decision on your next car. Learn more about test owning at http://about.carvanaauto.comFLEXIBLE FINANCING, TRADE INS WELCOME: We\ufffd\ufffd\ufffdre all about real-time financing without the middle man. Need financing? Pick a combination of down and monthly payments that work for you. Have a trade-in? We\ufffd\ufffd\ufffdll give you a value in 2 minutes. Check out everything about our financing at:http://finance.carvanaauto.com/7014324-74502COST SAVINGS: Carvana's business model has fewer expenses and no bloated fees compared to your local dealership. See how much we can save you at http://about.carvanaauto.comPREMIUM DETAIL: We go the extra mile so that your car is looking as good as new. There are a lot of specifics that we won\ufffd\ufffd\ufffdt list here (we wash, clean, buff, paint, polish, wax, seal), but trust us that when your car arrives, it\ufffd\ufffd\ufffds going to look sweet.Vehicle Info for Stock# 2000908647Trim: Pickup 2D 6 1/2 ft pickupMileage: 35k milesExterior Color: WhiteInterior Color: Dk. GrayEngine: EcoTec3 4.3L Flex Fuel V6 285hp 305ft. lbs.Drive: Two Wheel DriveTransmission: VIN: 1GTN1TEH9FZ243281Dealer Disclosure: Price excludes tax, title, and registration (which we handle for you).Disclaimer: You agree that by providing your phone number, Carvana, or Carvana\ufffd\ufffd\ufffds authorized representatives*, may call and/or send text messages (including by using equipment to automatically dial telephone numbers) about your interest in a purchase, for marketing/sales purposes, or for any other servicing or informational purpose related to your account. You do not have to consent to receiving calls or texts to purchase from Carvana. While every reasonable effort is made to ensure the accuracy of the information for this GMC Sierra 1500 Regular Cab, we are not responsible for any errors or omissions contained in this ad. Please verify any information in question with Carvana at 334-758-9176*Including, but not limited to, Bridgecrest Credit Company, GO Financial and SilverRock Automotive.*GMC* *Sierra* *1500* *Regular* *Cab* *Base* *GMC* *Sierra* *1500* *Regular* *Cab* *SLE* *GMC* *Sierra* *1500* *Regular* *Cab* *SLT* *GMC* *Sierra* *1500* *Regular* *Cab* *Denali* *GMC* *Sierra* *1500* *Regular* *Cab* *Work* *Truck* *4x2* *GMC* *Sierra* *1500* *Regular* *Cab* *4x4* *Crew* *Cab* *GMC* *Sierra* *1500* *Regular* *Cab* *Regular* *Cab* *Extended* *Cab* *Truck* 2022 2021 2020 2019 2018 2017 2016 2015 2014 2013 2012 2011 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001 2000 22 21 19 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00</span></td>\r\n\t\t</tr>\r\n\t</tbody>\r\n</table>",
"car_photo": "photos/2023/41/12/05292.jpg",
"car_photo1": "",
"car_photo2": "",
"car_photo3": "",
"car_photo4": "",
"features": "Cruise Control,Audio Interface,Airbags,Air Conditioning,Seat Heating,Alarm System,ParkAssist,Power Steering,Reversing Camera,Auto Start/Stop,Wind Deflector,Bluetooth Handset",
"body_style": "Van",
"engine": "6 Cylinders",
"transmission": "Mannual",
"interior": "White",
"miles": 50000,
"doors": "5",
"passengers": 6,
"vin_no": "B7365430503",
"milage": 9,
"fuel_type": "Petrol",
"no_of_owners": "2",
"is_featured": true,
"created_date": "2023-04-12T15:38:10"
}
},
{
"model": "cars.car",
"pk": 7,
"fields": {
"car_title": "Ford F150 regular cab xl pickup",
"city": "Cavan",
"country": "Ireland",
"color": "white",
"model": "regular cab xl pickup",
"year": 2006,
"condition": "Fair",
"price": 10000,
"description": "<p> this is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is testthis is test</p>",
"car_photo": "photos/2023/31/12/02332.jpg",
"car_photo1": "photos/2023/31/12/01595.jpg",
"car_photo2": "photos/2023/31/12/01867.jpg",
"car_photo3": "photos/2023/31/12/03307.jpg",
"car_photo4": "photos/2023/31/12/05237.jpg",
"features": "Audio Interface,Seat Heating,ParkAssist,Direct Fuel Injection,Wind Deflector",
"body_style": "Pickup",
"engine": "12 Cylinders",
"transmission": "Mannual",
"interior": "White",
"miles": 30000,
"doors": "4",
"passengers": 4,
"vin_no": "AS312144944",
"milage": 23,
"fuel_type": "Diesel",
"no_of_owners": "2",
"is_featured": false,
"created_date": "2023-04-12T19:27:12"
}
},
{
"model": "pages.team",
"pk": 1,
"fields": {
"first_name": "Rishabh",
"last_name": "Sinha",
"designation": "Student",
"photo": "photos/2023/04/13/2606517_5856.jpg",
"facebook_link": "www.fb.com",
"twitter_link": "www.twitter.com",
"google_plus_link": "www.google.com",
"created_date": "2023-04-11T03:57:39.092"
}
},
{
"model": "pages.team",
"pk": 6,
"fields": {
"first_name": "Rishi",
"last_name": "Rish",
"designation": "CEO",
"photo": "photos/2023/04/13/2606517_5856_ewBqHDQ.jpg",
"facebook_link": "fb.com",
"twitter_link": "fb.com",
"google_plus_link": "fb.com",
"created_date": "2023-04-13T21:46:55.998"
}
},
{
"model": "pages.team",
"pk": 7,
"fields": {
"first_name": "Johnny",
"last_name": "Bravo",
"designation": "Finance",
"photo": "photos/2023/04/13/2606517_5856_ROlYkOH.jpg",
"facebook_link": "fb.com",
"twitter_link": "fb.com",
"google_plus_link": "fb.com",
"created_date": "2023-04-13T21:47:33.589"
}
},
{
"model": "pages.team",
"pk": 8,
"fields": {
"first_name": "Dexter",
"last_name": "Dex",
"designation": "Founder",
"photo": "photos/2023/04/13/2606517_5856_dfcjAGH.jpg",
"facebook_link": "fb.com",
"twitter_link": "fb.com",
"google_plus_link": "fb.com",
"created_date": "2023-04-13T21:48:43.376"
}
},
{
"model": "contacts.contact",
"pk": 1,
"fields": {
"first_name": "John",
"last_name": "Joe",
"car_id": 6,
"customer_needs": "I'm interested in this",
"car_title": "cadillac",
"city": "Dublin",
"country": "Ireland",
"email": "[email protected]",
"phone": "09876543678",
"message": "This is test message.",
"user_id": 1,
"created_date": "2023-04-13T18:24:53.014"
}
},
{
"model": "contacts.contact",
"pk": 2,
"fields": {
"first_name": "John",
"last_name": "Dear",
"car_id": 7,
"customer_needs": "I'd like to test drive this",
"car_title": "Ford F150 regular cab xl pickup",
"city": "Cork",
"country": "Ireland",
"email": "[email protected]",
"phone": "09876543567",
"message": "Test number 2",
"user_id": 0,
"created_date": "2023-04-13T18:27:11.301"
}
},
{
"model": "contacts.contact",
"pk": 3,
"fields": {
"first_name": "Rishabh",
"last_name": "Sinha",
"car_id": 3,
"customer_needs": "I'm interested in this",
"car_title": "Dodge Charger rt 4dr sedan",
"city": "Galway",
"country": "Ireland",
"email": "[email protected]",
"phone": "09876543678",
"message": "I am interested and want to buy this.",
"user_id": 1,
"created_date": "2023-04-13T18:50:23.866"
}
},
{
"model": "contacts.contact",
"pk": 4,
"fields": {
"first_name": "Rishabh",
"last_name": "Sinha",
"car_id": 4,
"customer_needs": "I'm interested in this",
"car_title": "Chrysler",
"city": "Dublin",
"country": "Ireland",
"email": "[email protected]",
"phone": "",
"message": "",
"user_id": 1,
"created_date": "2023-04-13T19:42:36.375"
}
},
{
"model": "contacts.contact",
"pk": 5,
"fields": {
"first_name": "Rishabh",
"last_name": "Sinha",
"car_id": 5,
"customer_needs": "I'm interested in this",
"car_title": "BMW 525i",
"city": "Dublin",
"country": "Ireland",
"email": "[email protected]",
"phone": "",
"message": "",
"user_id": 1,
"created_date": "2023-04-13T19:45:36.846"
}
},
{
"model": "contacts.contact",
"pk": 6,
"fields": {
"first_name": "Rishabh",
"last_name": "Sinha",
"car_id": 2,
"customer_needs": "I'm interested in this",
"car_title": "Honda Odyssey",
"city": "Dublin",
"country": "Ireland",
"email": "[email protected]",
"phone": "",
"message": "",
"user_id": 1,
"created_date": "2023-04-13T20:05:51.660"
}
},
{
"model": "auth.user",
"fields": {
"password": "pbkdf2_sha256$180000$hBCYH2MafrvV$OiNUq6pK+AryD3C0DgA5mVynzjcHVAQ/om1gtn7GP/w=",
"last_login": "2023-04-13T22:40:16.957",
"is_superuser": true,
"username": "admin",
"first_name": "Rishabh",
"last_name": "Sinha",
"email": "[email protected]",
"is_staff": true,
"is_active": true,
"date_joined": "2023-04-11T03:31:30",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"fields": {
"password": "pbkdf2_sha256$180000$ta0hkMenRwBz$iusw1NojzVURki8SB8vvfxpEtw7dbGQRY6CWcPRnIKk=",
"last_login": "2023-04-13T15:12:42.122",
"is_superuser": false,
"username": "RISHI",
"first_name": "RISHABH",
"last_name": "SINHA",
"email": "[email protected]",
"is_staff": false,
"is_active": true,
"date_joined": "2023-04-13T15:12:41.609",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"fields": {
"password": "pbkdf2_sha256$180000$QD2qxpVWT1J7$rUGHs6NvoWzpv0VgP2C6TJqXRTO/Kw+nP1IRRpfdjJI=",
"last_login": "2023-04-13T15:55:00.421",
"is_superuser": false,
"username": "rish1",
"first_name": "RISHABH",
"last_name": "SINHA",
"email": "[email protected]",
"is_staff": false,
"is_active": true,
"date_joined": "2023-04-13T15:54:59.926",
"groups": [],
"user_permissions": []
}
},
{
"model": "sessions.session",
"pk": "nboig3m38v0f78cek4wmic9913n82g99",
"fields": {
"session_data": "MjRjZGFjMDc3MmIzMGJjN2VjZWJkZDExN2FmMjQ1NTdlNDFjZDhkYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyODkyZTU0ZDIyN2QwYzYzNGMxNzQ5NGUxYTAxNmY1ZTkxNGYwZWZmIn0=",
"expire_date": "2023-04-25T03:33:29.751"
}
},
{
"model": "sessions.session",
"pk": "wnu4dnnsix5fvs4bxi8b5plw62gt69fj",
"fields": {
"session_data": "MjRjZGFjMDc3MmIzMGJjN2VjZWJkZDExN2FmMjQ1NTdlNDFjZDhkYTp7Il9hdXRoX3VzZXJfaWQiOiIxIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiIyODkyZTU0ZDIyN2QwYzYzNGMxNzQ5NGUxYTAxNmY1ZTkxNGYwZWZmIn0=",
"expire_date": "2023-04-27T22:40:17.148"
}
},
{
"model": "sites.site",
"fields": {
"domain": "example.com",
"name": "example.com"
}
},
{
"model": "admin.logentry",
"pk": 1,
"fields": {
"action_time": "2023-04-11T03:34:53.279",
"user": [
"admin"
],
"content_type": [
"auth",
"user"
],
"object_id": "1",
"object_repr": "admin",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"First name\", \"Last name\", \"Email address\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 2,
"fields": {
"action_time": "2023-04-11T03:57:39.259",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "1",
"object_repr": "Team object (1)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 3,
"fields": {
"action_time": "2023-04-11T04:10:18.164",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "1",
"object_repr": "Rishabh",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 4,
"fields": {
"action_time": "2023-04-11T12:32:30.552",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "2",
"object_repr": "Rishi",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 5,
"fields": {
"action_time": "2023-04-11T12:33:13.421",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "3",
"object_repr": "Michaele",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 6,
"fields": {
"action_time": "2023-04-11T12:34:08.352",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "4",
"object_repr": "Mark",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 7,
"fields": {
"action_time": "2023-04-11T12:35:16.096",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "5",
"object_repr": "Alex",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 8,
"fields": {
"action_time": "2023-04-11T12:45:39.178",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "4",
"object_repr": "Mark",
"action_flag": 2,
"change_message": "[]"
}
},
{
"model": "admin.logentry",
"pk": 9,
"fields": {
"action_time": "2023-04-11T13:12:44.885",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "5",
"object_repr": "Alex",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 10,
"fields": {
"action_time": "2023-04-11T13:13:01.065",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "4",
"object_repr": "Mark",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 11,
"fields": {
"action_time": "2023-04-11T13:13:21.369",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "3",
"object_repr": "Michaele",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 12,
"fields": {
"action_time": "2023-04-11T13:14:12.831",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "5",
"object_repr": "Alex",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Last name\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 13,
"fields": {
"action_time": "2023-04-11T13:14:41.373",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "4",
"object_repr": "Mark",
"action_flag": 2,
"change_message": "[]"
}
},
{
"model": "admin.logentry",
"pk": 14,
"fields": {
"action_time": "2023-04-11T13:15:08.953",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "1",
"object_repr": "Rishabh",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 15,
"fields": {
"action_time": "2023-04-11T13:17:07.230",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "1",
"object_repr": "Rishabh",
"action_flag": 2,
"change_message": "[]"
}
},
{
"model": "admin.logentry",
"pk": 16,
"fields": {
"action_time": "2023-04-11T13:17:37.430",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "1",
"object_repr": "Rishabh",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 17,
"fields": {
"action_time": "2023-04-11T16:06:11.137",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "5",
"object_repr": "Alex",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 18,
"fields": {
"action_time": "2023-04-11T16:06:25.367",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "4",
"object_repr": "Mark",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 19,
"fields": {
"action_time": "2023-04-11T16:06:40.245",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "3",
"object_repr": "Michaele",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 20,
"fields": {
"action_time": "2023-04-11T16:06:53.522",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "2",
"object_repr": "Rishi",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 21,
"fields": {
"action_time": "2023-04-11T16:07:06.409",
"user": [
"admin"
],
"content_type": [
"pages",
"team"
],
"object_id": "1",
"object_repr": "Rishabh",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Photo\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 22,
"fields": {
"action_time": "2023-04-12T15:27:22.887",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "1",
"object_repr": "Car object (1)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 23,
"fields": {
"action_time": "2023-04-12T15:27:23.272",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "2",
"object_repr": "Car object (2)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 24,
"fields": {
"action_time": "2023-04-12T15:30:52.411",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "3",
"object_repr": "Car object (3)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 25,
"fields": {
"action_time": "2023-04-12T15:34:10.510",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "4",
"object_repr": "Car object (4)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 26,
"fields": {
"action_time": "2023-04-12T15:38:08.940",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "5",
"object_repr": "Car object (5)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 27,
"fields": {
"action_time": "2023-04-12T15:41:30.168",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "6",
"object_repr": "Car object (6)",
"action_flag": 1,
"change_message": "[{\"added\": {}}]"
}
},
{
"model": "admin.logentry",
"pk": 28,
"fields": {
"action_time": "2023-04-12T16:06:16.520",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "6",
"object_repr": "cadillac",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Is featured\"]}}]"
}
},
{
"model": "admin.logentry",
"pk": 29,
"fields": {
"action_time": "2023-04-12T16:06:16.696",
"user": [
"admin"
],
"content_type": [
"cars",
"car"
],
"object_id": "4",
"object_repr": "Chrysler",
"action_flag": 2,
"change_message": "[{\"changed\": {\"fields\": [\"Is featured\"]}}]"
}
},
{