-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplete_assignment.sql
More file actions
1617 lines (1589 loc) · 187 KB
/
complete_assignment.sql
File metadata and controls
1617 lines (1589 loc) · 187 KB
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
use altschool_query;
-- Drop existing tables if they exist (in correct order to handle foreign keys)
DROP TABLE IF EXISTS order_items;
DROP TABLE IF EXISTS orders;
DROP TABLE IF EXISTS employees;
DROP TABLE IF EXISTS departments;
DROP TABLE IF EXISTS products;
DROP TABLE IF EXISTS customers;
-- =====================================================
-- TABLE CREATION STATEMENTS
-- =====================================================
-- Create customers table
CREATE TABLE customers (
customer_id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
email VARCHAR(100) UNIQUE NOT NULL,
phone VARCHAR(20),
address JSON,
preferences JSON,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Create products table
CREATE TABLE products (
product_id INT AUTO_INCREMENT PRIMARY KEY,
product_name VARCHAR(200) NOT NULL,
price DECIMAL(10,2) NOT NULL,
category VARCHAR(50),
stock_quantity INT DEFAULT 0,
attributes JSON,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Create departments table
CREATE TABLE departments (
department_id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
location VARCHAR(100),
metadata JSON,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Create employees table
CREATE TABLE employees (
employee_id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(100) NOT NULL,
department_id INT,
manager_id INT NULL,
role VARCHAR(100),
hire_date DATE,
salary DECIMAL(10,2),
contact_info JSON,
skills JSON
);
-- Create orders table
CREATE TABLE orders (
order_id INT AUTO_INCREMENT PRIMARY KEY,
customer_id INT,
order_date DATE NOT NULL,
total_amount DECIMAL(12,2) NOT NULL,
status ENUM('Pending', 'Processing', 'Shipped', 'Delivered', 'Cancelled') DEFAULT 'Pending',
shipping_address JSON,
metadata JSON,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (customer_id) REFERENCES customers(customer_id)
);
-- Create order_items table
CREATE TABLE order_items (
item_id INT AUTO_INCREMENT PRIMARY KEY,
order_id INT,
product_id INT,
quantity INT NOT NULL,
price DECIMAL(10,2) NOT NULL,
discount DECIMAL(10,2) DEFAULT 0.00,
item_attributes JSON,
FOREIGN KEY (order_id) REFERENCES orders(order_id),
FOREIGN KEY (product_id) REFERENCES products(product_id)
);
INSERT INTO customers (name, email, phone, address, preferences)
VALUES
('Amara Olu', 'amara.olu190@example.com', '+2348021178815', '{"street": "195 Emeka Anyaoku", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Food"]}'),
('Temitope Nwosu', 'temitope.nwosu452@example.com', '+2348083869645', '{"street": "59 Adetokunbo Ademola", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Books"]}'),
('Temitope Ogunleye', 'temitope.ogunleye385@example.com', '+2348080272461', '{"street": "124 Marina Road", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Fashion"]}'),
('Olu Mohammed', 'olu.mohammed841@example.com', '+2348012190965', '{"street": "94 Nnamdi Azikiwe", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": true, "categories": ["Food", "Toys", "Books"]}'),
('Fatima Okonkwo', 'fatima.okonkwo325@example.com', '+2348010921363', '{"street": "121 Anthony Enahoro", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Obinna Obi', 'obinna.obi547@example.com', '+2348016959870', '{"street": "189 Allen Avenue", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": false, "categories": ["Books", "Food", "Sports"]}'),
('Abdul Onyia', 'abdul.onyia861@example.com', '+2348094121036', '{"street": "170 Sultan Abubakar", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": true, "categories": ["Sports"]}'),
('Mohammed Salami', 'mohammed.salami386@example.com', '+2348062970862', '{"street": "176 Ahmadu Bello Way", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Fashion", "Electronics"]}'),
('Jide Akinwande', 'jide.akinwande289@example.com', '+2348014689868', '{"street": "113 Yakubu Gowon", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Wale Mohammed', 'wale.mohammed793@example.com', '+2348031268123', '{"street": "123 Ahmadu Bello Way", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Books", "Home & Garden", "Fashion"]}'),
('Deborah Aliyu', 'deborah.aliyu167@example.com', '+2348037417376', '{"street": "176 Emeka Anyaoku", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Books", "Sports"]}'),
('Zainab Okoh', 'zainab.okoh162@example.com', '+2348095248163', '{"street": "194 Allen Avenue", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Books"]}'),
('Yusuf Okafor', 'yusuf.okafor40@example.com', '+2348018815489', '{"street": "150 Olusegun Obasanjo", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Sani Nwosu', 'sani.nwosu960@example.com', '+2348082090317', '{"street": "8 Marina Road", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Toys", "Books", "Sports"]}'),
('Olu Alade', 'olu.alade119@example.com', '+2348021169954', '{"street": "197 Adekunle Fajuyi", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Beauty"]}'),
('Adanna Bello', 'adanna.bello630@example.com', '+2348013472458', '{"street": "139 Nnamdi Azikiwe", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": false, "categories": ["Food", "Home & Garden", "Books"]}'),
('Tunde Okoro', 'tunde.okoro717@example.com', '+2348004909211', '{"street": "108 Samuel Ladoke Akintola", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": false, "categories": ["Books", "Home & Garden", "Food"]}'),
('Chinedu Onyeama', 'chinedu.onyeama239@example.com', '+2348096253347', '{"street": "88 Allen Avenue", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Obinna Okeke', 'obinna.okeke557@example.com', '+2348047893666', '{"street": "187 Murtala Mohammed", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Home & Garden"]}'),
('Sani Aliyu', 'sani.aliyu796@example.com', '+2348040007811', '{"street": "75 Nnamdi Azikiwe", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Home & Garden"]}'),
('Adanna Okafor', 'adanna.okafor382@example.com', '+2348010122733', '{"street": "99 Marina Road", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Food", "Sports", "Home & Garden"]}'),
('Mohammed Ogbonna', 'mohammed.ogbonna626@example.com', '+2348050455114', '{"street": "103 Sultan Abubakar", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Books"]}'),
('Kunle Okorie', 'kunle.okorie739@example.com', '+2348075454423', '{"street": "165 Nnamdi Azikiwe", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden", "Sports", "Toys"]}'),
('Kemi Eze', 'kemi.eze624@example.com', '+2348041266830', '{"street": "93 Awolowo Road", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Beauty"]}'),
('Okonkwo Balogun', 'okonkwo.balogun323@example.com', '+2348042441565', '{"street": "192 Murtala Mohammed", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Bola Adeleke', 'bola.adeleke493@example.com', '+2348000278766', '{"street": "47 Anthony Enahoro", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Okonkwo Okafor', 'okonkwo.okafor595@example.com', '+2348015314459', '{"street": "18 Adekunle Fajuyi", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Food"]}'),
('Chinedu Aliyu', 'chinedu.aliyu856@example.com', '+2348057032947', '{"street": "48 Adetokunbo Ademola", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": false, "categories": ["Toys"]}'),
('Emeka Nwosu', 'emeka.nwosu567@example.com', '+2348004538620', '{"street": "70 Ibrahim Taiwo", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Electronics"]}'),
('Sani Ogbonna', 'sani.ogbonna868@example.com', '+2348041049074', '{"street": "117 Herbert Macaulay", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Electronics"]}'),
('Bola Aliyu', 'bola.aliyu860@example.com', '+2348094133655', '{"street": "24 Ahmadu Bello Way", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Books", "Food"]}'),
('Ngozi Aliyu', 'ngozi.aliyu712@example.com', '+2348039776022', '{"street": "65 Adekunle Fajuyi", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Books"]}'),
('Okonkwo Adewale', 'okonkwo.adewale675@example.com', '+2348037242641', '{"street": "31 Emeka Anyaoku", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Toys"]}'),
('Chioma Obi', 'chioma.obi249@example.com', '+2348013154285', '{"street": "42 Ibrahim Taiwo", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Books", "Sports"]}'),
('Bola Okoro', 'bola.okoro359@example.com', '+2348008511310', '{"street": "143 Obafemi Awolowo", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Books", "Electronics"]}'),
('Amina Ojo', 'amina.ojo191@example.com', '+2348035084217', '{"street": "45 Emeka Anyaoku", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Okonkwo Adeleke', 'okonkwo.adeleke621@example.com', '+2348065896819', '{"street": "118 Obafemi Awolowo", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Toys", "Food"]}'),
('Ibrahim Adebayo', 'ibrahim.adebayo589@example.com', '+2348022085646', '{"street": "169 Adekunle Fajuyi", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Food", "Electronics", "Beauty"]}'),
('Chioma Adeleke', 'chioma.adeleke880@example.com', '+2348039758882', '{"street": "43 Herbert Macaulay", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Food", "Electronics"]}'),
('Chidinma Ibrahim', 'chidinma.ibrahim598@example.com', '+2348085244656', '{"street": "80 Samuel Ladoke Akintola", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Sports"]}'),
('Amara Ibrahim', 'amara.ibrahim189@example.com', '+2348007527144', '{"street": "50 Ibrahim Taiwo", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Electronics", "Toys"]}'),
('Bola Adewale', 'bola.adewale725@example.com', '+2348043311834', '{"street": "132 Aminu Kano", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Toys"]}'),
('Ibrahim Alade', 'ibrahim.alade755@example.com', '+2348062826183', '{"street": "126 Ibrahim Taiwo", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Fashion"]}'),
('Segun Aliyu', 'segun.aliyu463@example.com', '+2348011386811', '{"street": "83 Awolowo Road", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Fashion", "Toys", "Home & Garden"]}'),
('Eze Chukwu', 'eze.chukwu139@example.com', '+2348056650863', '{"street": "81 Nnamdi Azikiwe", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Toys"]}'),
('Kunle Yusuf', 'kunle.yusuf93@example.com', '+2348093756413', '{"street": "116 Obafemi Awolowo", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Electronics", "Fashion"]}'),
('Halima Okonkwo', 'halima.okonkwo531@example.com', '+2348044029239', '{"street": "123 Nnamdi Azikiwe", "city": "Calabar", "zip": "540001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Chioma Onyeka', 'chioma.onyeka225@example.com', '+2348029463282', '{"street": "95 Oduduwa", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Electronics"]}'),
('Wale Bello', 'wale.bello675@example.com', '+2348006752472', '{"street": "96 Olusegun Obasanjo", "city": "Calabar", "zip": "540001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Home & Garden", "Sports"]}'),
('Ibrahim Adeyemi', 'ibrahim.adeyemi393@example.com', '+2348060463331', '{"street": "184 Sultan Abubakar", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Electronics"]}'),
('Okonkwo Okonkwo', 'okonkwo.okonkwo382@example.com', '+2348053395318', '{"street": "199 Marina Road", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Chinedu Okeke', 'chinedu.okeke393@example.com', '+2348006569909', '{"street": "146 Olusegun Obasanjo", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Books", "Home & Garden", "Fashion"]}'),
('Patience Okonkwo', 'patience.okonkwo56@example.com', '+2348022333830', '{"street": "54 Aminu Kano", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Sports"]}'),
('Ade Aliyu', 'ade.aliyu830@example.com', '+2348056565347', '{"street": "174 Ibrahim Taiwo", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Food", "Toys"]}'),
('Chinedu Mustapha', 'chinedu.mustapha44@example.com', '+2348071194546', '{"street": "136 Obafemi Awolowo", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": true, "categories": ["Books", "Food", "Sports"]}'),
('Halima Afolayan', 'halima.afolayan618@example.com', '+2348093531399', '{"street": "10 Herbert Macaulay", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Toys"]}'),
('Ngozi Ibrahim', 'ngozi.ibrahim588@example.com', '+2348006263961', '{"street": "136 Anthony Enahoro", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Home & Garden"]}'),
('Femi Okafor', 'femi.okafor575@example.com', '+2348070639059', '{"street": "13 Awolowo Road", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden"]}'),
('Ibrahim Umar', 'ibrahim.umar650@example.com', '+2348006085202', '{"street": "118 Obafemi Awolowo", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Home & Garden"]}'),
('Bola Sule', 'bola.sule317@example.com', '+2348038246484', '{"street": "185 Emeka Anyaoku", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Electronics", "Sports"]}'),
('Femi Mustapha', 'femi.mustapha881@example.com', '+2348023658564', '{"street": "161 Allen Avenue", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Chinedu Yusuf', 'chinedu.yusuf989@example.com', '+2348093868973', '{"street": "78 Murtala Mohammed", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Okonkwo Adewale', 'okonkwo.adewale187@example.com', '+2348089365804', '{"street": "189 Awolowo Road", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Food", "Fashion", "Home & Garden"]}'),
('Obinna Aliyu', 'obinna.aliyu903@example.com', '+2348045363859', '{"street": "33 Adekunle Fajuyi", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Eze Yusuf', 'eze.yusuf914@example.com', '+2348015335568', '{"street": "84 Oduduwa", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": false, "categories": ["Food"]}'),
('Jide Okonkwo', 'jide.okonkwo195@example.com', '+2348052063524', '{"street": "85 Sultan Abubakar", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Beauty"]}'),
('Tunde Adebayo', 'tunde.adebayo788@example.com', '+2348095191361', '{"street": "108 Murtala Mohammed", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Food", "Toys", "Beauty"]}'),
('Abdul Nwosu', 'abdul.nwosu903@example.com', '+2348006212101', '{"street": "188 Yakubu Gowon", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Fashion"]}'),
('Yusuf Olu', 'yusuf.olu888@example.com', '+2348073000626', '{"street": "174 Marina Road", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Home & Garden", "Toys"]}'),
('Mohammed Oladipo', 'mohammed.oladipo719@example.com', '+2348072333427', '{"street": "105 Allen Avenue", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden"]}'),
('Okonkwo Eze', 'okonkwo.eze18@example.com', '+2348070580506', '{"street": "103 Adetokunbo Ademola", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Food"]}'),
('Bola Okonkwo', 'bola.okonkwo77@example.com', '+2348086089661', '{"street": "111 Olusegun Obasanjo", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Food", "Beauty", "Electronics"]}'),
('Chika Balogun', 'chika.balogun820@example.com', '+2348058194763', '{"street": "90 Adetokunbo Ademola", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Beauty"]}'),
('Blessing Akinwande', 'blessing.akinwande611@example.com', '+2348091337285', '{"street": "131 Marina Road", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Electronics"]}'),
('Funke Balogun', 'funke.balogun11@example.com', '+2348025233413', '{"street": "139 Yakubu Gowon", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Home & Garden"]}'),
('Chioma Adewale', 'chioma.adewale621@example.com', '+2348034594750', '{"street": "10 Ahmadu Bello Way", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Food", "Toys"]}'),
('Sani Aliyu', 'sani.aliyu20@example.com', '+2348079060690', '{"street": "46 Adetokunbo Ademola", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Food", "Toys"]}'),
('Patience Olu', 'patience.olu844@example.com', '+2348066999440', '{"street": "88 Anthony Enahoro", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Sports", "Toys"]}'),
('Ngozi Balogun', 'ngozi.balogun949@example.com', '+2348015569945', '{"street": "130 Oduduwa", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Sports"]}'),
('Halima Adeyemi', 'halima.adeyemi631@example.com', '+2348061206538', '{"street": "136 Allen Avenue", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Home & Garden"]}'),
('Musa Afolayan', 'musa.afolayan280@example.com', '+2348067886235', '{"street": "53 Olusegun Obasanjo", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Books", "Home & Garden", "Fashion"]}'),
('Amina Okonkwo', 'amina.okonkwo605@example.com', '+2348080173354', '{"street": "78 Ahmadu Bello Way", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Electronics", "Books"]}'),
('Chioma Chukwu', 'chioma.chukwu365@example.com', '+2348007536652', '{"street": "173 Samuel Ladoke Akintola", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden"]}'),
('Zainab Akintola', 'zainab.akintola36@example.com', '+2348029878019', '{"street": "186 Obafemi Awolowo", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Food"]}'),
('Abdul Uche', 'abdul.uche464@example.com', '+2348088429142', '{"street": "47 Nnamdi Azikiwe", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": true, "categories": ["Food", "Home & Garden", "Electronics"]}'),
('Temitope Okorie', 'temitope.okorie412@example.com', '+2348023410842', '{"street": "89 Emeka Anyaoku", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Home & Garden"]}'),
('Zara Okonkwo', 'zara.okonkwo107@example.com', '+2348029924284', '{"street": "181 Sultan Abubakar", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": true, "categories": ["Electronics"]}'),
('Okonkwo Aliyu', 'okonkwo.aliyu108@example.com', '+2348031203351', '{"street": "65 Awolowo Road", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Electronics"]}'),
('Sani Afolayan', 'sani.afolayan114@example.com', '+2348058931272', '{"street": "32 Aminu Kano", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Electronics"]}'),
('Ibrahim Yusuf', 'ibrahim.yusuf199@example.com', '+2348075587561', '{"street": "106 Oduduwa", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Food", "Beauty"]}'),
('Ade Olu', 'ade.olu591@example.com', '+2348041871641', '{"street": "76 Marina Road", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Electronics"]}'),
('Mohammed Ibrahim', 'mohammed.ibrahim306@example.com', '+2348070694976', '{"street": "80 Marina Road", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Electronics"]}'),
('Kemi Alade', 'kemi.alade455@example.com', '+2348004494938', '{"street": "7 Michael Okpara", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Toys"]}'),
('Ifeoma Onyeka', 'ifeoma.onyeka957@example.com', '+2348066829688', '{"street": "13 Allen Avenue", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden"]}'),
('Funke Ibrahim', 'funke.ibrahim698@example.com', '+2348067297970', '{"street": "115 Allen Avenue", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Sports"]}'),
('Bola Aliyu', 'bola.aliyu745@example.com', '+2348043386537', '{"street": "186 Emeka Anyaoku", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Home & Garden"]}'),
('Ifeoma Chukwu', 'ifeoma.chukwu279@example.com', '+2348095442787', '{"street": "45 Ahmadu Bello Way", "city": "Calabar", "zip": "540001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Electronics", "Toys"]}'),
('Chukwu Afolayan', 'chukwu.afolayan787@example.com', '+2348033255153', '{"street": "162 Adetokunbo Ademola", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden", "Sports", "Fashion"]}'),
('Zara Okafor', 'zara.okafor674@example.com', '+2348021289860', '{"street": "45 Yakubu Gowon", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": true, "categories": ["Books", "Food"]}'),
('Okonkwo Adewale', 'okonkwo.adewale305@example.com', '+2348060852969', '{"street": "125 Allen Avenue", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": true, "categories": ["Food", "Fashion"]}'),
('Abdul Afolayan', 'abdul.afolayan311@example.com', '+2348049074728', '{"street": "12 Olusegun Obasanjo", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Food"]}'),
('Ngozi Ogunleye', 'ngozi.ogunleye334@example.com', '+2348056258856', '{"street": "85 Michael Okpara", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Food", "Home & Garden"]}'),
('Chidinma Onyeka', 'chidinma.onyeka883@example.com', '+2348069217114', '{"street": "33 Ahmadu Bello Way", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Toys"]}'),
('Abdul Akintola', 'abdul.akintola649@example.com', '+2348019942359', '{"street": "197 Nnamdi Azikiwe", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Sani Umar', 'sani.umar455@example.com', '+2348028581632', '{"street": "173 Allen Avenue", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": true, "categories": ["Books", "Beauty"]}'),
('Ifeoma Okorie', 'ifeoma.okorie17@example.com', '+2348008907267', '{"street": "55 Murtala Mohammed", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Sports", "Books"]}'),
('Amara Olu', 'amara.olu951@example.com', '+2348041067120', '{"street": "162 Marina Road", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Sports"]}'),
('Zara Onyeka', 'zara.onyeka353@example.com', '+2348086979268', '{"street": "103 Anthony Enahoro", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": false, "categories": ["Food", "Home & Garden"]}'),
('Emeka Alade', 'emeka.alade33@example.com', '+2348090249093', '{"street": "12 Sultan Abubakar", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": false, "categories": ["Food"]}'),
('Kemi Eze', 'kemi.eze380@example.com', '+2348050587590', '{"street": "18 Obafemi Awolowo", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Books", "Electronics", "Food"]}'),
('Bola Ogbonna', 'bola.ogbonna837@example.com', '+2348041625203', '{"street": "136 Herbert Macaulay", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Abdul Ibrahim', 'abdul.ibrahim439@example.com', '+2348074544750', '{"street": "181 Samuel Ladoke Akintola", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden", "Beauty"]}'),
('Jide Umar', 'jide.umar179@example.com', '+2348064259445', '{"street": "88 Awolowo Road", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden", "Electronics", "Food"]}'),
('Emeka Obi', 'emeka.obi533@example.com', '+2348089829793', '{"street": "169 Marina Road", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Food"]}'),
('Zainab Balogun', 'zainab.balogun943@example.com', '+2348008204349', '{"street": "70 Ibrahim Taiwo", "city": "Calabar", "zip": "540001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Food"]}'),
('Okonkwo Afolayan', 'okonkwo.afolayan787@example.com', '+2348085117535', '{"street": "144 Anthony Enahoro", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Food"]}'),
('Ngozi Olu', 'ngozi.olu88@example.com', '+2348009585128', '{"street": "164 Marina Road", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Beauty"]}'),
('Okonkwo Oladipo', 'okonkwo.oladipo300@example.com', '+2348008321055', '{"street": "121 Michael Okpara", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": true, "categories": ["Books", "Sports"]}'),
('Temitope Akintola', 'temitope.akintola810@example.com', '+2348044792999', '{"street": "23 Aminu Kano", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Books", "Electronics", "Fashion"]}'),
('Eze Okoro', 'eze.okoro848@example.com', '+2348070527886', '{"street": "36 Awolowo Road", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Beauty", "Books"]}'),
('Jide Okoh', 'jide.okoh659@example.com', '+2348066878570', '{"street": "105 Adekunle Fajuyi", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Electronics"]}'),
('Chukwu Okonkwo', 'chukwu.okonkwo85@example.com', '+2348099850758', '{"street": "8 Ahmadu Bello Way", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": true, "categories": ["Fashion", "Home & Garden", "Food"]}'),
('Amara Nwosu', 'amara.nwosu861@example.com', '+2348066008429', '{"street": "149 Awolowo Road", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Food", "Fashion"]}'),
('Obinna Okonkwo', 'obinna.okonkwo86@example.com', '+2348042692624', '{"street": "22 Ibrahim Taiwo", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden"]}'),
('Abdul Mustapha', 'abdul.mustapha698@example.com', '+2348026998388', '{"street": "39 Herbert Macaulay", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Fashion"]}'),
('Ade Okafor', 'ade.okafor260@example.com', '+2348032682084', '{"street": "107 Anthony Enahoro", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Electronics", "Fashion"]}'),
('Ifeoma Eze', 'ifeoma.eze721@example.com', '+2348041650570', '{"street": "27 Awolowo Road", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Beauty"]}'),
('Mohammed Uche', 'mohammed.uche998@example.com', '+2348031470015', '{"street": "83 Oduduwa", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Books"]}'),
('Wale Ibrahim', 'wale.ibrahim587@example.com', '+2348012552023', '{"street": "187 Allen Avenue", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Books"]}'),
('Bola Obi', 'bola.obi737@example.com', '+2348055374299', '{"street": "162 Herbert Macaulay", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": false, "categories": ["Electronics"]}'),
('Temitope Okonkwo', 'temitope.okonkwo852@example.com', '+2348003391112', '{"street": "127 Adekunle Fajuyi", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Books", "Toys", "Home & Garden"]}'),
('Ifeoma Onyeama', 'ifeoma.onyeama275@example.com', '+2348014110901', '{"street": "101 Adekunle Fajuyi", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Funke Adeyemi', 'funke.adeyemi48@example.com', '+2348006333215', '{"street": "11 Anthony Enahoro", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Food", "Toys"]}'),
('Musa Okoh', 'musa.okoh301@example.com', '+2348048776609', '{"street": "199 Aminu Kano", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": false, "categories": ["Books", "Sports"]}'),
('Bola Okonkwo', 'bola.okonkwo898@example.com', '+2348044993362', '{"street": "16 Marina Road", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Toys"]}'),
('Adanna Oladipo', 'adanna.oladipo328@example.com', '+2348030004065', '{"street": "177 Michael Okpara", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Amina Okafor', 'amina.okafor32@example.com', '+2348098884000', '{"street": "199 Yakubu Gowon", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Books", "Electronics", "Sports"]}'),
('Musa Olu', 'musa.olu836@example.com', '+2348096198956', '{"street": "189 Oduduwa", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Books", "Food"]}'),
('Temitope Adeleke', 'temitope.adeleke407@example.com', '+2348026653083', '{"street": "152 Michael Okpara", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden"]}'),
('Abdul Onyeka', 'abdul.onyeka791@example.com', '+2348058939816', '{"street": "16 Herbert Macaulay", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Zara Bello', 'zara.bello553@example.com', '+2348081523134', '{"street": "54 Oduduwa", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Books", "Sports", "Toys"]}'),
('Amina Onyeama', 'amina.onyeama5@example.com', '+2348074826829', '{"street": "97 Awolowo Road", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Electronics"]}'),
('Blessing Afolayan', 'blessing.afolayan762@example.com', '+2348080085810', '{"street": "57 Oduduwa", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Books", "Fashion"]}'),
('Musa Okoh', 'musa.okoh211@example.com', '+2348019460860', '{"street": "13 Marina Road", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Electronics"]}'),
('Fatima Eze', 'fatima.eze175@example.com', '+2348068291790', '{"street": "73 Ahmadu Bello Way", "city": "Zaria", "zip": "810001"}', '{"marketing_opt_in": true, "categories": ["Fashion"]}'),
('Eze Adeyemi', 'eze.adeyemi737@example.com', '+2348086621481', '{"street": "94 Herbert Macaulay", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Books"]}'),
('Ifeoma Oladipo', 'ifeoma.oladipo937@example.com', '+2348027477999', '{"street": "177 Herbert Macaulay", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Fashion", "Home & Garden"]}'),
('Ade Onyema', 'ade.onyema587@example.com', '+2348043716525', '{"street": "78 Awolowo Road", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Toys"]}'),
('Olu Obi', 'olu.obi247@example.com', '+2348019550307', '{"street": "107 Sultan Abubakar", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Books", "Home & Garden", "Sports"]}'),
('Amara Mohammed', 'amara.mohammed803@example.com', '+2348025198357', '{"street": "167 Oduduwa", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": false, "categories": ["Food", "Electronics", "Toys"]}'),
('Eze Onyeka', 'eze.onyeka357@example.com', '+2348044063615', '{"street": "142 Emeka Anyaoku", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Books", "Electronics", "Fashion"]}'),
('Segun Ogbonna', 'segun.ogbonna547@example.com', '+2348071228287', '{"street": "13 Herbert Macaulay", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Fashion", "Beauty"]}'),
('Chioma Balogun', 'chioma.balogun457@example.com', '+2348003797873', '{"street": "1 Allen Avenue", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Home & Garden", "Books"]}'),
('Mohammed Eze', 'mohammed.eze144@example.com', '+2348038839091', '{"street": "188 Aminu Kano", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Toys", "Fashion"]}'),
('Ifeoma Onyeka', 'ifeoma.onyeka455@example.com', '+2348051188745', '{"street": "61 Obafemi Awolowo", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Sports"]}'),
('Musa Ogunleye', 'musa.ogunleye550@example.com', '+2348016074254', '{"street": "100 Olusegun Obasanjo", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Books", "Food", "Home & Garden"]}'),
('Tunde Akinwande', 'tunde.akinwande160@example.com', '+2348066778118', '{"street": "137 Adekunle Fajuyi", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Books", "Sports", "Toys"]}'),
('Femi Adeleke', 'femi.adeleke997@example.com', '+2348029956825', '{"street": "181 Oduduwa", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden", "Toys"]}'),
('Musa Onyeka', 'musa.onyeka173@example.com', '+2348063333235', '{"street": "148 Awolowo Road", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Sports"]}'),
('Mohammed Onyia', 'mohammed.onyia20@example.com', '+2348013734339', '{"street": "190 Ahmadu Bello Way", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Books", "Sports"]}'),
('Temitope Bakare', 'temitope.bakare566@example.com', '+2348057115156', '{"street": "38 Aminu Kano", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": false, "categories": ["Books"]}'),
('Emeka Eze', 'emeka.eze142@example.com', '+2348080333453', '{"street": "195 Oduduwa", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Fashion", "Sports", "Home & Garden"]}'),
('Okonkwo Alade', 'okonkwo.alade860@example.com', '+2348004818882', '{"street": "181 Ibrahim Taiwo", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Books"]}'),
('Ade Adeleke', 'ade.adeleke719@example.com', '+2348087003321', '{"street": "88 Obafemi Awolowo", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Food"]}'),
('Kemi Oladipo', 'kemi.oladipo705@example.com', '+2348049731789', '{"street": "135 Obafemi Awolowo", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Sports"]}'),
('Fatima Alade', 'fatima.alade450@example.com', '+2348053376998', '{"street": "19 Ahmadu Bello Way", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Fashion"]}'),
('Amina Adebayo', 'amina.adebayo627@example.com', '+2348015162634', '{"street": "90 Emeka Anyaoku", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Food", "Books"]}'),
('Ifeoma Uche', 'ifeoma.uche942@example.com', '+2348091059082', '{"street": "171 Ibrahim Taiwo", "city": "Port Harcourt", "zip": "500001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Books", "Home & Garden"]}'),
('Musa Ibrahim', 'musa.ibrahim26@example.com', '+2348098594790', '{"street": "154 Adekunle Fajuyi", "city": "Ibadan", "zip": "200001"}', '{"marketing_opt_in": false, "categories": ["Beauty", "Sports", "Toys"]}'),
('Wale Obi', 'wale.obi265@example.com', '+2348028262768', '{"street": "71 Anthony Enahoro", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": true, "categories": ["Food", "Toys"]}'),
('Amina Uche', 'amina.uche506@example.com', '+2348070629744', '{"street": "49 Nnamdi Azikiwe", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": true, "categories": ["Food", "Books", "Electronics"]}'),
('Funke Mohammed', 'funke.mohammed266@example.com', '+2348032436959', '{"street": "43 Sultan Abubakar", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Kunle Chukwu', 'kunle.chukwu525@example.com', '+2348099289696', '{"street": "159 Allen Avenue", "city": "Abuja", "zip": "900001"}', '{"marketing_opt_in": false, "categories": ["Beauty"]}'),
('Jide Ojo', 'jide.ojo656@example.com', '+2348010895118', '{"street": "189 Adekunle Fajuyi", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": false, "categories": ["Sports", "Beauty", "Electronics"]}'),
('Patience Onyia', 'patience.onyia422@example.com', '+2348014718620', '{"street": "74 Herbert Macaulay", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Food", "Books"]}'),
('Zara Mustapha', 'zara.mustapha234@example.com', '+2348096276325', '{"street": "160 Ibrahim Taiwo", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Electronics", "Sports"]}'),
('Okonkwo Eze', 'okonkwo.eze93@example.com', '+2348029447582', '{"street": "119 Ahmadu Bello Way", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Sports"]}'),
('Blessing Ogunleye', 'blessing.ogunleye45@example.com', '+2348010918372', '{"street": "22 Ahmadu Bello Way", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Toys", "Home & Garden"]}'),
('Tunde Umar', 'tunde.umar165@example.com', '+2348099417024', '{"street": "109 Anthony Enahoro", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Electronics", "Food"]}'),
('Chinedu Uche', 'chinedu.uche173@example.com', '+2348075440623', '{"street": "90 Emeka Anyaoku", "city": "Kaduna", "zip": "800001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Toys", "Beauty"]}'),
('Okonkwo Adeleke', 'okonkwo.adeleke667@example.com', '+2348039722225', '{"street": "181 Yakubu Gowon", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Toys"]}'),
('Ngozi Umar', 'ngozi.umar700@example.com', '+2348099799247', '{"street": "155 Ahmadu Bello Way", "city": "Warri", "zip": "330001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Food"]}'),
('Obinna Adeleke', 'obinna.adeleke773@example.com', '+2348021366219', '{"street": "41 Adekunle Fajuyi", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Electronics"]}'),
('Patience Umar', 'patience.umar48@example.com', '+2348046178680', '{"street": "137 Ibrahim Taiwo", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": true, "categories": ["Home & Garden", "Beauty"]}'),
('Eze Aliyu', 'eze.aliyu733@example.com', '+2348065458601', '{"street": "142 Sultan Abubakar", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Sports", "Fashion", "Toys"]}'),
('Amara Aliyu', 'amara.aliyu16@example.com', '+2348006543710', '{"street": "178 Nnamdi Azikiwe", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": true, "categories": ["Food"]}'),
('Ibrahim Alade', 'ibrahim.alade785@example.com', '+2348024825931', '{"street": "156 Michael Okpara", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": true, "categories": ["Food", "Electronics", "Fashion"]}'),
('Fatima Umar', 'fatima.umar289@example.com', '+2348032128502', '{"street": "123 Adekunle Fajuyi", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": false, "categories": ["Home & Garden", "Beauty"]}'),
('Amara Okoro', 'amara.okoro644@example.com', '+2348099822593', '{"street": "67 Oduduwa", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Electronics"]}'),
('Grace Ogbonna', 'grace.ogbonna637@example.com', '+2348078811042', '{"street": "152 Adekunle Fajuyi", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": false, "categories": ["Sports"]}'),
('Temitope Onyeka', 'temitope.onyeka711@example.com', '+2348033463402', '{"street": "135 Emeka Anyaoku", "city": "Benin City", "zip": "300001"}', '{"marketing_opt_in": true, "categories": ["Beauty", "Books"]}'),
('Jide Ibrahim', 'jide.ibrahim469@example.com', '+2348073197010', '{"street": "159 Ibrahim Taiwo", "city": "Aba", "zip": "450001"}', '{"marketing_opt_in": false, "categories": ["Books"]}'),
('Segun Eze', 'segun.eze613@example.com', '+2348084051519', '{"street": "136 Ahmadu Bello Way", "city": "Maiduguri", "zip": "600001"}', '{"marketing_opt_in": false, "categories": ["Toys", "Food"]}'),
('Grace Afolayan', 'grace.afolayan206@example.com', '+2348096197482', '{"street": "72 Emeka Anyaoku", "city": "Enugu", "zip": "400001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Toys"]}'),
('Musa Okonkwo', 'musa.okonkwo258@example.com', '+2348031280211', '{"street": "155 Herbert Macaulay", "city": "Calabar", "zip": "540001"}', '{"marketing_opt_in": true, "categories": ["Books"]}'),
('Halima Umar', 'halima.umar545@example.com', '+2348069152799', '{"street": "132 Oduduwa", "city": "Calabar", "zip": "540001"}', '{"marketing_opt_in": true, "categories": ["Toys", "Books", "Food"]}'),
('Temitope Akinwande', 'temitope.akinwande133@example.com', '+2348031969160', '{"street": "18 Herbert Macaulay", "city": "Abeokuta", "zip": "110001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Beauty", "Home & Garden"]}'),
('Temitope Ogunleye', 'temitope.ogunleye352@example.com', '+2348016278469', '{"street": "87 Ibrahim Taiwo", "city": "Kano", "zip": "700001"}', '{"marketing_opt_in": true, "categories": ["Toys", "Fashion", "Sports"]}'),
('Jide Okafor', 'jide.okafor425@example.com', '+2348092286045', '{"street": "51 Nnamdi Azikiwe", "city": "Onitsha", "zip": "430001"}', '{"marketing_opt_in": true, "categories": ["Electronics", "Toys"]}'),
('Wale Mohammed', 'wale.mohammed40@example.com', '+2348013136976', '{"street": "146 Herbert Macaulay", "city": "Lagos", "zip": "100001"}', '{"marketing_opt_in": true, "categories": ["Books", "Home & Garden"]}');
INSERT INTO products (product_name, price, category, stock_quantity, attributes)
VALUES
('Pro Biography', 14.35, 'Books', 831, '{"format": "e-Book", "ISBN": "978-0-437-32323-1", "genre": "Non-Fiction"}'),
('Science Fiction Novel', 24.79, 'Books', 495, '{"format": "Paperback", "ISBN": "978-1-188-72744-6", "genre": "Non-Fiction"}'),
('Cookbook', 869.65, 'Books', 615, '{"author": "Donald Frye", "pages": 478, "publisher": "Larson and Sons", "language": "English"}'),
('Advanced Formal Oxfords', 224.87, 'Footwear', 348, '{"closure": "Lace-up", "sole_material": "PU", "waterproof": false}'),
('Smart History Book', 1034.56, 'Books', 417, '{"author": "Tracy Oconnor", "pages": 796, "publisher": "Mcdonald, Phillips and Miller", "language": "English"}'),
('Premium Blazer', 79.48, 'Fashion', 350, '{"care_instructions": "Machine Wash", "style": "Vintage"}'),
('Moisturizer', 7.35, 'Beauty', 539, '{"organic": false, "cruelty_free": true}'),
('Premium Wall Clock', 384.15, 'Home & Garden', 580, '{"dimensions": "33x173cm", "color": "maroon", "material": "Ceramic"}'),
('Bedding Set', 82.47, 'Home & Garden', 910, '{"assembly_required": false, "weight_capacity": "104kg"}'),
('Gaming Mouse', 79.2, 'Electronics', 106, '{"RAM": "8GB", "storage": "1000GB HDD", "screen_size": "13.3 inch"}'),
('History Book', 96.03, 'Books', 823, '{"format": "Paperback", "ISBN": "978-0-527-68439-6", "genre": "Non-Fiction"}'),
('Moisturizer', 76.79, 'Beauty', 242, '{"organic": false, "cruelty_free": true}'),
('Flip Flops', 62.01, 'Footwear', 610, '{"closure": "Lace-up", "sole_material": "PU", "waterproof": false}'),
('Perfume', 819.61, 'Beauty', 160, '{"organic": false, "cruelty_free": true}'),
('Advanced Dress Shirt', 15.22, 'Fashion', 829, '{"care_instructions": "Dry Clean Only", "style": "Casual"}'),
('Mechanical Keyboard', 84.99, 'Electronics', 590, '{"resolution": "FHD", "connectivity": "USB-C", "processor": "Intel i5"}'),
('Blazer', 225.65, 'Fashion', 629, '{"care_instructions": "Machine Wash", "style": "Modern"}'),
('Premium Coffee Table', 285.88, 'Home & Garden', 56, '{"dimensions": "20x91cm", "color": "white", "material": "Metal"}'),
('Luxury Sandals', 514.39, 'Footwear', 802, '{"size": "47", "color": "Red", "material": "Synthetic"}'),
('Formal Oxfords', 112.39, 'Footwear', 283, '{"closure": "Velcro", "sole_material": "PU", "waterproof": true}'),
('Fitness Tracker', 462.01, 'Electronics', 107, '{"color": "Black", "battery_life": "20h", "weight": "906g"}'),
('Mechanical Keyboard', 480.69, 'Electronics', 986, '{"RAM": "16GB", "storage": "256GB HDD", "screen_size": "13.3 inch"}'),
('Makeup Kit', 37.61, 'Beauty', 833, '{"skin_type": "Sensitive", "volume": "316ml", "fragrance": "Floral"}'),
('Premium Gaming Mouse', 516.72, 'Electronics', 372, '{"resolution": "4K", "connectivity": "Wi-Fi 6", "processor": "AMD Ryzen 7"}'),
('Wall Clock', 266.23, 'Home & Garden', 265, '{"assembly_required": true, "weight_capacity": "161kg"}'),
('Biography', 1343.73, 'Books', 451, '{"author": "James Watts", "pages": 795, "publisher": "Adkins-Hall", "language": "English"}'),
('Science Fiction Novel', 51.81, 'Books', 177, '{"format": "Paperback", "ISBN": "978-1-4403-0720-1", "genre": "Non-Fiction"}'),
('Body Lotion', 142.17, 'Beauty', 678, '{"organic": true, "cruelty_free": false}'),
('Face Serum', 48.82, 'Beauty', 185, '{"skin_type": "All", "volume": "441ml", "fragrance": "Floral"}'),
('Decorative Vase', 969.02, 'Home & Garden', 788, '{"assembly_required": true, "weight_capacity": "303kg"}'),
('Pro Skirt', 484.48, 'Fashion', 417, '{"care_instructions": "Dry Clean Only", "style": "Vintage"}'),
('Wireless Skirt', 14.71, 'Fashion', 301, '{"care_instructions": "Dry Clean Only", "style": "Vintage"}'),
('Wireless Headphones', 188.36, 'Electronics', 244, '{"color": "White", "battery_life": "17h", "weight": "524g"}'),
('Science Fiction Novel', 1741.56, 'Books', 698, '{"format": "e-Book", "ISBN": "978-1-08-555583-8", "genre": "Fiction"}'),
('Body Lotion', 252.09, 'Beauty', 436, '{"skin_type": "Sensitive", "volume": "121ml", "fragrance": "Floral"}'),
('Eco-Friendly History Book', 9.38, 'Books', 457, '{"author": "Rebecca Hays", "pages": 789, "publisher": "Petersen Ltd", "language": "English"}'),
('Premium T-Shirt', 10.79, 'Fashion', 429, '{"size": "XL", "color": "teal", "material": "Silk"}'),
('Pro Body Lotion', 662.78, 'Beauty', 301, '{"skin_type": "Sensitive", "volume": "141ml", "fragrance": "Floral"}'),
('Advanced Summer Dress', 479.64, 'Fashion', 269, '{"care_instructions": "Machine Wash", "style": "Formal"}'),
('Training Shoes', 210.68, 'Footwear', 28, '{"closure": "Lace-up", "sole_material": "Rubber", "waterproof": true}'),
('Bedding Set', 296.57, 'Home & Garden', 903, '{"assembly_required": true, "weight_capacity": "421kg"}'),
('Decorative Vase', 82.83, 'Home & Garden', 437, '{"assembly_required": false, "weight_capacity": "388kg"}'),
('Cookware Set', 779.0, 'Home & Garden', 195, '{"dimensions": "185x79cm", "color": "aqua", "material": "Metal"}'),
('Face Serum', 51.81, 'Beauty', 485, '{"skin_type": "Sensitive", "volume": "35ml", "fragrance": "Floral"}'),
('Luxury Flip Flops', 458.82, 'Footwear', 949, '{"closure": "Velcro", "sole_material": "EVA", "waterproof": false}'),
('Garden Chair', 55.01, 'Home & Garden', 417, '{"dimensions": "176x46cm", "color": "teal", "material": "Ceramic"}'),
('Eco-Friendly Decorative Vase', 58.23, 'Home & Garden', 24, '{"assembly_required": true, "weight_capacity": "102kg"}'),
('Advanced Sunscreen', 60.6, 'Beauty', 430, '{"skin_type": "Dry", "volume": "231ml", "fragrance": "Unscented"}'),
('Garden Chair', 10.46, 'Home & Garden', 428, '{"dimensions": "73x72cm", "color": "yellow", "material": "Metal"}'),
('Pro External SSD', 652.14, 'Electronics', 266, '{"RAM": "4GB", "storage": "1000GB SSD", "screen_size": "15.6 inch"}'),
('Smart Garden Chair', 30.77, 'Home & Garden', 29, '{"assembly_required": true, "weight_capacity": "397kg"}'),
('Flip Flops', 533.48, 'Footwear', 176, '{"size": "39", "color": "White", "material": "Synthetic"}'),
('Bedding Set', 640.6, 'Home & Garden', 301, '{"assembly_required": false, "weight_capacity": "406kg"}'),
('Summer Dress', 16.34, 'Fashion', 152, '{"care_instructions": "Machine Wash", "style": "Vintage"}'),
('Wall Clock', 1054.48, 'Home & Garden', 307, '{"dimensions": "112x45cm", "color": "fuchsia", "material": "Ceramic"}'),
('Wireless Shorts', 980.26, 'Fashion', 433, '{"size": "S", "color": "green", "material": "Wool"}'),
('Sweater', 57.18, 'Fashion', 769, '{"size": "XL", "color": "green", "material": "Cotton"}'),
('Wireless Headphones', 174.4, 'Electronics', 486, '{"color": "Blue", "battery_life": "21h", "weight": "801g"}'),
('Running Shoes', 417.69, 'Footwear', 481, '{"closure": "Slip-on", "sole_material": "Rubber", "waterproof": false}'),
('Luxury Hair Conditioner', 16.87, 'Beauty', 375, '{"skin_type": "All", "volume": "223ml", "fragrance": "Floral"}'),
('Pro Storage Cabinet', 149.26, 'Home & Garden', 79, '{"assembly_required": true, "weight_capacity": "337kg"}'),
('Poetry Collection', 57.12, 'Books', 175, '{"format": "Paperback", "ISBN": "978-1-207-36232-0", "genre": "Fiction"}'),
('Eco-Friendly Fitness Tracker', 44.39, 'Electronics', 206, '{"RAM": "8GB", "storage": "128GB HDD", "screen_size": "15.6 inch"}'),
('Luxury Shampoo', 69.25, 'Beauty', 353, '{"organic": false, "cruelty_free": true}'),
('Coffee Table', 98.28, 'Home & Garden', 760, '{"dimensions": "54x186cm", "color": "silver", "material": "Plastic"}'),
('Tool Kit', 39.71, 'Home & Garden', 523, '{"assembly_required": false, "weight_capacity": "317kg"}'),
('Lipstick', 187.31, 'Beauty', 534, '{"skin_type": "Sensitive", "volume": "444ml", "fragrance": "Citrus"}'),
('Sunscreen', 669.23, 'Beauty', 48, '{"organic": false, "cruelty_free": false}'),
('Running Shoes', 58.81, 'Footwear', 260, '{"closure": "Velcro", "sole_material": "EVA", "waterproof": true}'),
('External SSD', 20.16, 'Electronics', 237, '{"RAM": "4GB", "storage": "512GB SSD", "screen_size": "17.3 inch"}'),
('Dress Shirt', 57.63, 'Fashion', 11, '{"care_instructions": "Dry Clean Only", "style": "Formal"}'),
('Formal Oxfords', 80.03, 'Footwear', 290, '{"size": "41", "color": "White", "material": "Canvas"}'),
('Sunscreen', 597.35, 'Beauty', 552, '{"organic": false, "cruelty_free": false}'),
('Advanced Hair Conditioner', 761.95, 'Beauty', 37, '{"skin_type": "Sensitive", "volume": "136ml", "fragrance": "Citrus"}'),
('Smart Portable Speaker', 93.65, 'Electronics', 490, '{"resolution": "HD", "connectivity": "USB-C", "processor": "Apple M1"}'),
('Training Shoes', 85.53, 'Footwear', 197, '{"closure": "Slip-on", "sole_material": "PU", "waterproof": false}'),
('Mechanical Keyboard', 1915.87, 'Electronics', 963, '{"color": "Black", "battery_life": "21h", "weight": "301g"}'),
('Portable Speaker', 202.81, 'Electronics', 210, '{"color": "Blue", "battery_life": "45h", "weight": "325g"}'),
('Formal Oxfords', 236.68, 'Footwear', 121, '{"size": "38", "color": "Black", "material": "Canvas"}'),
('Casual Sneakers', 14.11, 'Footwear', 18, '{"closure": "Lace-up", "sole_material": "PU", "waterproof": false}'),
('Training Shoes', 709.54, 'Footwear', 748, '{"closure": "Lace-up", "sole_material": "Rubber", "waterproof": false}'),
('Smart Storage Cabinet', 206.42, 'Home & Garden', 184, '{"assembly_required": false, "weight_capacity": "194kg"}'),
('Moisturizer', 28.22, 'Beauty', 187, '{"organic": false, "cruelty_free": true}'),
('Flip Flops', 5.26, 'Footwear', 278, '{"closure": "Slip-on", "sole_material": "PU", "waterproof": false}'),
('Shampoo', 83.13, 'Beauty', 208, '{"organic": false, "cruelty_free": true}'),
('Bedding Set', 424.67, 'Home & Garden', 190, '{"assembly_required": true, "weight_capacity": "37kg"}'),
('Sunscreen', 203.79, 'Beauty', 260, '{"skin_type": "Oily", "volume": "115ml", "fragrance": "Woody"}'),
('Premium Casual Sneakers', 212.58, 'Footwear', 811, '{"size": "47", "color": "Black", "material": "Canvas"}'),
('Advanced Tool Kit', 8.58, 'Home & Garden', 390, '{"assembly_required": true, "weight_capacity": "113kg"}'),
('Sunscreen', 213.3, 'Beauty', 700, '{"skin_type": "Sensitive", "volume": "362ml", "fragrance": "Woody"}'),
('Training Shoes', 390.74, 'Footwear', 557, '{"closure": "Velcro", "sole_material": "PU", "waterproof": false}'),
('Sandals', 21.71, 'Footwear', 79, '{"size": "45", "color": "Blue", "material": "Canvas"}'),
('Sweater', 25.19, 'Fashion', 858, '{"size": "S", "color": "white", "material": "Wool"}'),
('Perfume', 926.61, 'Beauty', 65, '{"organic": false, "cruelty_free": false}'),
('Mechanical Keyboard', 481.54, 'Electronics', 856, '{"resolution": "FHD", "connectivity": "Bluetooth 5.0", "processor": "AMD Ryzen 7"}'),
('T-Shirt', 28.37, 'Fashion', 62, '{"size": "L", "color": "fuchsia", "material": "Silk"}'),
('Flip Flops', 15.43, 'Footwear', 208, '{"closure": "Lace-up", "sole_material": "PU", "waterproof": false}'),
('Sweater', 79.42, 'Fashion', 852, '{"care_instructions": "Dry Clean Only", "style": "Vintage"}'),
('Running Shoes', 98.84, 'Footwear', 166, '{"closure": "Lace-up", "sole_material": "EVA", "waterproof": false}'),
('Bluetooth Earbuds', 1280.19, 'Electronics', 58, '{"color": "Silver", "battery_life": "29h", "weight": "671g"}'),
('Jeans', 44.47, 'Fashion', 294, '{"care_instructions": "Dry Clean Only", "style": "Formal"}'),
('Casual Sneakers', 99.58, 'Footwear', 216, '{"closure": "Velcro", "sole_material": "PU", "waterproof": true}'),
('Bluetooth Earbuds', 89.83, 'Electronics', 866, '{"resolution": "FHD", "connectivity": "USB-C", "processor": "Intel i5"}'),
('Cookbook', 316.75, 'Books', 965, '{"author": "Peter Powell", "pages": 505, "publisher": "Scott-Daniel", "language": "English"}'),
('Body Lotion', 613.76, 'Beauty', 74, '{"organic": false, "cruelty_free": true}'),
('Cookbook', 319.69, 'Books', 842, '{"format": "Hardcover", "ISBN": "978-0-18-248363-1", "genre": "Fiction"}'),
('Formal Oxfords', 72.26, 'Footwear', 292, '{"size": "44", "color": "White", "material": "Mesh"}'),
('Advanced Summer Dress', 48.6, 'Fashion', 915, '{"size": "L", "color": "maroon", "material": "Wool"}'),
('External SSD', 979.05, 'Electronics', 473, '{"color": "Silver", "battery_life": "34h", "weight": "137g"}'),
('Shampoo', 10.01, 'Beauty', 215, '{"organic": false, "cruelty_free": false}'),
('Cookbook', 141.97, 'Books', 527, '{"author": "Logan Wolf", "pages": 589, "publisher": "Hunter, Garcia and Castro", "language": "English"}'),
('Hair Conditioner', 477.87, 'Beauty', 741, '{"organic": false, "cruelty_free": true}'),
('Childrens Book', 251.99, 'Books', 15, '{"author": "Judith Shaw", "pages": 685, "publisher": "Stuart PLC", "language": "English"}'),
('Lipstick', 363.57, 'Beauty', 571, '{"skin_type": "All", "volume": "453ml", "fragrance": "Floral"}'),
('Dress Shoes', 158.09, 'Footwear', 163, '{"closure": "Velcro", "sole_material": "Rubber", "waterproof": true}'),
('Shampoo', 31.94, 'Beauty', 280, '{"skin_type": "All", "volume": "105ml", "fragrance": "Citrus"}'),
('Cookware Set', 378.95, 'Home & Garden', 566, '{"assembly_required": false, "weight_capacity": "156kg"}'),
('Programming Textbook', 121.93, 'Books', 904, '{"format": "Paperback", "ISBN": "978-1-80888-438-2", "genre": "Non-Fiction"}'),
('Programming Textbook', 64.07, 'Books', 375, '{"author": "Kelly Buchanan", "pages": 624, "publisher": "Strickland Inc", "language": "English"}'),
('Eco-Friendly Fitness Tracker', 76.92, 'Electronics', 381, '{"resolution": "FHD", "connectivity": "Bluetooth 5.0", "processor": "AMD Ryzen 7"}'),
('Wireless Jacket', 41.2, 'Fashion', 899, '{"size": "L", "color": "fuchsia", "material": "Silk"}'),
('Cookbook', 242.49, 'Books', 216, '{"author": "Mario Hayes", "pages": 728, "publisher": "Moore-Garcia", "language": "English"}'),
('Wireless Sunscreen', 195.19, 'Beauty', 194, '{"organic": true, "cruelty_free": true}'),
('Bluetooth Earbuds', 35.63, 'Electronics', 56, '{"resolution": "4K", "connectivity": "Wi-Fi 6", "processor": "Apple M1"}'),
('Running Shoes', 230.13, 'Footwear', 301, '{"closure": "Velcro", "sole_material": "EVA", "waterproof": false}'),
('Casual Sneakers', 543.68, 'Footwear', 421, '{"size": "45", "color": "Blue", "material": "Canvas"}'),
('Cookware Set', 476.2, 'Home & Garden', 390, '{"assembly_required": false, "weight_capacity": "9kg"}'),
('Smart Portable Speaker', 17.45, 'Electronics', 390, '{"RAM": "8GB", "storage": "128GB HDD", "screen_size": "15.6 inch"}'),
('Self-Help Guide', 196.73, 'Books', 64, '{"author": "Rhonda Sweeney", "pages": 452, "publisher": "Li, Meza and Brown", "language": "English"}'),
('Running Shoes', 31.15, 'Footwear', 64, '{"size": "41", "color": "Red", "material": "Mesh"}'),
('Fitness Tracker', 342.36, 'Electronics', 55, '{"RAM": "32GB", "storage": "128GB SSD", "screen_size": "15.6 inch"}'),
('Hair Conditioner', 314.48, 'Beauty', 34, '{"skin_type": "Sensitive", "volume": "354ml", "fragrance": "Woody"}'),
('Storage Cabinet', 1005.15, 'Home & Garden', 917, '{"assembly_required": true, "weight_capacity": "138kg"}'),
('Smart Biography', 413.95, 'Books', 599, '{"format": "e-Book", "ISBN": "978-1-971699-94-3", "genre": "Fiction"}'),
('Wireless Childrens Book', 819.58, 'Books', 290, '{"author": "Megan Nelson", "pages": 503, "publisher": "Le, Hahn and Turner", "language": "English"}'),
('Wireless Headphones', 66.32, 'Electronics', 699, '{"RAM": "32GB", "storage": "256GB SSD", "screen_size": "17.3 inch"}'),
('Flip Flops', 345.81, 'Footwear', 391, '{"closure": "Lace-up", "sole_material": "Rubber", "waterproof": false}'),
('Poetry Collection', 11.93, 'Books', 535, '{"format": "Hardcover", "ISBN": "978-0-9763998-5-8", "genre": "Non-Fiction"}'),
('Hair Conditioner', 38.33, 'Beauty', 715, '{"skin_type": "Oily", "volume": "259ml", "fragrance": "Woody"}'),
('Cookbook', 98.86, 'Books', 193, '{"author": "Mark Hill", "pages": 159, "publisher": "Thomas, Marquez and Perry", "language": "English"}'),
('Fitness Tracker', 90.84, 'Electronics', 435, '{"color": "White", "battery_life": "26h", "weight": "346g"}'),
('Wall Clock', 79.67, 'Home & Garden', 993, '{"assembly_required": true, "weight_capacity": "387kg"}'),
('Skirt', 1715.12, 'Fashion', 789, '{"care_instructions": "Dry Clean Only", "style": "Vintage"}'),
('Premium Coffee Table', 511.78, 'Home & Garden', 104, '{"dimensions": "170x100cm", "color": "blue", "material": "Ceramic"}'),
('Wireless Storage Cabinet', 588.05, 'Home & Garden', 373, '{"assembly_required": false, "weight_capacity": "494kg"}'),
('Eco-Friendly Gaming Mouse', 1816.92, 'Electronics', 258, '{"color": "Silver", "battery_life": "29h", "weight": "226g"}'),
('E-Reader', 28.35, 'Electronics', 176, '{"color": "White", "battery_life": "41h", "weight": "748g"}'),
('Programming Textbook', 431.67, 'Books', 633, '{"author": "Charles Willis", "pages": 264, "publisher": "Harris-Young", "language": "English"}'),
('History Book', 29.35, 'Books', 366, '{"format": "Paperback", "ISBN": "978-0-86650-578-9", "genre": "Non-Fiction"}'),
('Shampoo', 85.73, 'Beauty', 68, '{"organic": true, "cruelty_free": false}'),
('Business Strategy', 720.1, 'Books', 261, '{"author": "Andrew Clements", "pages": 389, "publisher": "Mcdonald, Williams and Garcia", "language": "English"}'),
('Bluetooth Earbuds', 87.25, 'Electronics', 406, '{"RAM": "16GB", "storage": "128GB SSD", "screen_size": "15.6 inch"}'),
('Dress Shirt', 482.45, 'Fashion', 85, '{"care_instructions": "Machine Wash", "style": "Modern"}'),
('Hiking Boots', 223.98, 'Footwear', 429, '{"closure": "Lace-up", "sole_material": "EVA", "waterproof": false}'),
('Advanced Casual Sneakers', 389.73, 'Footwear', 334, '{"size": "41", "color": "Blue", "material": "Synthetic"}'),
('History Book', 910.69, 'Books', 40, '{"format": "e-Book", "ISBN": "978-1-67776-799-1", "genre": "Fiction"}'),
('Advanced Sunscreen', 671.68, 'Beauty', 635, '{"organic": false, "cruelty_free": false}'),
('Programming Textbook', 69.72, 'Books', 395, '{"author": "Anthony Fisher", "pages": 237, "publisher": "Owens Group", "language": "English"}'),
('Sunscreen', 35.51, 'Beauty', 254, '{"skin_type": "Sensitive", "volume": "76ml", "fragrance": "Citrus"}'),
('Eco-Friendly Running Shoes', 382.44, 'Footwear', 477, '{"size": "46", "color": "Red", "material": "Mesh"}'),
('Storage Cabinet', 311.21, 'Home & Garden', 156, '{"dimensions": "162x180cm", "color": "green", "material": "Ceramic"}'),
('Storage Cabinet', 66.41, 'Home & Garden', 686, '{"dimensions": "89x78cm", "color": "black", "material": "Metal"}'),
('Mechanical Keyboard', 898.7, 'Electronics', 568, '{"color": "White", "battery_life": "17h", "weight": "738g"}'),
('Sunscreen', 300.13, 'Beauty', 308, '{"skin_type": "Sensitive", "volume": "299ml", "fragrance": "Woody"}'),
('Sweater', 979.69, 'Fashion', 415, '{"size": "S", "color": "lime", "material": "Wool"}'),
('Luxury Garden Chair', 295.85, 'Home & Garden', 466, '{"assembly_required": true, "weight_capacity": "208kg"}'),
('Wireless E-Reader', 88.32, 'Electronics', 568, '{"RAM": "4GB", "storage": "512GB SSD", "screen_size": "13.3 inch"}'),
('Luxury Face Serum', 14.41, 'Beauty', 186, '{"skin_type": "Oily", "volume": "390ml", "fragrance": "Woody"}'),
('Mechanical Keyboard', 340.88, 'Electronics', 968, '{"color": "Black", "battery_life": "15h", "weight": "88g"}'),
('Business Strategy', 40.19, 'Books', 345, '{"author": "Dana Stevens", "pages": 217, "publisher": "Martin-Dean", "language": "English"}'),
('Eco-Friendly Biography', 66.32, 'Books', 175, '{"format": "Paperback", "ISBN": "978-0-87210-382-5", "genre": "Non-Fiction"}'),
('Shorts', 34.22, 'Fashion', 32, '{"care_instructions": "Machine Wash", "style": "Vintage"}'),
('Advanced Shorts', 300.27, 'Fashion', 458, '{"care_instructions": "Machine Wash", "style": "Modern"}'),
('Basketball Shoes', 51.1, 'Footwear', 365, '{"size": "42", "color": "White", "material": "Canvas"}'),
('Jacket', 252.64, 'Fashion', 416, '{"size": "M", "color": "purple", "material": "Polyester"}'),
('Hair Conditioner', 234.86, 'Beauty', 855, '{"skin_type": "Dry", "volume": "326ml", "fragrance": "Citrus"}'),
('Jacket', 239.03, 'Fashion', 562, '{"care_instructions": "Machine Wash", "style": "Formal"}'),
('Fitness Tracker', 869.15, 'Electronics', 197, '{"color": "Blue", "battery_life": "40h", "weight": "623g"}'),
('T-Shirt', 240.63, 'Fashion', 36, '{"care_instructions": "Machine Wash", "style": "Casual"}'),
('Premium Lipstick', 37.88, 'Beauty', 598, '{"skin_type": "All", "volume": "120ml", "fragrance": "Woody"}'),
('Casual Sneakers', 39.28, 'Footwear', 331, '{"size": "38", "color": "Gray", "material": "Mesh"}'),
('Luxury Sweater', 74.86, 'Fashion', 286, '{"care_instructions": "Dry Clean Only", "style": "Formal"}'),
('Wireless Headphones', 789.69, 'Electronics', 985, '{"color": "Blue", "battery_life": "16h", "weight": "50g"}'),
('Summer Dress', 19.46, 'Fashion', 427, '{"size": "XL", "color": "lime", "material": "Wool"}'),
('Sunscreen', 72.16, 'Beauty', 819, '{"skin_type": "Sensitive", "volume": "302ml", "fragrance": "Citrus"}'),
('Pro Cookware Set', 360.45, 'Home & Garden', 794, '{"assembly_required": false, "weight_capacity": "467kg"}'),
('Fitness Tracker', 229.33, 'Electronics', 18, '{"resolution": "FHD", "connectivity": "Wi-Fi 6", "processor": "AMD Ryzen 7"}'),
('Cookbook', 295.99, 'Books', 109, '{"author": "Eric Martin", "pages": 696, "publisher": "Kelley, Dixon and King", "language": "English"}'),
('Dress Shoes', 1898.23, 'Footwear', 145, '{"size": "37", "color": "Black", "material": "Mesh"}'),
('Jacket', 26.14, 'Fashion', 482, '{"size": "XL", "color": "gray", "material": "Wool"}'),
('Advanced Flip Flops', 3.87, 'Footwear', 125, '{"size": "44", "color": "Blue", "material": "Leather"}'),
('Business Strategy', 10.2, 'Books', 160, '{"author": "Brenda Terry", "pages": 190, "publisher": "Mitchell Group", "language": "English"}'),
('Makeup Kit', 70.9, 'Beauty', 190, '{"organic": false, "cruelty_free": true}'),
('Wireless Cookware Set', 452.63, 'Home & Garden', 206, '{"dimensions": "166x36cm", "color": "purple", "material": "Wood"}'),
('Garden Chair', 60.37, 'Home & Garden', 882, '{"dimensions": "158x134cm", "color": "yellow", "material": "Plastic"}'),
('Sandals', 1542.38, 'Footwear', 32, '{"size": "37", "color": "Black", "material": "Leather"}'),
('Gaming Mouse', 56.65, 'Electronics', 481, '{"resolution": "HD", "connectivity": "Wi-Fi 6", "processor": "Intel i5"}'),
('Smart Desk Lamp', 1608.23, 'Home & Garden', 231, '{"dimensions": "184x94cm", "color": "purple", "material": "Metal"}'),
('Jacket', 96.64, 'Fashion', 336, '{"care_instructions": "Dry Clean Only", "style": "Formal"}'),
('Wireless Coffee Table', 614.29, "Home & Garden", 460, '{"dimensions": "75x155cm", "color": "green", "material": "Plastic"}');
INSERT INTO orders (customer_id, order_date, total_amount, status, shipping_address, metadata)
VALUES
(149, '2025-02-20', 1106.3, 'Cancelled', '{"street": "181 Ibrahim Taiwo", "city": "Kaduna", "zip": "800001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(188, '2025-02-10', 27595.87, 'Delivered', '{"street": "7 Ahmadu Bello Way", "city": "Kano", "zip": "700001"}', '{"source": "mobile"}'),
(90, '2025-06-25', 7153.79, 'Pending', '{"street": "139 Emeka Anyaoku", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(82, '2025-04-07', 59237.03, 'Shipped', '{"street": "187 Murtala Mohammed", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "SUMMER20"}'),
(123, '2025-03-14', 7347.7, 'Shipped', '{"street": "95 Aminu Kano", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "WINTER30"}'),
(23, '2025-06-09', 27513.79, 'Delivered', '{"street": "44 Nnamdi Azikiwe", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "SAVE15"}'),
(39, '2025-04-11', 18528.82, 'Pending', '{"street": "69 Emeka Anyaoku", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "coupon": "WELCOME10"}'),
(91, '2025-03-08', 5990.14, 'Pending', '{"street": "92 Murtala Mohammed", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "WELCOME10"}'),
(115, '2025-01-04', 227273.11, 'Shipped', '{"street": "97 Marina Road", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "SUMMER20"}'),
(167, '2025-06-05', 9162.66, 'Shipped', '{"street": "11 Anthony Enahoro", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(24, '2025-02-12', 140294.08, 'Delivered', '{"street": "150 Emeka Anyaoku", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(94, '2025-02-10', 4995.55, 'Processing', '{"street": "154 Nnamdi Azikiwe", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(184, '2025-02-20', 7851.02, 'Pending', '{"street": "150 Nnamdi Azikiwe", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "coupon": "SAVE15", "notes": "Handle with care"}'),
(63, '2025-02-22', 48253.52, 'Delivered', '{"street": "190 Ibrahim Taiwo", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(176, '2025-06-09', 47841.55, 'Shipped', '{"street": "73 Adetokunbo Ademola", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "notes": "Don''t ring doorbell"}'),
(101, '2025-02-25', 3963.39, 'Processing', '{"street": "166 Yakubu Gowon", "city": "Benin City", "zip": "300001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "SAVE15"}'),
(167, '2025-02-23', 6507.51, 'Delivered', '{"street": "166 Yakubu Gowon", "city": "Kaduna", "zip": "800001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(159, '2025-02-17', 6249.14, 'Shipped', '{"street": "40 Adetokunbo Ademola", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "WINTER30"}'),
(175, '2025-04-10', 214265.12, 'Pending', '{"street": "129 Obafemi Awolowo", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "FREESHIP"}'),
(194, '2025-04-15', 9576.66, 'Processing', '{"street": "63 Obafemi Awolowo", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(128, '2025-01-01', 4458.16, 'Shipped', '{"street": "48 Sultan Abubakar", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "notes": "Call before delivery"}'),
(131, '2025-06-10', 16553.6, 'Delivered', '{"street": "74 Ahmadu Bello Way", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "coupon": "FREESHIP"}'),
(127, '2025-07-02', 28067.02, 'Shipped', '{"street": "63 Anthony Enahoro", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "coupon": "NEWUSER25", "notes": "Leave at front desk"}'),
(89, '2025-04-24', 7585.15, 'Delivered', '{"street": "98 Ahmadu Bello Way", "city": "Benin City", "zip": "300001"}', '{"source": "desktop", "coupon": "WINTER30"}'),
(12, '2025-04-22', 39482.38, 'Shipped', '{"street": "83 Murtala Mohammed", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(125, '2025-04-20', 2760.29, 'Cancelled', '{"street": "55 Adetokunbo Ademola", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(106, '2025-06-11', 34536.55, 'Pending', '{"street": "69 Olusegun Obasanjo", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(101, '2025-01-09', 7412.02, 'Shipped', '{"street": "186 Adetokunbo Ademola", "city": "Kano", "zip": "700001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(178, '2025-03-07', 4375.36, 'Pending', '{"street": "86 Samuel Ladoke Akintola", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "WELCOME10"}'),
(20, '2025-04-02', 9148.03, 'Shipped', '{"street": "42 Awolowo Road", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop", "gift_wrap": true}'),
(3, '2025-05-14', 25517.42, 'Processing', '{"street": "142 Aminu Kano", "city": "Lagos", "zip": "100001"}', '{"source": "desktop"}'),
(104, '2025-05-15', 9971.31, 'Shipped', '{"street": "60 Olusegun Obasanjo", "city": "Kano", "zip": "700001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(153, '2025-04-04', 17010.78, 'Pending', '{"street": "93 Sultan Abubakar", "city": "Benin City", "zip": "300001"}', '{"source": "tablet"}'),
(19, '2025-06-24', 2266.18, 'Cancelled', '{"street": "9 Michael Okpara", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop", "gift_wrap": true}'),
(129, '2025-01-31', 77148.22, 'Pending', '{"street": "2 Ibrahim Taiwo", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(196, '2025-03-17', 3111.44, 'Processing', '{"street": "167 Obafemi Awolowo", "city": "Kano", "zip": "700001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(35, '2025-04-08', 44152.63, 'Delivered', '{"street": "9 Allen Avenue", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile"}'),
(111, '2025-02-11', 8869.96, 'Pending', '{"street": "16 Ibrahim Taiwo", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(186, '2025-03-04', 214470.14, 'Shipped', '{"street": "118 Emeka Anyaoku", "city": "Aba", "zip": "450001"}', '{"source": "tablet", "coupon": "SUMMER20"}'),
(113, '2025-02-12', 2738.55, 'Delivered', '{"street": "106 Olusegun Obasanjo", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "SUMMER20"}'),
(66, '2025-01-04', 2221.27, 'Shipped', '{"street": "65 Oduduwa", "city": "Lagos", "zip": "100001"}', '{"source": "tablet"}'),
(87, '2025-04-28', 1416.49, 'Processing', '{"street": "114 Allen Avenue", "city": "Kaduna", "zip": "800001"}', '{"source": "mobile"}'),
(57, '2025-02-12', 7470.33, 'Shipped', '{"street": "98 Nnamdi Azikiwe", "city": "Port Harcourt", "zip": "500001"}', '{"source": "tablet", "coupon": "FREESHIP", "notes": "Call before delivery"}'),
(159, '2025-05-10', 4590.78, 'Processing', '{"street": "10 Olusegun Obasanjo", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "coupon": "WINTER30", "notes": "Birthday present"}'),
(89, '2025-02-28', 9241.51, 'Processing', '{"street": "61 Obafemi Awolowo", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "WINTER30"}'),
(166, '2025-03-13', 32752.65, 'Processing', '{"street": "16 Allen Avenue", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(95, '2025-05-21', 6465.36, 'Delivered', '{"street": "15 Adekunle Fajuyi", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(121, '2025-02-20', 3546.35, 'Cancelled', '{"street": "175 Adetokunbo Ademola", "city": "Abuja", "zip": "900001"}', '{"source": "mobile"}'),
(108, '2025-03-16', 41168.03, 'Shipped', '{"street": "89 Oduduwa", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(73, '2025-05-28', 1640.3, 'Delivered', '{"street": "99 Ahmadu Bello Way", "city": "Aba", "zip": "450001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(187, '2025-05-30', 25551.46, 'Shipped', '{"street": "75 Adekunle Fajuyi", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(115, '2025-03-17', 111607.77, 'Shipped', '{"street": "132 Sultan Abubakar", "city": "Kaduna", "zip": "800001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(136, '2025-02-06', 9424.69, 'Shipped', '{"street": "146 Samuel Ladoke Akintola", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile", "coupon": "SUMMER20"}'),
(109, '2025-03-19', 1467.29, 'Delivered', '{"street": "182 Marina Road", "city": "Port Harcourt", "zip": "500001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(111, '2025-01-12', 37808.69, 'Delivered', '{"street": "97 Michael Okpara", "city": "Benin City", "zip": "300001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(115, '2025-06-08', 34676.57, 'Pending', '{"street": "47 Emeka Anyaoku", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "WINTER30", "notes": "Call before delivery"}'),
(142, '2025-03-19', 2621.33, 'Shipped', '{"street": "104 Nnamdi Azikiwe", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "FREESHIP"}'),
(79, '2025-06-11', 72251.41, 'Delivered', '{"street": "153 Awolowo Road", "city": "Benin City", "zip": "300001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(97, '2025-01-21', 2114.18, 'Pending', '{"street": "122 Obafemi Awolowo", "city": "Abuja", "zip": "900001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(102, '2025-04-18', 5405.1, 'Pending', '{"street": "22 Aminu Kano", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "gift_wrap": true}'),
(24, '2025-04-13', 55056.27, 'Shipped', '{"street": "191 Adekunle Fajuyi", "city": "Ibadan", "zip": "200001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(193, '2025-01-18', 2604.22, 'Pending', '{"street": "81 Nnamdi Azikiwe", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(171, '2025-02-22', 34729.26, 'Delivered', '{"street": "20 Adetokunbo Ademola", "city": "Port Harcourt", "zip": "500001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "WELCOME10"}'),
(110, '2025-01-05', 51460.65, 'Processing', '{"street": "150 Awolowo Road", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "SUMMER20"}'),
(200, '2025-04-26', 4026.09, 'Processing', '{"street": "33 Adekunle Fajuyi", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "FREESHIP"}'),
(28, '2025-01-27', 16681.21, 'Shipped', '{"street": "193 Olusegun Obasanjo", "city": "Lagos", "zip": "100001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(147, '2025-06-12', 5985.39, 'Delivered', '{"street": "8 Aminu Kano", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(60, '2025-05-23', 23876.66, 'Delivered', '{"street": "165 Awolowo Road", "city": "Lagos", "zip": "100001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(18, '2025-05-02', 1721.46, 'Processing', '{"street": "70 Adekunle Fajuyi", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "FREESHIP"}'),
(48, '2025-01-12', 43850.58, 'Pending', '{"street": "165 Obafemi Awolowo", "city": "Lagos", "zip": "100001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(79, '2025-03-09', 39422.73, 'Processing', '{"street": "74 Murtala Mohammed", "city": "Port Harcourt", "zip": "500001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(142, '2025-04-18', 6125.24, 'Processing', '{"street": "37 Murtala Mohammed", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(80, '2025-04-20', 80389.44, 'Shipped', '{"street": "16 Aminu Kano", "city": "Lagos", "zip": "100001"}', '{"source": "desktop", "coupon": "WINTER30"}'),
(10, '2025-06-20', 1356.59, 'Pending', '{"street": "100 Obafemi Awolowo", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(141, '2025-02-16', 9261.46, 'Shipped', '{"street": "98 Allen Avenue", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(41, '2025-06-27', 17077.83, 'Shipped', '{"street": "32 Anthony Enahoro", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "SUMMER20", "notes": "Signature required"}'),
(30, '2025-05-07', 5139.03, 'Delivered', '{"street": "105 Ahmadu Bello Way", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(168, '2025-04-12', 79028.84, 'Processing', '{"street": "113 Ibrahim Taiwo", "city": "Kaduna", "zip": "800001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(106, '2025-01-18', 12602.22, 'Pending', '{"street": "30 Murtala Mohammed", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(41, '2025-05-07', 7318.99, 'Shipped', '{"street": "163 Murtala Mohammed", "city": "Lagos", "zip": "100001"}', '{"source": "desktop", "coupon": "WINTER30"}'),
(141, '2025-04-25', 4063.67, 'Shipped', '{"street": "48 Awolowo Road", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(51, '2025-01-02', 27072.67, 'Pending', '{"street": "18 Ibrahim Taiwo", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "coupon": "FREESHIP"}'),
(29, '2025-03-30', 42084.7, 'Processing', '{"street": "65 Nnamdi Azikiwe", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "coupon": "SUMMER20", "notes": "Handle with care"}'),
(17, '2025-06-08', 83500.95, 'Delivered', '{"street": "34 Adetokunbo Ademola", "city": "Kaduna", "zip": "800001"}', '{"source": "tablet", "coupon": "WELCOME10"}'),
(137, '2025-03-02', 31082.07, 'Pending', '{"street": "146 Emeka Anyaoku", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "WINTER30"}'),
(89, '2025-06-09', 5485.28, 'Processing', '{"street": "172 Olusegun Obasanjo", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "WINTER30"}'),
(140, '2025-07-03', 249571.16, 'Shipped', '{"street": "197 Marina Road", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "coupon": "WINTER30"}'),
(118, '2025-03-20', 55711.57, 'Delivered', '{"street": "54 Olusegun Obasanjo", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "FREESHIP"}'),
(45, '2025-01-09', 31592.08, 'Processing', '{"street": "117 Anthony Enahoro", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "WELCOME10"}'),
(70, '2025-01-09', 4960.15, 'Shipped', '{"street": "98 Obafemi Awolowo", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "SAVE15"}'),
(97, '2025-01-22', 161078.09, 'Delivered', '{"street": "43 Allen Avenue", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(196, '2025-04-05', 9109.27, 'Cancelled', '{"street": "179 Awolowo Road", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "WELCOME10"}'),
(26, '2025-06-05', 137107.47, 'Shipped', '{"street": "126 Adekunle Fajuyi", "city": "Kaduna", "zip": "800001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "WINTER30"}'),
(86, '2025-05-22', 4130.89, 'Shipped', '{"street": "107 Marina Road", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(148, '2025-05-01', 6075.37, 'Shipped', '{"street": "46 Marina Road", "city": "Lagos", "zip": "100001"}', '{"source": "tablet", "gift_wrap": true}'),
(170, '2025-06-15', 6045.38, 'Delivered', '{"street": "40 Marina Road", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(69, '2025-02-02', 168296.61, 'Processing', '{"street": "76 Samuel Ladoke Akintola", "city": "Zaria", "zip": "810001"}', '{"source": "desktop", "gift_wrap": true}'),
(10, '2025-06-03', 9270.7, 'Shipped', '{"street": "36 Obafemi Awolowo", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(26, '2025-05-10', 236946.72, 'Pending', '{"street": "95 Obafemi Awolowo", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(111, '2025-06-17', 8843.83, 'Delivered', '{"street": "17 Obafemi Awolowo", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "WINTER30"}'),
(106, '2025-03-13', 10450.25, 'Shipped', '{"street": "119 Awolowo Road", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet", "coupon": "FREESHIP"}'),
(112, '2025-05-14', 4065.1, 'Cancelled', '{"street": "131 Yakubu Gowon", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "coupon": "WINTER30"}'),
(65, '2025-02-25', 26202.9, 'Pending', '{"street": "196 Ahmadu Bello Way", "city": "Kaduna", "zip": "800001"}', '{"source": "mobile", "coupon": "WINTER30"}'),
(7, '2025-06-16', 5367.03, 'Shipped', '{"street": "98 Herbert Macaulay", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile"}'),
(156, '2025-04-08', 2430.12, 'Cancelled', '{"street": "52 Obafemi Awolowo", "city": "Zaria", "zip": "810001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(155, '2025-03-01', 3141.18, 'Processing', '{"street": "78 Oduduwa", "city": "Kaduna", "zip": "800001"}', '{"source": "tablet", "coupon": "WELCOME10", "notes": "Don''t ring doorbell"}'),
(116, '2025-06-09', 4752.69, 'Delivered', '{"street": "38 Aminu Kano", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "coupon": "WELCOME10"}'),
(179, '2025-03-08', 136648.19, 'Pending', '{"street": "86 Ibrahim Taiwo", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "SUMMER20", "notes": "Gift for anniversary"}'),
(24, '2025-02-11', 111213.25, 'Delivered', '{"street": "29 Marina Road", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop"}'),
(146, '2025-02-08', 8766.92, 'Pending', '{"street": "29 Obafemi Awolowo", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(198, '2025-05-03', 21845.32, 'Delivered', '{"street": "179 Obafemi Awolowo", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(50, '2025-05-27', 99083.2, 'Cancelled', '{"street": "145 Nnamdi Azikiwe", "city": "Port Harcourt", "zip": "500001"}', '{"source": "tablet"}'),
(186, '2025-05-01', 1006.6, 'Shipped', '{"street": "23 Allen Avenue", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(123, '2025-05-02', 3378.65, 'Processing', '{"street": "178 Ahmadu Bello Way", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(121, '2025-05-21', 13823.79, 'Processing', '{"street": "150 Awolowo Road", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop"}'),
(106, '2025-01-20', 14823.02, 'Shipped', '{"street": "133 Murtala Mohammed", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(70, '2025-04-15', 39087.04, 'Pending', '{"street": "65 Aminu Kano", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "SUMMER20"}'),
(177, '2025-01-08', 12311.58, 'Processing', '{"street": "88 Ahmadu Bello Way", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(146, '2025-06-20', 2842.42, 'Shipped', '{"street": "167 Yakubu Gowon", "city": "Ibadan", "zip": "200001"}', '{"source": "mobile"}'),
(165, '2025-03-07', 7377.2, 'Processing', '{"street": "142 Michael Okpara", "city": "Benin City", "zip": "300001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(165, '2025-03-27', 3329.39, 'Delivered', '{"street": "100 Awolowo Road", "city": "Benin City", "zip": "300001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "WINTER30"}'),
(129, '2025-02-22', 180697.73, 'Delivered', '{"street": "68 Marina Road", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "coupon": "SAVE15"}'),
(28, '2025-03-29', 1453.66, 'Delivered', '{"street": "199 Sultan Abubakar", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(49, '2025-02-19', 1949.7, 'Processing', '{"street": "11 Olusegun Obasanjo", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "notes": "Birthday present"}'),
(146, '2025-04-09', 1090.24, 'Shipped', '{"street": "83 Adetokunbo Ademola", "city": "Aba", "zip": "450001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(108, '2025-01-15', 54092.66, 'Shipped', '{"street": "30 Olusegun Obasanjo", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "FREESHIP"}'),
(110, '2025-02-23', 98717.31, 'Shipped', '{"street": "153 Adetokunbo Ademola", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "SUMMER20"}'),
(86, '2025-05-11', 19720.79, 'Shipped', '{"street": "189 Michael Okpara", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(7, '2025-03-08', 5340.27, 'Delivered', '{"street": "124 Ahmadu Bello Way", "city": "Benin City", "zip": "300001"}', '{"source": "tablet"}'),
(81, '2025-01-27', 26926.8, 'Delivered', '{"street": "101 Allen Avenue", "city": "Ibadan", "zip": "200001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(162, '2025-05-29', 4005.15, 'Cancelled', '{"street": "144 Ahmadu Bello Way", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "SAVE15"}'),
(79, '2025-04-26', 63035.7, 'Cancelled', '{"street": "57 Awolowo Road", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "WELCOME10"}'),
(131, '2025-04-25', 76280.29, 'Shipped', '{"street": "62 Ibrahim Taiwo", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(131, '2025-04-30', 3537.85, 'Shipped', '{"street": "65 Marina Road", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(71, '2025-06-26', 2091.87, 'Pending', '{"street": "48 Awolowo Road", "city": "Kaduna", "zip": "800001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(35, '2025-05-12', 57524.71, 'Pending', '{"street": "33 Sultan Abubakar", "city": "Kaduna", "zip": "800001"}', '{"source": "tablet", "coupon": "WELCOME10", "notes": "Call before delivery"}'),
(134, '2025-01-28', 39669.29, 'Delivered', '{"street": "80 Allen Avenue", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(137, '2025-03-20', 4678.78, 'Pending', '{"street": "40 Olusegun Obasanjo", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "SAVE15"}'),
(99, '2025-01-30', 1462.53, 'Shipped', '{"street": "153 Oduduwa", "city": "Kano", "zip": "700001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(157, '2025-06-28', 8613.5, 'Shipped', '{"street": "99 Herbert Macaulay", "city": "Aba", "zip": "450001"}', '{"source": "tablet"}'),
(47, '2025-05-09', 75962.1, 'Cancelled', '{"street": "127 Murtala Mohammed", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop"}'),
(165, '2025-05-17', 65651.2, 'Processing', '{"street": "69 Adekunle Fajuyi", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(141, '2025-07-01', 38167.12, 'Processing', '{"street": "169 Murtala Mohammed", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "coupon": "NEWUSER25"}'),
(112, '2025-02-20', 2137.61, 'Cancelled', '{"street": "156 Allen Avenue", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(141, '2025-05-24', 3811.19, 'Pending', '{"street": "114 Samuel Ladoke Akintola", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "SAVE15"}'),
(112, '2025-04-01', 8068.43, 'Shipped', '{"street": "32 Sultan Abubakar", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(72, '2025-05-19', 2171.7, 'Processing', '{"street": "155 Emeka Anyaoku", "city": "Kaduna", "zip": "800001"}', '{"source": "tablet", "coupon": "FREESHIP"}'),
(168, '2025-01-29', 4823.75, 'Pending', '{"street": "86 Michael Okpara", "city": "Benin City", "zip": "300001"}', '{"source": "mobile", "coupon": "FREESHIP"}'),
(49, '2025-06-02', 17180.51, 'Pending', '{"street": "50 Emeka Anyaoku", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(81, '2025-04-26', 7277.38, 'Processing', '{"street": "61 Olusegun Obasanjo", "city": "Ibadan", "zip": "200001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(22, '2025-05-04', 4901.9, 'Pending', '{"street": "23 Adetokunbo Ademola", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(200, '2025-05-08', 1168.68, 'Processing', '{"street": "50 Olusegun Obasanjo", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(178, '2025-02-23', 2033.04, 'Processing', '{"street": "170 Olusegun Obasanjo", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(177, '2025-04-11', 9384.08, 'Processing', '{"street": "52 Olusegun Obasanjo", "city": "Kano", "zip": "700001"}', '{"source": "mobile", "coupon": "FREESHIP"}'),
(31, '2025-03-15', 61702.2, 'Processing', '{"street": "94 Sultan Abubakar", "city": "Aba", "zip": "450001"}', '{"source": "mobile"}'),
(19, '2025-06-20', 7641.7, 'Pending', '{"street": "87 Michael Okpara", "city": "Zaria", "zip": "810001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(16, '2025-04-09', 9181.11, 'Processing', '{"street": "189 Obafemi Awolowo", "city": "Kaduna", "zip": "800001"}', '{"source": "desktop", "coupon": "WELCOME10", "notes": "Handle with care"}'),
(60, '2025-03-14', 1829.76, 'Delivered', '{"street": "196 Ibrahim Taiwo", "city": "Lagos", "zip": "100001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "SUMMER20", "notes": "Signature required"}'),
(118, '2025-05-13', 65311.81, 'Shipped', '{"street": "138 Olusegun Obasanjo", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "FREESHIP"}'),
(188, '2025-05-25', 14906.85, 'Processing', '{"street": "116 Ibrahim Taiwo", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(30, '2025-06-06', 6205.7, 'Processing', '{"street": "135 Murtala Mohammed", "city": "Abuja", "zip": "900001"}', '{"source": "mobile", "coupon": "SUMMER20"}'),
(113, '2025-01-05', 89630.22, 'Pending', '{"street": "16 Nnamdi Azikiwe", "city": "Aba", "zip": "450001"}', '{"source": "tablet", "coupon": "SUMMER20"}'),
(155, '2025-04-19', 5359.5, 'Processing', '{"street": "41 Oduduwa", "city": "Benin City", "zip": "300001"}', '{"source": "desktop", "gift_wrap": true, "coupon": "WINTER30"}'),
(86, '2025-06-16', 49850.03, 'Processing', '{"street": "165 Samuel Ladoke Akintola", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(114, '2025-03-17', 7362.6, 'Shipped', '{"street": "73 Herbert Macaulay", "city": "Zaria", "zip": "810001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(85, '2025-05-25', 6182.25, 'Cancelled', '{"street": "109 Yakubu Gowon", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "gift_wrap": true}'),
(92, '2025-06-29', 1174.7, 'Pending', '{"street": "174 Obafemi Awolowo", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(165, '2025-06-11', 1910.33, 'Cancelled', '{"street": "79 Ahmadu Bello Way", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet"}'),
(27, '2025-04-01', 18585.43, 'Delivered', '{"street": "132 Marina Road", "city": "Kaduna", "zip": "800001"}', '{"source": "desktop", "coupon": "WELCOME10"}'),
(82, '2025-04-03', 4837.61, 'Processing', '{"street": "63 Samuel Ladoke Akintola", "city": "Ibadan", "zip": "200001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(143, '2025-06-11', 54534.87, 'Delivered', '{"street": "164 Sultan Abubakar", "city": "Benin City", "zip": "300001"}', '{"source": "tablet", "coupon": "WINTER30"}'),
(15, '2025-03-27', 5166.95, 'Shipped', '{"street": "150 Ahmadu Bello Way", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "WELCOME10"}'),
(86, '2025-01-25', 12096.7, 'Processing', '{"street": "122 Awolowo Road", "city": "Kaduna", "zip": "800001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(99, '2025-02-12', 2619.67, 'Shipped', '{"street": "11 Ibrahim Taiwo", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "coupon": "WELCOME10"}'),
(163, '2025-01-29', 2219.6, 'Shipped', '{"street": "104 Allen Avenue", "city": "Benin City", "zip": "300001"}', '{"source": "mobile", "coupon": "SAVE15"}'),
(90, '2025-05-10', 2008.54, 'Shipped', '{"street": "185 Sultan Abubakar", "city": "Kano", "zip": "700001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(177, '2025-04-29', 14694.03, 'Processing', '{"street": "173 Murtala Mohammed", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop"}'),
(181, '2025-02-03', 37127.98, 'Shipped', '{"street": "55 Michael Okpara", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop"}'),
(126, '2025-04-14', 57402.63, 'Delivered', '{"street": "173 Anthony Enahoro", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "NEWUSER25"}'),
(163, '2025-02-04', 3686.56, 'Shipped', '{"street": "177 Olusegun Obasanjo", "city": "Ibadan", "zip": "200001"}', '{"source": "mobile", "coupon": "WINTER30"}'),
(64, '2025-03-29', 16330.19, 'Shipped', '{"street": "3 Anthony Enahoro", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile"}'),
(82, '2025-05-03', 8211.42, 'Processing', '{"street": "54 Allen Avenue", "city": "Zaria", "zip": "810001"}', '{"source": "mobile", "coupon": "NEWUSER25"}'),
(183, '2025-03-26', 30096.96, 'Processing', '{"street": "115 Obafemi Awolowo", "city": "Ibadan", "zip": "200001"}', '{"source": "mobile", "gift_wrap": true}'),
(38, '2025-06-04', 1856.03, 'Shipped', '{"street": "192 Awolowo Road", "city": "Port Harcourt", "zip": "500001"}', '{"source": "tablet", "coupon": "WELCOME10", "notes": "Gift for anniversary"}'),
(156, '2025-01-22', 7230.09, 'Processing', '{"street": "43 Herbert Macaulay", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "FREESHIP"}'),
(67, '2025-03-01', 22266.62, 'Cancelled', '{"street": "143 Adekunle Fajuyi", "city": "Aba", "zip": "450001"}', '{"source": "mobile"}'),
(59, '2025-06-04', 13561.63, 'Shipped', '{"street": "19 Oduduwa", "city": "Kaduna", "zip": "800001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(130, '2025-04-15', 7389.17, 'Shipped', '{"street": "193 Murtala Mohammed", "city": "Port Harcourt", "zip": "500001"}', '{"source": "mobile"}'),
(87, '2025-02-01', 9610.48, 'Processing', '{"street": "192 Sultan Abubakar", "city": "Kano", "zip": "700001"}', '{"source": "tablet", "coupon": "SUMMER20"}'),
(178, '2025-05-23', 38351.78, 'Shipped', '{"street": "102 Allen Avenue", "city": "Abuja", "zip": "900001"}', '{"source": "tablet", "coupon": "SAVE15"}'),
(35, '2025-01-29', 8193.36, 'Processing', '{"street": "104 Awolowo Road", "city": "Aba", "zip": "450001"}', '{"source": "tablet", "coupon": "SUMMER20"}'),
(153, '2025-01-18', 11981.89, 'Shipped', '{"street": "162 Marina Road", "city": "Aba", "zip": "450001"}', '{"source": "desktop", "coupon": "WELCOME10"}'),
(137, '2025-05-18', 8082.25, 'Shipped', '{"street": "49 Ahmadu Bello Way", "city": "Maiduguri", "zip": "600001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(76, '2025-05-30', 8366.95, 'Cancelled', '{"street": "29 Emeka Anyaoku", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(132, '2025-04-02', 7397.79, 'Processing', '{"street": "117 Marina Road", "city": "Maiduguri", "zip": "600001"}', '{"source": "tablet", "gift_wrap": true, "coupon": "NEWUSER25"}'),
(18, '2025-01-12', 15371.06, 'Processing', '{"street": "153 Oduduwa", "city": "Ibadan", "zip": "200001"}', '{"source": "tablet", "coupon": "SUMMER20"}'),
(196, '2025-04-13', 126535.6, 'Pending', '{"street": "99 Ahmadu Bello Way", "city": "Kaduna", "zip": "800001"}', '{"source": "tablet", "coupon": "WELCOME10"}'),
(19, '2025-03-03', 8141.96, 'Processing', '{"street": "113 Murtala Mohammed", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "notes": "Don''t ring doorbell"}'),
(99, '2025-05-05', 68254.6, 'Processing', '{"street": "188 Emeka Anyaoku", "city": "Port Harcourt", "zip": "500001"}', '{"source": "desktop", "coupon": "SUMMER20"}'),
(23, '2025-03-08', 26298.21, 'Processing', '{"street": "84 Herbert Macaulay", "city": "Maiduguri", "zip": "600001"}', '{"source": "mobile", "gift_wrap": true, "coupon": "FREESHIP"}');
INSERT INTO order_items (order_id, product_id, quantity, price, discount, item_attributes)
VALUES
(1, 113, 6, 2465.63, 0.0, '{"warranty": "6 months", "bundle_offer": true}'),
(1, 97, 10, 9547.19, 0.0, '{"warranty": "2 years", "color": "Red"}'),
(2, 13, 3, 2672.75, 0.0, '{"color": "Red"}'),
(2, 103, 3, 12394.89, 0.0, '{}'),
(2, 154, 1, 41760.37, 0.0, '{"bundle_offer": true}'),
(2, 107, 6, 31513.04, 0.0, '{"bundle_offer": true}'),
(2, 73, 2, 7411.19, 0.0, '{"size": "S"}'),
(3, 42, 2, 55496.24, 0.0, '{}'),
(3, 22, 2, 11552.88, 2018.19, '{"warranty": "2 years"}'),
(4, 46, 1, 24888.52, 0.0, '{"size": "XL"}'),
(4, 63, 1, 2206.48, 0.0, '{"warranty": "1 year", "size": "S"}'),
(4, 70, 3, 27651.08, 0.0, '{"size": "S"}'),
(5, 58, 3, 19438.85, 0.0, '{"size": "S"}'),
(5, 146, 10, 14878.28, 0.0, '{"warranty": "6 months"}'),
(5, 112, 1, 8997.37, 0.0, '{"color": "White"}'),
(6, 83, 2, 6948.19, 0.0, '{"RAM_upgrade": "32GB"}'),
(7, 188, 2, 2054.61, 0.0, '{"warranty": "6 months", "bundle_offer": true}'),
(7, 130, 3, 9319.7, 613.12, '{"color": "Red"}'),
(7, 46, 2, 29960.01, 2051.63, '{"bundle_offer": true, "storage_upgrade": "2TB HDD"}'),
(7, 148, 1, 4408.62, 0.0, '{"size": "XL", "installation": "Basic"}'),
(7, 196, 1, 19194.13, 2212.35, '{"bundle_offer": true, "color": "Green", "gift_wrap": true}'),
(8, 30, 3, 3713.92, 0.0, '{"color": "Black"}'),
(9, 98, 9, 5195.02, 0.0, '{"warranty": "2 years", "size": "M"}'),
(9, 83, 3, 1957.74, 0.0, '{"bundle_offer": true, "gift_wrap": true}'),
(9, 103, 3, 18889.75, 3141.91, '{"bundle_offer": true}'),
(10, 35, 9, 44366.27, 0.0, '{"size": "XL"}'),
(10, 179, 3, 39485.88, 2824.83, '{"bundle_offer": true}'),
(10, 194, 2, 18828.5, 0.0, '{"bundle_offer": true, "size": "XL", "color": "Red"}'),
(11, 157, 3, 26296.04, 0.0, '{"bundle_offer": true}'),
(11, 31, 9, 16281.83, 2495.32, '{"bundle_offer": true, "size": "XL", "engraving": "Date"}'),
(11, 167, 5, 2964.42, 0.0, '{"installation": "Premium"}'),
(11, 78, 3, 10077.99, 0.0, '{}'),
(11, 178, 3, 4406.71, 0.0, '{"bundle_offer": true, "size": "S"}'),
(12, 68, 3, 2577.83, 0.0, '{"size": "M"}'),
(13, 198, 3, 12720.39, 0.0, '{"warranty": "1 year", "bundle_offer": true, "color": "Red"}'),
(14, 100, 1, 38772.28, 0.0, '{"warranty": "1 year", "size": "L"}'),
(14, 66, 2, 5682.76, 0.0, '{"warranty": "1 year", "bundle_offer": true}'),
(15, 58, 3, 5640.02, 1127.29, '{"warranty": "2 years", "color": "White"}'),
(15, 33, 1, 9580.37, 0.0, '{"warranty": "2 years", "size": "M", "RAM_upgrade": "32GB"}'),
(15, 2, 1, 19689.1, 2737.49, '{"warranty": "6 months", "size": "XL"}'),
(15, 24, 2, 3106.96, 328.7, '{"warranty": "2 years", "size": "L", "color": "Red"}'),
(15, 8, 2, 75131.63, 8240.49, '{"size": "M", "storage_upgrade": "2TB HDD"}'),
(16, 130, 1, 2121.36, 303.87, '{"bundle_offer": true}'),
(16, 16, 2, 12455.85, 0.0, '{"bundle_offer": true, "color": "Black", "gift_wrap": true}'),
(16, 67, 3, 1253.06, 0.0, '{}'),
(17, 79, 2, 3826.93, 586.96, '{"warranty": "2 years"}'),
(18, 12, 1, 19319.07, 1161.36, '{"warranty": "6 months", "RAM_upgrade": "32GB"}'),
(18, 175, 3, 9624.35, 0.0, '{"bundle_offer": true}'),
(18, 3, 2, 46910.03, 0.0, '{"size": "S", "color": "Red", "RAM_upgrade": "64GB"}'),
(18, 38, 3, 40553.29, 0.0, '{}'),
(19, 178, 1, 19603.12, 0.0, '{"warranty": "6 months", "color": "Green"}'),
(19, 153, 2, 18367.22, 0.0, '{"bundle_offer": true}'),
(19, 77, 1, 1052.98, 0.0, '{"warranty": "2 years", "installation": "Basic"}'),
(19, 53, 3, 25700.8, 0.0, '{"warranty": "1 year"}'),
(20, 4, 3, 5133.56, 0.0, '{"bundle_offer": true}'),
(20, 58, 2, 18803.07, 0.0, '{"bundle_offer": true}'),
(21, 188, 5, 9092.46, 1302.73, '{"warranty": "1 year", "size": "XL"}'),
(21, 148, 3, 1828.58, 0.0, '{"bundle_offer": true, "color": "Black"}'),
(21, 74, 10, 5882.95, 0.0, '{"warranty": "1 year"}'),
(21, 187, 1, 6821.76, 0.0, '{"color": "White"}'),
(22, 160, 4, 7374.02, 0.0, '{"warranty": "6 months"}'),
(22, 133, 2, 2627.29, 0.0, '{}'),
(23, 20, 2, 9837.88, 0.0, '{"warranty": "2 years", "color": "Black"}'),
(24, 194, 1, 10202.84, 0.0, '{"size": "M"}'),
(24, 163, 3, 24885.24, 0.0, '{"bundle_offer": true}'),
(24, 44, 2, 19237.45, 0.0, '{"warranty": "2 years"}'),
(24, 16, 2, 693.88, 0.0, '{"warranty": "2 years"}'),
(25, 142, 1, 23349.91, 2783.41, '{"color": "Red"}'),
(25, 97, 3, 70340.63, 0.0, '{"bundle_offer": true, "color": "Red", "RAM_upgrade": "16GB"}'),
(26, 97, 7, 16813.06, 0.0, '{"warranty": "2 years", "size": "M", "RAM_upgrade": "64GB"}'),
(26, 85, 2, 21532.47, 0.0, '{}'),
(26, 123, 2, 32969.03, 0.0, '{"color": "Blue"}'),
(27, 173, 2, 2948.57, 474.64, '{"size": "S"}'),
(27, 29, 4, 29790.71, 0.0, '{}'),
(27, 20, 3, 953.18, 95.06, '{}'),
(28, 127, 3, 26207.87, 0.0, '{"size": "XL"}'),
(28, 42, 2, 6032.83, 0.0, '{"bundle_offer": true}'),
(28, 153, 2, 136386.55, 12641.17, '{"bundle_offer": true, "color": "Red"}'),
(29, 171, 3, 5855.79, 435.01, '{"size": "XL", "color": "Black"}'),
(29, 89, 2, 28914.01, 0.0, '{"bundle_offer": true}'),
(29, 76, 3, 5299.26, 0.0, '{"warranty": "6 months", "color": "Red"}'),
(29, 36, 1, 4016.77, 0.0, '{"warranty": "6 months"}'),
(30, 84, 3, 97569.54, 13985.49, '{"warranty": "2 years", "size": "XL", "color": "White"}'),
(30, 41, 6, 17912.96, 2556.02, '{"bundle_offer": true}'),
(30, 83, 3, 8443.11, 0.0, '{}'),
(31, 149, 2, 18012.7, 2379.38, '{"size": "XL"}'),
(32, 37, 8, 6706.26, 1291.8, '{"warranty": "2 years"}'),
(32, 35, 8, 15498.15, 0.0, '{"color": "Green"}'),
(33, 187, 2, 14996.16, 1136.09, '{"bundle_offer": true, "size": "M"}'),
(33, 161, 5, 13389.01, 1523.36, '{"warranty": "1 year", "size": "S"}'),
(34, 107, 2, 24752.89, 0.0, '{"warranty": "6 months"}'),
(34, 183, 1, 45972.8, 0.0, '{"RAM_upgrade": "16GB"}'),
(34, 85, 3, 7902.3, 0.0, '{"color": "Green", "RAM_upgrade": "32GB"}'),
(34, 162, 2, 89622.1, 13634.58, '{"warranty": "6 months", "bundle_offer": true, "size": "M", "color": "Green"}'),
(34, 87, 9, 37651.43, 0.0, '{"color": "White"}'),
(35, 26, 2, 9973.19, 0.0, '{"bundle_offer": true}'),
(36, 189, 3, 95745.25, 0.0, '{"warranty": "2 years"}'),
(36, 197, 7, 18028.74, 1858.3, '{}'),
(36, 115, 1, 8200.59, 0.0, '{"size": "S", "color": "Black"}'),
(37, 69, 3, 11133.18, 0.0, '{"warranty": "2 years"}'),
(37, 37, 1, 13536.63, 0.0, '{"warranty": "1 year"}'),
(37, 177, 1, 111122.15, 52507.24, '{"bundle_offer": true}'),
(37, 147, 2, 10763.53, 0.0, '{"size": "XL", "color": "Green"}'),
(37, 167, 4, 86733.65, 7877.28, '{}'),
(38, 106, 2, 16757.84, 0.0, '{}'),
(39, 163, 1, 5614.0, 0.0, '{}'),
(39, 86, 3, 4870.31, 312.74, '{"color": "White"}'),
(39, 26, 3, 13213.66, 0.0, '{"size": "S", "gift_wrap": true}'),
(40, 70, 3, 15986.98, 0.0, '{}'),
(40, 196, 2, 14772.75, 0.0, '{"color": "Black"}'),
(40, 192, 2, 12629.14, 0.0, '{"warranty": "1 year", "bundle_offer": true}'),
(40, 81, 3, 24452.25, 1880.06, '{"bundle_offer": true}'),
(40, 58, 3, 46191.22, 0.0, '{}'),
(41, 53, 1, 7243.39, 730.53, '{"warranty": "2 years", "bundle_offer": true}'),
(41, 128, 2, 5260.95, 0.0, '{}'),
(41, 164, 4, 26524.32, 3029.42, '{"bundle_offer": true}'),
(41, 132, 2, 41519.67, 0.0, '{"bundle_offer": true, "size": "XL", "color": "Green", "engraving": "Message"}'),
(41, 29, 9, 76213.17, 0.0, '{"warranty": "6 months", "bundle_offer": true}'),
(42, 30, 1, 14893.02, 0.0, '{"warranty": "1 year", "bundle_offer": true, "color": "White"}'),
(43, 178, 3, 66110.49, 0.0, '{"warranty": "2 years", "bundle_offer": true}'),
(43, 26, 3, 5078.35, 0.0, '{"warranty": "1 year"}'),
(43, 13, 2, 3245.81, 0.0, '{}'),
(43, 122, 2, 15242.14, 0.0, '{"size": "M"}'),
(44, 174, 1, 9932.18, 0.0, '{"size": "S"}'),
(45, 188, 3, 13833.78, 0.0, '{"color": "Green"}'),
(45, 161, 1, 17465.41, 0.0, '{"bundle_offer": true, "size": "XL"}'),
(45, 37, 3, 4825.15, 0.0, '{"warranty": "1 year", "size": "M", "RAM_upgrade": "16GB"}'),
(46, 6, 1, 14276.13, 0.0, '{"bundle_offer": true}'),
(46, 47, 1, 24414.3, 0.0, '{"size": "S"}'),
(46, 143, 2, 17791.24, 0.0, '{"warranty": "1 year", "color": "Blue"}'),
(47, 196, 2, 25476.41, 0.0, '{"warranty": "1 year"}'),
(47, 25, 1, 68392.43, 0.0, '{"warranty": "1 year", "color": "Black"}'),
(47, 190, 1, 39007.39, 3121.98, '{"storage_upgrade": "1TB SSD"}'),
(48, 80, 2, 16078.76, 4573.3, '{"size": "M", "RAM_upgrade": "16GB"}'),
(48, 156, 3, 143289.07, 13055.01, '{"warranty": "2 years", "bundle_offer": true}'),
(49, 133, 2, 5321.76, 629.75, '{"bundle_offer": true, "color": "Green"}'),
(50, 6, 3, 8447.95, 0.0, '{"warranty": "2 years"}'),
(50, 108, 5, 16588.29, 0.0, '{"warranty": "2 years", "color": "Red", "installation": "Premium"}'),
(50, 78, 5, 142487.55, 0.0, '{"bundle_offer": true}'),
(50, 24, 7, 13031.88, 0.0, '{"bundle_offer": true, "size": "M", "color": "Blue", "gift_wrap": true}'),
(51, 31, 9, 10823.58, 1147.39, '{}'),
(51, 154, 2, 18168.27, 0.0, '{"bundle_offer": true, "size": "S", "color": "Red"}'),
(51, 133, 3, 1903.52, 0.0, '{}'),
(51, 127, 2, 29361.46, 0.0, '{"bundle_offer": true, "size": "M"}'),
(51, 169, 2, 15951.54, 0.0, '{"bundle_offer": true, "size": "S"}'),
(52, 163, 3, 2708.17, 0.0, '{"size": "L"}'),
(53, 160, 1, 5069.72, 638.64, '{}'),
(53, 156, 3, 4089.55, 0.0, '{}'),
(53, 113, 3, 13398.69, 2285.82, '{"warranty": "2 years"}'),
(53, 152, 3, 21628.79, 0.0, '{"bundle_offer": true, "color": "Red"}'),
(53, 101, 1, 9204.99, 0.0, '{"bundle_offer": true, "size": "XL", "RAM_upgrade": "64GB"}'),
(54, 175, 1, 24696.3, 7509.55, '{"bundle_offer": true, "size": "XL"}'),
(54, 135, 1, 7918.24, 0.0, '{"warranty": "2 years", "color": "Red"}'),
(55, 156, 3, 4291.12, 354.55, '{}'),
(55, 184, 2, 36056.41, 0.0, '{}'),
(55, 112, 6, 6905.84, 994.83, '{}'),
(56, 180, 2, 5583.82, 0.0, '{"bundle_offer": true}'),
(56, 54, 3, 13941.64, 927.52, '{"color": "Black"}'),
(57, 55, 1, 21350.41, 0.0, '{"size": "XL"}'),
(57, 41, 2, 4031.15, 0.0, '{"warranty": "2 years", "size": "XL"}'),
(57, 153, 1, 9777.62, 756.91, '{"warranty": "2 years", "bundle_offer": true}'),
(57, 25, 1, 2734.45, 353.39, '{"warranty": "6 months", "color": "Green"}'),
(58, 154, 1, 13074.09, 0.0, '{"bundle_offer": true}'),
(58, 18, 1, 8568.89, 0.0, '{"warranty": "6 months", "size": "L"}'),
(59, 36, 1, 9820.75, 0.0, '{"warranty": "2 years", "bundle_offer": true, "RAM_upgrade": "16GB"}'),
(60, 190, 1, 115610.0, 9561.83, '{}'),
(60, 171, 8, 24054.85, 0.0, '{}'),
(60, 168, 3, 49360.55, 0.0, '{"bundle_offer": true}'),
(60, 200, 7, 10467.41, 0.0, '{"warranty": "2 years", "size": "L", "color": "Red"}'),
(61, 42, 2, 6769.16, 0.0, '{"size": "M"}'),
(61, 70, 7, 18996.36, 0.0, '{"bundle_offer": true}'),
(62, 163, 3, 6870.38, 0.0, '{"warranty": "6 months", "color": "Black"}'),
(62, 148, 5, 3715.23, 0.0, '{"warranty": "1 year", "bundle_offer": true}'),
(63, 46, 5, 21583.8, 3927.14, '{}'),
(63, 136, 2, 7492.29, 0.0, '{"warranty": "1 year", "installation": "Basic"}'),
(63, 53, 3, 7503.05, 0.0, '{"bundle_offer": true}'),
(64, 44, 7, 8806.89, 620.29, '{}'),
(64, 128, 6, 9627.33, 0.0, '{"bundle_offer": true, "color": "Blue"}'),
(64, 130, 6, 7455.15, 0.0, '{"bundle_offer": true, "color": "White"}'),
(65, 83, 6, 46171.58, 4897.38, '{"bundle_offer": true}'),
(65, 135, 3, 8236.72, 3288.94, '{"size": "M"}'),
(65, 50, 1, 44539.58, 11573.27, '{"warranty": "6 months", "size": "S", "RAM_upgrade": "32GB"}'),
(66, 9, 9, 21404.56, 3530.69, '{}'),
(66, 134, 3, 3523.05, 0.0, '{"bundle_offer": true, "size": "XL"}'),
(66, 99, 8, 8552.37, 0.0, '{"warranty": "1 year", "size": "L", "color": "White"}'),
(66, 161, 3, 5973.44, 0.0, '{"warranty": "6 months", "bundle_offer": true, "size": "L"}'),
(66, 186, 6, 10268.16, 1819.01, '{"color": "Red"}'),
(67, 74, 6, 17877.25, 2556.13, '{"warranty": "1 year", "size": "L", "color": "Green"}'),
(67, 59, 1, 61311.32, 10071.53, '{}'),
(67, 34, 2, 48405.11, 4409.53, '{"warranty": "1 year", "size": "M"}'),
(68, 83, 10, 20581.22, 1887.65, '{"warranty": "6 months"}'),
(69, 48, 2, 14268.93, 0.0, '{}'),
(69, 38, 2, 68650.88, 0.0, '{"warranty": "1 year", "bundle_offer": true, "size": "XL", "color": "Red", "gift_wrap": true}'),
(69, 125, 1, 19489.06, 0.0, '{"color": "Blue"}'),
(70, 174, 1, 8012.59, 1568.19, '{"warranty": "1 year"}'),
(70, 87, 2, 6022.49, 0.0, '{"color": "Green"}'),
(71, 8, 3, 3103.19, 609.04, '{"size": "L"}'),
(72, 77, 9, 10992.79, 0.0, '{}'),
(72, 52, 3, 9529.77, 0.0, '{"warranty": "6 months", "size": "L"}'),
(72, 90, 6, 3114.02, 0.0, '{"bundle_offer": true, "size": "S"}'),
(72, 32, 1, 23509.98, 0.0, '{}'),
(72, 105, 1, 7606.81, 0.0, '{"warranty": "2 years", "size": "M", "storage_upgrade": "2TB HDD"}'),
(73, 194, 2, 3548.95, 0.0, '{}'),
(73, 140, 1, 16792.64, 0.0, '{"warranty": "6 months"}'),
(73, 138, 1, 17588.76, 0.0, '{"color": "Red"}'),
(73, 20, 2, 17683.56, 0.0, '{}'),
(73, 55, 1, 28697.42, 0.0, '{"warranty": "1 year", "bundle_offer": true}'),
(74, 129, 5, 4067.79, 0.0, '{"bundle_offer": true}'),
(74, 3, 3, 5810.64, 0.0, '{"warranty": "6 months", "bundle_offer": true, "size": "M"}'),
(74, 17, 3, 14949.53, 0.0, '{}'),
(74, 88, 2, 37122.75, 0.0, '{}'),
(75, 190, 5, 28637.84, 4161.66, '{"warranty": "1 year", "storage_upgrade": "2TB HDD"}'),
(75, 71, 3, 6001.42, 1063.16, '{"size": "M"}'),
(75, 114, 2, 647.78, 0.0, '{}'),
(75, 25, 2, 10781.87, 0.0, '{"bundle_offer": true}'),
(75, 80, 1, 12243.25, 2304.18, '{"warranty": "6 months"}'),
(76, 54, 3, 13124.8, 0.0, '{"warranty": "6 months", "bundle_offer": true}'),
(76, 34, 3, 19200.0, 1909.33, '{}'),
(76, 85, 2, 13337.05, 0.0, '{"warranty": "6 months"}'),
(76, 139, 9, 39089.7, 0.0, '{"bundle_offer": true}'),
(76, 39, 3, 10678.59, 1025.93, '{"size": "L", "installation": "Professional"}'),
(77, 164, 3, 18068.55, 0.0, '{"warranty": "2 years", "color": "Green"}'),
(77, 185, 1, 6639.98, 911.55, '{"warranty": "1 year"}'),
(77, 45, 2, 3779.51, 0.0, '{"warranty": "6 months"}'),
(77, 129, 3, 11300.25, 589.07, '{"bundle_offer": true, "size": "M", "color": "Green"}'),
(77, 127, 9, 13828.02, 0.0, '{"warranty": "6 months", "color": "Blue"}'),
(78, 49, 6, 6732.87, 0.0, '{"warranty": "2 years", "color": "Blue"}'),
(78, 4, 1, 3025.04, 0.0, '{"warranty": "6 months"}'),
(78, 23, 2, 7364.58, 0.0, '{"warranty": "1 year"}'),
(78, 159, 2, 18012.75, 2814.29, '{"size": "S", "color": "White"}'),
(79, 129, 3, 13444.98, 0.0, '{"warranty": "2 years", "size": "L"}'),
(79, 118, 3, 72337.93, 14222.94, '{"size": "XL"}'),
(79, 117, 3, 3754.29, 0.0, '{"color": "White"}'),
(79, 101, 3, 989.31, 0.0, '{"warranty": "2 years", "bundle_offer": true, "color": "Black"}'),
(79, 161, 1, 2238.12, 445.19, '{}'),
(80, 123, 2, 7174.09, 972.45, '{"size": "M"}'),
(81, 71, 2, 25938.41, 2006.43, '{"size": "M"}'),
(81, 177, 1, 3336.7, 0.0, '{"warranty": "6 months", "color": "Green"}'),
(81, 22, 2, 15362.24, 0.0, '{}'),
(81, 168, 1, 19510.07, 0.0, '{}'),
(81, 53, 3, 12429.97, 0.0, '{"bundle_offer": true}'),
(82, 184, 3, 20895.81, 0.0, '{"bundle_offer": true, "installation": "Professional"}'),
(82, 93, 2, 49368.95, 6319.39, '{"bundle_offer": true, "storage_upgrade": "2TB HDD"}'),
(82, 187, 1, 92586.38, 6447.45, '{"color": "White"}'),
(82, 94, 3, 75938.24, 6596.83, '{"size": "L", "color": "White"}'),
(83, 147, 7, 15471.89, 0.0, '{"bundle_offer": true, "size": "XL"}'),
(83, 174, 2, 11777.52, 0.0, '{"size": "L", "color": "Black"}'),
(83, 72, 2, 5326.5, 0.0, '{}'),
(84, 194, 2, 69084.74, 0.0, '{"warranty": "2 years"}'),
(84, 87, 3, 1195.23, 534.24, '{"warranty": "1 year", "RAM_upgrade": "32GB"}'),
(84, 18, 3, 105913.16, 0.0, '{"size": "L"}'),
(85, 51, 3, 9705.09, 0.0, '{"warranty": "1 year", "bundle_offer": true, "size": "S", "color": "Green", "gift_wrap": true}'),
(85, 65, 3, 49595.5, 0.0, '{"warranty": "2 years", "bundle_offer": true, "size": "M"}'),
(85, 53, 3, 9625.18, 4169.82, '{}'),
(86, 24, 3, 9031.98, 0.0, '{"size": "L"}'),
(86, 79, 1, 23195.77, 0.0, '{"color": "Black"}'),
(86, 181, 1, 4520.2, 264.46, '{"size": "S", "color": "White", "gift_wrap": true}'),
(87, 120, 1, 18115.12, 0.0, '{"warranty": "2 years", "bundle_offer": true, "color": "Green"}'),
(87, 172, 2, 6208.25, 0.0, '{"bundle_offer": true, "size": "L"}'),
(88, 134, 10, 45514.78, 0.0, '{"bundle_offer": true}'),
(88, 141, 2, 19760.87, 3504.27, '{"size": "M"}'),
(88, 158, 6, 4552.76, 0.0, '{"warranty": "6 months", "bundle_offer": true}'),
(89, 96, 3, 6741.78, 0.0, '{"warranty": "6 months", "bundle_offer": true}'),
(89, 68, 2, 22136.67, 4260.42, '{"color": "Red"}'),
(89, 75, 1, 87743.97, 0.0, '{"size": "XL", "color": "Red"}'),
(89, 5, 4, 18676.92, 0.0, '{"bundle_offer": true}'),
(90, 7, 4, 13903.36, 0.0, '{"warranty": "6 months", "gift_wrap": true}'),
(91, 60, 6, 24496.64, 0.0, '{"size": "M", "color": "Blue"}'),
(91, 35, 9, 4779.49, 0.0, '{"warranty": "1 year", "bundle_offer": true, "color": "Red"}'),
(91, 169, 2, 44162.7, 0.0, '{"warranty": "6 months"}'),
(91, 44, 1, 52219.5, 0.0, '{"size": "L"}'),
(91, 153, 9, 85961.25, 0.0, '{"bundle_offer": true}'),
(92, 177, 4, 7461.2, 0.0, '{"warranty": "2 years", "bundle_offer": true}'),
(93, 161, 3, 23638.33, 2380.91, '{"warranty": "2 years"}'),
(93, 80, 3, 8384.46, 466.24, '{"size": "XL"}'),
(93, 152, 9, 3273.73, 0.0, '{"warranty": "6 months", "bundle_offer": true, "size": "S"}'),
(93, 139, 2, 29695.17, 3910.89, '{"color": "Red"}'),
(93, 26, 7, 5776.48, 0.0, '{"warranty": "6 months"}'),
(94, 40, 2, 3639.05, 346.25, '{"warranty": "2 years"}'),
(94, 7, 3, 5691.96, 0.0, '{"size": "M", "color": "White"}'),
(94, 4, 4, 105288.67, 0.0, '{"bundle_offer": true}'),
(94, 108, 8, 1308.58, 121.53, '{"warranty": "1 year"}'),
(95, 79, 1, 8833.59, 1404.57, '{"warranty": "2 years", "color": "Green", "gift_wrap": true}'),
(95, 148, 9, 61301.15, 4206.64, '{"warranty": "2 years"}'),
(95, 138, 3, 19349.25, 0.0, '{"bundle_offer": true, "engraving": "Initials"}'),
(96, 131, 3, 8262.62, 0.0, '{"bundle_offer": true, "size": "M"}'),
(96, 23, 3, 24376.18, 2327.4, '{"bundle_offer": true, "size": "M"}'),
(96, 115, 1, 15810.66, 0.0, '{}'),
(97, 106, 3, 9990.57, 0.0, '{"warranty": "1 year", "bundle_offer": true}'),
(98, 79, 3, 35281.2, 0.0, '{"warranty": "6 months"}'),
(98, 179, 3, 20638.2, 0.0, '{"warranty": "2 years"}'),
(98, 127, 6, 11724.83, 0.0, '{"warranty": "6 months"}'),
(99, 49, 1, 142729.79, 18011.5, '{"bundle_offer": true, "color": "White"}'),
(99, 157, 3, 11468.38, 0.0, '{"bundle_offer": true, "size": "M"}'),
(99, 78, 1, 7306.21, 0.0, '{"size": "L", "installation": "Basic"}'),
(100, 116, 1, 122139.39, 0.0, '{"bundle_offer": true, "size": "M"}'),
(100, 49, 1, 16693.79, 0.0, '{"bundle_offer": true}'),
(100, 133, 3, 35212.34, 0.0, '{}'),
(101, 17, 1, 2401.42, 0.0, '{"warranty": "6 months"}'),
(101, 129, 2, 11454.07, 0.0, '{"warranty": "2 years", "bundle_offer": true, "size": "XL"}'),
(101, 119, 1, 24431.02, 0.0, '{"bundle_offer": true, "size": "L"}'),
(101, 34, 9, 25042.05, 2620.12, '{"bundle_offer": true, "color": "Blue"}'),
(101, 136, 2, 34236.32, 4161.71, '{"warranty": "2 years", "size": "S", "installation": "Professional"}'),