-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabasescript.sql
More file actions
1032 lines (1028 loc) · 68.1 KB
/
databasescript.sql
File metadata and controls
1032 lines (1028 loc) · 68.1 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
/* User credentials of SQL: user: root password: c0nt@ct-M@n@g3r
Group members: Tony, Alex, Golden, Jacob, James, Alperen
*/
CREATE TABLE `COP4331`.`Users`
(
`ID` INT NOT NULL AUTO_INCREMENT,
`DateCreated` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
`DateLastLoggedIn` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`FirstName` VARCHAR(50) NOT NULL DEFAULT '',
`LastName` VARCHAR(50) NOT NULL DEFAULT '',
`Login` VARCHAR(50) NOT NULL DEFAULT '',
`Password` VARCHAR(50) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`)
) ENGINE = InnoDB;
CREATE TABLE `COP4331`.`Contacts`
(
`ID` INT NOT NULL AUTO_INCREMENT,
`Name` VARCHAR(50) NOT NULL DEFAULT '',
`Phone` VARCHAR(50) NOT NULL DEFAULT '',
`Email` VARCHAR(50) NOT NULL DEFAULT '',
`UserID` INT NOT NULL,
`Favorited` BOOLEAN NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
FOREIGN KEY (`UserID`) REFERENCES `Users`(`ID`) ON DELETE CASCADE
) ENGINE = InnoDB;
insert into Users (FirstName,LastName,Login,Password) VALUES ('Tony','Chau','TonyC','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES ('Alex','Gershfeld','AlexG','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES ('Golden','Lin','GoldenL','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES ('Jacob','Peach','JacobP','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES('James','Salzer','JamesS','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES('Alperen','Yazmaci','AlperenY','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES('Test','User','TestUser','c9671fcaa7ba36237c183508451aebfc');
insert into Users (FirstName,LastName,Login,Password) VALUES('Demo','User','DemoUser','fdf378a3a2e68ba00349a0d61c572c62');
INSERT INTO `COP4331`.`Contacts` (`Name`, `Phone`, `Email`, `UserID`, `Favorited`) VALUES
('Aaron Brooks', '555-555-0301', 'aaron.brooks@example.com', 1, 0),
('Abby Stevens', '555-555-0302', 'abby.stevens@example.com', 2, 1),
('Adam West', '555-555-0303', 'adam.west@example.com', 3, 0),
('Adrian Kelly', '555-555-0304', 'adrian.kelly@example.com', 4, 1),
('Aidan Hunter', '555-555-0350', 'aidan.hunter@example.com', 1, 0),
('Aidan Shaw', '555-555-0154', 'aidan.shaw@example.com', 4, 0),
('Aiden Brooks', '555-555-0201', 'aiden.brooks@example.com', 4, 0),
('Aisha Wright', '555-555-0202', 'aisha.wright@example.com', 5, 0),
('Alana Collins', '555-555-0203', 'alana.collins@example.com', 3, 1),
('Albert Fisher', '555-555-0204', 'albert.fisher@example.com', 2, 1),
('Albert Norris', '555-555-0306', 'albert.norris@example.com', 1, 1),
('Alec Baldwin', '555-555-0307', 'alec.baldwin@example.com', 2, 0),
('Alexa Smith', '555-555-0308', 'alexa.smith@example.com', 3, 1),
('Alex Jones', '555-555-0179', 'alex.jones@example.com', 4, 0),
('Alexandra Lee', '555-555-0351', 'alexandra.lee@example.com', 2, 1),
('Alexis Reid', '555-555-0205', 'alexis.reid@example.com', 4, 0),
('Alice Garner', '555-555-0206', 'alice.garner@example.com', 1, 0),
('Alice Johnson', '555-555-0102', 'alice.johnson@example.com', 1, 1),
('Alicia Clark', '555-555-0310', 'alicia.clark@example.com', 5, 1),
('Alicia Shaw', '555-555-0207', 'alicia.shaw@example.com', 5, 1),
('Allison Ford', '555-555-0208', 'allison.ford@example.com', 2, 1),
('Alvin Green', '555-555-0311', 'alvin.green@example.com', 1, 0),
('Amber Hayes', '555-555-0209', 'amber.hayes@example.com', 3, 0),
('Amelia Diaz', '555-555-0210', 'amelia.diaz@example.com', 1, 1),
('Amelia White', '555-555-0313', 'amelia.white@example.com', 3, 0),
('Amanda Thomas', '555-555-0312', 'amanda.thomas@example.com', 2, 1),
('Amos Clark', '555-555-0352', 'amos.clark@example.com', 3, 0),
('Andre Miller', '555-555-0211', 'andre.miller@example.com', 5, 0),
('Andrew Davis', '555-555-0316', 'andrew.davis@example.com', 1, 1),
('Angela Grant', '555-555-0212', 'angela.grant@example.com', 2, 0),
('Angela Parker', '555-555-0317', 'angela.parker@example.com', 2, 0),
('Anita Harris', '555-555-0318', 'anita.harris@example.com', 3, 1),
('Ann Reed', '555-555-0319', 'ann.reed@example.com', 4, 0),
('Annie Adams', '555-555-0322', 'annie.adams@example.com', 2, 1),
('Annie Simmons', '555-555-0213', 'annie.simmons@example.com', 1, 0),
('Anthony Clark', '555-555-0323', 'anthony.clark@example.com', 3, 0),
('Anthony Cox', '555-555-0214', 'anthony.cox@example.com', 3, 1),
('Anthony Lewis', '555-555-0353', 'anthony.lewis@example.com', 4, 1),
('April Mitchell', '555-555-0324', 'april.mitchell@example.com', 4, 1),
('April Torres', '555-555-0215', 'april.torres@example.com', 4, 1),
('Ariana Foster', '555-555-0216', 'ariana.foster@example.com', 4, 0),
('Ariana Hall', '555-555-0325', 'ariana.hall@example.com', 5, 0),
('Arielle Murphy', '555-555-0326', 'arielle.murphy@example.com', 1, 1),
('Arthur Clark', '555-555-0217', 'arthur.clark@example.com', 1, 0),
('Arthur King', '555-555-0328', 'arthur.king@example.com', 3, 1),
('Ashly Finn', '555-555-0199', 'ashly.finn@example.com', 6, 1),
('Ashton Baker', '555-555-0329', 'ashton.baker@example.com', 4, 0),
('Aubrey Collins', '555-555-0218', 'aubrey.collins@example.com', 2, 1),
('Aubrey Martinez', '555-555-0330', 'aubrey.martinez@example.com', 5, 1),
('Audrey Walker', '555-555-0331', 'audrey.walker@example.com', 1, 0),
('Austin Johnson', '555-555-0332', 'austin.johnson@example.com', 2, 1),
('Austin Wright', '555-555-0219', 'austin.wright@example.com', 3, 0),
('Autumn Green', '555-555-0333', 'autumn.green@example.com', 3, 0),
('Ava Baker', '555-555-0220', 'ava.baker@example.com', 2, 0),
('Ava Brooks', '555-555-0334', 'ava.brooks@example.com', 4, 1),
('Avery Scott', '555-555-0335', 'avery.scott@example.com', 5, 0),
('Barbara Nelson', '555-555-0336', 'barbara.nelson@example.com', 1, 1),
('Beatrice Perez', '555-555-0337', 'beatrice.perez@example.com', 2, 0),
('Becky Russell', '555-555-0221', 'becky.russell@example.com', 4, 1),
('Bella Webb', '555-555-0155', 'bella.webb@example.com', 5, 0),
('Ben Adams', '555-555-0222', 'ben.adams@example.com', 1, 0),
('Ben Williams', '555-555-0338', 'ben.williams@example.com', 3, 1),
('Benedict Williams', '555-555-0354', 'benedict.williams@example.com', 5, 0),
('Bernard Davis', '555-555-0339', 'bernard.davis@example.com', 4, 0),
('Beth Cooper', '555-555-0180', 'beth.cooper@example.com', 5, 0),
('Bethany Miller', '555-555-0340', 'bethany.miller@example.com', 5, 1),
('Betty Jackson', '555-555-0341', 'betty.jackson@example.com', 1, 0),
('Beverly Johnson', '555-555-0342', 'beverly.johnson@example.com', 2, 1),
('Bianca Lewis', '555-555-0223', 'bianca.lewis@example.com', 5, 1),
('Bill Robinson', '555-555-0343', 'bill.robinson@example.com', 3, 0),
('Blake Carter', '555-555-0224', 'blake.carter@example.com', 3, 1),
('Bob Brown', '555-555-0103', 'bob.brown@example.com', 2, 1),
('Bradley Morgan', '555-555-0225', 'bradley.morgan@example.com', 2, 0),
('Brenda Murphy', '555-555-0226', 'brenda.murphy@example.com', 1, 0),
('Brett Sanders', '555-555-0227', 'brett.sanders@example.com', 5, 0),
('Brian Cook', '555-555-0129', 'brian.cook@example.com', 4, 1),
('Brittany Hill', '555-555-0228', 'brittany.hill@example.com', 3, 0),
('Brooklyn Hills', '555-555-0198', 'brooklyn.hills@example.com', 6, 1),
('Bryan Jenkins', '555-555-0229', 'bryan.jenkins@example.com', 4, 1),
('Caleb Rivera', '555-555-0181', 'caleb.rivera@example.com', 1, 0),
('Cameron Lee', '555-555-0230', 'cameron.lee@example.com', 2, 1),
('Carla Flores', '555-555-0231', 'carla.flores@example.com', 5, 1),
('Carlton Gray', '555-555-0232', 'carlton.gray@example.com', 3, 0),
('Carmen Moore', '555-555-0233', 'carmen.moore@example.com', 4, 0),
('Cassandra Ray', '555-555-0234', 'cassandra.ray@example.com', 1, 0),
('Catherine Martin', '555-555-0355', 'catherine.martin@example.com', 1, 1),
('Cathy Baker', '555-555-0130', 'cathy.baker@example.com', 5, 1),
('Cedric Stone', '555-555-0235', 'cedric.stone@example.com', 2, 1),
('Charlie Davis', '555-555-0104', 'charlie.davis@example.com', 2, 1),
('Charlotte Black', '555-555-0236', 'charlotte.black@example.com', 4, 1),
('Charlotte Turner', '555-555-0356', 'charlotte.turner@example.com', 2, 0),
('Chris Bennett', '555-555-0237', 'chris.bennett@example.com', 3, 0),
('Christina Barnes', '555-555-0238', 'christina.barnes@example.com', 1, 0),
('Christopher Young', '555-555-0239', 'christopher.young@example.com', 4, 0),
('Cindy Jenkins', '555-555-0240', 'cindy.jenkins@example.com', 2, 1),
('Clara Hughes', '555-555-0241', 'clara.hughes@example.com', 5, 1),
('Cody Stone', '555-555-0156', 'cody.stone@example.com', 1, 0),
('Colin Robertson', '555-555-0242', 'colin.robertson@example.com', 3, 0),
('Colleen Young', '555-555-0357', 'colleen.young@example.com', 3, 1),
('Connor Kelly', '555-555-0243', 'connor.kelly@example.com', 4, 1),
('Corey Bryant', '555-555-0244', 'corey.bryant@example.com', 2, 0),
('Crystal Gibson', '555-555-0245', 'crystal.gibson@example.com', 1, 0),
('Curtis Brooks', '555-555-0246', 'curtis.brooks@example.com', 3, 0),
('Daisy Ross', '555-555-0182', 'daisy.ross@example.com', 2, 0),
('Dale Edwards', '555-555-0247', 'dale.edwards@example.com', 5, 1),
('Damian Powell', '555-555-0248', 'damian.powell@example.com', 4, 0),
('Dana Weaver', '555-555-0249', 'dana.weaver@example.com', 3, 1),
('Daniel Pierce', '555-555-0250', 'daniel.pierce@example.com', 2, 1),
('Danielle Richards', '555-555-0251', 'danielle.richards@example.com', 1, 0),
('Daphne Stewart', '555-555-0358', 'daphne.stewart@example.com', 4, 0),
('Darren Harvey', '555-555-0252', 'darren.harvey@example.com', 5, 1),
('Daryl Simmons', '555-555-0253', 'daryl.simmons@example.com', 3, 0),
('Dave Scott', '555-555-0254', 'dave.scott@example.com', 4, 1),
('David Wilson', '555-555-0105', 'david.wilson@example.com', 2, 1),
('Dawn Howard', '555-555-0255', 'dawn.howard@example.com', 2, 0),
('Dean Morrison', '555-555-0256', 'dean.morrison@example.com', 1, 0),
('Deanna Hudson', '555-555-0257', 'deanna.hudson@example.com', 3, 1),
('Deborah Lawrence', '555-555-0258', 'deborah.lawrence@example.com', 4, 0),
('Derek Murphy', '555-555-0131', 'derek.murphy@example.com', 1, 1),
('Derek Owens', '555-555-0260', 'derek.owens@example.com', 1, 1),
('Desiree Lopez', '555-555-0261', 'desiree.lopez@example.com', 5, 0),
('Diana Knight', '555-555-0157', 'diana.knight@example.com', 2, 0),
('Diane Cruz', '555-555-0262', 'diane.cruz@example.com', 3, 1),
('Dominic Bell', '555-555-0263', 'dominic.bell@example.com', 4, 0),
('Donovan Wells', '555-555-0264', 'donovan.wells@example.com', 2, 1),
('Dorian Lane', '555-555-0265', 'dorian.lane@example.com', 1, 0),
('Dorothy Fox', '555-555-0266', 'dorothy.fox@example.com', 5, 0),
('Drew Spencer', '555-555-0267', 'drew.spencer@example.com', 4, 1),
('Dustin Marsh', '555-555-0268', 'dustin.marsh@example.com', 3, 0),
('Earl Holmes', '555-555-0269', 'earl.holmes@example.com', 2, 0),
('Edgar Montgomery', '555-555-0270', 'edgar.montgomery@example.com', 1, 0),
('Edith Jordan', '555-555-0271', 'edith.jordan@example.com', 3, 1),
('Edward Harris', '555-555-0359', 'edward.harris@example.com', 5, 1),
('Edward Simpson', '555-555-0272', 'edward.simpson@example.com', 4, 0),
('Eileen Fox', '555-555-0273', 'eileen.fox@example.com', 2, 1),
('Eli Hayes', '555-555-0183', 'eli.hayes@example.com', 3, 0),
('Elena Curtis', '555-555-0274', 'elena.curtis@example.com', 1, 0),
('Elijah Dean', '555-555-0275', 'elijah.dean@example.com', 3, 1),
('Elizabeth Matthews', '555-555-0276', 'elizabeth.matthews@example.com', 4, 0),
('Ella Campbell', '555-555-0277', 'ella.campbell@example.com', 2, 0),
('Ella Rogers', '555-555-0132', 'ella.rogers@example.com', 2, 1),
('Elliot Gilbert', '555-555-0278', 'elliot.gilbert@example.com', 1, 0),
('Emily Harrison', '555-555-0279', 'emily.harrison@example.com', 3, 1),
('Emma Scott', '555-555-0344', 'emma.scott@example.com', 1, 0),
('Eric Larson', '555-555-0280', 'eric.larson@example.com', 4, 1),
('Erica Martin', '555-555-0345', 'erica.martin@example.com', 2, 1),
('Erika Hunter', '555-555-0281', 'erika.hunter@example.com', 2, 1),
('Ethan Grant', '555-555-0158', 'ethan.grant@example.com', 3, 0),
('Eugene Armstrong', '555-555-0282', 'eugene.armstrong@example.com', 1, 0),
('Eva Martinez', '555-555-0283', 'eva.martinez@example.com', 5, 0),
('Eve Adams', '555-555-0106', 'eve.adams@example.com', 3, 1),
('Evelyn Palmer', '555-555-0284', 'evelyn.palmer@example.com', 3, 1),
('Faith Ross', '555-555-0184', 'faith.ross@example.com', 4, 0),
('Felix Parker', '555-555-0285', 'felix.parker@example.com', 4, 1),
('Florence Bell', '555-555-0360', 'florence.bell@example.com', 1, 0),
('Fiona Hicks', '555-555-0159', 'fiona.hicks@example.com', 4, 0),
('Fiona Reynolds', '555-555-0286', 'fiona.reynolds@example.com', 2, 1),
('Frank Miller', '555-555-0107', 'frank.miller@example.com', 3, 1),
('Frankie Edwards', '555-555-0287', 'frankie.edwards@example.com', 1, 0),
('Fred Morgan', '555-555-0133', 'fred.morgan@example.com', 3, 1),
('Fred Perry', '555-555-0288', 'fred.perry@example.com', 3, 0),
('Gabriel Griffin', '555-555-0289', 'gabriel.griffin@example.com', 4, 0),
('Garrett Ross', '555-555-0290', 'garrett.ross@example.com', 2, 1),
('Gavin Riley', '555-555-0185', 'gavin.riley@example.com', 5, 0),
('Geneva Dixon', '555-555-0291', 'geneva.dixon@example.com', 1, 0),
('Georgia Lee', '555-555-0361', 'georgia.lee@example.com', 2, 1),
('George Johnson', '555-555-0292', 'george.johnson@example.com', 3, 1),
('George Mills', '555-555-0160', 'george.mills@example.com', 5, 0),
('Geraldine Wood', '555-555-0293', 'geraldine.wood@example.com', 4, 1),
('Gilbert Franklin', '555-555-0294', 'gilbert.franklin@example.com', 2, 0),
('Gina Bell', '555-555-0134', 'gina.bell@example.com', 4, 1),
('Gina Stone', '555-555-0295', 'gina.stone@example.com', 1, 1),
('Gordon Fisher', '555-555-0296', 'gordon.fisher@example.com', 3, 1),
('Grace Bell', '555-555-0297', 'grace.bell@example.com', 4, 0),
('Grace Lee', '555-555-0108', 'grace.lee@example.com', 3, 1),
('Grant Thompson', '555-555-0298', 'grant.thompson@example.com', 2, 1),
('Greg Sullivan', '555-555-0299', 'greg.sullivan@example.com', 1, 0),
('Gwen Peterson', '555-555-0300', 'gwen.peterson@example.com', 3, 0),
('Hailey Butler', '555-555-0186', 'hailey.butler@example.com', 1, 0),
('Hannah Moore', '555-555-0109', 'hannah.moore@example.com', 1, 1),
('Harriet Green', '555-555-0362', 'harriet.green@example.com', 3, 0),
('Harry Mitchell', '555-555-0135', 'harry.mitchell@example.com', 5, 1),
('Holly Palmer', '555-555-0161', 'holly.palmer@example.com', 1, 0),
('Ian Thomas', '555-555-0110', 'ian.thomas@example.com', 4, 1),
('Isaac Carr', '555-555-0162', 'isaac.carr@example.com', 2, 0),
('Isabel Diaz', '555-555-0363', 'isabel.diaz@example.com', 4, 1),
('Ivy Carter', '555-555-0136', 'ivy.carter@example.com', 1, 1),
('Jack White', '555-555-0111', 'jack.white@example.com', 2, 1),
('Jake Perry', '555-555-0137', 'jake.perry@example.com', 2, 1),
('James Bond', '555-555-0196', 'james.bond@example.com', 6, 1),
('Jane Smith', '555-555-0101', 'jane.smith@example.com', 1, 1),
('Jill Reed', '555-555-0163', 'jill.reed@example.com', 3, 0),
('John Doe', '555-555-0100', 'john.doe@example.com', 1, 1),
('Judy Hughes', '555-555-0188', 'judy.hughes@example.com', 3, 0),
('Julian Thompson', '555-555-0364', 'julian.thompson@example.com', 5, 0),
('Karen Foster', '555-555-0138', 'karen.foster@example.com', 3, 1),
('Katherine Rogers', '555-555-0365', 'katherine.rogers@example.com', 1, 1),
('Katie Green', '555-555-0112', 'katie.green@example.com', 5, 1),
('Keith Jenkins', '555-555-0189', 'keith.jenkins@example.com', 4, 0),
('Kyle Ortiz', '555-555-0164', 'kyle.ortiz@example.com', 4, 0),
('Laura Bates', '555-555-0190', 'laura.bates@example.com', 5, 0),
('Lena Cox', '555-555-0165', 'lena.cox@example.com', 5, 0),
('Leo Patterson', '555-555-0139', 'leo.patterson@example.com', 4, 1),
('Liam Harris', '555-555-0113', 'liam.harris@example.com', 3, 1),
('Lilian Parker', '555-555-0366', 'lilian.parker@example.com', 2, 0),
('Margaret Scott', '555-555-0367', 'margaret.scott@example.com', 3, 1),
('Mason Harvey', '555-555-0191', 'mason.harvey@example.com', 1, 0),
('Mia Clark', '555-555-0114', 'mia.clark@example.com', 1, 1),
('Molly Hughes', '555-555-0140', 'molly.hughes@example.com', 5, 0),
('Nate Ross', '555-555-0141', 'nate.ross@example.com', 1, 0),
('Natalie Wood', '555-555-0368', 'natalie.wood@example.com', 4, 0),
('Nina Burns', '555-555-0167', 'nina.burns@example.com', 2, 0),
('Noah Lewis', '555-555-0115', 'noah.lewis@example.com', 4, 1),
('Nora Griffin', '555-555-0192', 'nora.griffin@example.com', 2, 0),
('Olga Coleman', '555-555-0142', 'olga.coleman@example.com', 2, 0),
('Olivia Robinson', '555-555-0116', 'olivia.robinson@example.com', 5, 1),
('Ophelia Adams', '555-555-0369', 'ophelia.adams@example.com', 5, 1),
('Oscar Lowe', '555-555-0168', 'oscar.lowe@example.com', 3, 0),
('Owen Hawkins', '555-555-0193', 'owen.hawkins@example.com', 3, 0),
('Paige Simmons', '555-555-0194', 'paige.simmons@example.com', 4, 0),
('Paul Jenkins', '555-555-0143', 'paul.jenkins@example.com', 3, 0),
('Penelope Taylor', '555-555-0370', 'penelope.taylor@example.com', 1, 0),
('Peter Walker', '555-555-0117', 'peter.walker@example.com', 2, 1),
('Quentin Brown', '555-555-0371', 'quentin.brown@example.com', 2, 1),
('Quincy Simmons', '555-555-0144', 'quincy.simmons@example.com', 4, 0),
('Quinn Adams', '555-555-0195', 'quinn.adams@example.com', 5, 0),
('Quinn Young', '555-555-0118', 'quinn.young@example.com', 3, 1),
('Rachel Hall', '555-555-0119', 'rachel.hall@example.com', 1, 1),
('Rebecca Walker', '555-555-0372', 'rebecca.walker@example.com', 3, 0),
('Rita Foster', '555-555-0145', 'rita.foster@example.com', 5, 0),
('Ryan Fisher', '555-555-0170', 'ryan.fisher@example.com', 5, 0),
('Sam Allen', '555-555-0120', 'sam.allen@example.com', 4, 1),
('Sara Stevens', '555-555-0171', 'sara.stevens@example.com', 1, 0),
('Sophia Harris', '555-555-0373', 'sophia.harris@example.com', 4, 1),
('Steve Rice', '555-555-0146', 'steve.rice@example.com', 1, 0),
('The Rock', '555-555-0197', 'the.rock@example.com', 6, 1),
('Thomas Johnson', '555-555-0374', 'thomas.johnson@example.com', 5, 0),
('Tina King', '555-555-0121', 'tina.king@example.com', 5, 1),
('Timmy Turner', '555-555-0200', 'timmy.turner@example.com', 6, 1),
('Tara Griffin', '555-555-0147', 'tara.griffin@example.com', 2, 0),
('Tommy Shaw', '555-555-0172', 'tommy.shaw@example.com', 2, 0),
('Ulysses Moore', '555-555-0375', 'ulysses.moore@example.com', 1, 1),
('Uma Scott', '555-555-0122', 'uma.scott@example.com', 2, 1),
('Umar Woods', '555-555-0148', 'umar.woods@example.com', 3, 0),
('Ursula Hunt', '555-555-0173', 'ursula.hunt@example.com', 3, 0),
('Victoria Allen', '555-555-0376', 'victoria.allen@example.com', 2, 0),
('Vera Sanders', '555-555-0149', 'vera.sanders@example.com', 4, 0),
('Victor Payne', '555-555-0174', 'victor.payne@example.com', 4, 0),
('Vince Turner', '555-555-0123', 'vince.turner@example.com', 3, 1),
('Walt Kim', '555-555-0150', 'walt.kim@example.com', 5, 0),
('Wendy Evans', '555-555-0124', 'wendy.evans@example.com', 4, 1),
('William Scott', '555-555-0377', 'william.scott@example.com', 3, 1),
('Willa Neal', '555-555-0175', 'willa.neal@example.com', 5, 0),
('Xander Hill', '555-555-0125', 'xander.hill@example.com', 5, 1),
('Xander Lee', '555-555-0378', 'xander.lee@example.com', 4, 0),
('Xavier Craig', '555-555-0176', 'xavier.craig@example.com', 1, 0),
('Xena Cruz', '555-555-0151', 'xena.cruz@example.com', 1, 0),
('Yara Collins', '555-555-0126', 'yara.collins@example.com', 1, 1),
('Yasmine Watts', '555-555-0177', 'yasmine.watts@example.com', 2, 0),
('Yusuf Ortiz', '555-555-0152', 'yusuf.ortiz@example.com', 2, 0),
('Yvonne Wright', '555-555-0379', 'yvonne.wright@example.com', 5, 1),
('Zach Reed', '555-555-0127', 'zach.reed@example.com', 2, 1),
('Zachary King', '555-555-0380', 'zachary.king@example.com', 1, 0),
('Zane Oliver', '555-555-0178', 'zane.oliver@example.com', 3, 0),
('Zoe Long', '555-555-0153', 'zoe.long@example.com', 3, 0),
('Aaron James', '555-555-0381', 'aaron.james@example.com', 2, 0),
('Abigail Morris', '555-555-0382', 'abigail.morris@example.com', 4, 1),
('Adam Turner', '555-555-0383', 'adam.turner@example.com', 1, 0),
('Adrian Bryant', '555-555-0384', 'adrian.bryant@example.com', 5, 1),
('Aidan Smith', '555-555-0385', 'aidan.smith@example.com', 3, 0),
('Aiden Lopez', '555-555-0386', 'aiden.lopez@example.com', 2, 1),
('Alan Perez', '555-555-0387', 'alan.perez@example.com', 4, 0),
('Albert Gonzales', '555-555-0388', 'albert.gonzales@example.com', 1, 1),
('Alec Brown', '555-555-0389', 'alec.brown@example.com', 5, 0),
('Alex Taylor', '555-555-0390', 'alex.taylor@example.com', 3, 1),
('Alice Martinez', '555-555-0391', 'alice.martinez@example.com', 4, 0),
('Alicia Thomas', '555-555-0392', 'alicia.thomas@example.com', 2, 1),
('Allison Garcia', '555-555-0393', 'allison.garcia@example.com', 1, 0),
('Amanda Wilson', '555-555-0394', 'amanda.wilson@example.com', 3, 1),
('Amber Anderson', '555-555-0395', 'amber.anderson@example.com', 4, 0),
('Amy Johnson', '555-555-0396', 'amy.johnson@example.com', 2, 1),
('Andrew Davis', '555-555-0397', 'andrew.davis@example.com', 1, 0),
('Angela Robinson', '555-555-0398', 'angela.robinson@example.com', 5, 1),
('Anna Clark', '555-555-0399', 'anna.clark@example.com', 3, 0),
('Anthony Martinez', '555-555-0400', 'anthony.martinez@example.com', 2, 1),
('Ashley Hall', '555-555-0401', 'ashley.hall@example.com', 4, 0),
('Barbara Allen', '555-555-0402', 'barbara.allen@example.com', 1, 1),
('Benjamin Young', '555-555-0403', 'benjamin.young@example.com', 3, 0),
('Betty King', '555-555-0404', 'betty.king@example.com', 5, 1),
('Beverly Wright', '555-555-0405', 'beverly.wright@example.com', 2, 0),
('Billy Scott', '555-555-0406', 'billy.scott@example.com', 1, 1),
('Brandon Green', '555-555-0407', 'brandon.green@example.com', 4, 0),
('Brenda Adams', '555-555-0408', 'brenda.adams@example.com', 3, 1),
('Brian Baker', '555-555-0409', 'brian.baker@example.com', 5, 0),
('Brittany Nelson', '555-555-0410', 'brittany.nelson@example.com', 2, 1),
('Bruce Carter', '555-555-0411', 'bruce.carter@example.com', 1, 0),
('Bryan Mitchell', '555-555-0412', 'bryan.mitchell@example.com', 4, 1),
('Carl Lewis', '555-555-0413', 'carl.lewis@example.com', 3, 0),
('Carol Walker', '555-555-0414', 'carol.walker@example.com', 1, 1),
('Charles Harris', '555-555-0415', 'charles.harris@example.com', 5, 0),
('Cheryl Clark', '555-555-0416', 'cheryl.clark@example.com', 2, 1),
('Chris Rodriguez', '555-555-0417', 'chris.rodriguez@example.com', 4, 0),
('Christine Lee', '555-555-0418', 'christine.lee@example.com', 3, 1),
('Christopher Allen', '555-555-0419', 'christopher.allen@example.com', 1, 0),
('Cynthia Wright', '555-555-0420', 'cynthia.wright@example.com', 2, 1),
('Daniel King', '555-555-0421', 'daniel.king@example.com', 4, 0),
('Deborah Scott', '555-555-0422', 'deborah.scott@example.com', 5, 1),
('Dennis Green', '555-555-0423', 'dennis.green@example.com', 3, 0),
('Diana Adams', '555-555-0424', 'diana.adams@example.com', 1, 1),
('Diane Nelson', '555-555-0425', 'diane.nelson@example.com', 2, 0),
('Donald Baker', '555-555-0426', 'donald.baker@example.com', 4, 1),
('Donna Hill', '555-555-0427', 'donna.hill@example.com', 3, 0),
('Dorothy Gonzalez', '555-555-0428', 'dorothy.gonzalez@example.com', 5, 1),
('Douglas Martinez', '555-555-0429', 'douglas.martinez@example.com', 1, 0),
('Dylan Perez', '555-555-0430', 'dylan.perez@example.com', 2, 1),
('Earl Turner', '555-555-0431', 'earl.turner@example.com', 3, 0),
('Edith Collins', '555-555-0432', 'edith.collins@example.com', 4, 1),
('Edward Murphy', '555-555-0433', 'edward.murphy@example.com', 1, 0),
('Elizabeth Ramirez', '555-555-0434', 'elizabeth.ramirez@example.com', 2, 1),
('Emily Richardson', '555-555-0435', 'emily.richardson@example.com', 5, 0),
('Emma Howard', '555-555-0436', 'emma.howard@example.com', 3, 1),
('Eric Cox', '555-555-0437', 'eric.cox@example.com', 4, 0),
('Ethan Ward', '555-555-0438', 'ethan.ward@example.com', 1, 1),
('Eugene Brooks', '555-555-0439', 'eugene.brooks@example.com', 2, 0),
('Eva Bell', '555-555-0440', 'eva.bell@example.com', 3, 1),
('Evelyn Ross', '555-555-0441', 'evelyn.ross@example.com', 4, 0),
('Florence Edwards', '555-555-0442', 'florence.edwards@example.com', 5, 1),
('Frances Campbell', '555-555-0443', 'frances.campbell@example.com', 1, 0),
('Frank Garcia', '555-555-0444', 'frank.garcia@example.com', 2, 1),
('Fred Foster', '555-555-0445', 'fred.foster@example.com', 3, 0),
('Gary Butler', '555-555-0446', 'gary.butler@example.com', 4, 1),
('George Simmons', '555-555-0447', 'george.simmons@example.com', 1, 0),
('Gerald Bryant', '555-555-0448', 'gerald.bryant@example.com', 2, 1),
('Gloria Alexander', '555-555-0449', 'gloria.alexander@example.com', 3, 0),
('Grace Hayes', '555-555-0450', 'grace.hayes@example.com', 4, 1),
('Gregory Sanders', '555-555-0451', 'gregory.sanders@example.com', 5, 0),
('Harold Jenkins', '555-555-0452', 'harold.jenkins@example.com', 1, 1),
('Helen Bennett', '555-555-0453', 'helen.bennett@example.com', 2, 0),
('Henry Morris', '555-555-0454', 'henry.morris@example.com', 3, 1),
('Howard Flores', '555-555-0455', 'howard.flores@example.com', 4, 0),
('Irene Powell', '555-555-0456', 'irene.powell@example.com', 5, 1),
('Jack Russell', '555-555-0457', 'jack.russell@example.com', 1, 0),
('Jackie Hughes', '555-555-0458', 'jackie.hughes@example.com', 2, 1),
('Jacob Wood', '555-555-0459', 'jacob.wood@example.com', 3, 0),
('James Cox', '555-555-0460', 'james.cox@example.com', 4, 1),
('Jane Patterson', '555-555-0461', 'jane.patterson@example.com', 5, 0),
('Janet Simmons', '555-555-0462', 'janet.simmons@example.com', 1, 1),
('Janice Ward', '555-555-0463', 'janice.ward@example.com', 2, 0),
('Jean Gray', '555-555-0464', 'jean.gray@example.com', 3, 1),
('Jeffrey Perry', '555-555-0465', 'jeffrey.perry@example.com', 4, 0),
('Jennifer Bell', '555-555-0466', 'jennifer.bell@example.com', 5, 1),
('Jerry Stewart', '555-555-0467', 'jerry.stewart@example.com', 1, 0),
('Jessica Foster', '555-555-0468', 'jessica.foster@example.com', 2, 1),
('Jill Edwards', '555-555-0469', 'jill.edwards@example.com', 3, 0),
('Jim Long', '555-555-0470', 'jim.long@example.com', 4, 1),
('Joan Miller', '555-555-0471', 'joan.miller@example.com', 5, 0),
('Joe Brooks', '555-555-0472', 'joe.brooks@example.com', 1, 1),
('John Parker', '555-555-0473', 'john.parker@example.com', 2, 0),
('Johnny Howard', '555-555-0474', 'johnny.howard@example.com', 3, 1),
('Jonathan Ward', '555-555-0475', 'jonathan.ward@example.com', 4, 0),
('Jordan Baker', '555-555-0476', 'jordan.baker@example.com', 5, 1),
('Jose Bryant', '555-555-0477', 'jose.bryant@example.com', 1, 0),
('Joseph Sanders', '555-555-0478', 'joseph.sanders@example.com', 2, 1),
('Joshua Ross', '555-555-0479', 'joshua.ross@example.com', 3, 0),
('Joyce Jenkins', '555-555-0480', 'joyce.jenkins@example.com', 4, 1),
('Juan Watson', '555-555-0481', 'juan.watson@example.com', 5, 0),
('Judith Mitchell', '555-555-0482', 'judith.mitchell@example.com', 1, 1),
('Julia Turner', '555-555-0483', 'julia.turner@example.com', 2, 0),
('Julie Roberts', '555-555-0484', 'julie.roberts@example.com', 3, 1),
('Justin Perry', '555-555-0485', 'justin.perry@example.com', 4, 0),
('Karen Wood', '555-555-0486', 'karen.wood@example.com', 5, 1),
('Katherine James', '555-555-0487', 'katherine.james@example.com', 1, 0),
('Kathleen Bennett', '555-555-0488', 'kathleen.bennett@example.com', 2, 1),
('Keith Rodriguez', '555-555-0489', 'keith.rodriguez@example.com', 3, 0),
('Kelly Gonzales', '555-555-0490', 'kelly.gonzales@example.com', 4, 1),
('Kenneth Barnes', '555-555-0491', 'kenneth.barnes@example.com', 5, 0),
('Kevin Cooper', '555-555-0492', 'kevin.cooper@example.com', 1, 1),
('Kimberly Brooks', '555-555-0493', 'kimberly.brooks@example.com', 2, 0),
('Larry King', '555-555-0494', 'larry.king@example.com', 3, 1),
('Laura Hayes', '555-555-0495', 'laura.hayes@example.com', 4, 0),
('Lawrence Barnes', '555-555-0496', 'lawrence.barnes@example.com', 5, 1),
('Linda Hughes', '555-555-0497', 'linda.hughes@example.com', 1, 0),
('Lisa Morgan', '555-555-0498', 'lisa.morgan@example.com', 2, 1),
('Louis Perry', '555-555-0499', 'louis.perry@example.com', 3, 0),
('Louise Jenkins', '555-555-0500', 'louise.jenkins@example.com', 4, 1),
('Lucas White', '555-555-0501', 'lucas.white@example.com', 5, 0),
('Lucy Ramirez', '555-555-0502', 'lucy.ramirez@example.com', 1, 1),
('Luis Russell', '555-555-0503', 'luis.russell@example.com', 2, 0),
('Lynn Martinez', '555-555-0504', 'lynn.martinez@example.com', 3, 1),
('Mandy Lee', '555-555-0505', 'mandy.lee@example.com', 4, 0),
('Margaret Moore', '555-555-0506', 'margaret.moore@example.com', 5, 1),
('Maria Harris', '555-555-0507', 'maria.harris@example.com', 1, 0),
('Marilyn Bell', '555-555-0508', 'marilyn.bell@example.com', 2, 1),
('Mark Lewis', '555-555-0509', 'mark.lewis@example.com', 3, 0),
('Martha Cook', '555-555-0510', 'martha.cook@example.com', 4, 1),
('Martin Richardson', '555-555-0511', 'martin.richardson@example.com', 5, 0),
('Marvin Cooper', '555-555-0512', 'marvin.cooper@example.com', 1, 1),
('Mary Foster', '555-555-0513', 'mary.foster@example.com', 2, 0),
('Megan Ward', '555-555-0514', 'megan.ward@example.com', 3, 1),
('Melissa Perry', '555-555-0515', 'melissa.perry@example.com', 4, 0),
('Michael Jenkins', '555-555-0516', 'michael.jenkins@example.com', 5, 1),
('Michelle Sanders', '555-555-0517', 'michelle.sanders@example.com', 1, 0),
('Mike Hill', '555-555-0518', 'mike.hill@example.com', 2, 1),
('Nancy Brooks', '555-555-0519', 'nancy.brooks@example.com', 3, 0),
('Natalie James', '555-555-0520', 'natalie.james@example.com', 4, 1),
('Nathan Martinez', '555-555-0521', 'nathan.martinez@example.com', 5, 0),
('Neil Adams', '555-555-0522', 'neil.adams@example.com', 1, 1),
('Nicholas Ward', '555-555-0523', 'nicholas.ward@example.com', 2, 0),
('Nicole Simmons', '555-555-0524', 'nicole.simmons@example.com', 3, 1),
('Nina Jenkins', '555-555-0525', 'nina.jenkins@example.com', 4, 0),
('Norman Perry', '555-555-0526', 'norman.perry@example.com', 5, 1),
('Olivia Bell', '555-555-0527', 'olivia.bell@example.com', 1, 0),
('Oscar Gonzales', '555-555-0528', 'oscar.gonzales@example.com', 2, 1),
('Pamela Richardson', '555-555-0529', 'pamela.richardson@example.com', 3, 0),
('Patricia Baker', '555-555-0530', 'patricia.baker@example.com', 4, 1),
('Patrick Bennett', '555-555-0531', 'patrick.bennett@example.com', 5, 0),
('Paul Hughes', '555-555-0532', 'paul.hughes@example.com', 1, 1),
('Paula Powell', '555-555-0533', 'paula.powell@example.com', 2, 0),
('Peggy Jenkins', '555-555-0534', 'peggy.jenkins@example.com', 3, 1),
('Peter Cox', '555-555-0535', 'peter.cox@example.com', 4, 0),
('Philip Clark', '555-555-0536', 'philip.clark@example.com', 5, 1),
('Phyllis Stewart', '555-555-0537', 'phyllis.stewart@example.com', 1, 0),
('Rachel Johnson', '555-555-0538', 'rachel.johnson@example.com', 2, 1),
('Ralph Gray', '555-555-0539', 'ralph.gray@example.com', 3, 0),
('Raymond Lewis', '555-555-0540', 'raymond.lewis@example.com', 4, 1),
('Rebecca Edwards', '555-555-0541', 'rebecca.edwards@example.com', 5, 0),
('Renee Green', '555-555-0542', 'renee.green@example.com', 1, 1),
('Rhonda Davis', '555-555-0543', 'rhonda.davis@example.com', 2, 0),
('Richard Johnson', '555-555-0544', 'richard.johnson@example.com', 3, 1),
('Robert Perez', '555-555-0545', 'robert.perez@example.com', 4, 0),
('Robin Scott', '555-555-0546', 'robin.scott@example.com', 5, 1),
('Roger Turner', '555-555-0547', 'roger.turner@example.com', 1, 0),
('Ronald Lee', '555-555-0548', 'ronald.lee@example.com', 2, 1),
('Rose Bryant', '555-555-0549', 'rose.bryant@example.com', 3, 0),
('Roy King', '555-555-0550', 'roy.king@example.com', 4, 1),
('Russell Carter', '555-555-0551', 'russell.carter@example.com', 5, 0),
('Ruth Jenkins', '555-555-0552', 'ruth.jenkins@example.com', 1, 1),
('Ryan Brooks', '555-555-0553', 'ryan.brooks@example.com', 2, 0),
('Samantha Ross', '555-555-0554', 'samantha.ross@example.com', 3, 1),
('Samuel Perez', '555-555-0555', 'samuel.perez@example.com', 4, 0),
('Sandra Ward', '555-555-0556', 'sandra.ward@example.com', 5, 1),
('Sara Gray', '555-555-0557', 'sara.gray@example.com', 1, 0),
('Scott Simmons', '555-555-0558', 'scott.simmons@example.com', 2, 1),
('Sean Bell', '555-555-0559', 'sean.bell@example.com', 3, 0),
('Sharon Hill', '555-555-0560', 'sharon.hill@example.com', 4, 1),
('Sheila Johnson', '555-555-0561', 'sheila.johnson@example.com', 5, 0),
('Shirley Rodriguez', '555-555-0562', 'shirley.rodriguez@example.com', 1, 1),
('Stanley Gonzales', '555-555-0563', 'stanley.gonzales@example.com', 2, 0),
('Stephanie Allen', '555-555-0564', 'stephanie.allen@example.com', 3, 1),
('Stephen Martinez', '555-555-0565', 'stephen.martinez@example.com', 4, 0),
('Steve Thompson', '555-555-0566', 'steve.thompson@example.com', 5, 1),
('Steven Young', '555-555-0567', 'steven.young@example.com', 1, 0),
('Susan Walker', '555-555-0568', 'susan.walker@example.com', 2, 1),
('Teresa Allen', '555-555-0569', 'teresa.allen@example.com', 3, 0),
('Terry Nelson', '555-555-0570', 'terry.nelson@example.com', 4, 1),
('Theresa Davis', '555-555-0571', 'theresa.davis@example.com', 5, 0),
('Thomas Martinez', '555-555-0572', 'thomas.martinez@example.com', 1, 1),
('Timothy Hernandez', '555-555-0573', 'timothy.hernandez@example.com', 2, 0),
('Todd Carter', '555-555-0574', 'todd.carter@example.com', 3, 1),
('Tracy Brooks', '555-555-0575', 'tracy.brooks@example.com', 4, 0),
('Troy Campbell', '555-555-0576', 'troy.campbell@example.com', 5, 1),
('Tyler Ward', '555-555-0577', 'tyler.ward@example.com', 1, 0),
('Valerie Clark', '555-555-0578', 'valerie.clark@example.com', 2, 1),
('Vanessa Perry', '555-555-0579', 'vanessa.perry@example.com', 3, 0),
('Victor Jenkins', '555-555-0580', 'victor.jenkins@example.com', 4, 1),
('Vincent King', '555-555-0581', 'vincent.king@example.com', 5, 0),
('Virginia Wright', '555-555-0582', 'virginia.wright@example.com', 1, 1),
('Wanda Turner', '555-555-0583', 'wanda.turner@example.com', 2, 0),
('Wayne Wood', '555-555-0584', 'wayne.wood@example.com', 3, 1),
('Wendy White', '555-555-0585', 'wendy.white@example.com', 4, 0),
('William Moore', '555-555-0586', 'william.moore@example.com', 5, 1),
('Willie Hernandez', '555-555-0587', 'willie.hernandez@example.com', 1, 0),
('Zachary Martinez', '555-555-0588', 'zachary.martinez@example.com', 2, 1),
('Zoe Hall', '555-555-0589', 'zoe.hall@example.com', 3, 0),
('Aaron Reed', '555-555-0590', 'aaron.reed@example.com', 4, 1),
('Abigail Carter', '555-555-0591', 'abigail.carter@example.com', 5, 0),
('Adam Morris', '555-555-0592', 'adam.morris@example.com', 1, 1),
('Adrian Nelson', '555-555-0593', 'adrian.nelson@example.com', 2, 0),
('Aidan Gray', '555-555-0594', 'aidan.gray@example.com', 3, 1),
('Aiden Clark', '555-555-0595', 'aiden.clark@example.com', 4, 0),
('Alan Robinson', '555-555-0596', 'alan.robinson@example.com', 5, 1),
('Albert Perez', '555-555-0597', 'albert.perez@example.com', 1, 0),
('Alec Gonzales', '555-555-0598', 'alec.gonzales@example.com', 2, 1),
('Alex Martinez', '555-555-0599', 'alex.martinez@example.com', 3, 0),
('Alice Taylor', '555-555-0600', 'alice.taylor@example.com', 4, 1),
('Alicia Adams', '555-555-0601', 'alicia.adams@example.com', 5, 0),
('Allison Johnson', '555-555-0602', 'allison.johnson@example.com', 1, 1),
('Amanda Wilson', '555-555-0603', 'amanda.wilson@example.com', 2, 0),
('Amber Hall', '555-555-0604', 'amber.hall@example.com', 3, 1),
('Amy Clark', '555-555-0605', 'amy.clark@example.com', 4, 0),
('Andrew Lewis', '555-555-0606', 'andrew.lewis@example.com', 5, 1),
('Angela Thomas', '555-555-0607', 'angela.thomas@example.com', 1, 0),
('Anna Scott', '555-555-0608', 'anna.scott@example.com', 2, 1),
('Anthony Green', '555-555-0609', 'anthony.green@example.com', 3, 0),
('Ashley Brown', '555-555-0610', 'ashley.brown@example.com', 4, 1),
('Barbara Harris', '555-555-0611', 'barbara.harris@example.com', 5, 0),
('Benjamin Young', '555-555-0612', 'benjamin.young@example.com', 1, 1),
('Betty King', '555-555-0613', 'betty.king@example.com', 2, 0),
('Beverly Wright', '555-555-0614', 'beverly.wright@example.com', 3, 1),
('Billy Scott', '555-555-0615', 'billy.scott@example.com', 4, 0),
('Brandon Green', '555-555-0616', 'brandon.green@example.com', 5, 1),
('Brenda Adams', '555-555-0617', 'brenda.adams@example.com', 1, 0),
('Brian Baker', '555-555-0618', 'brian.baker@example.com', 2, 1),
('Brittany Nelson', '555-555-0619', 'brittany.nelson@example.com', 3, 0),
('Bruce Carter', '555-555-0620', 'bruce.carter@example.com', 4, 1),
('Bryan Mitchell', '555-555-0621', 'bryan.mitchell@example.com', 5, 0),
('Carl Lewis', '555-555-0622', 'carl.lewis@example.com', 1, 1),
('Carol Walker', '555-555-0623', 'carol.walker@example.com', 2, 0),
('Charles Harris', '555-555-0624', 'charles.harris@example.com', 3, 1),
('Cheryl Clark', '555-555-0625', 'cheryl.clark@example.com', 4, 0),
('Chris Rodriguez', '555-555-0626', 'chris.rodriguez@example.com', 5, 1),
('Christine Lee', '555-555-0627', 'christine.lee@example.com', 1, 0),
('Christopher Allen', '555-555-0628', 'christopher.allen@example.com', 2, 1),
('Cynthia Wright', '555-555-0629', 'cynthia.wright@example.com', 3, 0),
('Daniel King', '555-555-0630', 'daniel.king@example.com', 4, 1),
('Deborah Scott', '555-555-0631', 'deborah.scott@example.com', 5, 0),
('Dennis Green', '555-555-0632', 'dennis.green@example.com', 1, 1),
('Diana Adams', '555-555-0633', 'diana.adams@example.com', 2, 0),
('Diane Nelson', '555-555-0634', 'diane.nelson@example.com', 3, 1),
('Donald Baker', '555-555-0635', 'donald.baker@example.com', 4, 0),
('Donna Hill', '555-555-0636', 'donna.hill@example.com', 5, 1),
('Dorothy Gonzalez', '555-555-0637', 'dorothy.gonzalez@example.com', 1, 0),
('Douglas Martinez', '555-555-0638', 'douglas.martinez@example.com', 2, 1),
('Dylan Perez', '555-555-0639', 'dylan.perez@example.com', 3, 0),
('Earl Turner', '555-555-0640', 'earl.turner@example.com', 4, 1),
('Edith Collins', '555-555-0641', 'edith.collins@example.com', 5, 0),
('Edward Murphy', '555-555-0642', 'edward.murphy@example.com', 1, 1),
('Elizabeth Ramirez', '555-555-0643', 'elizabeth.ramirez@example.com', 2, 0),
('Emily Richardson', '555-555-0644', 'emily.richardson@example.com', 3, 1),
('Emma Howard', '555-555-0645', 'emma.howard@example.com', 4, 0),
('Eric Cox', '555-555-0646', 'eric.cox@example.com', 5, 1),
('Ethan Ward', '555-555-0647', 'ethan.ward@example.com', 1, 0),
('Eugene Brooks', '555-555-0648', 'eugene.brooks@example.com', 2, 1),
('Eva Bell', '555-555-0649', 'eva.bell@example.com', 3, 0),
('Calvin Owens', '555-555-0701', 'calvin.owens@example.com', 7, 0),
('Cameron White', '555-555-0702', 'cameron.white@example.com', 7, 1),
('Candace Lee', '555-555-0703', 'candace.lee@example.com', 7, 0),
('Carl Simmons', '555-555-0704', 'carl.simmons@example.com', 7, 1),
('Carla Fisher', '555-555-0705', 'carla.fisher@example.com', 7, 0),
('Carmen Clark', '555-555-0706', 'carmen.clark@example.com', 7, 1),
('Carol Green', '555-555-0707', 'carol.green@example.com', 7, 0),
('Carson Parker', '555-555-0708', 'carson.parker@example.com', 7, 1),
('Cassandra Nelson', '555-555-0709', 'cassandra.nelson@example.com', 7, 0),
('Catherine Scott', '555-555-0710', 'catherine.scott@example.com', 7, 1),
('Cecilia Ward', '555-555-0711', 'cecilia.ward@example.com', 7, 0),
('Cedric Adams', '555-555-0712', 'cedric.adams@example.com', 7, 1),
('Celeste Baker', '555-555-0713', 'celeste.baker@example.com', 7, 0),
('Chad Bell', '555-555-0714', 'chad.bell@example.com', 7, 1),
('Charles Cooper', '555-555-0715', 'charles.cooper@example.com', 7, 0),
('Charlotte Edwards', '555-555-0716', 'charlotte.edwards@example.com', 7, 1),
('Chase Foster', '555-555-0717', 'chase.foster@example.com', 7, 0),
('Cheryl Gray', '555-555-0718', 'cheryl.gray@example.com', 7, 1),
('Chris Howard', '555-555-0719', 'chris.howard@example.com', 7, 0),
('Christian Jenkins', '555-555-0720', 'christian.jenkins@example.com', 7, 1),
('Christine Lewis', '555-555-0721', 'christine.lewis@example.com', 7, 0),
('Christopher Miller', '555-555-0722', 'christopher.miller@example.com', 7, 1),
('Cindy Morgan', '555-555-0723', 'cindy.morgan@example.com', 7, 0),
('Clara Perry', '555-555-0724', 'clara.perry@example.com', 7, 1),
('Clarence Robinson', '555-555-0725', 'clarence.robinson@example.com', 7, 0),
('Claudia Rogers', '555-555-0726', 'claudia.rogers@example.com', 7, 1),
('Clayton Stewart', '555-555-0727', 'clayton.stewart@example.com', 7, 0),
('Clifford Taylor', '555-555-0728', 'clifford.taylor@example.com', 7, 1),
('Clint Turner', '555-555-0729', 'clint.turner@example.com', 7, 0),
('Clyde Watson', '555-555-0730', 'clyde.watson@example.com', 7, 1),
('Colin Young', '555-555-0731', 'colin.young@example.com', 7, 0),
('Connie Allen', '555-555-0732', 'connie.allen@example.com', 7, 1),
('Connor Barnes', '555-555-0733', 'connor.barnes@example.com', 7, 0),
('Constance Brooks', '555-555-0734', 'constance.brooks@example.com', 7, 1),
('Corey Campbell', '555-555-0735', 'corey.campbell@example.com', 7, 0),
('Craig Collins', '555-555-0736', 'craig.collins@example.com', 7, 1),
('Crystal Diaz', '555-555-0737', 'crystal.diaz@example.com', 7, 0),
('Curtis Edwards', '555-555-0738', 'curtis.edwards@example.com', 7, 1),
('Cynthia Flores', '555-555-0739', 'cynthia.flores@example.com', 7, 0),
('Daisy Garcia', '555-555-0740', 'daisy.garcia@example.com', 7, 1),
('Dale Grant', '555-555-0741', 'dale.grant@example.com', 7, 0),
('Dallas Hayes', '555-555-0742', 'dallas.hayes@example.com', 7, 1),
('Damian Hughes', '555-555-0743', 'damian.hughes@example.com', 7, 0),
('Danielle Jenkins', '555-555-0744', 'danielle.jenkins@example.com', 7, 1),
('Daphne Lee', '555-555-0745', 'daphne.lee@example.com', 7, 0),
('Darlene Lewis', '555-555-0746', 'darlene.lewis@example.com', 7, 1),
('Darrell Martinez', '555-555-0747', 'darrell.martinez@example.com', 7, 0),
('Darren Mitchell', '555-555-0748', 'darren.mitchell@example.com', 7, 1),
('Adrian Stevens', '555-555-1603', 'adrian.stevens@example.com', 8, 0),
('Angela West', '555-555-5730', 'angela.west@example.com', 8, 0),
('Alex Hunter', '555-555-9567', 'alex.hunter@example.com', 8, 1),
('Aidan Kelly', '555-555-9221', 'aidan.kelly@example.com', 8, 0),
('Adrian Stevens', '555-555-8940', 'adrian.stevens@example.com', 8, 1),
('Alice Brown', '555-555-3824', 'alice.brown@example.com', 8, 0),
('Adam West', '555-555-4058', 'adam.west@example.com', 8, 0),
('Alex Brown', '555-555-3988', 'alex.brown@example.com', 8, 0),
('Abby West', '555-555-3643', 'abby.west@example.com', 8, 1),
('Andrew Brooks', '555-555-8105', 'andrew.brooks@example.com', 8, 1),
('Amanda Wilson', '555-555-4171', 'amanda.wilson@example.com', 8, 1),
('Angela Brown', '555-555-7688', 'angela.brown@example.com', 8, 0),
('Amanda West', '555-555-3949', 'amanda.west@example.com', 8, 0),
('Abby Jones', '555-555-8907', 'abby.jones@example.com', 8, 1),
('Alice Brown', '555-555-4381', 'alice.brown@example.com', 8, 0),
('Alice Hunter', '555-555-3728', 'alice.hunter@example.com', 8, 1),
('Angela Wilson', '555-555-6386', 'angela.wilson@example.com', 8, 0),
('Abby Smith', '555-555-2562', 'abby.smith@example.com', 8, 0),
('Adrian Hunter', '555-555-4114', 'adrian.hunter@example.com', 8, 0),
('Amanda West', '555-555-2789', 'amanda.west@example.com', 8, 0),
('Angela Davis', '555-555-9452', 'angela.davis@example.com', 8, 1),
('Andrew Jones', '555-555-9927', 'andrew.jones@example.com', 8, 0),
('Abby West', '555-555-7010', 'abby.west@example.com', 8, 0),
('Angela West', '555-555-8555', 'angela.west@example.com', 8, 0),
('Abby Brooks', '555-555-8397', 'abby.brooks@example.com', 8, 0),
('Alice Davis', '555-555-9945', 'alice.davis@example.com', 8, 0),
('Abby Smith', '555-555-4079', 'abby.smith@example.com', 8, 0),
('Adrian Davis', '555-555-8179', 'adrian.davis@example.com', 8, 1),
('Alice Kelly', '555-555-5232', 'alice.kelly@example.com', 8, 0),
('Andrew Smith', '555-555-4773', 'andrew.smith@example.com', 8, 0),
('Angela Hunter', '555-555-4701', 'angela.hunter@example.com', 8, 0),
('Alice Smith', '555-555-8934', 'alice.smith@example.com', 8, 1),
('Abby Wilson', '555-555-1125', 'abby.wilson@example.com', 8, 1),
('Abby Smith', '555-555-9531', 'abby.smith@example.com', 8, 1),
('Adrian Jones', '555-555-4196', 'adrian.jones@example.com', 8, 0),
('Andrew Kelly', '555-555-1682', 'andrew.kelly@example.com', 8, 0),
('Aaron West', '555-555-3883', 'aaron.west@example.com', 8, 0),
('Andrew Stevens', '555-555-3479', 'andrew.stevens@example.com', 8, 0),
('Aaron Smith', '555-555-3314', 'aaron.smith@example.com', 8, 0),
('Andrew Brown', '555-555-6422', 'andrew.brown@example.com', 8, 1),
('Aaron Wilson', '555-555-2749', 'aaron.wilson@example.com', 8, 0),
('Andrew Wilson', '555-555-1672', 'andrew.wilson@example.com', 8, 1),
('Angela Stevens', '555-555-6733', 'angela.stevens@example.com', 8, 1),
('Adrian Jones', '555-555-7585', 'adrian.jones@example.com', 8, 0),
('Adrian Kelly', '555-555-4621', 'adrian.kelly@example.com', 8, 0),
('Andrew Wilson', '555-555-7933', 'andrew.wilson@example.com', 8, 1),
('Amanda Hunter', '555-555-1485', 'amanda.hunter@example.com', 8, 0),
('Andrew Davis', '555-555-8244', 'andrew.davis@example.com', 8, 0),
('Andrew Wilson', '555-555-1274', 'andrew.wilson@example.com', 8, 0),
('Alice Davis', '555-555-4943', 'alice.davis@example.com', 8, 1),
('Adrian Stevens', '555-555-4214', 'adrian.stevens@example.com', 8, 1),
('Andrew Stevens', '555-555-7391', 'andrew.stevens@example.com', 8, 1),
('Amanda Stevens', '555-555-6891', 'amanda.stevens@example.com', 8, 0),
('Andrew Brooks', '555-555-1077', 'andrew.brooks@example.com', 8, 0),
('Alice Brooks', '555-555-6127', 'alice.brooks@example.com', 8, 0),
('Amanda Kelly', '555-555-8036', 'amanda.kelly@example.com', 8, 0),
('Alice Smith', '555-555-2443', 'alice.smith@example.com', 8, 1),
('Amanda Kelly', '555-555-7265', 'amanda.kelly@example.com', 8, 0),
('Alex Jones', '555-555-3663', 'alex.jones@example.com', 8, 1),
('Adrian Wilson', '555-555-4457', 'adrian.wilson@example.com', 8, 0),
('Adam Kelly', '555-555-8401', 'adam.kelly@example.com', 8, 0),
('Abby Brown', '555-555-8067', 'abby.brown@example.com', 8, 0),
('Adam West', '555-555-8196', 'adam.west@example.com', 8, 1),
('Adam Wilson', '555-555-7224', 'adam.wilson@example.com', 8, 0),
('Angela Jones', '555-555-9723', 'angela.jones@example.com', 8, 0),
('Adam Jones', '555-555-5104', 'adam.jones@example.com', 8, 1),
('Alice Wilson', '555-555-6746', 'alice.wilson@example.com', 8, 1),
('Aaron Jones', '555-555-6693', 'aaron.jones@example.com', 8, 1),
('Adrian Davis', '555-555-1788', 'adrian.davis@example.com', 8, 0),
('Angela Kelly', '555-555-7142', 'angela.kelly@example.com', 8, 0),
('Aaron Brooks', '555-555-3336', 'aaron.brooks@example.com', 8, 1),
('Abby Stevens', '555-555-3031', 'abby.stevens@example.com', 8, 0),
('Alex Jones', '555-555-9959', 'alex.jones@example.com', 8, 0),
('Amanda Jones', '555-555-9733', 'amanda.jones@example.com', 8, 0),
('Angela Jones', '555-555-6137', 'angela.jones@example.com', 8, 1),
('Amanda Kelly', '555-555-5880', 'amanda.kelly@example.com', 8, 1),
('Aaron Kelly', '555-555-5144', 'aaron.kelly@example.com', 8, 1),
('Amanda Kelly', '555-555-7470', 'amanda.kelly@example.com', 8, 1),
('Alice West', '555-555-2799', 'alice.west@example.com', 8, 0),
('Alice Smith', '555-555-4272', 'alice.smith@example.com', 8, 0),
('Angela Kelly', '555-555-3472', 'angela.kelly@example.com', 8, 0),
('Aaron Brooks', '555-555-7480', 'aaron.brooks@example.com', 8, 1),
('Abby Hunter', '555-555-6976', 'abby.hunter@example.com', 8, 0),
('Adrian Brooks', '555-555-7235', 'adrian.brooks@example.com', 8, 1),
('Angela Jones', '555-555-1189', 'angela.jones@example.com', 8, 1),
('Andrew West', '555-555-4829', 'andrew.west@example.com', 8, 1),
('Andrew Brooks', '555-555-9502', 'andrew.brooks@example.com', 8, 0),
('Abby Davis', '555-555-6905', 'abby.davis@example.com', 8, 0),
('Alice Kelly', '555-555-7474', 'alice.kelly@example.com', 8, 0),
('Aidan Kelly', '555-555-3122', 'aidan.kelly@example.com', 8, 0),
('Alex Brown', '555-555-3196', 'alex.brown@example.com', 8, 0),
('Aidan Smith', '555-555-3928', 'aidan.smith@example.com', 8, 1),
('Angela Wilson', '555-555-4092', 'angela.wilson@example.com', 8, 1),
('Alex Wilson', '555-555-9064', 'alex.wilson@example.com', 8, 1),
('Andrew Hunter', '555-555-9386', 'andrew.hunter@example.com', 8, 1),
('Adrian Kelly', '555-555-6979', 'adrian.kelly@example.com', 8, 1),
('Adam Jones', '555-555-4922', 'adam.jones@example.com', 8, 1),
('Andrew Brown', '555-555-5713', 'andrew.brown@example.com', 8, 1),
('Abby Davis', '555-555-2707', 'abby.davis@example.com', 8, 0),
('Aaron Stevens', '555-555-6334', 'aaron.stevens@example.com', 8, 0),
('Adrian Brown', '555-555-2024', 'adrian.brown@example.com', 8, 1),
('Abby Kelly', '555-555-2813', 'abby.kelly@example.com', 8, 1),
('Adrian Brooks', '555-555-5132', 'adrian.brooks@example.com', 8, 0),
('Abby Hunter', '555-555-5678', 'abby.hunter@example.com', 8, 0),
('Aaron Smith', '555-555-4741', 'aaron.smith@example.com', 8, 0),
('Angela Kelly', '555-555-8851', 'angela.kelly@example.com', 8, 0),
('Adam Davis', '555-555-2104', 'adam.davis@example.com', 8, 1),
('Aidan Hunter', '555-555-4987', 'aidan.hunter@example.com', 8, 0),
('Andrew Wilson', '555-555-8116', 'andrew.wilson@example.com', 8, 1),
('Amanda Kelly', '555-555-6135', 'amanda.kelly@example.com', 8, 0),
('Angela Davis', '555-555-4828', 'angela.davis@example.com', 8, 1),
('Andrew Jones', '555-555-6358', 'andrew.jones@example.com', 8, 0),
('Aaron Wilson', '555-555-7721', 'aaron.wilson@example.com', 8, 1),
('Adrian Hunter', '555-555-3629', 'adrian.hunter@example.com', 8, 1),
('Alice Kelly', '555-555-1596', 'alice.kelly@example.com', 8, 1),
('Alex Stevens', '555-555-6815', 'alex.stevens@example.com', 8, 0),
('Adrian Brown', '555-555-1033', 'adrian.brown@example.com', 8, 0),
('Alice Davis', '555-555-4018', 'alice.davis@example.com', 8, 0),
('Aaron Brown', '555-555-1561', 'aaron.brown@example.com', 8, 1),
('Andrew Wilson', '555-555-3620', 'andrew.wilson@example.com', 8, 0),
('Angela Brown', '555-555-6492', 'angela.brown@example.com', 8, 0),
('Abby Jones', '555-555-6471', 'abby.jones@example.com', 8, 0),
('Andrew Smith', '555-555-8087', 'andrew.smith@example.com', 8, 1),
('Aidan Stevens', '555-555-2932', 'aidan.stevens@example.com', 8, 1),
('Aaron Davis', '555-555-9073', 'aaron.davis@example.com', 8, 0),
('Alice Jones', '555-555-4891', 'alice.jones@example.com', 8, 1),
('Adam Brooks', '555-555-6786', 'adam.brooks@example.com', 8, 1),
('Abby Wilson', '555-555-1163', 'abby.wilson@example.com', 8, 0),
('Andrew Brown', '555-555-3234', 'andrew.brown@example.com', 8, 1),
('Abby Wilson', '555-555-5846', 'abby.wilson@example.com', 8, 0),
('Aaron Hunter', '555-555-3941', 'aaron.hunter@example.com', 8, 0),
('Aaron Hunter', '555-555-4726', 'aaron.hunter@example.com', 8, 0),
('Angela Smith', '555-555-2943', 'angela.smith@example.com', 8, 0),
('Andrew Stevens', '555-555-9246', 'andrew.stevens@example.com', 8, 0),
('Alex Smith', '555-555-9478', 'alex.smith@example.com', 8, 1),
('Aidan Jones', '555-555-6379', 'aidan.jones@example.com', 8, 0),
('Adam Wilson', '555-555-8183', 'adam.wilson@example.com', 8, 0),
('Amanda Hunter', '555-555-1688', 'amanda.hunter@example.com', 8, 1),
('Abby Jones', '555-555-5664', 'abby.jones@example.com', 8, 1),
('Alex Brown', '555-555-6000', 'alex.brown@example.com', 8, 1),
('Amanda Wilson', '555-555-5586', 'amanda.wilson@example.com', 8, 1),
('Amanda Wilson', '555-555-7963', 'amanda.wilson@example.com', 8, 0),
('Adrian Smith', '555-555-3645', 'adrian.smith@example.com', 8, 0),
('Amanda Stevens', '555-555-7808', 'amanda.stevens@example.com', 8, 1),
('Adrian Smith', '555-555-3665', 'adrian.smith@example.com', 8, 1),
('Alex Kelly', '555-555-6724', 'alex.kelly@example.com', 8, 1),
('Alice West', '555-555-2554', 'alice.west@example.com', 8, 0),
('Aidan Davis', '555-555-2320', 'aidan.davis@example.com', 8, 1),
('Amanda Brown', '555-555-9234', 'amanda.brown@example.com', 8, 1),
('Adam Kelly', '555-555-3363', 'adam.kelly@example.com', 8, 1),
('Aaron Jones', '555-555-7154', 'aaron.jones@example.com', 8, 0),
('Andrew Davis', '555-555-5296', 'andrew.davis@example.com', 8, 0),
('Adam Stevens', '555-555-8165', 'adam.stevens@example.com', 8, 0),
('Andrew Brown', '555-555-1255', 'andrew.brown@example.com', 8, 1),
('Amanda Brown', '555-555-6740', 'amanda.brown@example.com', 8, 1),
('Adam Kelly', '555-555-6797', 'adam.kelly@example.com', 8, 1),
('Angela Wilson', '555-555-6983', 'angela.wilson@example.com', 8, 0),
('Ethan Wilson', '555-555-2591', 'ethan.wilson@example.com', 8, 0),
('Wendy Stevens', '555-555-7295', 'wendy.stevens@example.com', 8, 1),
('Quinn Jones', '555-555-9102', 'quinn.jones@example.com', 8, 0),
('Quinn Wilson', '555-555-2832', 'quinn.wilson@example.com', 8, 0),
('Catherine Hunter', '555-555-3785', 'catherine.hunter@example.com', 8, 0),
('George Brooks', '555-555-5910', 'george.brooks@example.com', 8, 0),
('Michael Brooks', '555-555-6404', 'michael.brooks@example.com', 8, 0),
('Eva Brown', '555-555-8348', 'eva.brown@example.com', 8, 1),
('Eva Smith', '555-555-8970', 'eva.smith@example.com', 8, 0),
('Thomas Brooks', '555-555-5492', 'thomas.brooks@example.com', 8, 0),
('Jack Kelly', '555-555-9291', 'jack.kelly@example.com', 8, 1),
('Paula Jones', '555-555-9126', 'paula.jones@example.com', 8, 1),
('Briana Stevens', '555-555-5730', 'briana.stevens@example.com', 8, 1),
('Nathan West', '555-555-8723', 'nathan.west@example.com', 8, 0),
('Nathan Hunter', '555-555-2884', 'nathan.hunter@example.com', 8, 1),
('Ivy Brooks', '555-555-5986', 'ivy.brooks@example.com', 8, 0),
('Michael Smith', '555-555-6358', 'michael.smith@example.com', 8, 0),
('Paula Wilson', '555-555-7935', 'paula.wilson@example.com', 8, 0),
('Samuel West', '555-555-6150', 'samuel.west@example.com', 8, 0),
('Thomas Jones', '555-555-6241', 'thomas.jones@example.com', 8, 1),
('Isaac Kelly', '555-555-1269', 'isaac.kelly@example.com', 8, 0),
('Nathan Kelly', '555-555-4481', 'nathan.kelly@example.com', 8, 0),
('Quinn Brown', '555-555-9750', 'quinn.brown@example.com', 8, 1),
('Liam Brown', '555-555-2140', 'liam.brown@example.com', 8, 0),
('Paula Wilson', '555-555-5249', 'paula.wilson@example.com', 8, 1),
('Ben Jones', '555-555-8801', 'ben.jones@example.com', 8, 1),
('Frank Hunter', '555-555-8225', 'frank.hunter@example.com', 8, 1),
('Briana Smith', '555-555-7394', 'briana.smith@example.com', 8, 1),
('Quinn Stevens', '555-555-6553', 'quinn.stevens@example.com', 8, 1),
('David Smith', '555-555-1015', 'david.smith@example.com', 8, 0),
('Catherine Wilson', '555-555-6752', 'catherine.wilson@example.com', 8, 0),
('Fiona Brown', '555-555-7352', 'fiona.brown@example.com', 8, 1),
('Diana Stevens', '555-555-6982', 'diana.stevens@example.com', 8, 1),
('Frank Wilson', '555-555-9477', 'frank.wilson@example.com', 8, 1),
('Grace Hunter', '555-555-1582', 'grace.hunter@example.com', 8, 1),
('William Davis', '555-555-4789', 'william.davis@example.com', 8, 1),
('Catherine Jones', '555-555-2651', 'catherine.jones@example.com', 8, 1),
('Laura Jones', '555-555-5117', 'laura.jones@example.com', 8, 0),
('Olivia Smith', '555-555-4670', 'olivia.smith@example.com', 8, 0),
('Frank Brooks', '555-555-6982', 'frank.brooks@example.com', 8, 1),
('Henry Stevens', '555-555-2833', 'henry.stevens@example.com', 8, 1),
('Mia Davis', '555-555-2311', 'mia.davis@example.com', 8, 0),
('Michael Hunter', '555-555-4581', 'michael.hunter@example.com', 8, 0),
('Kevin Jones', '555-555-5671', 'kevin.jones@example.com', 8, 1),
('Victor Kelly', '555-555-4312', 'victor.kelly@example.com', 8, 1),
('Kevin Hunter', '555-555-6834', 'kevin.hunter@example.com', 8, 1),
('Wendy Hunter', '555-555-5340', 'wendy.hunter@example.com', 8, 0),
('Hannah Stevens', '555-555-9315', 'hannah.stevens@example.com', 8, 1),
('Sophia Davis', '555-555-5264', 'sophia.davis@example.com', 8, 0),
('Caleb Brown', '555-555-8173', 'caleb.brown@example.com', 8, 0),
('Grace Kelly', '555-555-2374', 'grace.kelly@example.com', 8, 1),
('Caleb Jones', '555-555-7846', 'caleb.jones@example.com', 8, 1),
('Diana Smith', '555-555-9236', 'diana.smith@example.com', 8, 1),
('Ethan Smith', '555-555-6240', 'ethan.smith@example.com', 8, 1),
('Nathan Davis', '555-555-5970', 'nathan.davis@example.com', 8, 0),
('Ben Stevens', '555-555-9076', 'ben.stevens@example.com', 8, 1),
('Victor Davis', '555-555-7843', 'victor.davis@example.com', 8, 1),
('Henry Kelly', '555-555-7619', 'henry.kelly@example.com', 8, 0),
('Frank Davis', '555-555-2935', 'frank.davis@example.com', 8, 1),
('George Kelly', '555-555-2594', 'george.kelly@example.com', 8, 1),
('Mia Wilson', '555-555-6781', 'mia.wilson@example.com', 8, 0),
('George Brown', '555-555-8127', 'george.brown@example.com', 8, 0),
('Fiona Stevens', '555-555-9318', 'fiona.stevens@example.com', 8, 0),
('Kara Davis', '555-555-7620', 'kara.davis@example.com', 8, 0),
('Eva Stevens', '555-555-3201', 'eva.stevens@example.com', 8, 0),
('David Hunter', '555-555-4982', 'david.hunter@example.com', 8, 1),
('David Stevens', '555-555-1038', 'david.stevens@example.com', 8, 1),
('Ethan Stevens', '555-555-7521', 'ethan.stevens@example.com', 8, 1),
('Catherine Davis', '555-555-7324', 'catherine.davis@example.com', 8, 1),
('Jack Wilson', '555-555-1478', 'jack.wilson@example.com', 8, 0),
('Isaac Davis', '555-555-7198', 'isaac.davis@example.com', 8, 0),
('William Wilson', '555-555-8936', 'william.wilson@example.com', 8, 0),
('Briana Smith', '555-555-2069', 'briana.smith@example.com', 8, 1),
('Briana Brown', '555-555-7266', 'briana.brown@example.com', 8, 1),
('Quinn Davis', '555-555-7363', 'quinn.davis@example.com', 8, 1),
('Sophia Smith', '555-555-1758', 'sophia.smith@example.com', 8, 0),
('Peter Jones', '555-555-6478', 'peter.jones@example.com', 8, 0),
('Paula Hunter', '555-555-6458', 'paula.hunter@example.com', 8, 0),
('Kara Wilson', '555-555-2844', 'kara.wilson@example.com', 8, 0),
('Jill Hunter', '555-555-7388', 'jill.hunter@example.com', 8, 0),
('Fiona Kelly', '555-555-4798', 'fiona.kelly@example.com', 8, 1),
('Vanessa Brooks', '555-555-3288', 'vanessa.brooks@example.com', 8, 1),
('Nathan Davis', '555-555-5970', 'nathan.davis@example.com', 8, 0),
('Frank Stevens', '555-555-7363', 'frank.stevens@example.com', 8, 0),
('Henry Davis', '555-555-8395', 'henry.davis@example.com', 8, 0),
('Ivy Jones', '555-555-6577', 'ivy.jones@example.com', 8, 0),
('Liam Jones', '555-555-6759', 'liam.jones@example.com', 8, 1),
('Thomas Brown', '555-555-8770', 'thomas.brown@example.com', 8, 1),
('Olivia Davis', '555-555-9751', 'olivia.davis@example.com', 8, 1),
('Rachel Davis', '555-555-4980', 'rachel.davis@example.com', 8, 1),
('Jill Kelly', '555-555-9686', 'jill.kelly@example.com', 8, 0),
('Peter Brown', '555-555-2293', 'peter.brown@example.com', 8, 0),
('Jack Kelly', '555-555-1445', 'jack.kelly@example.com', 8, 1),
('Nathan Brooks', '555-555-2843', 'nathan.brooks@example.com', 8, 0),
('Thomas Kelly', '555-555-9544', 'thomas.kelly@example.com', 8, 1),
('Isaac Jones', '555-555-9779', 'isaac.jones@example.com', 8, 0),
('Jack Hunter', '555-555-5831', 'jack.hunter@example.com', 8, 0),
('Henry Smith', '555-555-1613', 'henry.smith@example.com', 8, 1),
('Ethan West', '555-555-8774', 'ethan.west@example.com', 8, 1),
('Kara Jones', '555-555-1595', 'kara.jones@example.com', 8, 1),
('Jack Stevens', '555-555-4469', 'jack.stevens@example.com', 8, 0),
('Catherine West', '555-555-7143', 'catherine.west@example.com', 8, 0),
('Ethan Brooks', '555-370-4527', 'ethan.brooks@example.com', 8, 0),
('Wendy Smith', '555-657-6448', 'wendy.smith@example.com', 8, 0),
('Catherine Wilson', '555-532-4988', 'catherine.wilson@example.com', 8, 1),
('Mia Jones', '555-529-8015', 'mia.jones@example.com', 8, 1),
('Tina Kelly', '555-519-2931', 'tina.kelly@example.com', 8, 0),
('Tina Kelly', '555-662-6675', 'tina.kelly@example.com', 8, 1),
('Ethan West', '555-104-8825', 'ethan.west@example.com', 8, 0),
('Sophia West', '555-762-3654', 'sophia.west@example.com', 8, 0),
('Eva Davis', '555-643-6331', 'eva.davis@example.com', 8, 0),
('David Hunter', '555-442-6897', 'david.hunter@example.com', 8, 0),
('Sophia Davis', '555-110-1787', 'sophia.davis@example.com', 8, 0),
('Victor Davis', '555-359-4148', 'victor.davis@example.com', 8, 1),
('Mia Hunter', '555-490-9529', 'mia.hunter@example.com', 8, 0),
('Ivy Wilson', '555-942-4909', 'ivy.wilson@example.com', 8, 1),
('Ethan West', '555-152-6163', 'ethan.west@example.com', 8, 0),
('Nina Smith', '555-493-1918', 'nina.smith@example.com', 8, 1),
('Fiona Smith', '555-476-1996', 'fiona.smith@example.com', 8, 0),
('Frank Stevens', '555-922-4102', 'frank.stevens@example.com', 8, 1),
('Catherine Wilson', '555-248-5384', 'catherine.wilson@example.com', 8, 1),
('Briana West', '555-507-8953', 'briana.west@example.com', 8, 0),
('Jill Kelly', '555-230-8506', 'jill.kelly@example.com', 8, 1),
('Laura Kelly', '555-793-7158', 'laura.kelly@example.com', 8, 1),
('Ben Smith', '555-677-1489', 'ben.smith@example.com', 8, 0),
('Ivy Stevens', '555-187-4864', 'ivy.stevens@example.com', 8, 1),
('Catherine West', '555-940-1685', 'catherine.west@example.com', 8, 1),
('Catherine Stevens', '555-838-8540', 'catherine.stevens@example.com', 8, 1),
('Ben West', '555-811-5018', 'ben.west@example.com', 8, 0),
('Thomas Davis', '555-840-3413', 'thomas.davis@example.com', 8, 1),
('Frank West', '555-496-1535', 'frank.west@example.com', 8, 1),
('Paula Kelly', '555-817-6217', 'paula.kelly@example.com', 8, 0),
('George Jones', '555-139-9013', 'george.jones@example.com', 8, 0),
('Jill Kelly', '555-389-7345', 'jill.kelly@example.com', 8, 0),
('Quinn Brown', '555-898-7012', 'quinn.brown@example.com', 8, 1),
('Fiona Jones', '555-584-9257', 'fiona.jones@example.com', 8, 0),
('Isaac Smith', '555-596-1575', 'isaac.smith@example.com', 8, 0),
('Henry Jones', '555-724-5306', 'henry.jones@example.com', 8, 1),
('Caleb Davis', '555-625-1767', 'caleb.davis@example.com', 8, 0),
('Nina Kelly', '555-869-3194', 'nina.kelly@example.com', 8, 1),
('Eva Stevens', '555-982-4563', 'eva.stevens@example.com', 8, 0),
('Samuel Brown', '555-739-3510', 'samuel.brown@example.com', 8, 1),
('Henry Brown', '555-650-6251', 'henry.brown@example.com', 8, 1),
('Kevin Stevens', '555-973-1932', 'kevin.stevens@example.com', 8, 1),
('Oscar Stevens', '555-782-4906', 'oscar.stevens@example.com', 8, 1),
('George Kelly', '555-110-3851', 'george.kelly@example.com', 8, 0),
('David Kelly', '555-827-8325', 'david.kelly@example.com', 8, 1),
('Ben Davis', '555-305-5613', 'ben.davis@example.com', 8, 0),
('Nina Kelly', '555-958-9403', 'nina.kelly@example.com', 8, 0),
('Eva Stevens', '555-243-2478', 'eva.stevens@example.com', 8, 0),
('Grace Stevens', '555-718-2563', 'grace.stevens@example.com', 8, 1),
('Kevin Stevens', '555-284-4521', 'kevin.stevens@example.com', 8, 0),
('Paula Stevens', '555-670-8914', 'paula.stevens@example.com', 8, 0),
('Michael Kelly', '555-963-1306', 'michael.kelly@example.com', 8, 1),
('Frank Jones', '555-790-1518', 'frank.jones@example.com', 8, 0),
('Kevin Davis', '555-704-2681', 'kevin.davis@example.com', 8, 1),
('Rachel Stevens', '555-353-7941', 'rachel.stevens@example.com', 8, 0),
('Samuel Davis', '555-605-9786', 'samuel.davis@example.com', 8, 0),
('Henry Stevens', '555-748-2185', 'henry.stevens@example.com', 8, 1),
('Fiona Davis', '555-270-1938', 'fiona.davis@example.com', 8, 0),
('David Stevens', '555-215-3846', 'david.stevens@example.com', 8, 1),
('Laura Davis', '555-450-8279', 'laura.davis@example.com', 8, 0),
('Henry Stevens', '555-773-8701', 'henry.stevens@example.com', 8, 0),
('Henry Hunter', '555-546-2835', 'henry.hunter@example.com', 8, 1),
('Frank Jones', '555-618-4281', 'frank.jones@example.com', 8, 0),
('Nina Davis', '555-917-1786', 'nina.davis@example.com', 8, 0),
('Ben Kelly', '555-943-3487', 'ben.kelly@example.com', 8, 1),
('Grace Stevens', '555-163-7841', 'grace.stevens@example.com', 8, 0),
('Thomas Jones', '555-917-2157', 'thomas.jones@example.com', 8, 0),
('David Smith', '555-828-1790', 'david.smith@example.com', 8, 0),
('George Stevens', '555-721-3286', 'george.stevens@example.com', 8, 0),
('Vanessa Davis', '555-983-5314', 'vanessa.davis@example.com', 8, 1),
('Kevin Smith', '555-567-3614', 'kevin.smith@example.com', 8, 0),
('Vanessa Jones', '555-760-8713', 'vanessa.jones@example.com', 8, 1),
('David Stevens', '555-761-5719', 'david.stevens@example.com', 8, 1),
('Vanessa Wilson', '555-706-1905', 'vanessa.wilson@example.com', 8, 1),
('Rachel Stevens', '555-232-3541', 'rachel.stevens@example.com', 8, 0),
('Ethan Smith', '555-690-7513', 'ethan.smith@example.com', 8, 0),
('Quinn Hunter', '555-960-3174', 'quinn.hunter@example.com', 8, 1),
('Victor Stevens', '555-926-7091', 'victor.stevens@example.com', 8, 0),
('Isaac Davis', '555-680-1571', 'isaac.davis@example.com', 8, 0),
('Quinn Davis', '555-792-3984', 'quinn.davis@example.com', 8, 1),
('Jill Jones', '555-872-7312', 'jill.jones@example.com', 8, 1),
('Peter Wilson', '555-109-8459', 'peter.wilson@example.com', 8, 1),
('Vanessa Kelly', '555-702-6851', 'vanessa.kelly@example.com', 8, 1),
('Jill Kelly', '555-627-4120', 'jill.kelly@example.com', 8, 0),
('Peter Jones', '555-732-4012', 'peter.jones@example.com', 8, 0),
('Eva Brown', '555-297-1326', 'eva.brown@example.com', 8, 0),
('George Kelly', '555-564-9283', 'george.kelly@example.com', 8, 0),
('Grace Stevens', '555-392-6238', 'grace.stevens@example.com', 8, 0),
('Quinn Smith', '555-976-5612', 'quinn.smith@example.com', 8, 0),
('Ethan Stevens', '555-903-1672', 'ethan.stevens@example.com', 8, 0),
('Nina Stevens', '555-836-5193', 'nina.stevens@example.com', 8, 0),
('Paula Jones', '555-232-1235', 'paula.jones@example.com', 8, 1),
('Vanessa Davis', '555-370-2856', 'vanessa.davis@example.com', 8, 0),
('Victor Stevens', '555-491-3527', 'victor.stevens@example.com', 8, 1),
('Rachel Jones', '555-743-1093', 'rachel.jones@example.com', 8, 1),
('Nina Stevens', '555-583-7412', 'nina.stevens@example.com', 8, 0),
('William Hunter', '555-925-8351', 'william.hunter@example.com', 8, 1),
('Grace Brown', '555-973-4307', 'grace.brown@example.com', 8, 0),
('Ethan Kelly', '555-204-7916', 'ethan.kelly@example.com', 8, 1),
('Oscar Kelly', '555-160-1325', 'oscar.kelly@example.com', 8, 0),
('Kevin Stevens', '555-235-4806', 'kevin.stevens@example.com', 8, 0),
('Fiona Stevens', '555-165-7689', 'fiona.stevens@example.com', 8, 1),
('Mia Hunter', '555-473-2654', 'mia.hunter@example.com', 8, 0),
('George Jones', '555-359-1158', 'george.jones@example.com', 8, 0),
('Oscar Wilson', '555-398-5926', 'oscar.wilson@example.com', 8, 1),
('George Stevens', '555-294-8596', 'george.stevens@example.com', 8, 1),
('Briana Stevens', '555-831-3692', 'briana.stevens@example.com', 8, 0),
('Caleb Stevens', '555-471-5137', 'caleb.stevens@example.com', 8, 1),
('David Jones', '555-182-2764', 'david.jones@example.com', 8, 1),
('Jack Davis', '555-674-1563', 'jack.davis@example.com', 8, 0),
('Caleb Stevens', '555-716-9572', 'caleb.stevens@example.com', 8, 1),
('Eva Stevens', '555-390-2548', 'eva.stevens@example.com', 8, 0),
('David Stevens', '555-593-3846', 'david.stevens@example.com', 8, 1),
('Rachel Davis', '555-462-4739', 'rachel.davis@example.com', 8, 0),
('William Brown', '555-649-9287', 'william.brown@example.com', 8, 1),
('Oscar Smith', '555-430-3941', 'oscar.smith@example.com', 8, 0),
('Victor Stevens', '555-741-3784', 'victor.stevens@example.com', 8, 0),
('Ben Stevens', '555-391-8759', 'ben.stevens@example.com', 8, 1),
('Peter Smith', '555-230-6254', 'peter.smith@example.com', 8, 1),
('Quinn Wilson', '555-207-1254', 'quinn.wilson@example.com', 8, 0),
('Henry Davis', '555-180-9271', 'henry.davis@example.com', 8, 1),