-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_init.sql
1132 lines (1112 loc) · 867 KB
/
db_init.sql
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 table */
/* need to add last_connection, session_token, salt for pw hash (or common salt with env variable) */
CREATE TABLE users (
user_id INT PRIMARY KEY NOT NULL AUTO_INCREMENT,
username VARCHAR(20) NOT NULL,
firstname VARCHAR(20) NOT NULL,
lastname VARCHAR(40) NOT NULL,
email VARCHAR(100) NOT NULL,
registered_date DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
dob DATE NOT NULL, -- Date of birth (>18 yo)
pw_hash VARCHAR(60) NOT NULL, -- bcript hash length
picture_1 VARCHAR(150) DEFAULT '', -- profile picture
picture_2 VARCHAR(150) DEFAULT '',
picture_3 VARCHAR(150) DEFAULT '',
picture_4 VARCHAR(150) DEFAULT '',
picture_5 VARCHAR(150) DEFAULT '',
gender ENUM('male', 'female', 'non-binary') NOT NULL,
gender_target ENUM('male', 'female', 'bisexual') NOT NULL DEFAULT 'bisexual',
country VARCHAR(50) NOT NULL,
city VARCHAR(85) NOT NULL, -- longest city is 85 chars
zipcode VARCHAR(10) NOT NULL, -- longest postal code is 10 digits
biography VARCHAR(250) DEFAULT '',
authorizeGPS BOOLEAN DEFAULT false, -- if user authorized gps (probably not needed)
longitude FLOAT(10, 6) DEFAULT 0.0, -- change type? // https://ip-api.io/
latitude FLOAT(10, 6) DEFAULT 0.0, -- change type?
is_verified BOOLEAN DEFAULT false, -- if verified with email link
is_completed BOOLEAN DEFAULT false, -- completed profile info / allowed to match
is_bot BOOLEAN DEFAULT false
);
/* INSERT user */
/* INSERT INTO users (username, firstname, lastname, email, dob, pw_hash, gender, country, city, zipcode) VALUES ("hlombard", "Hugo", "LP", "[email protected]", "1995-08-30", "xxx", "male", "France", "Paris", "75000"); */
/* Ratings table */
/* add a trigger when insert new user, add a default rating of 3 ? */
CREATE TABLE user_ratings (
user_id INT,
user_id_target INT,
rating TINYINT, -- can be either 1, 2, 3, 4 or 5
rating_date DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(user_id, user_id_target)
);
CREATE TABLE user_likes (
user_id INT NOT NULL,
user_id_target INT NOT NULL,
like_date DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(user_id, user_id_target) -- permet
);
CREATE TABLE matches (
user_id_1 INT NOT NULL,
user_id_2 INT NOT NULL,
match_date DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(user_id_1, user_id_2)
);
CREATE TABLE user_sessions (
user_id INT NOT NULL,
access_uuid VARCHAR(100), -- JWT Access Token uuid
refresh_uuid VARCHAR(100), -- JWT Refresh Token uuid
access_exp DATETIME, -- JWT Access Token expire datetime
refresh_exp DATETIME, -- JWT Refresh Token expire datetime
is_online BOOLEAN NOT NULL,
last_activity DATETIME DEFAULT CURRENT_TIMESTAMP -- needed ?
);
CREATE TABLE user_reset_pw (
email VARCHAR(100) NOT NULL,
token VARCHAR(50) NOT NULL
);
CREATE TABLE user_tags (
user_id INT NOT NULL,
tag VARCHAR(25) NOT NULL,
PRIMARY KEY(user_id, tag) -- to avoid having twice same user with same tag
);
/* INSERT INTO visits (user_id, user_id_target, visit_date) VALUES (1, 42, CURRENT_TIMESTAMP) ON DUPLICATE KEY UPDATE vis
it_date=CURRENT_TIMESTAMP; */
CREATE TABLE user_visits (
user_id INT NOT NULL,
user_id_target INT NOT NULL,
visit_date DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(user_id, user_id_target)
);
/* Blocked user */
CREATE TABLE user_blocks (
user_id INT NOT NULL,
user_id_target INT NOT NULL,
block_date DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(user_id, user_id_target)
);
/* Reported user */
CREATE TABLE user_reports (
user_id INT NOT NULL,
user_id_target INT NOT NULL,
report_date DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY(user_id, user_id_target)
);
CREATE TABLE notifications (
notif_id INT PRIMARY KEY NOT NULL AUTO_INCREMENT,
user_id INT NOT NULL,
user_target_id INT NOT NULL,
type_id INT NOT NULL,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
viewed BOOLEAN DEFAULT false, -- is the notification already seen ?
sent BOOLEAN default false -- is the notification already sent from websocket ?
);
CREATE TABLE notifications_type (
id INT PRIMARY KEY NOT NULL AUTO_INCREMENT,
name VARCHAR(30) NOT NULL
);
/* DB SEEDING */
INSERT INTO notifications_type (name) VALUES ('like');
INSERT INTO notifications_type (name) VALUES ('visit');
INSERT INTO notifications_type (name) VALUES ('message');
INSERT INTO notifications_type (name) VALUES ('match');
INSERT INTO notifications_type (name) VALUES ('unlike');
/* BOT SEEDING */
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('klanchbury0', 'Kingsley', 'Lanchbury', '[email protected]', '2021-01-14 18:07:45', '1999-11-14', 'f1a71d73dd8200f308efceecd22cdb24', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris 18', '75884 ', 'vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jglidden1', 'Josephine', 'Glidden', '[email protected]', '2020-08-20 16:47:16', '1986-12-02', '63e405e89b3f8103e91a5bda314dd8d4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Évreux', '27929 ', 'lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis', false, 1.2408185, 49.0321605, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmaps2', 'Durant', 'Maps', '[email protected]', '2020-08-05 12:04:01', '1985-10-16', '6b3503fca9fd0fd7cdfd9b97d0b9008a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Châteauroux', '36019 ', '', false, 1.6937962, 46.8087637, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tcayford3', 'Taylor', 'Cayford', '[email protected]', '2020-10-04 05:09:16', '1982-04-23', '0f19719c8bfaffb42136bd2f9fddcf2f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Rouen', '76177 ', 'tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl', true, 1.0598119, 49.4382375, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fbridell4', 'Fergus', 'Bridell', '[email protected]', '2020-03-22 06:56:41', '1996-01-18', 'b0961640ab2f2d2e820f4021dea21d68', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Vitry-sur-Seine', '94785 ', 'donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id', true, 2.3884283, 48.7885683, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('foxby5', 'Felicity', 'Oxby', '[email protected]', '2020-09-09 15:21:43', '1997-10-07', '11ae9cd5a37634dcb724a94b0dba1f54', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Nîmes', '30904 ', 'vel', false, 4.3566473, 43.8363441, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mgoodburn6', 'Marcus', 'Goodburn', '[email protected]', '2020-11-11 14:43:24', '2000-07-24', 'd7ad42d1fb62812ba4c6e59876e21210', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Châteaurenard', '13834 ', 'molestie hendrerit at vulputate vitae nisl aenean lectus', false, 2.0391896, 49.2066705, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cstable7', 'Cirilo', 'Stable', '[email protected]', '2020-11-11 00:50:30', '2000-01-27', '865262e8dfdc099df5b74c155302f7c5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Mundolsheim', '67454 ', 'hac habitasse platea dictumst maecenas ut massa quis', true, 7.7212169, 48.6443358, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('iburroughes8', 'Ivett', 'Burroughes', '[email protected]', '2020-11-21 15:20:15', '1999-02-05', '6c16942a8b3029f2ef457ea45eda674e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Le Raincy', '93344 ', 'lectus in est risus auctor sed tristique in tempus sit amet sem fusce', true, 2.5197726, 48.9005909, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jruberti9', 'Jimmy', 'Ruberti', '[email protected]', '2020-02-29 01:37:29', '1986-01-13', '09c130c7d5562464ac148d3b077d1ce1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Montauban', '82004 ', 'donec dapibus duis at velit eu est congue', false, 1.3585474, 44.0179842, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tarnisona', 'Tiphanie', 'Arnison', '[email protected]', '2020-08-18 03:24:23', '1981-09-22', 'da7c8f352870f78859c9744899e67a26', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Paris 05', '75240 ', 'turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dlesarrb', 'Denice', 'Le Sarr', '[email protected]', '2020-09-02 21:47:01', '1981-12-22', '2e6f0d0c5ff143e3802379f6702419d4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Angers', '49033 ', 'ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus', false, 2.3501981, 48.8693156, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hlidbetterc', 'Huberto', 'Lidbetter', '[email protected]', '2020-05-10 20:22:28', '1980-11-21', 'a8be924fb9103cea2da34e7ef370878b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Besançon', '25086 ', 'eleifend pede libero', false, 6.07097, 47.278918, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('glarawayd', 'Gabbi', 'Laraway', '[email protected]', '2020-09-04 16:40:06', '1988-02-27', 'b4fac15d724220121ed3ae2143c94c06', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Toulon', '83040 ', 'sociis natoque', false, 5.9294606, 43.1283145, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lflorise', 'Lucho', 'Floris', '[email protected]', '2020-04-02 08:18:26', '1980-12-02', '39a8c0fc31d857ab8bee9840c5da2e70', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Paris 18', '75863 ', 'suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kgrimwoodf', 'Katharine', 'Grimwood', '[email protected]', '2020-12-31 17:01:17', '1994-10-18', 'dc0dde33d07b4812850758eaddccc7b8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Rungis', '94631 ', 'nulla neque libero convallis eget eleifend', true, 2.3536083, 48.7381259, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hfleayg', 'Hestia', 'Fleay', '[email protected]', '2020-10-23 18:00:01', '1998-11-11', '4891c3036c955a399c0a4219160134b1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Massy', '91309 ', 'mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper', false, 2.2889821, 48.732568, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rvalerioh', 'Ruthie', 'Valerio', '[email protected]', '2020-07-04 21:03:38', '1981-07-22', 'c98a19204603e47a4a4a154597fd88a2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Vandœuvre-lès-Nancy', '54516 ', 'gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in', false, 6.1856748, 48.6563441, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jthornsi', 'Jason', 'Thorns', '[email protected]', '2020-04-11 16:10:19', '1989-11-05', '7f940babd72ba924747ee53265ed65f8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Mantes-la-Jolie', '78204 ', 'curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit', false, 1.7032903, 48.9898219, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('semeneyj', 'Sylvia', 'Emeney', '[email protected]', '2020-09-14 06:38:56', '2001-06-27', '2f841eda1b1080d361070c832e7c5804', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Soissons', '02204 ', 'leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis', true, 3.338092, 49.369115, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wcrawcourk', 'Wallas', 'Crawcour', '[email protected]', '2020-03-09 13:05:55', '1988-02-25', '3577c3c63f1023fef10d2b5dad8b93fc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Chalon-sur-Saône', '71332 ', 'nullam sit amet turpis elementum ligula vehicula consequat morbi a', true, 4.936847, 46.7251598, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lchappelll', 'Lind', 'Chappell', '[email protected]', '2020-07-16 02:17:04', '1986-07-30', 'cfffe899fe7efaf37962a7d9fefd17ce', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Saint-Péray', '07139 ', 'sit amet consectetuer adipiscing elit', true, 4.8413855, 44.9447526, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('umallockm', 'Ursala', 'Mallock', '[email protected]', '2020-10-10 04:49:45', '1998-04-01', '9298bdc0cdf922e87102f0df7ad95f87', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'La Plaine-Saint-Denis', '93571 ', 'penatibus et magnis dis', false, 2.3514328, 48.9175083, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bhudghtonn', 'Barbara-anne', 'Hudghton', '[email protected]', '2021-01-08 00:32:33', '1985-11-17', 'a775da7b0aba600a8f56a4ab81d9ef0e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Rumilly', '74154 ', 'tortor risus dapibus augue vel accumsan tellus', true, 5.947966, 45.8630194, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('raxtello', 'Reggy', 'Axtell', '[email protected]', '2020-03-07 09:08:23', '1987-01-06', '2ff696d769188fddafe09cb02ac0a0bc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Le Mans', '72035 ', 'mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam', true, 0.1924459, 47.9956173, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jdarlisonp', 'Joceline', 'Darlison', '[email protected]', '2020-03-25 21:28:33', '1992-05-01', '113e256b130fa8229abdf516c57fb7b4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Marseille', '13245 ', 'duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gguiseq', 'Gates', 'Guise', '[email protected]', '2020-05-17 19:04:17', '1992-03-21', '6a29df56e190246052e4a2f764f3040a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Puget-sur-Argens', '83484 ', 'magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in', true, 6.685055, 43.455312, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('djanasr', 'Deidre', 'Janas', '[email protected]', '2020-08-03 12:05:16', '1993-09-27', '21b43dbbe5839bafa9dd66b7586bf47f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Cergy-Pontoise', '95032 ', 'maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac', false, 2.0875699, 49.0337974, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zhuntleys', 'Zebadiah', 'Huntley', '[email protected]', '2020-11-13 21:47:01', '1998-04-08', 'e9cec2574cfdf6b77066cfd79ce6ef36', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Aix-en-Provence', '13617 ', 'lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in', true, 5.4431946, 43.5190858, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('shaineyt', 'Shelba', 'Hainey', '[email protected]', '2020-07-21 13:28:25', '1980-05-01', '09a570a2b71e0aededd765cb02a1ac25', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Clichy', '92119 ', 'duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a', true, 2.3011787, 48.9089753, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rpykeu', 'Rhett', 'Pyke', '[email protected]', '2020-05-31 22:39:17', '1982-08-13', '56eb4d5d7bcdff81456daab0b040e5de', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Lô', '50951 ', 'consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien', false, -0.9746208, 48.4046776, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mkunzv', 'Madelyn', 'Kunz', '[email protected]', '2020-05-12 00:53:35', '2000-03-10', '9835b19ee59620a3588c8460148e4e49', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Cergy-Pontoise', '95046 ', 'at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu', true, 2.074954, 49.039076, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mraimbauldw', 'Mart', 'Raimbauld', '[email protected]', '2020-08-20 12:49:05', '1984-01-05', '69a66a0022bd18a9fb02493d1f856187', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Périgueux', '24004 ', 'non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis', true, 1.0154129, 45.156512, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rboalx', 'Rosy', 'Boal', '[email protected]', '2021-01-08 11:39:22', '1981-01-28', 'bc386ade1e75dec4ef33f8465b595215', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Châtillon', '92324 ', 'eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque', false, -0.557101, 47.5246265, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdythamy', 'Muffin', 'Dytham', '[email protected]', '2020-10-05 20:54:43', '1999-05-04', 'd6b7f9154418703f0fafbc072c6310ec', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Claye-Souilly', '77414 ', 'ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac', false, 2.6986517, 48.9648089, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jdelionz', 'Juan', 'Delion', '[email protected]', '2020-08-14 16:45:27', '1986-11-30', '8bf4651490701881e10fdddfc398c21c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Brétigny-sur-Orge', '91229 ', 'mi pede malesuada in imperdiet', false, 2.3023878, 48.6066876, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kquinnet10', 'Kory', 'Quinnet', '[email protected]', '2020-02-21 13:14:50', '1983-03-14', 'cda6283ea6fd7f61a35191a1fc49b30d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Laval', '53085 ', 'odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus', true, -0.7609009, 48.0762327, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ggabbott11', 'Garth', 'Gabbott', '[email protected]', '2020-10-07 06:14:16', '1982-01-07', 'dbca747a4e46d53c2571661728369760', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nevers', '58017 ', 'ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim', false, 3.1506645, 46.9874505, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jhayball12', 'Jeanine', 'Hayball', '[email protected]', '2020-07-09 13:43:54', '1996-07-24', 'b7c8ebd706f3126f40b9d908672a3cab', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Orléans', '45004 ', 'leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede', true, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aerangey13', 'Agosto', 'Erangey', '[email protected]', '2020-08-22 14:36:53', '2000-02-01', '0eeaba338c4df2b8b2ad55a4d42353f4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Cluses', '74304 ', 'vestibulum ante', true, 6.568907, 46.068811, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abril14', 'Ashleigh', 'Bril', '[email protected]', '2020-08-01 02:50:22', '1984-08-11', '380f60fa24d0ec0f43e9a00127b010a3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Cannes', '06403 ', 'aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu', true, 7.0362389, 43.5418913, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nrunham15', 'Nicole', 'Runham', '[email protected]', '2021-02-16 13:33:05', '1985-04-17', '9250bb57434b582b9cd125afeae8229b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Nazaire', '44604 ', 'diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis', true, -2.204647, 47.273289, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rcheson16', 'Raffarty', 'Cheson', '[email protected]', '2020-12-05 10:45:44', '1981-03-10', 'ad789dab02a481c058f279a8b048a018', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Colmar', '68020 ', 'sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus', true, 7.3469006, 48.0724737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ohurtado17', 'Oran', 'Hurtado', '[email protected]', '2020-07-14 23:22:01', '1988-02-23', '6d2e69bce520fcbbb67dada3d4a0052c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Paris 15', '75712 ', 'phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut', true, 2.2582125, 48.8466523, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eeubank18', 'Engracia', 'Eubank', '[email protected]', '2020-12-23 13:41:09', '2000-03-25', '21708af47c49417d3e8e00e55496a52a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 08', '75390 ', 'vivamus vestibulum', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rratazzi19', 'Robbyn', 'Ratazzi', '[email protected]', '2021-01-15 12:48:21', '1990-04-05', '3d58fb12675fad16996293ebbf478c2e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Wasquehal', '59449 ', 'rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam', false, 3.1233128, 50.6809584, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mstiger1a', 'Margarita', 'Stiger', '[email protected]', '2020-10-15 06:11:42', '1996-10-02', '1adb194aa2397489efece357ef3e8d72', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13907 ', 'platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mratke1b', 'Melli', 'Ratke', '[email protected]', '2020-04-18 06:26:20', '1994-11-20', '6201bbc1275fa8ed4407e06165c13a1c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Amiens', '80891 ', 'justo eu massa donec dapibus duis at velit eu est', false, 2.3000664, 49.8921732, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rpietrasik1c', 'Riley', 'Pietrasik', '[email protected]', '2020-12-15 13:46:38', '1995-12-18', 'c490a8e8039da644b4f84d27aac03568', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'L''Union', '31244 ', 'ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae', false, 0.8648422, 47.8632224, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbruyett1d', 'Carey', 'Bruyett', '[email protected]', '2021-01-31 03:41:59', '1995-05-06', 'ba1561921eccc381bc0d47322a403681', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Élancourt', '78990', 'turpis', false, 1.9639754, 48.777799, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tiverson1e', 'Tisha', 'Iverson', '[email protected]', '2020-05-08 22:12:56', '1987-07-08', '515637023d97d019a607e89dc584134a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Le Teil', '07404 ', 'rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in', false, 1.9593782, 43.8139627, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mscorrer1f', 'Melissa', 'Scorrer', '[email protected]', '2020-09-26 02:14:41', '1983-02-28', '19c52e8c1cb130b2670b9f0eafec68b0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Cergy-Pontoise', '95652 ', 'diam id ornare imperdiet sapien urna pretium', true, 2.0362602, 49.1025395, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bkeeling1g', 'Bevon', 'Keeling', '[email protected]', '2020-10-22 20:26:30', '1990-03-17', 'f30836d4dae583089c984c5407392804', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Le Mans', '72035 ', 'nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin', true, 0.1924459, 47.9956173, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbleas1h', 'Roseline', 'Bleas', '[email protected]', '2020-09-25 16:30:06', '1997-06-30', 'c45e13986b69f0f9de651421a247e754', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Avignon', '84902 ', 'viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum', false, 1.820875, 47.5113895, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vhasel1i', 'Vasili', 'Hasel', '[email protected]', '2020-09-14 10:53:38', '1981-09-28', 'bee6f48849256e2a8eaa5d5d467c6d36', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Brive-la-Gaillarde', '19117 ', 'nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla', false, 1.4739649, 45.1433372, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('twallsworth1j', 'Trina', 'Wallsworth', '[email protected]', '2021-01-15 18:06:21', '1998-05-19', '6e40eb49ae541368573854dc9b120ce9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Montluçon', '03104 ', 'morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo', true, 2.789104, 46.3349544, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ajillings1k', 'Alexandro', 'Jillings', '[email protected]', '2021-01-05 17:15:34', '1985-03-14', '9650059da2a3d697c4a9cd89af8e71ec', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'Belgium', 'Charleroi', '6042', 'molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa', true, 4.4472854, 50.4315612, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmorgan1l', 'Donall', 'Morgan', '[email protected]', '2020-10-24 16:57:04', '1983-12-18', '75f47e60af6c65b38bde5cb6c6bb580f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Blois', '41004 ', 'donec', true, 1.3305567, 47.5868157, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fruslin1m', 'Filippo', 'Ruslin', '[email protected]', '2020-12-17 14:41:06', '1992-07-08', '0b7fbef2a8d96d15b6c0bc2e84bcafb7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Roissy Charles-de-Gaulle', '95761 ', 'eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem', false, 2.5479245, 49.0096906, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ppolden1n', 'Priscella', 'Polden', '[email protected]', '2020-07-21 00:23:03', '1988-02-24', 'dde482306c7a67b5cad65c3df8ccbcca', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Pau', '64044 ', 'quis tortor id nulla ultrices aliquet maecenas leo odio', false, -0.3696612, 43.2916776, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tdales1o', 'Tiffie', 'Dales', '[email protected]', '2020-09-28 18:28:25', '1994-10-21', 'cb79d0f9335820cefdb3f11f2c89ea0d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Troyes', '10606 ', 'id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras', false, 4.0710348, 48.3006708, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rfroggatt1p', 'Rubi', 'Froggatt', '[email protected]', '2020-05-30 10:19:07', '1989-07-28', 'a4b50bd81ff77ab676bdea7fab1c0ad7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Vanves', '92179 ', 'ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis', true, 2.2718631, 48.8120404, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dboon1q', 'Danette', 'Boon', '[email protected]', '2020-11-27 16:24:43', '1990-05-24', '76a51ef0480a3dd25659d7e7adadec59', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Cergy-Pontoise', '95021 ', 'condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam', false, 2.0768291, 49.03353, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rwharton1r', 'Rodrique', 'Wharton', '[email protected]', '2020-11-10 07:35:17', '1989-07-31', '4cca7b033aa32ddfe108a862b22ee074', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Villeneuve-lès-Avignon', '30404 ', 'neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus', false, 4.796809, 43.963917, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fpinch1s', 'Fidel', 'Pinch', '[email protected]', '2020-10-01 15:26:26', '1998-12-17', 'd0b4240430867914c0aa594cef5737bb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Colombes', '92715 ', 'vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus', true, 2.234305, 48.9101028, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ejeary1t', 'Emylee', 'Jeary', '[email protected]', '2020-11-22 19:50:28', '1993-05-09', '593412ce96debe7373636d28198d23c9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Orléans', '45032 ', 'nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula', true, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('apol1u', 'Ambrose', 'Pol', '[email protected]', '2020-10-26 09:47:58', '1993-07-19', '8f62ce980b13efa32ed3d3cee85848f2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Vienne', '38219 ', 'ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum', false, -1.0849968, 46.3491846, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rkembrey1v', 'Rafi', 'Kembrey', '[email protected]', '2021-02-15 10:21:58', '1996-04-28', '1228b703e39596d24ef3a6f8eab5181c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Villeneuve-d''Ascq', '59663 ', 'ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis', true, 3.1244315, 50.6140977, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jbetz1w', 'Jennilee', 'Betz', '[email protected]', '2020-12-30 08:03:48', '1982-03-31', '6c7be02d94d543f3e9e9653b4afc3a72', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 18', '75884 ', 'pulvinar sed nisl nunc rhoncus dui vel sem', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lsnarr1x', 'Lissi', 'Snarr', '[email protected]', '2020-08-01 00:32:08', '1981-05-28', 'bbe3de11bd6fbbae76a3b9b20970ae12', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nantes', '44094 ', 'pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis', true, -1.5419505, 47.2174874, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('astolting1y', 'Anneliese', 'Stolting', '[email protected]', '2021-01-12 19:15:17', '1988-07-18', 'd47c4ec0480a7e66e5c6e7df01df1c9e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris 18', '75863 ', 'molestie lorem', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bstretton1z', 'Brien', 'Stretton', '[email protected]', '2020-09-13 13:40:26', '1983-06-01', '06569c7edad645aa94ab34c6d1e4253c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'Belgium', 'Tournai', '7536', 'duis aliquam convallis nunc proin at turpis a pede', true, 3.4387783, 50.59219, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('plavens20', 'Paule', 'Lavens', '[email protected]', '2020-07-07 11:18:52', '1994-03-23', '38855df9df24620207e09ee62a2fb1ff', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Golbey', '88194 ', 'in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis', false, 6.400366, 48.1772789, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abail21', 'Abigael', 'Bail', '[email protected]', '2020-12-13 06:02:19', '1985-11-17', 'b7ee37ca7955dfe8c421967a669770af', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Tours', '37082 ', 'sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci', true, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jcasserly22', 'Jaquelin', 'Casserly', '[email protected]', '2020-11-05 06:10:37', '1983-02-15', '5580f469015060aa6b6796cdea116ec3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Dole', '39104 ', 'eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu', false, 5.3618974, 46.8525293, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tgrizard23', 'Timofei', 'Grizard', '[email protected]', '2020-10-17 06:13:34', '1987-05-25', '410edd9b41acf506a311d90074c70922', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Étienne', '42014 ', 'fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel', false, 4.3868779, 45.4381658, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vdelacroix24', 'Valerye', 'Delacroix', '[email protected]', '2020-06-24 12:05:28', '1988-01-21', '46068123528fa3177831d0d1325b0307', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'Belgium', 'Tournai', '7504', 'vel lectus in quam fringilla rhoncus', false, 3.3300918, 50.585206, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('arabson25', 'Adrian', 'Rabson', '[email protected]', '2020-11-08 17:27:52', '2001-01-19', '9d2f7697bec376278b0a8f373835ee9f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Nice', '06293 ', 'porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras', true, 7.2559678, 43.6953508, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('emccullouch26', 'Eugenie', 'McCullouch', '[email protected]', '2020-08-22 01:44:23', '1996-06-18', '7dd01ef1b6e1161d380badce377b7385', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 08', '75396 ', 'vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ebullers27', 'Ellary', 'Bullers', '[email protected]', '2020-07-31 20:54:58', '1990-08-16', '0601ef1f86ea009056201b9cfa66e4ab', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Millau', '12104 ', 'mi sit amet lobortis sapien sapien non mi integer ac neque', true, 3.0792713, 44.1012172, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kgulc28', 'Katleen', 'Gulc', '[email protected]', '2020-11-03 00:25:21', '1981-08-08', '805fbced4be52eb2e65c2833006825ca', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Gaudens', '31804 ', 'blandit mi in porttitor pede justo eu massa donec dapibus duis', false, 0.7978655, 43.0926393, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dreeds29', 'Dorette', 'Reeds', '[email protected]', '2020-10-19 17:11:31', '1997-09-18', 'e737ec995f6bf958e15e354c57c93428', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lille', '59895 ', 'amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu', false, 2.0308233, 44.1675867, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('avarden2a', 'Arleen', 'Varden', '[email protected]', '2020-09-08 16:24:26', '1990-01-07', '6d4adb66455176896ef50656a545fe38', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 18', '75884 ', 'mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lpendrill2b', 'Lanita', 'Pendrill', '[email protected]', '2020-06-29 03:43:38', '2000-09-05', 'f42f9cdfaf092a24eb04f7d36c81ed73', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Grenoble', '38816 ', 'odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel', true, 5.7286053, 45.1903117, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cstyche2c', 'Conway', 'Styche', '[email protected]', '2020-08-17 19:33:07', '1983-11-17', '4d6fb31e3b3692f1d4cbd05e5c858432', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Lyon', '69902 ', 'in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('agogay2d', 'Addia', 'Gogay', '[email protected]', '2020-06-25 09:56:34', '2001-01-17', 'ffb8cce085da2321706ecbe07013beff', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Saint-Ouen', '93487 ', 'nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero', false, -1.1457859, 46.5993244, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('igisby2e', 'Ivory', 'Gisby', '[email protected]', '2020-05-17 04:26:10', '1986-01-25', 'd405c14a480469f548ffec58e7828a9c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Saint-Priest-en-Jarez', '42275 ', 'volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit', false, 4.3812793, 45.4726625, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tkingsbury2f', 'Thornie', 'Kingsbury', '[email protected]', '2021-01-18 13:13:44', '1995-02-21', 'ec3c7052f3e8f1bd02f63b5a75c218c8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Cavaillon', '84304 ', 'phasellus in', false, 5.037751, 43.840232, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmcdougal2g', 'Lodovico', 'McDougal', '[email protected]', '2020-02-28 06:34:04', '1996-05-14', '9005388b5402cf7155bd0c6c957c651b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Saint-Denis', '93209 ', 'vestibulum sed magna at nunc commodo', false, 2.3458952, 48.9352465, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('itrowle2h', 'Irina', 'Trowle', '[email protected]', '2020-06-08 12:27:38', '2001-06-11', '7015c18131d4a4401bc3d272eb8436fa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Fos-sur-Mer', '13779 ', 'duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices', true, 4.946467, 43.454956, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gokinneally2i', 'Gustie', 'O''Kinneally', '[email protected]', '2020-04-19 23:30:57', '1981-03-12', 'f09b96a5495cc37793f4fab5c1ee523d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Poissy', '78304 ', 'a odio', false, 2.0412764, 48.9330384, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bfereday2j', 'Berrie', 'Fereday', '[email protected]', '2020-07-18 01:59:37', '1998-06-26', '714296989f3b932ccaf177278d0e7db3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Lyon', '69286 ', 'ornare consequat', false, 4.8252311, 45.7451347, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ltrittam2k', 'Laural', 'Trittam', '[email protected]', '2020-10-21 06:02:56', '1994-12-29', '35d988dba455405739fbadd59ea352b5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Marne-la-Vallée', '77316 ', 'eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio', false, 2.6402346, 48.8168007, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jiannuzzelli2l', 'Jorgan', 'Iannuzzelli', '[email protected]', '2021-02-13 12:11:34', '1984-08-02', '3579ebcecdd62b9014a96623cdc44e2e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Besançon', '25035 ', 'porttitor lacus at turpis', false, 5.970378, 47.304702, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eeller2m', 'Evania', 'Eller', '[email protected]', '2020-04-04 07:45:18', '1996-10-18', 'ceef065bc7f406454ae606f8184ea5a7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Rodez', '12030 ', 'nullam orci pede venenatis non sodales sed tincidunt eu felis fusce', false, 2.14552, 44.5453926, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('arosenstock2n', 'Abbe', 'Rosenstock', '[email protected]', '2021-01-04 23:42:04', '1987-08-30', '126b7e4b610f1ad4e2c4a3a497a9df1d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Poitiers', '86062 ', 'bibendum felis sed interdum venenatis turpis enim blandit mi', false, 0.3379133, 46.6121379, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sgumey2o', 'Shurlock', 'Gumey', '[email protected]', '2020-07-24 15:02:31', '1996-02-06', 'e1501b29d0c2a44c2e846a0e7d1c76bc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Pau', '64017 ', 'donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio', true, -0.3696612, 43.2916776, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dtaile2p', 'Desmond', 'Taile', '[email protected]', '2020-08-31 11:19:27', '1984-10-24', 'bde1de5a0935e160450750ed632fd41e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Noyelles-sous-Lens', '62247 ', '', true, 2.8830762, 50.4217341, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ebanck2q', 'Effie', 'Banck', '[email protected]', '2020-09-06 16:38:26', '1988-06-15', '8bdd7d7902b3a72e3f82a5a75bdba1e7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Brive-la-Gaillarde', '19318 ', 'suspendisse accumsan tortor quis turpis sed ante vivamus tortor', false, 1.5588851, 45.1689858, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dbulward2r', 'Dorey', 'Bulward', '[email protected]', '2020-05-03 22:27:15', '1996-03-07', '3b54bdf7639c634a7fe5e18f1a05d3eb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Cluses', '74304 ', 'tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea', true, 6.568907, 46.068811, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmcgeown2s', 'De witt', 'McGeown', '[email protected]', '2020-11-15 17:52:04', '1990-09-30', 'cfbfb044e22df79f803a19384d1252b9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Cesson', '77246 ', '', false, -2.1105468, 46.8315136, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbonnette2t', 'Rocky', 'Bonnette', '[email protected]', '2020-07-13 16:47:34', '1990-06-09', 'e6c6fe313529bbfb1faa9d9a3b4f6d44', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'Belgium', 'Mons', '7032', 'ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer', false, 3.989666, 50.4271996, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdejuares2u', 'Mariya', 'de Juares', '[email protected]', '2020-05-24 07:38:44', '1993-02-08', '7625355cd4b00315b7f1e11d4f53874d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13245 ', 'luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dpescod2v', 'Derby', 'Pescod', '[email protected]', '2020-07-27 07:56:18', '1987-12-18', '9e7e98252bbaa4ff1e6b1c4f3e4c2755', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Cergy-Pontoise', '95061 ', 'rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia', true, 2.074954, 49.039076, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmcneillie2w', 'Deidre', 'McNeillie', '[email protected]', '2021-01-25 16:00:37', '1997-08-29', '43133b2904c4e696b7b54135b41793c9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Brignoles', '83174 ', 'massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum', true, 4.0664945, 44.3543084, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wkiln2x', 'Wilfred', 'Kiln', '[email protected]', '2020-10-18 13:09:54', '1994-04-03', '9376a58af3bc40e6a685d3f2ba797628', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Chaumont', '52011 ', 'amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor', true, 5.1345996, 48.1096576, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mridgeway2y', 'Madlin', 'Ridgeway', '[email protected]', '2020-10-12 04:31:08', '1988-10-04', '464ed7f4a55bb8597452bec5cd69c29b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Montpellier', '34964 ', 'id sapien', true, -0.8453268, 47.3752386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zliff2z', 'Zelig', 'Liff', '[email protected]', '2020-07-04 02:56:53', '1996-11-05', '018d40e320814d3f4e83ea9449ea3a34', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris 02', '75075 ', 'nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('athomasson30', 'Ana', 'Thomasson', '[email protected]', '2020-11-23 17:48:04', '1989-04-07', '9c3739078efed899d6e23f5780ba3852', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Cergy-Pontoise', '95061 ', '', true, 2.074954, 49.039076, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ssedgwick31', 'Sansone', 'Sedgwick', '[email protected]', '2020-11-09 08:15:16', '1985-08-23', '0ec68282154de85f527e4ba296c0bdb9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 12', '75604 ', 'elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lpretor32', 'Lotta', 'Pretor', '[email protected]', '2020-04-25 12:00:54', '1982-10-18', 'dbbbd943ab101f148d72c312ef37563a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Blois', '41029 ', 'duis faucibus accumsan odio', true, 1.2613018, 47.4947984, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mabethell33', 'Malory', 'Abethell', '[email protected]', '2020-08-04 09:09:07', '1998-10-26', '9eeb28f20239826829583e42df8a0280', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Cergy-Pontoise', '95319 ', 'viverra diam', true, 2.087826, 49.0426, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jcadamy34', 'Joeann', 'Cadamy', '[email protected]', '2020-10-26 09:27:45', '1999-06-21', 'b65817caa5417ecb20ca7da4858c3673', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Sotteville-lès-Rouen', '76304 ', 'neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna', true, 1.1150619, 49.4006213, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fletts35', 'Flossi', 'Letts', '[email protected]', '2020-03-08 01:06:09', '2001-04-15', '9771aa8d916b3699a2cfa3511782c97f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Paris 18', '75884 ', 'molestie nibh in lectus pellentesque at nulla', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nbrute36', 'Nita', 'Brute', '[email protected]', '2020-08-14 21:59:23', '1999-06-07', '7c79fcd48b504f40038717327a5113a8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lyon', '69469 ', 'sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel', false, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('akrol37', 'Andris', 'Krol', '[email protected]', '2020-06-03 22:04:11', '1995-09-20', 'de63b9bc80910786917c37ada759ce69', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Arnage', '72234 ', 'pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum', false, 0.1940537, 47.9487196, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jlindenbluth38', 'Jourdain', 'Lindenbluth', '[email protected]', '2020-10-30 02:22:39', '1992-11-15', '19986e5742da9444ae7d8d85e194ffd6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Nancy', '54076 ', '', false, 6.17445, 48.689836, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rtear39', 'Renado', 'Tear', '[email protected]', '2020-11-04 10:05:53', '1992-09-18', '254e52b5538ef3ebfd8a7e978ff130e8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Narbonne', '11104 ', 'vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at', false, 3.0057099, 43.1905743, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cwhellans3a', 'Chucho', 'Whellans', '[email protected]', '2020-07-04 23:46:44', '1984-11-20', '7db881d2a1a31b1ddbf370fc5556624a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Wissembourg', '67165 ', 'dui', false, 7.950014, 49.031645, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tperazzo3b', 'Tiffanie', 'Perazzo', '[email protected]', '2020-06-22 08:57:59', '1984-10-21', '4270be97a1f5e2ace63f5be529031c98', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Marmande', '47211 ', 'aliquam quis turpis eget elit', true, -1.2836594, 48.3009689, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('edightham3c', 'Ed', 'Dightham', '[email protected]', '2020-06-24 18:50:08', '1996-03-19', 'ddc9800f12cee330e0db51ada63bb9aa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Creil', '60109 ', 'accumsan tellus nisi eu orci mauris lacinia sapien quis libero', true, 2.510652, 49.243003, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mhantusch3d', 'Maegan', 'Hantusch', '[email protected]', '2020-08-11 15:42:56', '1997-08-10', '3aba446f5346d974f624072cdaeb7255', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Granville', '50404 ', 'vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem', false, -1.6029573, 48.8331738, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ngirsch3e', 'Norine', 'Girsch', '[email protected]', '2020-05-07 07:31:26', '1981-03-04', '8099f0f02389890c73bb4b7b11e16667', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Le Havre', '76059 ', 'vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id', true, 0.108211, 49.48153, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vwear3f', 'Valaria', 'Wear', '[email protected]', '2020-09-21 07:21:15', '1988-05-16', '4bdcabad99a5f94ed94d553543e92361', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Châteaurenard', '13834 ', 'a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue', true, 2.0391896, 49.2066705, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('afasler3g', 'Andromache', 'Fasler', '[email protected]', '2020-11-10 12:03:21', '1989-07-30', 'cd27bf5006eed69f7f363482d33c61cd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Épernay', '51209 ', 'proin leo odio porttitor id consequat in', false, 3.979371, 49.0371335, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kdashkovich3h', 'Keriann', 'Dashkovich', '[email protected]', '2020-10-27 05:43:01', '1988-06-14', '40c250d394558d2299266cbbc90ab717', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Montpellier', '34294 ', 'sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit', false, -0.8453268, 47.3752386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hmcvitie3i', 'Hanna', 'McVitie', '[email protected]', '2020-10-01 16:24:52', '1985-06-14', 'bb4c98bf5d07d820cc8184af4df2620e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Caen', '14074 ', 'massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis', true, -0.3907558, 49.1931313, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ceringey3j', 'Candra', 'Eringey', '[email protected]', '2020-03-10 06:44:09', '1999-10-07', '03a598b26b0268d8b49db0b32114d2ae', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Sarlat-la-Canéda', '24212 ', 'nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper', true, 1.2172257, 44.8855006, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rgarmston3k', 'Raymond', 'Garmston', '[email protected]', '2020-11-06 20:36:49', '2001-04-22', '76ee0e1d37b4100904a87fce692e55ec', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Auxerre', '89024 ', 'in tempus sit', true, 3.5751746, 47.794456, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('adrust3l', 'Antonina', 'Drust', '[email protected]', '2020-12-13 08:18:13', '1995-01-27', '9b2be407b2c71f25041a888d4f1e8656', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Paris 10', '75480 ', 'vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rrobet3m', 'Raimund', 'Robet', '[email protected]', '2020-06-26 03:44:56', '1995-02-06', 'b4ee4aa571a52cdbdf5d04c0357bdf16', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Villeneuve-sur-Lot', '47304 ', 'nibh ligula nec sem duis aliquam convallis nunc proin at turpis', false, 0.7060015, 44.4103234, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gimpey3n', 'Gran', 'Impey', '[email protected]', '2020-04-20 15:50:21', '2002-01-30', 'af76a03d450eab9cf4015b8f305d31b9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Saint-Brieuc', '22091 ', 'vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum', true, -2.7383235, 48.509075, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eruffell3o', 'Eben', 'Ruffell', '[email protected]', '2020-03-04 05:19:03', '1985-04-16', 'ed05ad2c6dca8d90d317739788a6fa59', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Mougins', '06254 ', 'placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula', false, 7.0125073, 43.6167837, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('achung3p', 'Alair', 'Chung', '[email protected]', '2020-12-22 11:41:14', '1994-06-11', '7e7760dcd6cb1496043aa0be4314d3b0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Dole', '39104 ', 'dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id', false, 5.3618974, 46.8525293, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ngossage3q', 'Niccolo', 'Gossage', '[email protected]', '2020-09-06 09:47:14', '1995-01-28', 'e1189dd767622add001417430ccb7c27', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Pamiers', '09104 ', 'morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales', true, 1.6196332, 43.1162469, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ckoschek3r', 'Cloris', 'Koschek', '[email protected]', '2020-04-27 11:53:21', '1992-11-11', '77926dca84bb71fec20ab1aa439f2414', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Roissy Charles-de-Gaulle', '95974 ', 'a pede posuere nonummy integer non', false, 2.513543, 48.989038, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('elaugheran3s', 'Em', 'Laugheran', '[email protected]', '2020-06-16 20:16:57', '1996-12-08', '71d5f50d610c5ed518bd0113a5e9d617', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Bastia', '20403 ', 'velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat ante nulla justo', true, 1.7243511, 42.930418, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jwhieldon3t', 'Julietta', 'Whieldon', '[email protected]', '2020-04-19 10:27:43', '1994-06-02', '176fba7f616650b6be450b6dec473c3b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Cluses', '74311 ', 'elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis', true, 6.568907, 46.068811, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fwaple3u', 'Fonzie', 'Waple', '[email protected]', '2020-12-22 20:29:48', '1996-04-27', 'd0c479a8363524822394b1ec16a98f58', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Thionville', '57119 ', 'nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque', true, 6.15176, 49.333258, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bscrowby3v', 'Burl', 'Scrowby', '[email protected]', '2021-02-12 04:05:24', '1988-09-06', '16a9842a7f854134c345e0fef3affe06', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Le Teil', '07404 ', 'volutpat quam', true, 1.9593782, 43.8139627, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abranston3w', 'Augusta', 'Branston', '[email protected]', '2020-07-24 02:10:41', '1996-05-27', '0eace099013e78627d798811535ad719', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Sannois', '95118 ', 'dui proin leo odio porttitor id', false, 2.2558072, 48.9648921, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pcarnson3x', 'Peterus', 'Carnson', '[email protected]', '2020-10-15 00:35:36', '1997-08-26', 'a6e8e85976b544d819bc34cc4a9937db', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 01', '75038 ', 'posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdalziell3y', 'Maury', 'Dalziell', '[email protected]', '2020-09-16 12:43:45', '1986-01-23', '75221f628c5ed3a05f866339782f649f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marne-la-Vallée', '77614 ', 'dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci', true, 2.7011678, 48.8282801, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dreicharz3z', 'Darrick', 'Reicharz', '[email protected]', '2020-12-22 10:08:40', '1988-11-06', 'd8230fef53afb03f6f87a8674c7fa004', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Angers', '49937 ', 'magna bibendum imperdiet', false, 2.3501981, 48.8693156, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tjacquemard40', 'Trevar', 'Jacquemard', '[email protected]', '2020-02-25 16:16:58', '1987-03-01', '05f4c2fafeb68214cabae7fa8e9b2b17', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Limoges', '87077 ', 'dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi', false, 3.5276642, 45.521519, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('frenyard41', 'Francine', 'Renyard', '[email protected]', '2020-12-24 23:27:18', '1981-09-15', '7af037ae56dd93c8686f68f41373ca78', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Ajaccio', '20174 ', 'ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus', true, 0.813275, 46.6473105, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cfazackerley42', 'Curtice', 'Fazackerley', '[email protected]', '2020-07-31 21:16:11', '1986-10-27', '32055994bcbf76a100ed6ef74988124c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Frontignan', '34114 ', 'primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum', true, 3.758728, 43.444912, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cmelmeth43', 'Carmine', 'Melmeth', '[email protected]', '2020-05-18 03:37:27', '1988-10-11', '885c4a639903a53db23bfeca8e97ea74', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Valence', '26907 ', 'turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis', false, 3.590421, 46.6669865, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dstuchberry44', 'Dolli', 'Stuchberry', '[email protected]', '2020-12-13 08:08:38', '1999-04-22', '676744db90aa9311081e43f21ee1bfc7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Voiron', '38509 ', 'nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio', false, 5.5949365, 45.3639886, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('msargint45', 'Margaretha', 'Sargint', '[email protected]', '2020-04-06 09:00:21', '1987-05-24', 'c51dd1baed1303f7f7163cede2780c10', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Cahors', '46004 ', 'mollis molestie lorem quisque ut erat curabitur gravida', true, -1.813332, 47.772714, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('goconcannon46', 'Gordy', 'O'' Concannon', '[email protected]', '2020-12-03 22:21:06', '1996-08-24', '4289cac2005b520b99a442d9e9ba4593', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Balma', '31139 ', 'proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere', false, 1.5256514, 43.6227518, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fbowyer47', 'Felisha', 'Bowyer', '[email protected]', '2020-04-13 11:45:01', '1992-07-20', 'b4ceb5d5560cc4d155100e0b6181da8e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Toulon', '83077 ', 'eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor', true, 5.9294606, 43.1283145, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('shaverson48', 'Shellysheldon', 'Haverson', '[email protected]', '2020-02-22 23:51:59', '1997-03-18', '84f0c44f2d9d38adc4e1356732a6b882', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Nice', '06306 ', 'tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum', true, 7.2559678, 43.6953508, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kmottershaw49', 'Katherina', 'Mottershaw', '[email protected]', '2020-04-02 08:15:52', '1995-10-25', '8f41883b4208dd166248b6a71b27fd60', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Noailles', '60434 ', 'donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis', true, -0.1518541, 44.3324131, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ofoster4a', 'Orbadiah', 'Foster', '[email protected]', '2020-12-25 17:15:10', '1994-05-18', '2f347f1e077dab4ad21f2b571023fdf9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Le Havre', '76069 ', 'ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla', true, -2.9231898, 48.0386685, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sdedmam4b', 'Saleem', 'Dedmam', '[email protected]', '2020-05-18 18:04:38', '1990-08-20', 'dabcae17f70b09f43f865769be874bd6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Sochaux', '25609 ', 'justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et', false, 6.8426821, 47.5054315, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bbarz4c', 'Bernie', 'Barz', '[email protected]', '2020-06-12 15:20:18', '2001-06-16', '04d5b5a720d9ace6d6fced08b7dfaeec', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Villejuif', '94804 ', 'tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim', false, 2.368326, 48.7823921, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('okarim4d', 'Osmund', 'Karim', '[email protected]', '2020-05-23 02:43:55', '2000-11-24', '2ead64b177b2a4622c2f853582584977', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 09', '75312 ', 'lorem quisque ut erat curabitur gravida nisi at nibh in hac', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rholdforth4e', 'Rianon', 'Holdforth', '[email protected]', '2020-06-06 20:38:23', '1987-10-11', 'edf1dcdba4d515c8f65a9db132797558', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Reims', '51054 ', 'curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam', false, 4.3603508, 49.2958555, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mmatissoff4f', 'Matty', 'Matissoff', '[email protected]', '2020-08-16 09:59:21', '1994-06-30', '3e44a0bd67923d8ac0d4ef2fceb22008', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Béziers', '34513 ', 'tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia', false, 3.2188961, 43.3362822, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rgauvain4g', 'Rawley', 'Gauvain', '[email protected]', '2020-11-05 23:22:18', '1984-10-14', '801d50bac88250798651f2a5f51d8beb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Montreuil', '93517 ', 'platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi', true, 2.4273906, 48.8505771, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mbontoft4h', 'Milty', 'Bontoft', '[email protected]', '2021-02-16 16:57:53', '1989-07-13', '57e9dbcb636e5840a3baaf58647f2455', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Dijon', '21009 ', 'pede lobortis ligula sit', false, 2.5135985, 45.2977605, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aspurdens4i', 'Aleta', 'Spurdens', '[email protected]', '2020-05-30 02:03:28', '1990-04-27', '8c1c6375edf94430ca9031b13d1c0a1b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Saint-Gratien', '95219 ', 'arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur', false, 2.2646872, 48.9779483, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jblade4j', 'Justino', 'Blade', '[email protected]', '2020-04-22 18:43:30', '1986-12-10', 'da1063373ce304314e847858b501d780', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'La Garenne-Colombes', '92959 ', '', false, 2.2456603, 48.9066299, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('daskell4k', 'Dedra', 'Askell', '[email protected]', '2020-03-17 01:28:06', '1984-10-05', 'f842a06d312f054eb7626abedb927a48', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Nice', '06009 ', 'id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum', false, 7.261933, 43.704612, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vohagan4l', 'Viva', 'O''Hagan', '[email protected]', '2020-11-30 04:25:19', '1980-07-09', '28dba187d4281362c64b5933d6ec5d16', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Quimper', '29193 ', 'ipsum dolor sit amet consectetuer adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum', false, -4.1020654, 47.9962116, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lgoodbourn4m', 'Lin', 'Goodbourn', '[email protected]', '2020-06-27 11:14:24', '1993-02-16', 'e206b2de2c9fa799d8576803292f1a64', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Fosses', '95479 ', 'integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis', false, 0.057855, 44.5943255, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rsooper4n', 'Rodie', 'Sooper', '[email protected]', '2020-08-30 05:52:15', '1993-01-21', '2a5ea1f0a5540d1869c0b3dc54400dd6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Rungis', '94659 ', 'proin interdum mauris non ligula pellentesque ultrices phasellus id', false, 2.3536083, 48.7381259, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mcockling4o', 'Milena', 'Cockling', '[email protected]', '2020-03-18 12:54:05', '1984-05-11', 'f89707f4b8d7981a6b9934b210308a99', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Nogent-sur-Marne', '94734 ', 'eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt', true, 2.4923085, 48.8333236, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bdenman4p', 'Brenden', 'Denman', '[email protected]', '2020-10-22 02:37:05', '1998-03-27', '2d0172b4f8b98786919b0640fcd0c83b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Amiens', '80075 ', 'curae', false, 2.3081396, 49.8905368, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ecoo4q', 'Elyssa', 'Coo', '[email protected]', '2020-05-17 14:41:24', '1998-03-22', '81921de00a27733ffbe0abe7820d5a87', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Bagnères-de-Bigorre', '65204 ', 'semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam', true, 0.151424, 43.067122, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cruffle4r', 'Charil', 'Ruffle', '[email protected]', '2020-05-18 17:44:43', '1999-05-24', '27a04a4e2c6f417fab4cd8463b11710c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Marne-la-Vallée', '77602 ', 'primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec', false, 2.6618245, 48.8383589, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('damery4s', 'Dulci', 'Amery', '[email protected]', '2020-08-10 16:12:40', '1983-11-23', 'a63a667278c6013a66b0a15b7a299294', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Besançon', '25045 ', 'est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed', false, 5.993932, 47.287125, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fkingzeth4t', 'Farlee', 'Kingzeth', '[email protected]', '2020-10-05 08:12:59', '1983-02-25', '3d6b06669cac9085c5a59b05f2e1a402', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Nantes', '44200', 'fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis', true, -1.5411258, 47.2014677, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gsilvester4u', 'Gerrard', 'Silvester', '[email protected]', '2021-01-02 19:42:44', '1981-11-07', 'b3babca38f452ee0e9642a98644ab476', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Besançon', '25004 ', 'justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam cras', false, 5.9675963, 47.2215999, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bklimczak4v', 'Bordy', 'Klimczak', '[email protected]', '2020-07-23 10:05:00', '1980-11-09', '586ad2224615bc079429ae537c29bd34', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris La Défense', '92061 ', 'lobortis ligula sit amet eleifend pede libero quis', true, 2.2372792, 48.890054, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rarlet4w', 'Rozanne', 'Arlet', '[email protected]', '2020-07-06 06:30:35', '1980-08-28', '00c82be97031a62cf1822186aa03b931', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Vernon', '27204 ', 'eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar', false, 1.4784611, 49.0915297, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fkezourec4x', 'Florian', 'Kezourec', '[email protected]', '2020-08-08 21:15:19', '1989-03-01', 'dad56901873efda0b1693ac0af474ace', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Clichy', '92613 ', 'magna vestibulum aliquet ultrices erat', true, 2.333434, 48.8834042, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbottrell4y', 'Robena', 'Bottrell', '[email protected]', '2021-01-25 17:21:55', '1993-08-31', '651870abee2fa15762024e76961920ba', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'La Rochelle', '17073 ', 'quis', false, 5.2893597, 47.9318074, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aolcot4z', 'Ann-marie', 'Olcot', '[email protected]', '2020-11-26 21:11:14', '1986-01-01', '6229cb08119fa95e5a9e6fd6133a0a7b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Blaye', '33394 ', 'et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit', false, -0.662941, 45.126841, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dpostles50', 'Donelle', 'Postles', '[email protected]', '2020-09-15 17:40:32', '1995-10-26', 'daabf3b9eb7c5cec9116a33ad64ec86c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Toulouse', '31489 ', 'dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum', false, -3.2602564, 47.785421, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mshout51', 'Merry', 'Shout', '[email protected]', '2020-02-29 02:45:01', '1981-03-14', '3fa7117fad9fc93a58389511e07f6fa9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Chenôve', '21304 ', 'augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam', true, 5.0131814, 47.2876246, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mclack52', 'Mord', 'Clack', '[email protected]', '2020-08-03 08:20:45', '1991-05-05', '8fb32fdaf97fe86fb6a47786697a4f10', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Marseille', '13293 ', 'ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pthunnercliff53', 'Petunia', 'Thunnercliff', '[email protected]', '2020-04-19 02:04:05', '1995-08-28', 'e8cd3a23fb29bd0be662e634e367027d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Bobigny', '93737 ', 'tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus', false, 2.8898334, 49.4648362, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('techelle54', 'Tait', 'Echelle', '[email protected]', '2021-01-16 19:29:00', '1984-03-05', '3daceec4d481c339a514a585a2aa17dd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Thouars', '79104 ', 'volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus', false, -0.2101206, 46.9981458, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ksolman55', 'Kattie', 'Solman', '[email protected]', '2020-09-23 05:31:03', '1987-01-24', 'e15fc18742166fbc490946c553ddb798', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Ajaccio', '20174 ', 'integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in', true, 0.813275, 46.6473105, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('coreilly56', 'Corbie', 'O''Reilly', '[email protected]', '2020-12-16 10:45:59', '2002-01-28', 'd45136175583ddf29e968b8205849541', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Obernai', '67214 ', 'phasellus id sapien in sapien iaculis congue vivamus', false, 7.4888434, 48.4621258, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ewanden57', 'Eziechiele', 'Wanden', '[email protected]', '2020-05-10 14:21:27', '1987-04-12', '189920a1d143cb0e937c1acf00c90f8c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Marseille', '13343 ', 'nulla', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fruckledge58', 'Filmore', 'Ruckledge', '[email protected]', '2020-09-04 22:50:26', '1988-05-28', '6196dd9e9d76837be732fb2d40c4b860', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Amiens', '80048 ', 'mi nulla ac enim in', false, 2.3081396, 49.8905368, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bseilmann59', 'Byrann', 'Seilmann', '[email protected]', '2020-09-01 07:39:51', '1998-06-24', '5d52cabe3d5224714147c1bd29943ecb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Vienne', '38219 ', 'sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci', false, -1.0849968, 46.3491846, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('amacaulay5a', 'Alexine', 'MacAulay', '[email protected]', '2020-03-25 13:03:48', '1986-06-28', '7550c53c5e725af61d14b3186459de98', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Clichy', '92119 ', '', false, 2.3011787, 48.9089753, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mscales5b', 'Miner', 'Scales', '[email protected]', '2020-09-23 02:22:39', '1986-05-11', 'fd1b07dff739561ea3dab586d9098022', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Montpellier', '34964 ', 'ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia', true, -0.8453268, 47.3752386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ahurburt5c', 'Angelita', 'Hurburt', '[email protected]', '2020-08-21 15:08:24', '2000-10-03', 'cc4c2322882ee841a7e984ee1c703a8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Lille', '59034 ', 'massa quis augue', false, 3.086469, 50.5429237, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ipitrollo5d', 'Issi', 'Pitrollo', '[email protected]', '2020-04-25 16:39:57', '1991-10-25', 'f8d844fbe3995318f4c26e334682c4fa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Moissy-Cramayel', '77554 ', 'lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at', false, 2.5921846, 48.627474, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jcutts5e', 'Jamie', 'Cutts', '[email protected]', '2020-06-29 12:56:15', '1980-06-10', '0ba1514f34e6fb6c0bb8331d448ead4d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Versailles', '78020 ', 'augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi', true, 2.1203554, 48.8048649, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mkirsch5f', 'Matty', 'Kirsch', '[email protected]', '2020-08-27 10:55:57', '1982-05-15', 'f89c3adc55b19752fcc1634fc936fc0d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nanterre', '92004 ', 'metus aenean fermentum donec ut mauris eget massa tempor convallis', true, 2.2829955, 48.9098794, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dcuerda5g', 'Dierdre', 'Cuerda', '[email protected]', '2020-07-31 17:10:04', '1986-12-24', '5303dbc59ace49c35ea9c5fa78360c6f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Dijon', '21030 ', 'bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis', false, 2.5135985, 45.2977605, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bcolbert5h', 'Bili', 'Colbert', '[email protected]', '2020-06-23 18:48:03', '1983-06-06', '0b4a8e001872dfaf5ed25084ef29150f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Clermont-Ferrand', '63964 ', 'enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede', false, 3.103119, 45.0386871, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mvogt5i', 'Mariejeanne', 'Vogt', '[email protected]', '2020-04-21 05:55:42', '1997-01-31', 'a57e2b3dda8f800e363335e224039871', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Loudun', '86206 ', 'quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor', true, 4.1293609, 45.3207796, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wcorrington5j', 'Wallache', 'Corrington', '[email protected]', '2020-09-04 10:48:33', '1985-05-19', '4bda0aa02bbf2f75ac8b09459554a58b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Albertville', '73209 ', 'vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor', false, 6.3760602, 45.6629694, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rjeaffreson5k', 'Raimundo', 'Jeaffreson', '[email protected]', '2020-04-05 16:29:55', '1985-04-28', 'a3c954a8367c32a5481380ec6f3fa618', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Mont-de-Marsan', '40025 ', 'porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in', false, -0.5046003, 43.884893, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bcarpmile5l', 'Benn', 'Carpmile', '[email protected]', '2020-11-30 04:10:09', '1981-08-27', '6f72bb7ef9bc334481804e8b9ce81f2a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Montbéliard', '25204 ', 'nec', true, -0.302506, 45.417087, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('btabard5m', 'Bidget', 'Tabard', '[email protected]', '2020-02-17 07:13:21', '1985-06-21', '2a5ed9b4aeef7296aa31138e927223e0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Orléans', '45911 ', 'luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec', true, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pjanovsky5n', 'Pierre', 'Janovsky', '[email protected]', '2020-08-26 18:38:36', '2000-10-17', '2e952e5129b3c5e26306ebb845092671', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Orléans', '45933 ', 'purus sit amet nulla quisque arcu libero rutrum ac', false, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aweek5o', 'Auguste', 'Week', '[email protected]', '2020-03-06 23:55:36', '1992-12-26', '2ad60c9113eaaf9cb2c16ed47b71a4ec', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Brest', '29609 ', 'sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend', true, -4.4854059, 48.3909721, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('llaux5p', 'Leisha', 'Laux', '[email protected]', '2020-11-08 03:07:16', '1986-09-27', '7832ca5327967b5fbb8fa1b1f75fc150', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Maur-des-Fossés', '94109 ', 'arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut', false, 2.4725036, 48.8066526, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wketton5q', 'Wat', 'Ketton', '[email protected]', '2020-03-23 23:25:10', '1987-07-10', '24ba8de219387f9d0f56977b3abbfecf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'La Roche-sur-Yon', '85021 ', 'fusce consequat nulla nisl nunc nisl duis bibendum', false, -1.4517985, 46.7152613, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nlythgoe5r', 'Neill', 'Lythgoe', '[email protected]', '2020-08-10 16:32:19', '1982-12-24', 'a86c4d255326a1e0a3c9559cc0b83a10', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Boulogne-sur-Mer', '62222 ', 'dui maecenas tristique est et', true, 1.5948224, 50.7308185, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rdavidov5s', 'Reyna', 'Davidov', '[email protected]', '2021-01-10 18:42:07', '1997-08-15', '4aad366be8b937175cb2ba451b49f1d9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Roscoff', '29688 ', 'facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta', false, -3.7612141, 48.0381485, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('psuero5t', 'Persis', 'Suero', '[email protected]', '2020-09-13 00:24:25', '1989-01-21', '4763f38e4e3032b9c62ad7988870e00a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'La Roche-sur-Yon', '85923 ', 'justo morbi ut odio cras mi', true, -1.4517985, 46.7152613, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gdedman5u', 'Giffy', 'Dedman', '[email protected]', '2021-01-01 15:20:02', '1981-05-05', '79bc9dbb584ce150b514faedbe46ccfa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Nevers', '58017 ', 'est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis', true, 3.1506645, 46.9874505, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wlimbrick5v', 'Willow', 'Limbrick', '[email protected]', '2020-02-28 19:38:36', '1981-06-03', '6bb24e39eb1ff03df8cbc994294bf092', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Tassin-la-Demi-Lune', '69814 ', 'adipiscing elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices', false, 4.768427, 45.764339, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aburgise5w', 'Arin', 'Burgise', '[email protected]', '2021-01-11 20:09:09', '1997-05-18', '76582bf5c8714fae995105a976476a8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Val-de-Reuil', '27109 ', 'id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam', false, 1.207968, 49.2752229, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('inorthage5x', 'Inigo', 'Northage', '[email protected]', '2020-04-09 15:35:11', '1996-08-22', '3fc55c49a5705a7b09852c33f30e0d35', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Béthune', '62411 ', 'feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam', false, 2.6404239, 50.5213838, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rthackwray5y', 'Riordan', 'Thackwray', '[email protected]', '2020-10-14 14:28:48', '1986-03-29', 'a32ae40cc3e05843ba4ff3ebbdfb2c64', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Avignon', '84072 ', '', true, 4.3686291, 43.8317876, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('iivanchov5z', 'Ilsa', 'Ivanchov', '[email protected]', '2020-03-15 01:14:50', '2000-03-07', '3cc9f7437dac58f958a4bfa98bdc60cc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lens', '62304 ', 'sit amet eleifend', false, -0.4601725, 46.280212, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('etitterton60', 'Emmalee', 'Titterton', '[email protected]', '2020-11-03 18:22:19', '1992-11-19', '2bdf3f67707a777a6c950af5336065ba', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Lens', '62304 ', 'etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec', true, -0.4601725, 46.280212, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('climpricht61', 'Claude', 'Limpricht', '[email protected]', '2021-02-16 12:54:22', '1995-03-27', '591b79562c85301f84904c508dc2c261', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Orly', '94537 ', 'maecenas tristique est et tempus semper est quam pharetra', false, 2.3881323, 48.7525724, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hlethcoe62', 'Hubie', 'Lethcoe', '[email protected]', '2021-01-26 21:00:16', '1997-11-28', 'd5d3ea059ee202b043fc9677cb61d27e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Gif-sur-Yvette', '91199 ', 'at nibh in hac habitasse platea dictumst aliquam augue quam', true, 2.1222327, 48.7212066, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cmacgiany63', 'Charline', 'MacGiany', '[email protected]', '2020-04-13 21:29:32', '1993-02-11', 'dc56f9d9bc3c8d3ce727fa59d2ff8a47', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 04', '75195 ', 'in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bdunbar64', 'Blanca', 'Dunbar', '[email protected]', '2020-09-29 07:05:44', '1993-01-24', '990e032493894334bbacee7a14a8b398', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Bezons', '95874 ', 'vestibulum vestibulum ante ipsum primis in faucibus orci', false, 2.2159905, 44.7535743, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nbatch65', 'Niall', 'Batch', '[email protected]', '2021-01-07 20:09:58', '1987-04-11', '4000387a8d742241985a4c77991a9975', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Noyelles-sous-Lens', '62247 ', 'mauris eget massa tempor convallis nulla neque libero convallis eget', true, 2.8830762, 50.4217341, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('igillbe66', 'Isis', 'Gillbe', '[email protected]', '2021-01-20 16:06:13', '1996-02-23', '3838acd2731e3487fa5df1177b9b9e0e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Beauvais', '60022 ', 'nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh', true, 2.0887457, 49.4263976, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cwindaybank67', 'Christen', 'Windaybank', '[email protected]', '2020-07-03 19:19:09', '1987-06-15', 'd7293d592f36c287c15ff6aab38cdece', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Gif-sur-Yvette', '91199 ', 'orci pede venenatis non sodales sed', true, 2.1222327, 48.7212066, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rkeets68', 'Roth', 'Keets', '[email protected]', '2020-08-29 05:25:17', '1994-12-03', '46a6f044ec39a15236783a3a07558371', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Soissons', '02204 ', 'sem duis', true, 3.338092, 49.369115, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('chulk69', 'Correna', 'Hulk', '[email protected]', '2020-12-24 01:11:03', '1997-04-30', 'f50ac929ddb0527676e8662e4b661f97', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Lyon', '69488 ', 'eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lferrarini6a', 'Lefty', 'Ferrarini', '[email protected]', '2020-10-01 16:50:35', '1980-12-09', '6f0bd7e1fc19fbab92138d38b08d4ecd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Mont-de-Marsan', '40025 ', 'nascetur ridiculus', false, -0.5046003, 43.884893, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ecummins6b', 'Ethel', 'Cummins', '[email protected]', '2020-12-25 05:26:13', '1987-11-24', 'a1da96b02e1ca76ff7bb0c28891591e5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Clermont-Ferrand', '63009 ', 'congue risus semper porta volutpat quam pede lobortis ligula', true, 3.1331436, 45.788378, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pmaudlin6c', 'Pavel', 'Maudlin', '[email protected]', '2020-12-18 02:52:38', '1992-01-01', '034c8dafe056a1eab13fcad975779d60', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Égrève', '38524 ', 'eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien', true, 5.7043997, 45.2544588, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jgrenshields6d', 'Jonathan', 'Grenshields', '[email protected]', '2020-10-31 00:32:51', '1990-11-20', '2cbfd2aa2cdc046bcebc84057c4338af', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Colombes', '92715 ', 'volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse', true, 2.234305, 48.9101028, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abuckett6e', 'Anna', 'Buckett', '[email protected]', '2021-01-08 15:25:53', '1995-03-09', 'ba06787834febd008fedf10c16a21943', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Colomiers', '31774 ', 'vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis', true, 1.3342086, 43.6036545, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fbarltrop6f', 'Freddy', 'Barltrop', '[email protected]', '2021-01-05 09:11:53', '1992-08-29', '8c09eb83fec15a73008d6ccabb07e985', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Brive-la-Gaillarde', '19318 ', 'integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum', false, 1.5588851, 45.1689858, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('emcravey6g', 'Enid', 'McRavey', '[email protected]', '2020-08-13 07:13:07', '1995-12-24', 'a0734332a80aa72f3ce64520097e3df4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Périgueux', '24016 ', 'aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis', true, 0.7237613, 45.1800316, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dhennemann6h', 'Dulcia', 'Hennemann', '[email protected]', '2020-08-28 16:42:18', '1991-06-21', '52d6a70812541f9f4ed09ff70874f0ce', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'La Roche-sur-Yon', '85021 ', 'augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut', false, -1.4517985, 46.7152613, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nsooley6i', 'Nadia', 'Sooley', '[email protected]', '2021-01-29 09:02:18', '1999-10-14', '73db847f65cd754dabdeeecdbac7c19b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Angers', '49937 ', 'viverra pede ac diam cras pellentesque volutpat dui maecenas', false, 2.3501981, 48.8693156, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ctanslie6j', 'Chrisy', 'Tanslie', '[email protected]', '2020-02-23 02:42:21', '1986-01-28', '9298d6f3020e96c98ed4d5dba5d171f9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Coutances', '50204 ', 'et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in', false, -1.6509128, 49.2706048, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jsidebotham6k', 'Julie', 'Sidebotham', '[email protected]', '2020-05-13 08:56:47', '1997-09-11', '8c7fb58660ce72694e3a06639c42ecdc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Bourges', '18035 ', 'non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut', true, 1.206057, 47.6632745, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dkedwell6l', 'Dela', 'Kedwell', '[email protected]', '2020-07-15 11:00:29', '1994-08-10', '687b63346890a4fdea65712ce49d80f1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Rennes', '35076 ', '', false, -1.7819266, 48.0976547, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mmacak6m', 'Mildred', 'Macak', '[email protected]', '2020-09-16 23:41:23', '1989-03-11', '8bc503ad02d4a313089459f0c7a80508', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Rambouillet', '78514 ', '', false, 1.8015218, 48.6463593, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aklainman6n', 'Aurelia', 'Klainman', '[email protected]', '2021-02-11 20:31:42', '1992-11-05', '483dae9daabea4c5cd7837f8b7f8a169', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Amiens', '80089 ', 'lorem ipsum dolor', true, 2.3081396, 49.8905368, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('knoye6o', 'Kristina', 'Noye', '[email protected]', '2021-01-19 01:03:08', '1992-10-06', 'cfe6130982d6dd8f0e4965e0f3574d3e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Rueil-Malmaison', '92509 ', 'eget', true, 2.166848, 48.8708001, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dsikorski6p', 'Deloria', 'Sikorski', '[email protected]', '2021-02-03 15:21:25', '1989-04-06', 'f2350a5c22de99cd47fb3b5b7a5b097a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Quimper', '29102 ', 'mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea', true, -4.1020654, 47.9962116, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bbayldon6q', 'Buddie', 'Bayldon', '[email protected]', '2020-11-04 17:39:30', '1995-09-09', '52e45287b510d52a02b8e9b421a48fed', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Chartres', '28901 ', 'augue aliquam erat', false, -0.6297654, 45.106849, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bvellender6r', 'Berny', 'Vellender', '[email protected]', '2021-02-07 09:24:52', '2000-10-10', '2d1b2698c1f3a969a982ba359f8dc9dc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Castres', '81109 ', 'cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean', true, 2.1365748, 43.7058177, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lcheevers6s', 'Lynne', 'Cheevers', '[email protected]', '2020-03-07 09:59:29', '1997-01-04', '055df94b6cc5fbf0100d7e6be6f3f121', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Thouars', '79104 ', 'velit vivamus vel', true, -0.2101206, 46.9981458, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mpipkin6t', 'Michaeline', 'Pipkin', '[email protected]', '2020-04-03 06:36:37', '1981-01-02', 'a3df688241436fff08ba14caa946c561', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Cahors', '46004 ', 'amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus', false, -1.813332, 47.772714, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('degdal6u', 'Dion', 'Egdal', '[email protected]', '2021-01-08 23:13:52', '1991-08-09', '8501ca9c7a4c1357afc99a87c457a838', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Lyon', '69286 ', 'mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis', true, 4.8252311, 45.7451347, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('flambricht6v', 'Farly', 'Lambricht', '[email protected]', '2020-06-16 11:13:57', '1982-05-08', '42454fcd6ed608ee9b27de4d86bfb703', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Nogent-le-Rotrou', '28404 ', 'turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut', true, 0.839002, 48.3156651, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kbolles6w', 'Kathe', 'Bolles', '[email protected]', '2020-10-05 03:00:07', '1985-01-08', '409617d85faab7ca415a01a8ba787d17', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Pierre-des-Corps', '37705 ', 'nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam', false, 0.7236073, 47.3860507, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vdowdle6x', 'Vivyan', 'Dowdle', '[email protected]', '2020-04-12 08:28:21', '1998-11-06', '04bca00795768a39f79c9aec10b7c441', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Toulouse', '31044 ', 'sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget', false, 1.495596, 43.609798, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mkiss6y', 'Mitchael', 'Kiss', '[email protected]', '2020-11-05 23:01:51', '1994-07-10', '075e8ec03fe76aa0e5ac83790d5ecd3c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Orange', '84878 ', 'nulla ac enim in tempor', false, 4.810107, 44.1372925, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('btie6z', 'Boone', 'Tie', '[email protected]', '2020-06-05 10:54:36', '1989-09-28', 'fd438297d63e68fb2fac32d25f50f142', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Le Perreux-sur-Marne', '94174 ', 'vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede', false, 2.5070548, 48.8348801, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('haickin70', 'Hilliard', 'Aickin', '[email protected]', '2020-04-21 05:53:13', '1984-08-10', 'cc17ee2d36c63de5d0ad29a77417c521', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Quimper', '29563 ', 'potenti nullam porttitor lacus at turpis donec posuere metus', false, -4.1116493, 47.9894676, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lpressey71', 'Lyon', 'Pressey', '[email protected]', '2021-02-15 21:28:03', '1987-11-26', '30bf4b7393592b3388ec517794b44cb7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Paris 14', '75669 ', 'diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('twroth72', 'Talyah', 'Wroth', '[email protected]', '2021-02-07 06:18:12', '1985-12-26', 'b6f850cbc86737f2259e04c679b0ce73', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 12', '75587 ', 'tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fewers73', 'Forrest', 'Ewers', '[email protected]', '2020-05-06 08:14:48', '1993-11-11', '4338322e90af3f84ed022eee8ffa490f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Paris 17', '75808 ', 'fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gdumberell74', 'Glen', 'Dumberell', '[email protected]', '2020-10-26 21:59:18', '1982-07-23', '44a232afc8c9c00b44a29fb04f3a222d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Grenoble', '38014 ', 'morbi odio odio elementum eu interdum eu tincidunt in leo maecenas', false, 5.7218985, 45.1934857, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lould75', 'Lisha', 'Ould', '[email protected]', '2020-11-27 05:16:21', '1984-01-18', 'c1a587adecf0dea0e7331da85c2b579e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Dié-des-Vosges', '88109 ', 'consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim', true, 6.942319, 48.28232, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ttickner76', 'Tristam', 'Tickner', '[email protected]', '2020-11-10 20:43:46', '1990-04-21', '1f0d55d02ca5fb3f7735447567f757a1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Mantes-la-Jolie', '78718 ', 'non lectus aliquam sit', false, 1.6899473, 48.9990813, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bputtick77', 'Bette', 'Puttick', '[email protected]', '2020-03-04 17:53:19', '1987-01-25', 'f617ed6aebe3421dda2c8ad1a284df3d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Avignon', '84902 ', 'habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat', true, 1.820875, 47.5113895, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('crosie78', 'Cristie', 'Rosie', '[email protected]', '2020-12-07 22:14:05', '1985-11-04', '8f9a706a6410728f7909def1f22b7dca', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Valence', '26009 ', 'non sodales sed tincidunt eu felis fusce posuere felis', false, 4.8932938, 44.9280296, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bbeldom79', 'Bennie', 'Beldom', '[email protected]', '2020-03-08 11:16:58', '1983-10-01', 'b3934d7d690527b218280457aa6da510', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Creil', '60922 ', 'lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper', true, 2.510652, 49.243003, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tcroft7a', 'Tamarra', 'Croft', '[email protected]', '2020-11-11 19:23:54', '1984-10-11', 'f7fdf5c3bf29a9f689a0b131947fbd95', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris La Défense', '92974 ', 'risus praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et', false, 2.2408938, 48.891587, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lgodthaab7b', 'Linzy', 'Godthaab', '[email protected]', '2020-07-04 08:54:53', '1991-05-25', '7ed45b9088ec4d7b7e4af65c4cf32fc0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Ussel', '19204 ', 'libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis', true, 3.883654, 44.8870215, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aschenfisch7c', 'Ansel', 'Schenfisch', '[email protected]', '2020-05-17 21:25:34', '1993-03-25', '6337ba089615c88bfde82094732d4a58', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Le Teil', '07404 ', 'imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam', false, 1.9593782, 43.8139627, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tbrocklebank7d', 'Terry', 'Brocklebank', '[email protected]', '2020-08-14 17:51:27', '1999-03-20', 'e79b994f87380888737e0b945d872d16', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Voiron', '38509 ', 'odio curabitur convallis duis consequat dui nec', true, 5.5949365, 45.3639886, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rallingham7e', 'Raleigh', 'Allingham', '[email protected]', '2020-06-20 00:22:14', '1996-10-27', 'e5034334bdf9eeafda0a15bafe8c0378', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Valence', '26907 ', 'pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum', true, 3.590421, 46.6669865, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cpinckard7f', 'Christiano', 'Pinckard', '[email protected]', '2020-08-08 07:49:58', '1980-04-06', '78dab4f605beaf2e4714fb81b14507c6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Bayonne', '64109 ', 'sapien sapien non mi integer ac neque duis bibendum morbi non', true, -1.4703339, 43.4968733, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gbees7g', 'Gerladina', 'Bees', '[email protected]', '2020-05-13 17:15:27', '1988-08-13', 'f641e07adcac182141c874ad9b16aa2c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 17', '75832 ', 'nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lruncieman7h', 'Lowe', 'Runcieman', '[email protected]', '2020-11-12 14:53:35', '1983-04-11', '5dc3ed4d9c070996ebcf89916a4b7347', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Dinan', '22104 ', 'ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor', true, -2.0559531, 48.4514438, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('awoolner7i', 'Adair', 'Woolner', '[email protected]', '2020-09-10 12:56:40', '1996-02-24', '0a33020d5ba74fb808bd92944ac49f4f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Châteauroux', '36029 ', 'lobortis sapien sapien non mi integer ac neque duis bibendum morbi', true, 0.768419, 48.2660539, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mballinghall7j', 'Melloney', 'Ballinghall', '[email protected]', '2020-08-24 08:25:42', '1983-06-20', 'bdb5cf0d3761dd514f8e4871f01f099f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Lyon', '69907 ', 'purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor', true, 4.7987938, 45.7782243, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdranfield7k', 'Maren', 'Dranfield', '[email protected]', '2020-12-11 03:25:47', '1989-05-25', 'ecb7c2907a4ae6a219898e15110b3b75', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Chaumont', '52011 ', 'tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus', false, 5.1345996, 48.1096576, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fbarnicott7l', 'Fair', 'Barnicott', '[email protected]', '2020-02-24 22:59:44', '1993-03-07', '47bc3af416ebbbcd16679c752342cd1a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Dieppe', '76883 ', 'elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper', false, 1.1433823, 49.8683919, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bwalton7m', 'Baxie', 'Walton', '[email protected]', '2021-01-23 10:35:20', '1988-03-03', 'e4fbcd066c85bac01e7ec3fe07889b83', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Metz', '57016 ', 'pellentesque ultrices mattis odio donec vitae nisi nam ultrices', false, 6.1807997, 49.116169, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ekimm7n', 'Ellette', 'Kimm', '[email protected]', '2020-08-21 04:50:09', '1985-05-29', '50e4effc94cd33a188910a5114652c26', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Rambouillet', '78514 ', 'semper sapien a libero nam dui proin leo', true, 1.8015218, 48.6463593, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hpantry7o', 'Hazlett', 'Pantry', '[email protected]', '2021-02-06 22:13:14', '1981-09-02', '3d5da31d531d95d44323eabd83b0ac70', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Évry', '91029 ', 'commodo vulputate justo in blandit ultrices', false, 2.430785, 48.6047256, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lduiged7p', 'Lolita', 'Duiged', '[email protected]', '2020-11-14 21:34:33', '1999-08-28', '068b161f8834329cbd918f3fc55f9fad', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Niort', '79049 ', 'cubilia curae nulla dapibus dolor vel est donec odio', true, -0.4928359, 46.823629, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pcapps7q', 'Page', 'Capps', '[email protected]', '2020-11-24 23:57:33', '1985-04-05', '538d0778acda86c5206e0d89b6f1727f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nîmes', '30006 ', 'at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet', false, 4.3662321, 43.8324929, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ntabour7r', 'Napoleon', 'Tabour', '[email protected]', '2020-04-30 06:39:33', '1991-11-06', '8cf4290b568ce36a90700a52991b645a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Pau', '64080 ', 'sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl', false, -0.3696612, 43.2916776, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jmannion7s', 'Jason', 'Mannion', '[email protected]', '2020-06-18 22:22:14', '1982-02-25', 'bcca1298384c2aae6702b9ca5ec13548', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Hagondange', '57304 ', 'ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec', false, 6.16417, 49.25362, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cstranger7t', 'Clarie', 'Stranger', '[email protected]', '2020-05-30 16:58:33', '1996-04-16', '990b9ae975ae0165807b22a8a1ebed61', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Annecy', '74041 ', 'quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id', false, 6.121072, 45.9018536, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('yskune7u', 'Yul', 'Skune', '[email protected]', '2020-07-02 01:29:53', '1989-02-28', '8524dd05bcc836e422015595ba607558', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Bordeaux', '33070 ', 'congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis', false, 0.964671, 45.697904, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('polden7v', 'Porty', 'Olden', '[email protected]', '2020-04-21 07:56:50', '1992-12-29', '4e19c5860533924c9cfe6cb444767acd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Albertville', '73209 ', 'orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a', true, 6.3760602, 45.6629694, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hzorzutti7w', 'Husein', 'Zorzutti', '[email protected]', '2020-03-14 06:58:54', '1998-09-13', 'a9eed225466edea41c32b8791029a71e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Sarlat-la-Canéda', '24212 ', 'quam suspendisse potenti nullam porttitor', true, 1.2172257, 44.8855006, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zshuttleworth7x', 'Zebadiah', 'Shuttleworth', '[email protected]', '2021-01-07 15:02:11', '1987-04-04', '4a0d75e70679f7bb8d22c1e0345f80f8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Sarreguemines', '57204 ', 'augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh', true, 7.0685103, 49.1073208, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbarthot7y', 'Cathryn', 'Barthot', '[email protected]', '2020-03-22 14:43:59', '1997-01-06', '43a0b793ebe1a14324d18c82b6728382', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Longvic', '21604 ', '', false, 5.0488236, 47.3080493, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kmapletoft7z', 'Kendal', 'Mapletoft', '[email protected]', '2020-09-28 07:27:23', '1998-03-17', '1ea1d5fad52cf74a5b8a78926e4c69ef', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Bonneville', '74134 ', 'lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et', false, -0.8937702, 46.2983568, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rmalecky80', 'Romonda', 'Malecky', '[email protected]', '2020-05-26 09:12:23', '1990-08-15', '1f73bc955d113057014e37789d2c50d2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Moulins', '03017 ', 'at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci', false, 3.8308136, 43.6164958, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('awhilder81', 'Adrianna', 'Whilder', '[email protected]', '2020-09-15 15:55:49', '1992-08-07', '31c29c567739ed305a9c04920cd405e6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Strasbourg', '67024 ', 'adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur in libero ut massa', true, 7.7342943, 48.5851876, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dchadwick82', 'Dosi', 'Chadwick', '[email protected]', '2021-02-12 01:48:38', '1987-08-07', '9ec532f2992ee6e81fd25fee16ca8bcc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Fontainebleau', '77304 ', 'a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed', false, 2.6949635, 48.4057628, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kbailes83', 'Kerrie', 'Bailes', '[email protected]', '2020-09-18 14:01:01', '1981-06-01', '8dff1b979c2bda5d49698cb54093300b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Levallois-Perret', '92691 ', 'venenatis turpis enim blandit mi in porttitor pede justo', false, 2.2817978, 48.8927579, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kpampling84', 'Katrinka', 'Pampling', '[email protected]', '2020-03-01 07:11:04', '1989-05-31', '32097d885fdf70d27fbb2469d49ecce6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Marly-le-Roi', '78165 ', 'venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue', true, 2.1177361, 48.829733, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('laizikov85', 'Lesli', 'Aizikov', '[email protected]', '2020-11-13 05:12:22', '1981-10-22', '39da45ca7ea1b375cf72566c64da0063', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Créteil', '94946 ', 'ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus', false, 2.4549884, 48.7803815, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aphonix86', 'Annabell', 'Phonix', '[email protected]', '2020-07-07 05:14:12', '1992-11-05', '3883ee98a0dd9ef8a0e62a9fe88fe274', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Angoulême', '16919 ', 'erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus', false, 0.0629891, 45.6258385, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('omaseyk87', 'Ophelie', 'Maseyk', '[email protected]', '2021-02-16 05:29:55', '1996-08-22', '7c45e4cbb45638c18d30ca2354c81b11', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Montfort-sur-Meu', '35164 ', 'volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum', false, -1.948989, 48.138899, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('reuler88', 'Rhoda', 'Euler', '[email protected]', '2020-09-28 13:14:36', '2001-12-10', 'ee48f1973dcf3cd4c6ebd4e8955ae663', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 17', '75817 ', 'sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rlinnock89', 'Rufus', 'Linnock', '[email protected]', '2021-02-09 10:06:48', '1997-11-24', '75c8cf240e45762b5a92864f21b0376d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Rennes', '35704 ', 'dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat', false, -1.7123278, 48.1552902, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pshiell8a', 'Pooh', 'Shiell', '[email protected]', '2020-12-17 00:02:54', '1987-02-24', 'ebb3e39202f84d70ca374c9d688a3016', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Limeil-Brévannes', '94454 ', 'pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus', false, 2.480322, 48.749354, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wastin8b', 'Worden', 'Astin', '[email protected]', '2020-11-13 11:11:20', '1983-07-14', '2e2c89f06260e9932129bd55c9072758', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'La Ferté-Bernard', '72404 ', '', false, 0.6732415, 48.1901461, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('czorro8c', 'Claudianus', 'Zorro', '[email protected]', '2020-07-07 06:39:24', '1984-12-28', '36e81517408ac51619c66f6b7255e6af', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Cahors', '46091 ', 'sit amet diam in magna bibendum imperdiet nullam orci pede venenatis', false, -1.813332, 47.772714, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ymuirden8d', 'York', 'Muirden', '[email protected]', '2020-12-05 05:03:46', '1982-01-07', 'b5511e5b8e0582e695cd942bb3201ad2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Évreux', '27009 ', 'sit amet', false, 1.1518478, 49.0261841, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('flindholm8e', 'Filide', 'Lindholm', '[email protected]', '2020-05-02 07:22:44', '1997-07-24', '294cd23e20103fe888ef8a1c0d5ea77f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Strasbourg', '67039 ', 'porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna', true, 7.7342943, 48.5851876, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ajeduch8f', 'Almire', 'Jeduch', '[email protected]', '2020-11-09 18:38:21', '2001-09-23', '826e551acd50ed1dba917c8f423b2cb1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Marseille', '13327 ', 'turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lwithinshaw8g', 'Lynelle', 'Withinshaw', '[email protected]', '2020-12-26 01:28:10', '1990-05-31', '3345590eafd308476bb588595d5dcd59', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 15', '75712 ', 'quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu pede', true, 2.2582125, 48.8466523, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mmcnulty8h', 'Maddy', 'McNulty', '[email protected]', '2021-01-01 04:26:54', '1995-05-02', 'd9862f2174f06c67fc92e8b2b417d74c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Fosses', '95479 ', 'ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam', false, 0.057855, 44.5943255, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ghyndman8i', 'Gerrilee', 'Hyndman', '[email protected]', '2020-11-14 21:59:03', '1999-04-21', 'b51f9872ebe67e28694a00870cd9c113', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Jean-de-Luz', '64504 ', 'in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed', false, -1.6300821, 43.3531543, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ccarletti8j', 'Cloris', 'Carletti', '[email protected]', '2021-02-07 14:52:33', '1984-09-25', '21e4a150f2a7c5ea396ad18f74f80cbf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Lille', '59895 ', 'non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae', false, 2.0308233, 44.1675867, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mleavold8k', 'Marika', 'Leavold', '[email protected]', '2020-06-02 18:06:31', '1982-09-06', 'dd05538326f00f23cc57c0c1e41b638d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Fosses', '95479 ', '', false, 0.057855, 44.5943255, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tspringer8l', 'Thorndike', 'Springer', '[email protected]', '2020-12-04 02:44:34', '1996-08-02', 'e44f2a99031406778e7e3f863a3c1ef6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Savigny-le-Temple', '77544 ', 'convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus', true, 2.591512, 48.5878559, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gflatley8m', 'Geordie', 'Flatley', '[email protected]', '2020-12-09 13:04:28', '1987-01-18', '7606e4bb16c428abef0750ef6c655fae', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Mérignac', '33709 ', 'vulputate', true, -2.0532343, 47.9544744, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('brobottham8n', 'Bertrando', 'Robottham', '[email protected]', '2020-03-05 03:24:06', '1994-11-24', 'ca8c43a99048ff5158e999c7c7f97dcd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13393 ', 'mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vkleinplac8o', 'Vannie', 'Kleinplac', '[email protected]', '2021-01-16 21:31:19', '1982-07-25', '994205568597600556c2b68c591fb24a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Thionville', '57119 ', 'leo odio porttitor id consequat in consequat ut nulla sed', false, 6.15176, 49.333258, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gansty8p', 'Glenden', 'Ansty', '[email protected]', '2020-09-17 09:24:32', '1981-07-01', 'dcd6af8fc2921025f14c178be1216f7c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Tourcoing', '59208 ', 'lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam', true, 3.16806, 50.716719, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rdow8q', 'Rae', 'Dow', '[email protected]', '2021-01-05 13:14:01', '1993-12-15', 'efc4806486693e9381f11096abf6b28c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Cergy-Pontoise', '95046 ', 'consequat metus', false, 2.074954, 49.039076, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aeverest8r', 'Angelika', 'Everest', '[email protected]', '2021-01-05 05:14:27', '1987-08-14', '97cf251902135ccd4f291be28f349cc3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris 18', '75879 ', 'interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nkleine8s', 'Niccolo', 'Kleine', '[email protected]', '2020-11-16 00:40:14', '1986-01-23', 'be2930abee2ac64e17cc44b147f34377', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Douarnenez', '29174 ', 'in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat', true, -4.33096, 48.0930765, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lidel8t', 'Leigha', 'Idel', '[email protected]', '2021-01-11 20:56:45', '1995-08-20', '23ae55cf29588e2f585bf91335932973', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Redon', '35605 ', 'vel sem sed', false, -2.0882566, 47.6519866, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nmcandrew8u', 'Nehemiah', 'McAndrew', '[email protected]', '2020-03-05 10:03:32', '1997-06-14', '81b1deac3ce174663a7cb4936e3e7238', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Tours', '37205 ', 'justo eu massa donec dapibus duis', true, 5.534063, 45.70734, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mlawry8v', 'Marji', 'Lawry', '[email protected]', '2020-06-03 10:44:08', '1982-04-25', 'fce4ffcabdf26578acdafb488bc1417e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Mont-de-Marsan', '40025 ', 'in hac habitasse platea dictumst maecenas', true, -0.5046003, 43.884893, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('smathes8w', 'Sylas', 'Mathes', '[email protected]', '2020-04-29 17:16:25', '1994-04-08', '8f29c8b4970f8727214e7a63b914f4cb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Toulouse', '31004 ', 'metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at', false, 1.4525313, 43.6085373, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('iquirk8x', 'Ingram', 'Quirk', '[email protected]', '2020-07-14 00:03:57', '1995-07-17', 'e04940fb2b7abc7c577a8091f1ab038b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Périgny', '17189 ', 'congue eget semper rutrum nulla nunc purus', true, -0.804935, 49.189451, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nmazzeo8y', 'Nadeen', 'Mazzeo', '[email protected]', '2020-08-10 13:23:52', '2000-03-25', '7ec00d6d99dd59ddab5a605a96d76fe5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Antony', '92169 ', 'varius ut blandit non interdum in ante vestibulum ante ipsum primis in', false, 2.3071289, 48.7579712, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tbenka8z', 'Tremaine', 'Benka', '[email protected]', '2020-03-07 20:05:52', '1986-05-09', '08dd07f00f202172c47fac9ea9ae6edb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 11', '75128 ', 'massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum', false, 2.3237084, 48.8610504, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('smatiebe90', 'Shandeigh', 'Matiebe', '[email protected]', '2020-05-04 14:01:57', '1982-05-23', 'a229f2ae09d674daba71cc1de1d38499', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Paris 14', '75675 ', 'tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('chendrik91', 'Carmine', 'Hendrik', '[email protected]', '2020-02-22 11:54:32', '1999-01-13', 'fb6602db280199aac8af576885b4babf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Cahors', '46004 ', 'libero convallis eget eleifend luctus ultricies', true, -1.813332, 47.772714, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('klehrmann92', 'Kitti', 'Lehrmann', '[email protected]', '2020-07-29 04:51:22', '1988-01-17', '8376cad407c682b28b1efe7877c1715b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Orléans', '45004 ', 'sapien', true, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ageaves93', 'Allan', 'Geaves', '[email protected]', '2021-01-21 15:11:57', '1996-11-23', '0e1f3e651269c824565a9ead92e69c6e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Noailles', '60434 ', 'id massa id nisl venenatis lacinia aenean sit amet', true, -0.1518541, 44.3324131, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sfrondt94', 'Shanta', 'Frondt', '[email protected]', '2020-04-09 22:03:53', '1983-06-16', '5d5082377ffb6b05b7c5ae6da0d78263', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Villeneuve-d''Ascq', '59652 ', 'sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in', true, 3.1244315, 50.6140977, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bmaccallum95', 'Birgit', 'MacCallum', '[email protected]', '2020-08-31 10:09:39', '1989-12-19', '25ec53ac9f8c771da4e74301ff8742c5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Balma', '31139 ', 'lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus', true, 1.5256514, 43.6227518, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cpetronis96', 'Carlin', 'Petronis', '[email protected]', '2021-01-02 21:36:27', '2000-05-28', 'ea573ee433fb76eda6e42bdaefae206e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Roissy Charles-de-Gaulle', '95761 ', 'pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra', true, 2.5479245, 49.0096906, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mringer97', 'Margo', 'Ringer', '[email protected]', '2020-07-11 09:28:10', '1999-07-04', '33813f4c6e95d3b62978acb846a9e832', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Épinal', '88020 ', 'etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius', false, 6.4140214, 48.2576572, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nkolin98', 'Noni', 'Kolin', '[email protected]', '2020-12-15 01:27:38', '1989-03-23', '0151d9e946168530ecddafcea8566444', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Cachan', '94234 ', 'in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id', true, 2.3300777, 48.7877067, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('edyhouse99', 'Evania', 'Dyhouse', '[email protected]', '2020-10-13 21:38:47', '1999-07-05', 'c36316ae35d1c17e5cb7a6819e041cc2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Frontignan', '34114 ', 'parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis', true, 3.758728, 43.444912, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abellas9a', 'Alejoa', 'Bellas', '[email protected]', '2020-10-22 11:41:45', '1991-07-06', '7cc608f31db0af6f6b48c3196cc94a4b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Lyon', '69239 ', 'in faucibus orci luctus et ultrices posuere cubilia curae duis', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lpatty9b', 'Latia', 'Patty', '[email protected]', '2020-04-05 18:04:19', '1999-07-21', '8af2c0019497839a2974d5413ba5e800', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Élancourt', '78990', 'id consequat in consequat ut nulla', true, 1.9639754, 48.777799, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pwilkerson9c', 'Penrod', 'Wilkerson', '[email protected]', '2020-09-11 07:33:17', '1987-05-10', 'b64b82d2c59749ebc644340155a5cb42', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Nantes', '44958 ', 'sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis', false, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sdalinder9d', 'Sally', 'Dalinder', '[email protected]', '2021-01-14 15:02:55', '2002-01-21', 'de41cf756b845d6021cb9ed1fee074b6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Nantes', '44916 ', 'integer ac neque duis bibendum', true, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lbater9e', 'Lin', 'Bater', '[email protected]', '2021-01-06 10:27:13', '2000-05-01', '388e68c01d70a5ead40b14006531091b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Caluire-et-Cuire', '69644 ', 'justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in', true, 4.8427596, 45.7967858, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('shastie9f', 'Sarina', 'Hastie', '[email protected]', '2021-02-05 20:27:11', '1990-06-07', '417a73488b814403941105b2c497e9d7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'Belgium', 'Péruwelz', '7604', 'curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros', true, 3.5567339, 50.5474037, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('imaly9g', 'Ingram', 'Maly', '[email protected]', '2020-07-10 11:21:57', '2001-06-19', '44b66bf831f121192df02705298dcff7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Forbach', '57609 ', 'luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in', false, 6.9179709, 49.1606317, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mbirkmyre9h', 'Marshal', 'Birkmyre', '[email protected]', '2021-02-15 09:25:01', '1998-08-29', 'a4b31ce0e6685ffab73d0be642fb4401', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Reims', '51054 ', '', false, 4.3603508, 49.2958555, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gropking9i', 'Gaile', 'Ropking', '[email protected]', '2020-10-05 13:29:29', '1986-08-10', 'd4316008ca3caf4c1635f50475b7dcbf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Gardanne', '13548 ', 'viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et', false, 6.574529, 43.553302, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aepdell9j', 'Ariadne', 'Epdell', '[email protected]', '2020-08-21 09:24:31', '1980-08-03', '8f4057978844c22f934440274bb952a9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Tarbes', '65022 ', 'tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede', true, 0.06251, 43.247343, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dimloch9k', 'Dex', 'Imloch', '[email protected]', '2020-11-28 22:04:51', '1997-02-14', 'bb59703d84937d349bb9a9e146b46fdb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Vitry-le-François', '51361 ', 'eget vulputate ut ultrices vel augue', true, 4.7001329, 48.747518, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gjosefs9l', 'Gabriella', 'Josefs', '[email protected]', '2020-10-26 12:07:29', '1988-10-02', 'e4907fca94cf6ea2d5fdb6e71c27cf30', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Saint-Ouen', '93584 ', 'ultrices phasellus id sapien in sapien iaculis congue vivamus metus', false, -1.1457859, 46.5993244, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ecockrell9m', 'Emogene', 'Cockrell', '[email protected]', '2020-04-19 22:28:26', '2002-01-12', '7be7df55892eedfbea1fc97e1ceaccb6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Abbeville', '80104 ', 'duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis', true, 1.6928443, 49.9772098, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dramstead9n', 'Doroteya', 'Ramstead', '[email protected]', '2020-04-15 18:02:12', '1983-03-11', '3aefb8ae6fbc838188ffbd7b8318179d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Tours', '37032 ', 'proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate', false, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tbugg9o', 'Tiffy', 'Bugg', '[email protected]', '2020-11-28 11:01:49', '1998-11-11', '70f27b0c6a57db1bb9fc4de9efc18ec6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Auxerre', '89024 ', 'dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus', false, 3.5751746, 47.794456, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mpietraszek9p', 'Mair', 'Pietraszek', '[email protected]', '2020-04-03 19:36:44', '1995-08-28', '7969559af9b2409581b0760e9a9318c4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Noyon', '60406 ', 'eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc', true, 1.0859715, 49.145018, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mpactat9q', 'Martguerita', 'Pactat', '[email protected]', '2020-02-24 00:20:32', '1994-12-16', 'b3fbcccec2f990f04be4cc7a1151bdb8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Lomme', '59463 ', '', false, 2.9982752, 50.6503044, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bspellman9r', 'Biddie', 'Spellman', '[email protected]', '2020-09-01 16:32:03', '1993-02-21', '6f60eb1918f92ec56367c064487f9c10', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Dunkerque', '59640', 'vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet', true, 2.343224, 51.0149751, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sdobeson9s', 'Salmon', 'Dobeson', '[email protected]', '2020-03-05 12:30:33', '1994-08-14', 'f955dfde9b024b6ec991ac7af77aaf4e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Aubenas', '07204 ', 'magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget', false, 3.9996505, 44.2136985, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rosharry9t', 'Rayshell', 'O''Sharry', '[email protected]', '2020-12-17 21:01:19', '1992-05-19', '74f5512c9ba003600abf16730b2d126c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Lisieux', '14109 ', 'arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id', false, 0.2312423, 49.1382421, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdevorill9u', 'Michelle', 'Devorill', '[email protected]', '2020-08-23 03:31:22', '1989-12-08', '499a9262cf968f74e21d9e88947cfea3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Rungis', '94636 ', 'dolor sit amet consectetuer adipiscing elit', true, 2.3536083, 48.7381259, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mcruddace9v', 'Minne', 'Cruddace', '[email protected]', '2021-01-23 05:35:15', '1989-10-25', '8d04b366dbfd1c974368367268b26345', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Puget-sur-Argens', '83484 ', 'leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis', false, 6.685055, 43.455312, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cwardall9w', 'Carlyn', 'Wardall', '[email protected]', '2020-12-20 11:11:58', '1992-12-16', '9a79b97f1fe3369864c6a2093bf61fc1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Le Mans', '72015 ', 'non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce', true, 0.1924459, 47.9956173, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('caizik9x', 'Cindelyn', 'Aizik', '[email protected]', '2020-10-04 20:40:59', '1983-04-26', 'bfc5d99fddc85298702f99f4f8e7376a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Roissy Charles-de-Gaulle', '95915 ', 'tincidunt eget tempus vel pede morbi', true, 2.5479245, 49.0096906, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fwaything9y', 'Flossi', 'Waything', '[email protected]', '2020-11-02 04:24:14', '1993-11-21', '89cb4f25de1fce951fcf2a1909c32d76', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Beaune', '21209 ', 'sapien dignissim vestibulum', false, 1.1586866, 47.3410322, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gpresland9z', 'Gretal', 'Presland', '[email protected]', '2020-08-13 18:32:18', '1996-10-07', '128e0a7e30d9fb038e3fb2c204f6b87f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Quimperlé', '29399 ', 'in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in', true, -3.6006683, 47.859986, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('emullinsa0', 'Em', 'Mullins', '[email protected]', '2020-07-18 05:33:58', '2000-01-16', 'cba9e3f2ecedeeb70e5cf7968aafd723', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Valenciennes', '59309 ', 'turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea', false, 3.460955, 50.334011, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('afigliovannia1', 'Anjanette', 'Figliovanni', '[email protected]', '2020-12-16 22:08:47', '1988-12-14', '8f47a80771f105d9445bbb603d4956e5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Metz', '57045 ', 'sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel', false, 6.1650769, 49.1199699, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hfalveya2', 'Hermy', 'Falvey', '[email protected]', '2021-02-10 21:38:46', '1984-11-03', '2ea37cd30e98d41780104dffb648ff8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Saint-Lô', '50009 ', 'mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus', true, -1.0793373, 49.0993758, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fwaitona3', 'Forster', 'Waiton', '[email protected]', '2021-01-15 11:50:22', '1992-02-27', 'c2e1135d38b1ab1939e70caeb7812c1e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'La Tour-du-Pin', '38354 ', 'neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in', false, 5.449605, 45.5423201, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mcolmana4', 'Mischa', 'Colman', '[email protected]', '2020-06-25 13:45:01', '1997-04-04', 'ee935a36138d2c6594c75d51fc719670', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Savigny-le-Temple', '77544 ', 'ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit', true, 2.591512, 48.5878559, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('astacea5', 'Amity', 'Stace', '[email protected]', '2020-10-16 17:49:24', '1986-06-14', '59f6a8526c05f76c5517db0874f8af55', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Tarbes', '65911 ', 'at lorem integer tincidunt ante vel', true, 2.9394741, 50.4734865, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zbeathema6', 'Zachary', 'Beathem', '[email protected]', '2020-02-24 02:51:55', '1987-04-11', 'bace5e27e005aedf9bc5a251ae3b0032', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lyon', '69345 ', 'quam sapien varius ut blandit non interdum in', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('amattisa7', 'Aviva', 'Mattis', '[email protected]', '2020-07-14 18:14:14', '1985-04-14', 'a6f88677993f71f2c465519dfddc42ac', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 10', '75464 ', 'in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kturmalla8', 'Kordula', 'Turmall', '[email protected]', '2020-03-01 04:34:07', '1983-10-24', 'fcda7e601c08137ab89f54d6e7bb5f06', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Valence', '26953 ', 'potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus', false, 3.590421, 46.6669865, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('egartella9', 'Elyssa', 'Gartell', '[email protected]', '2020-07-20 06:05:32', '1994-09-04', '92d68db6d82b856bc26c67ffd97b781b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Montpellier', '34186 ', 'maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus', false, -0.8453268, 47.3752386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('asarfatiaa', 'Alice', 'Sarfati', '[email protected]', '2020-06-12 05:18:10', '2001-07-28', '55c8a168fac2df7c4a2f7b7a4124b902', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Nîmes', '30028 ', 'sed lacus morbi sem mauris', false, 4.3662321, 43.8324929, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gvernerab', 'Gregoire', 'Verner', '[email protected]', '2020-04-04 05:26:50', '1993-04-04', '3630f0e7ea3479007ba602f310e8e9cb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Courtaboeuf', '91948 ', 'ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel', false, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kaspoleac', 'Keene', 'Aspole', '[email protected]', '2020-06-10 10:22:41', '1982-12-17', 'a3a5fdd515f49287211ef525f0c9bb5a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Paris 09', '75455 ', 'primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien non', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pgerssamad', 'Preston', 'Gerssam', '[email protected]', '2020-12-24 20:04:16', '1989-12-10', 'ff49e62a06177248f1399bc40a238e59', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Charleville-Mézières', '08013 ', 'mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa', false, 4.7189252, 49.7683038, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bdragoeae', 'Bel', 'Dragoe', '[email protected]', '2020-10-07 13:25:11', '1980-03-23', '6d389bf4434cc345d9b1f9c7e52c513e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Paris 01', '75054 ', 'non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mhuggillaf', 'Mala', 'Huggill', '[email protected]', '2020-10-23 01:59:38', '1991-12-22', '6ee3f83754c592c737915219ad022000', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Wissembourg', '67165 ', 'aliquet at feugiat non pretium', false, 7.950014, 49.031645, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbockingag', 'Claus', 'Bocking', '[email protected]', '2021-01-11 04:00:59', '1992-06-08', '92737266b6860d27fa68f8600e71297e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Tours', '37016 ', 'morbi sem mauris laoreet ut rhoncus', false, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jdonavanah', 'Joe', 'Donavan', '[email protected]', '2020-03-11 18:14:34', '1987-07-08', '631b9e4d7d9c21230b85d85841f9f220', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Amiens', '80048 ', 'fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla', true, 2.3081396, 49.8905368, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lpimerai', 'Lisa', 'Pimer', '[email protected]', '2020-09-06 16:07:50', '1990-02-21', 'fb2450fd514c4ad7239d9a51629d79ae', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Strasbourg', '67961 ', 'nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis', true, 7.6370168, 48.5347071, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmaileaj', 'Layla', 'Maile', '[email protected]', '2020-12-08 14:42:19', '1983-03-01', '2c6cc13e227fdca0035598ea7bccb2b8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Paris 03', '75151 ', 'risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('crevelyak', 'Carleton', 'Revely', '[email protected]', '2020-12-16 23:32:51', '1981-03-07', '7dae3519ae952d755d1ce81c99c5b145', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Gentilly', '94254 ', 'urna pretium nisl ut volutpat sapien arcu sed', false, 2.845761, 44.478341, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vdoreeal', 'Vladamir', 'Doree', '[email protected]', '2020-04-29 23:17:03', '1984-10-03', '7af730ef42e55093261bbb20bd68b7a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Lyon', '69281 ', 'curae mauris', true, 4.909835, 45.6326302, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mlammertzam', 'Marcia', 'Lammertz', '[email protected]', '2020-07-28 11:54:17', '1983-02-13', '515603b7e726cf7e00da0f3ae1c89598', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Caen', '14040 ', 'ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia', true, -0.3907558, 49.1931313, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jmaggiorean', 'Junette', 'Maggiore', '[email protected]', '2020-10-18 05:41:32', '1997-08-24', 'c72e449c915dddc732760b2d3cf300f4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Saint-Maur-des-Fossés', '94109 ', 'pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et', true, 2.4725036, 48.8066526, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kdrohunao', 'Keith', 'Drohun', '[email protected]', '2020-04-24 23:22:56', '1981-03-19', '336ed3080e0c9fda57d8513ac5d6e09d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Annecy', '74982 ', 'curae', false, 6.1250598, 45.925854, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cgiddonsap', 'Chrissy', 'Giddons', '[email protected]', '2020-03-31 02:55:14', '1996-05-13', 'd2ce9029af99b4ab68cab358ce75d613', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Montpellier', '34064 ', 'lacinia aenean sit amet', true, 3.319109, 43.862902, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abebbaq', 'Arman', 'Bebb', '[email protected]', '2020-09-18 14:51:49', '1997-11-11', 'ee79fbc63959562182b159d2e6bc886b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Bordeaux', '33801 ', '', false, 0.964671, 45.697904, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jromanelliar', 'Jody', 'Romanelli', '[email protected]', '2020-08-12 10:49:52', '2001-01-21', 'a8bb7ca225497738f7a1a01971609ed6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Tours', '37072 ', 'libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed', true, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('oserviceas', 'Orsola', 'Service', '[email protected]', '2020-03-25 23:28:10', '1986-12-11', 'f18eb6c079119a14fadafee31edd3952', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13369 ', 'dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fchableat', 'Freddy', 'Chable', '[email protected]', '2020-07-27 01:24:53', '1988-04-15', '51ecc7d948ae3711e232cc6944dbd205', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Aix-en-Provence', '13540', 'pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio', false, 5.4044268, 43.5963366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dbrabynau', 'Dan', 'Brabyn', '[email protected]', '2020-05-16 22:32:50', '1994-06-23', '89ef48db40275697f72ccbf0f728de6e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Arnage', '72234 ', 'blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse', false, 0.1940537, 47.9487196, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pfromeav', 'Pebrook', 'Frome', '[email protected]', '2020-11-01 17:07:10', '1993-07-29', 'df08433c7d6c64cc1fcd4a34bd5bf8d5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 01', '75100 ', 'scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis sed ante vivamus tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bhawleraw', 'Bobbette', 'Hawler', '[email protected]', '2021-01-01 22:12:18', '1995-11-26', '4b05a9427e18123ddfa4de5d05a9ca54', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 02', '75075 ', 'nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nneillyax', 'Norry', 'Neilly', '[email protected]', '2020-10-11 09:21:46', '1999-03-21', 'a86e305d879c62a09527c1ab81ba5b35', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Ivry-sur-Seine', '94857 ', 'luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet', false, 2.394771, 48.819324, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lquirkeay', 'Lamond', 'Quirke', '[email protected]', '2020-11-23 07:06:00', '1992-08-19', 'b49049143216f0a412476515e3691263', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Paris 15', '75729 ', 'orci nullam molestie nibh in lectus pellentesque', true, 2.2582125, 48.8466523, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tgooderridgeaz', 'Thaine', 'Gooderridge', '[email protected]', '2020-05-03 15:53:23', '1990-07-13', '5809ab9422c7a338cb87a2d7423ebcde', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Nantes', '44958 ', 'vulputate nonummy maecenas', false, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbohljeb0', 'Catherin', 'Bohlje', '[email protected]', '2020-06-12 22:44:48', '1999-10-21', 'bca8a124d3864fa41bf385905655b494', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Clisson', '44194 ', '', true, -1.2821339, 47.0799211, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sgorrickb1', 'Sloan', 'Gorrick', '[email protected]', '2020-03-10 14:31:19', '1999-10-13', 'c3ea7bdb57891ef823e922f9d3c23390', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Angers', '49010 ', '', false, -0.5572458, 47.4441206, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('agoodrickb2', 'Ambrose', 'Goodrick', '[email protected]', '2020-12-01 03:13:17', '1981-10-01', 'd7a924ac186d560b59a67558ddd7983f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Nantes', '44335 ', 'donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut', false, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bkilmartinb3', 'Bunni', 'Kilmartin', '[email protected]', '2020-07-29 22:48:58', '1991-01-03', 'd58cc948466a3451fecd3051b759d2e4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Montpellier', '34064 ', 'et tempus semper est quam pharetra magna', false, 3.319109, 43.862902, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dpaddockb4', 'Denise', 'Paddock', '[email protected]', '2020-08-26 16:08:43', '1995-10-12', '2e80f8b57e68eae0d07a03e65916296e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Nantes', '44324 ', 'turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum', false, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ckindleysidesb5', 'Corella', 'Kindleysides', '[email protected]', '2020-10-02 12:02:24', '1996-10-18', 'fbaa60617489a45370dc38ccac3c5b9b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Massy', '91574 ', '', false, 4.6072477, 46.4830794, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dapplewhiteb6', 'Dulci', 'Applewhite', '[email protected]', '2020-03-17 04:12:24', '1992-01-22', 'ddbdcaa715b5aefb0e744a041e349a79', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lagnieu', '01154 ', 'nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit', true, 5.2900333, 45.8367628, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gboolsb7', 'Giacomo', 'Bools', '[email protected]', '2020-09-28 00:41:30', '1999-06-08', '165e82a7d1d61ce0af603082082601f8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Istres', '13807 ', 'eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis', true, 4.9789041, 43.4988397, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sharrowellb8', 'Sara-ann', 'Harrowell', '[email protected]', '2020-09-10 03:34:51', '1989-05-08', '901d54f3ec14e9b6af43094cf77ffc9a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Vincennes', '94685 ', 'rhoncus dui vel sem sed sagittis nam', false, -0.2498116, 44.8178615, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('omcleeseb9', 'Oswald', 'McLeese', '[email protected]', '2020-06-27 01:03:32', '1986-06-07', '6bfccb602ddc06213f461d5511db1a7b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'La Roche-sur-Yon', '85009 ', 'morbi odio odio', true, -1.4244076, 46.6704712, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('amccromleyba', 'Anton', 'McCromley', '[email protected]', '2021-01-04 11:49:13', '1985-02-01', 'ec663e4fe151d531a838c8b8d845d630', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Fontainebleau', '77304 ', 'odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien', true, 2.6949635, 48.4057628, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vanthiftlebb', 'Vladimir', 'Anthiftle', '[email protected]', '2020-09-29 10:09:04', '1992-05-22', '93ccee94d0b5c79d52b7adae84043d7e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Issy-les-Moulineaux', '92787 ', 'molestie sed justo pellentesque viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et', true, 2.2682399, 48.8373554, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bdonnisonbc', 'Bernarr', 'Donnison', '[email protected]', '2020-06-24 01:06:50', '1994-11-09', 'ca0e5b6b37714659ce42e1cfc25684a5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Vénissieux', '69639 ', 'porttitor lorem id ligula suspendisse ornare consequat lectus', true, 4.8750727, 45.7164219, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cnaisbetbd', 'Chaunce', 'Naisbet', '[email protected]', '2020-09-27 20:43:04', '1996-11-15', '88d3b7bfba3976903c66ee8c6b4aaa4e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Granville', '50404 ', 'fusce lacus purus aliquet at feugiat non pretium quis lectus suspendisse potenti in eleifend quam', true, -1.6029573, 48.8331738, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dsamplesbe', 'Dill', 'Samples', '[email protected]', '2020-02-23 12:37:26', '1996-08-19', '03e8e31b0c9b48f25c4f9120dc4b3004', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Lyon', '69939 ', 'vulputate elementum nullam varius', false, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dairsbf', 'Dahlia', 'Airs', '[email protected]', '2020-07-10 10:15:00', '1988-08-15', '6bed4777cfaab3197eb010f66803aed3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Vesoul', '70030 ', 'convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus', false, 6.2194418, 47.6022755, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('scowgillbg', 'Sybil', 'Cowgill', '[email protected]', '2020-07-21 22:46:29', '1995-06-05', 'ade2194092de8d890c95a5cea168327a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Puget-sur-Argens', '83484 ', '', true, 6.685055, 43.455312, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mosbournebh', 'Marten', 'Osbourne', '[email protected]', '2020-09-25 22:08:25', '1984-06-18', '1040982cf0c42b88be583d0d6d153caf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Toulouse', '31039 ', 'phasellus in felis donec semper sapien a libero', true, -3.2602564, 47.785421, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tregnardbi', 'Templeton', 'Regnard', '[email protected]', '2021-01-10 09:42:29', '1986-11-20', 'b85bfee8bab67c211272ebec81eefc51', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Rungis', '94593 ', 'duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend', false, 2.3572729, 48.7471816, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ntchaikovskybj', 'Neville', 'Tchaikovsky', '[email protected]', '2020-10-24 11:41:12', '1994-06-05', 'f0803f551ba111d3c0897ce2f8077c88', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Puget-sur-Argens', '83484 ', 'vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper', true, 6.685055, 43.455312, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jshoreybk', 'Jarvis', 'Shorey', '[email protected]', '2020-12-01 07:38:51', '1985-03-06', 'a3f192d9c39f2c7973002c13bcf98eee', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Bourges', '18035 ', 'habitasse platea dictumst morbi', true, 1.206057, 47.6632745, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gbarwisbl', 'Garnet', 'Barwis', '[email protected]', '2020-02-24 05:20:51', '1995-08-16', '6d01dd7bd636e8d5800cdaf1d9d26891', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Niort', '79021 ', 'vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper', false, -0.4546217, 46.3194856, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bfratsonbm', 'Bernita', 'Fratson', '[email protected]', '2021-01-08 07:43:06', '1984-01-02', '4065a0ba1a717e88c107eae8f27b5f00', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Lons-le-Saunier', '39004 ', 'curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce', true, 5.5466073, 46.6693059, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fredbournbn', 'Francesca', 'Redbourn', '[email protected]', '2020-04-02 09:21:02', '1985-05-07', 'f8a958153d712887d047b48929e4e58c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Bordeaux', '33100', 'ac enim in tempor turpis', true, -0.5494198, 44.8445542, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sarkellbo', 'Sayre', 'Arkell', '[email protected]', '2020-05-02 01:24:34', '1986-02-08', 'f003496067552eca14ec80c2f61310e6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Aubenas', '07209 ', 'nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor', false, 3.9996505, 44.2136985, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ajuppebp', 'Alysa', 'Juppe', '[email protected]', '2020-11-19 18:34:57', '1992-04-25', '0a1f9bc3e78185d252af74fca8100414', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Metz', '57076 ', 'nisl nunc', true, 6.1807997, 49.116169, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('estatonbq', 'Erinna', 'Staton', '[email protected]', '2020-05-18 22:51:50', '1992-12-30', '62fa0d8ce93355e263d51fd87a73b9d1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Hayange', '57704 ', 'congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat', true, 6.0730865, 49.3305085, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gforbesbr', 'Gustave', 'Forbes', '[email protected]', '2021-01-01 00:06:07', '1992-10-24', 'a58318fb6319191d0ee9de59668b05c7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Troyes', '10606 ', 'amet lobortis sapien sapien non mi integer ac neque duis', false, 4.0710348, 48.3006708, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('larnallbs', 'Lanie', 'Arnall', '[email protected]', '2020-11-07 00:04:33', '1991-12-08', '1474344e9b82c1547fa613cede3d5434', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Brest', '29213 ', 'neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat', false, -4.1166788, 48.6059152, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fphippbt', 'Flinn', 'Phipp', '[email protected]', '2020-03-21 20:11:28', '1983-09-22', '0d389fae11d68f32d85ed0601fc3a495', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Lyon', '69212 ', 'vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('omurtimerbu', 'Obadiah', 'Murtimer', '[email protected]', '2020-07-25 17:30:03', '1984-04-02', '76fa948a1d8d8b8ccd7bca557df09b80', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Tours', '37942 ', 'suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum', true, 5.534063, 45.70734, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ntilbybv', 'Natalie', 'Tilby', '[email protected]', '2020-04-30 10:42:37', '1987-10-05', 'a947c159c737feedbed5957046593291', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Bagnères-de-Bigorre', '65204 ', 'at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper', true, 0.151424, 43.067122, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('scobbbw', 'Shirlene', 'Cobb', '[email protected]', '2020-09-30 10:00:33', '1981-09-21', '8b3794a4f97922dd0728df409eaca371', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Reims', '51715 ', 'lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum', false, -1.8090692, 48.2414942, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('agimenezbx', 'Aubert', 'Gimenez', '[email protected]', '2020-09-08 20:20:51', '2000-02-08', 'da7e01acabc6eed6665ec329955a2234', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Montesson', '78364 ', 'mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl', true, 2.1490664, 48.9078269, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('abalfreby', 'Andonis', 'Balfre', '[email protected]', '2020-07-07 10:35:11', '1992-05-15', '7865fc11ecccdb0a292cdc5456435913', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Mitry-Mory', '77294 ', 'viverra eget congue eget semper rutrum nulla nunc purus', false, 2.612562, 48.9802395, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cblencoebz', 'Cameron', 'Blencoe', '[email protected]', '2020-09-12 18:34:48', '1980-05-05', '445291c60f0fcf74d021348dbd178cf4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Lyon', '69245 ', 'sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar', false, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('adanielczykc0', 'Ammamaria', 'Danielczyk', '[email protected]', '2020-07-20 14:37:50', '1988-04-17', '51381096a94d3018e0b51d4d48be624a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 06', '75270 ', 'in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo', false, 2.3300993, 48.8480625, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hpeggsc1', 'Hewett', 'Peggs', '[email protected]', '2020-06-26 12:23:01', '1984-08-10', 'bbe9c7e6724efe91e395bcd50c455891', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Roubaix', '59073 ', 'sollicitudin ut suscipit a feugiat et eros vestibulum ac', false, 3.1685214, 50.7022235, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cprovenc2', 'Corie', 'Proven', '[email protected]', '2020-10-25 01:43:08', '1991-09-07', '24665e13a6679a50405875d835308181', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Orléans', '45969 ', 'a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices', false, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dvanyashinc3', 'Doris', 'Vanyashin', '[email protected]', '2021-01-11 06:34:50', '1985-10-27', '37079a1bb753cf19d767d3216c31d3a9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Schirmeck', '67137 ', 'nulla neque libero convallis eget eleifend luctus ultricies eu nibh', false, 7.3118635, 48.4990903, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ygoldupc4', 'Yovonnda', 'Goldup', '[email protected]', '2020-05-10 13:45:23', '1996-11-28', '56ed0dc86a5d2890c55e818c3ab5a339', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Montargis', '45204 ', 'donec ut dolor morbi vel lectus in quam fringilla', false, 2.7428365, 48.006844, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ralbistonc5', 'Ruy', 'Albiston', '[email protected]', '2020-08-06 07:00:38', '2001-08-04', '023ec6a575a9c61a2c4ddd6c3f3a01de', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'La Roche-sur-Yon', '85928 ', 'consequat ut nulla sed accumsan felis ut at dolor', true, -1.4087525, 46.6678978, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vgirardinc6', 'Vaughn', 'Girardin', '[email protected]', '2021-02-10 15:00:10', '1984-02-26', 'b160a2f7c561e5c2016ada7cf5d35eb3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Abbeville', '80146 ', 'sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin', false, 1.8573006, 50.1015135, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jquilleashc7', 'Jonie', 'Quilleash', '[email protected]', '2020-02-29 23:28:15', '1986-02-23', 'c8775e70a02d9ca3124e42e9abad3a83', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Nîmes', '30910 ', 'vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat', false, 4.343135, 43.8177168, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ahaggerc8', 'Adler', 'Hagger', '[email protected]', '2021-01-20 16:43:37', '1994-01-28', '268d533f6925358789cb484e4a54766e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Rumilly', '74154 ', 'praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia', false, 5.947966, 45.8630194, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mwolfartc9', 'Mina', 'Wolfart', '[email protected]', '2020-03-10 15:50:10', '1984-03-08', '77364326c952a45d4f9516413667a6e8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Villeurbanne', '69624 ', 'ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis', true, 4.861724, 45.7646846, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('matlingca', 'Mariele', 'Atling', '[email protected]', '2020-07-18 11:51:35', '1994-04-30', '2944f7ed264a3ea19e3bf149b7b12868', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Arpajon', '91295 ', 'lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan', false, 2.2458778, 48.589056, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bgiovannellicb', 'Booth', 'Giovannelli', '[email protected]', '2020-11-12 17:58:06', '1981-01-07', '10b51f45124ece9e4ab72fed978268dc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Paris 16', '75784 ', 'id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet et commodo vulputate', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aalescc', 'Angil', 'Ales', '[email protected]', '2020-08-10 17:32:51', '1997-08-20', '0dbddd6e608e0cafc2f1d3eb5bd4e1ed', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lyon', '69488 ', 'luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kgreystokecd', 'Kit', 'Greystoke', '[email protected]', '2020-12-16 21:26:55', '1993-02-12', '9b9e06e1c537328aa8c585db776931c6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Rungis', '94525 ', 'nibh in', true, 2.3508225, 48.7700185, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mmaplesdence', 'Marven', 'Maplesden', '[email protected]', '2020-06-12 04:44:06', '1981-07-30', 'd2a034acb84285258760daf3f78e64a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Tulle', '19011 ', 'at ipsum ac tellus semper interdum mauris ullamcorper', true, 4.5805038, 44.7016194, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eferrettinicf', 'Ezequiel', 'Ferrettini', '[email protected]', '2021-01-25 00:50:37', '1998-03-31', '37f353246aa596d792305fbb80674728', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Rennes', '35076 ', 'sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam', false, -1.7819266, 48.0976547, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hwedoncg', 'Hall', 'Wedon', '[email protected]', '2020-07-10 06:45:37', '1990-10-20', 'b02c91b57f848c5acd9699c37c7a81af', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Arcachon', '33314 ', 'posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros', true, -1.1648341, 44.6603148, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dowbrickch', 'Diena', 'Owbrick', '[email protected]', '2020-04-18 18:44:06', '1997-06-20', 'e753716dc7b4e426251c1ae018320cf6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Rennes', '35022 ', 'volutpat dui maecenas tristique est', false, -1.7128603, 48.1164447, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cwyldishci', 'Cristie', 'Wyldish', '[email protected]', '2020-04-05 23:37:16', '1990-12-05', '32956f50c29f21a7c1eaf2e2bcee0204', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Lille', '59044 ', 'tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi', true, 3.2344605, 50.6091631, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lambrogellicj', 'Lucho', 'Ambrogelli', '[email protected]', '2020-05-17 18:23:13', '1994-06-27', '09ebf5bd62dab174aade33bf2d128409', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Noisy-le-Grand', '93164 ', 'in', true, 2.5525914, 48.8478808, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rstubleyck', 'Rice', 'Stubley', '[email protected]', '2020-12-08 20:09:16', '1999-05-03', '26ee1212daf8d7e2720064610eec731c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Melun', '77014 ', 'consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris', true, 2.6780176, 48.5129473, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('blorenzetticl', 'Brit', 'Lorenzetti', '[email protected]', '2020-05-24 19:36:29', '1985-07-10', 'f45a75feff54c3e28d398d7c1bb8760b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Le Mans', '72004 ', 'enim blandit mi in porttitor', false, 0.1924459, 47.9956173, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mredfordcm', 'Michell', 'Redford', '[email protected]', '2020-08-24 13:01:13', '1984-03-06', '7b390ee5a72502c8a6cfe8174f3c502c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Noyon', '60406 ', 'in ante', true, 1.0859715, 49.145018, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bgoudardcn', 'Benedikt', 'Goudard', '[email protected]', '2020-06-13 12:50:43', '1990-07-19', '881882a9aa4c35d51899589f233d2e5b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Reims', '51074 ', 'sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam', false, 4.0935629, 49.336, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ptanzigco', 'Piotr', 'Tanzig', '[email protected]', '2020-10-29 08:56:10', '1989-09-18', '0fba3f84d5955e54a9dc3df360b051d0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Beauvais', '60006 ', 'volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque', false, 2.0887457, 49.4263976, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aanthoniescp', 'Annabal', 'Anthonies', '[email protected]', '2020-12-10 06:00:02', '1984-02-16', 'b34b73aa5db90e0f1a94a3b01af19538', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Lens', '62304 ', 'lacus at velit vivamus', false, -0.4601725, 46.280212, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ioshavlancq', 'Isadore', 'O''Shavlan', '[email protected]', '2020-04-15 16:30:03', '1983-02-26', '9a49cb5c4c2207e0c94acd503d77c57d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Bourges', '18934 ', 'metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in', true, 1.206057, 47.6632745, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pdomonkoscr', 'Parke', 'Domonkos', '[email protected]', '2020-04-08 01:24:41', '1996-11-25', 'ed858b27892862014e2fc5d090920c01', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Arras', '62036 ', 'venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit', false, 2.7425682, 50.2837307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tcheatlecs', 'Trip', 'Cheatle', '[email protected]', '2020-08-29 11:50:06', '1997-02-22', 'adcef5eee85b2b4bc3370f662060f2b2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Montluel', '01129 ', 'vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis', true, 5.0634248, 45.8359543, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('llucianoct', 'Leoine', 'Luciano', '[email protected]', '2020-10-02 10:26:55', '1992-01-27', 'f6bcbc561e3cefb7cdf34ebbad369395', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Marcellin', '38164 ', 'at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat', true, 5.3067172, 45.1749035, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vtaylourcu', 'Vina', 'Taylour', '[email protected]', '2020-09-29 08:04:08', '2001-01-20', 'c66f00cf6564f7e6a4d67436b277b8ca', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Évry', '91982 ', 'suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut', true, 2.4381665, 48.6277459, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ghunnybuncv', 'Gaylene', 'Hunnybun', '[email protected]', '2020-07-27 17:51:25', '1994-02-25', 'e2d882de09001c78b8f9e4ee17fc755e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Domont', '95445 ', 'tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem', true, 2.3496109, 49.034461, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbooleycw', 'Rozina', 'Booley', '[email protected]', '2020-07-12 04:08:48', '1987-07-23', '0f771a16e89533169ed34f958e7974a7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Paris 01', '75054 ', 'praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dtrowlecx', 'Davin', 'Trowle', '[email protected]', '2020-07-07 03:09:45', '1993-10-16', '145c9fcc111af701c0fe6ed64254bbb6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Nantes', '44200', 'sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel', false, -1.5411258, 47.2014677, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dgiacubbocy', 'Daryn', 'Giacubbo', '[email protected]', '2020-08-28 01:15:33', '1993-11-25', 'c2ebf7e9d2a5772f253d2b96832d30d1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Besançon', '25004 ', 'mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo', false, 5.9675963, 47.2215999, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tcaliforniacz', 'Theo', 'California', '[email protected]', '2020-04-14 18:01:13', '1995-12-21', '436dfe923ad750af4bb0279ee59cb986', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Paris 13', '75643 ', '', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ggamond0', 'Gibb', 'Gamon', '[email protected]', '2020-08-05 22:51:06', '1997-08-01', '7fa0d28d6924295206453a809ba07ed4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Lyon', '69339 ', 'semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam nam tristique tortor eu', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('stussained1', 'Simone', 'Tussaine', '[email protected]', '2020-11-16 21:04:33', '1987-04-12', '6784e891929fbb7e7f1277fe0aca7013', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Montpellier', '34934 ', 'sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis', true, -0.8453268, 47.3752386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sscarsbrookd2', 'Siobhan', 'Scarsbrook', '[email protected]', '2020-09-08 14:03:12', '1997-11-09', '12b58383fc0bf6f8ea616e7f10949f20', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Créteil', '94039 ', 'lectus suspendisse potenti in eleifend quam a odio in hac', false, 2.4549884, 48.7803815, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('blambind3', 'Berti', 'Lambin', '[email protected]', '2020-12-16 17:56:25', '1998-12-10', '535c88c0788497fd7a94d23da60ebc6e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Nîmes', '30028 ', 'mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget', true, 4.3662321, 43.8324929, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fseftond4', 'Fernanda', 'Sefton', '[email protected]', '2020-05-06 04:34:49', '2001-11-18', 'af4abfc8daff7bb3328be846f432372d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Limoges', '87041 ', 'rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas', true, 3.5276642, 45.521519, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gcaveed5', 'Giuditta', 'Cavee', '[email protected]', '2021-01-11 07:38:44', '2000-01-25', 'aec0d81de90d3ea2b8543337a01381c9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Domont', '95334 ', 'massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est', false, 2.3236877, 49.0285391, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wdolohuntyd6', 'Winifred', 'Dolohunty', '[email protected]', '2020-08-13 07:43:55', '1980-04-25', '4fc65f73412890fa911e680ed2664a6e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Roubaix', '59073 ', 'mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere', false, 3.1685214, 50.7022235, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rgallawayd7', 'Roderich', 'Gallaway', '[email protected]', '2021-01-31 02:52:46', '1990-07-07', '6adb50c6c8a91c921b575c30a07f62aa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Castelsarrasin', '82104 ', 'sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut', false, 1.1011089, 44.0643415, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pchadwickd8', 'Pennie', 'Chadwick', '[email protected]', '2020-09-25 04:14:45', '1996-07-30', '0e37ba8f8a58f31b0079de8434ed555a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Vierzon', '18104 ', 'pede justo eu massa donec', false, 2.0598182, 47.2265307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cpalmerd9', 'Claudetta', 'Palmer', '[email protected]', '2021-01-18 02:56:18', '1984-12-31', '0bc94df8fa56187f108c7555973cdb14', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Avallon', '89204 ', 'posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus', true, 3.91302, 47.49116, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eeasmanda', 'Elmore', 'Easman', '[email protected]', '2021-02-06 17:31:54', '1980-04-19', 'bb5ba8298afa39de46151197b997be27', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Marseille', '13464 ', 'arcu sed augue aliquam erat volutpat in congue etiam', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zvallerdb', 'Zacharias', 'Valler', '[email protected]', '2020-03-07 20:05:03', '1989-05-06', '0346efd6115ec6516b4350fdcc122a9f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Bayonne', '64109 ', 'at dolor quis odio consequat varius integer ac leo pellentesque', true, -1.4703339, 43.4968733, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmineardc', 'Lenna', 'Minear', '[email protected]', '2020-12-29 10:51:13', '1989-09-04', '128f57432f92d1a14a8655c3b7058a08', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Marseille', '13269 ', 'at lorem integer tincidunt ante', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wforesightdd', 'Wilhelm', 'Foresight', '[email protected]', '2020-08-07 01:14:15', '1981-03-08', '8bd4b05a98c9dc15920d6f1c7f0817ba', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13393 ', 'accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lgoggande', 'Lilas', 'Goggan', '[email protected]', '2021-01-25 14:25:46', '1997-06-25', 'c2f2b06ecc218115fad249b6bf2d37e7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Millau', '12104 ', 'nulla sed accumsan felis ut at dolor quis odio consequat varius', false, 3.0792713, 44.1012172, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wlimbrickdf', 'Win', 'Limbrick', '[email protected]', '2020-10-09 21:18:06', '2001-09-28', '4e0251b872682506ad6a967830bacc0e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Roscoff', '29688 ', 'proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi', false, -3.7612141, 48.0381485, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('larnholddg', 'Lucien', 'Arnhold', '[email protected]', '2021-01-10 14:22:34', '1997-08-23', '892a6d3a5053e19b4412634e12f67908', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Carrières-sur-Seine', '78424 ', 'semper', false, 2.16555, 48.911035, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vwyrilldh', 'Vicki', 'Wyrill', '[email protected]', '2021-01-23 04:58:26', '1995-10-30', '55229089d2e28f92c181c5261f6739df', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Beauvais', '60006 ', 'nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque', true, 2.0887457, 49.4263976, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jlipparddi', 'Joanna', 'Lippard', '[email protected]', '2020-08-19 04:16:37', '1994-09-07', 'b04461a8aaa211035594947bd02e6679', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Bourges', '18013 ', 'leo maecenas', false, 1.206057, 47.6632745, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lflemmichdj', 'Lucila', 'Flemmich', '[email protected]', '2020-04-27 11:27:20', '1994-10-12', '3e29dab405df06c829884c50c1303209', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Noyelles-sous-Lens', '62247 ', 'est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris', true, 2.8830762, 50.4217341, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gdaggerdk', 'Genevieve', 'Dagger', '[email protected]', '2020-10-07 14:00:45', '1987-03-21', '766f32fe265bc4a36c1e62f6206d7e9e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Colmar', '68004 ', 'in consequat ut nulla sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque', false, 7.3469006, 48.0724737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ahaversondl', 'Arlyn', 'Haverson', '[email protected]', '2021-01-21 12:22:50', '1982-07-10', '2d1bb26f45237c696777ea9dadafa9d9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'La Seyne-sur-Mer', '83514 ', 'nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices', false, 5.8567016, 43.1147983, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jtrinerdm', 'Jemmy', 'Triner', '[email protected]', '2020-04-16 13:07:33', '1982-12-14', 'ed513869a7fc51d837480846dfaa4733', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Montaigu', '85614 ', 'eu interdum eu tincidunt in leo maecenas pulvinar lobortis est', false, -1.7555399, 48.1779574, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lfeatherbiedn', 'Lorrie', 'Featherbie', '[email protected]', '2020-11-01 23:29:36', '1984-01-16', '19b2289c1c86380139c1caf0b8a2f2d3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Niort', '79042 ', 'viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam', true, -0.4546217, 46.3194856, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cpetowdo', 'Carver', 'Petow', '[email protected]', '2020-11-06 12:45:25', '1991-05-20', '3e7acbb441752a851e90b104fc56dbea', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Marseille', '13253 ', 'ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jvaildp', 'Justen', 'Vail', '[email protected]', '2020-11-18 18:31:08', '1995-04-04', '9a91bb78be7cc57932717f705e765baf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Futuroscope', '86964 ', 'neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras mi pede malesuada in imperdiet', true, 0.3697581, 46.6698573, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('boxborrowdq', 'Brander', 'Oxborrow', '[email protected]', '2020-04-21 20:31:59', '1992-04-26', '7439e5bf7fc11ecb9059cf576b3f1b30', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Lille', '59034 ', 'sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus', true, 3.086469, 50.5429237, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hbynertdr', 'Heloise', 'Bynert', '[email protected]', '2020-10-30 17:30:03', '2000-12-31', 'abaa9b0290267e580a40fe46ec900021', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Niort', '79072 ', 'mattis pulvinar nulla pede ullamcorper augue', false, -0.4546217, 46.3194856, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hdeancywillisds', 'Harwell', 'de''-Ancy Willis', '[email protected]', '2020-12-22 17:37:06', '1991-08-16', '17c0559b130acc2ba5ce8721129f1d71', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Aurillac', '15004 ', 'vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus', false, 2.4396467, 44.9263486, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ewesterndt', 'Emmet', 'Western', '[email protected]', '2020-03-04 04:37:39', '1983-05-22', '1702c31895822bc13baec8467176ca8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Strasbourg', '67928 ', 'maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris', false, 7.7744139, 48.5966574, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('acharitydu', 'Adrianna', 'Charity', '[email protected]', '2020-04-03 16:11:32', '1986-07-27', 'cae28705252dc90665c28ec14675718e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Taverny', '95251 ', 'penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue', false, 2.2178783, 49.0344853, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nwebendv', 'Nikkie', 'Weben', '[email protected]', '2020-12-04 03:57:10', '1998-09-08', 'b86871fa4a9d2351be8a681da26c59d2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13343 ', 'vitae ipsum aliquam non mauris morbi', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bosannedw', 'Bancroft', 'Osanne', '[email protected]', '2020-05-04 19:49:07', '1981-04-20', '1ea315c58a7af9ae2d0784d4a7cc0c2f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Cergy-Pontoise', '95652 ', 'in hac habitasse', true, 2.0362602, 49.1025395, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('plynamdx', 'Petronilla', 'Lynam', '[email protected]', '2020-11-21 14:56:32', '2000-04-22', 'd9edcfffd0f8ad04b8e7d1de6f52a5fb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Saint-Quentin-en-Yvelines', '78925 ', 'nunc nisl duis bibendum felis', true, 2.0433063, 48.7845598, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('smuckeendy', 'Sig', 'Muckeen', '[email protected]', '2021-02-13 15:53:46', '1981-10-17', '7870a692143b1d643187d1a7b36f03d0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Avallon', '89204 ', 'praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat', false, 3.91302, 47.49116, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dfolksdz', 'Danila', 'Folks', '[email protected]', '2020-11-13 04:59:40', '1986-03-06', 'ba498a5f46777f93c59daff49c069a48', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Nancy', '54046 ', 'semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis', false, 6.17445, 48.689836, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lvilee0', 'Leda', 'Vile', '[email protected]', '2020-09-10 23:14:18', '1981-10-15', 'd02865e252872e60436d1c40ea3212bf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Agen', '47923 ', 'lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien', false, 0.6352163, 44.2171148, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('amaccafferkye1', 'Abran', 'MacCafferky', '[email protected]', '2021-02-11 23:06:35', '1993-10-25', '9d982ff42960d2dd8708c8fc3dbb0869', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Melun', '77004 ', 'porta volutpat erat quisque erat eros viverra eget', false, 2.7912279, 48.6366985, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rhassette2', 'Raul', 'Hassett', '[email protected]', '2020-12-13 07:39:17', '1987-10-08', '576a2fa220921c00d6e150e4c18c71aa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Nice', '06173 ', 'pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod', false, 7.2559678, 43.6953508, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mczadlae3', 'Miquela', 'Czadla', '[email protected]', '2020-11-28 20:54:59', '1997-05-31', 'c3465506cb789a431ed7f2498dcd91fa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Arpajon', '91295 ', 'diam cras pellentesque volutpat dui maecenas tristique est et', false, 2.2458778, 48.589056, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fjodere4', 'Felicio', 'Joder', '[email protected]', '2020-09-03 12:23:27', '1996-01-13', '9af40a27b7bdb20c493c7055d87225cd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Bondy', '93144 ', 'non quam nec dui luctus', true, 4.9979479, 46.3410256, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hcartmalee5', 'Happy', 'Cartmale', '[email protected]', '2020-04-03 05:23:24', '1998-10-06', 'b4ca7880fe17e48013d7aef2e437ec45', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Troyes', '10004 ', 'eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci', false, 4.0710348, 48.3006708, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('adocwrae6', 'Ariel', 'Docwra', '[email protected]', '2021-01-06 01:06:27', '1992-11-28', 'be8f2cba8dae515be7cb7439fe995895', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Bobigny', '93737 ', 'erat fermentum justo nec condimentum neque sapien placerat ante', true, 2.8898334, 49.4648362, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kespadatere7', 'Kristos', 'Espadater', '[email protected]', '2020-05-03 03:25:42', '1998-10-29', '6851eef3a8ecb727d3f4f542a9063f82', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Montpellier', '34087 ', 'nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed', true, 3.8403455, 43.6218385, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('amctaggarte8', 'Ailsun', 'McTaggart', '[email protected]', '2020-02-18 10:24:50', '1991-07-11', 'c9c2c0dd6d97c56cb02dcb20c5e98367', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Vierzon', '18104 ', 'nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat', false, 2.0598182, 47.2265307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('iconochiee9', 'Inglis', 'Conochie', '[email protected]', '2020-05-01 18:36:28', '1996-08-29', 'd376ddc72af902a9185301cb0bb57360', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Saint-Avertin', '37554 ', 'lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante', false, 0.7259705, 47.3640936, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ddennantea', 'Dallis', 'Dennant', '[email protected]', '2021-01-20 07:04:51', '1998-05-03', '000c6f75259c62c4c5b4bd2bcb866b5a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Lorient', '56326 ', 'duis', true, 4.9157564, 44.8671415, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lredfieldeb', 'Lawry', 'Redfield', '[email protected]', '2020-11-19 06:48:46', '1998-08-28', 'ba312bd0538569e99791e977d908e134', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nanterre', '92892 ', 'sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl', true, 2.2829955, 48.9098794, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aventrisec', 'Ashli', 'Ventris', '[email protected]', '2020-06-03 12:19:42', '1993-10-01', 'cb921e0ba1b05b70dc19d9de1a4835de', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Saint-Denis', '93285 ', 'quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo', false, 2.3425328, 48.922709, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bpinnigared', 'Berke', 'Pinnigar', '[email protected]', '2021-02-05 05:53:44', '1989-08-11', '375eb3fc0581d2e17a98ed48e1f1ec27', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Noailles', '60434 ', 'blandit ultrices enim lorem ipsum dolor sit amet consectetuer', false, -0.1518541, 44.3324131, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kskinneree', 'Kendre', 'Skinner', '[email protected]', '2020-08-28 10:40:38', '1984-04-19', 'd2e1d4bbbb96ca3660d0ad8b0d822acb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Marne-la-Vallée', '77708 ', 'orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien', false, 2.6302303, 48.8351221, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('acraisfordef', 'Arvy', 'Craisford', '[email protected]', '2020-06-06 19:41:40', '1981-01-06', '9cb509a763c3a5e8fdc886f47ce54204', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Massy', '91881 ', 'risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor', false, 4.6072477, 46.4830794, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fclowneyeg', 'Freeland', 'Clowney', '[email protected]', '2020-04-12 13:45:41', '1983-10-16', 'acbc173be3e53131691e4b9a333887b8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Nemours', '77794 ', 'et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis', true, 2.7122802, 48.2678882, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bguieleh', 'Broderic', 'Guiel', '[email protected]', '2020-08-07 12:17:30', '2001-08-14', 'f7602ae70ae81e8828b7437a7b27a2ae', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Paris 12', '75604 ', 'pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dkaemenaei', 'Daniele', 'Kaemena', '[email protected]', '2020-07-19 14:32:35', '1998-08-28', '5b2b469b761e6305a68c96d6aca18bc4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Tarascon', '13155 ', 'convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus', true, 3.8481099, 44.1640152, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ineavesej', 'Ingeborg', 'Neaves', '[email protected]', '2020-05-23 11:04:12', '1993-03-14', '0b7610d52bfd48404837cfc0f479822b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 13', '75659 ', 'tristique', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mbonnesenek', 'Minny', 'Bonnesen', '[email protected]', '2020-08-16 21:37:45', '1996-01-26', 'b3c6a34478cf241b1bb01049b3763199', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nancy', '54076 ', '', false, 6.17445, 48.689836, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bmonniel', 'Bernarr', 'Monni', '[email protected]', '2020-04-21 03:59:30', '1992-08-21', 'eb4eedc591489c204b4400a916fe6e46', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Agen', '47923 ', 'eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod', true, 0.6352163, 44.2171148, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hgottschalkem', 'Hillier', 'Gottschalk', '[email protected]', '2020-09-11 18:49:27', '1985-07-25', '3d9fa9d4d80be788db1d336ca54fe487', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Cherbourg-Octeville', '50109 ', 'rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget', true, -1.6272462, 49.6355347, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gbatalinien', 'Gay', 'Batalini', '[email protected]', '2020-02-25 08:27:26', '1995-07-16', 'f5185bc45061d0d5b2e13f878539d9f7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Vannes', '56004 ', 'congue risus semper porta volutpat quam pede lobortis ligula sit amet', false, -2.7887335, 47.666307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mbourdiseo', 'Merrielle', 'Bourdis', '[email protected]', '2020-03-01 02:07:58', '1997-03-15', '075808c1cdcdd96f5bd631d43d901043', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Martigues', '13503 ', 'ac consequat metus', true, 5.0434979, 43.411002, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hmcewanep', 'Hersch', 'McEwan', '[email protected]', '2020-09-17 21:53:08', '1989-11-13', 'f6ddd2628cd7d3c865ac70817bd6785c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Saint-Jouan-des-Guérets', '35435 ', 'ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at', false, -1.9817089, 48.6011478, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bturbefieldeq', 'Borg', 'Turbefield', '[email protected]', '2020-05-13 06:02:24', '1982-01-16', '67c284fd99110cf3a5ba15ecb9217ebd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Châteaurenard', '13834 ', 'arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci', false, 2.0391896, 49.2066705, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('egoldstoner', 'Erl', 'Goldston', '[email protected]', '2020-04-01 04:37:51', '1999-07-16', 'de67d8283bfe4f160ebf579b3d73d5b2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Boé', '47555 ', 'ultrices posuere cubilia curae nulla', true, 0.63968, 44.190357, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmcmanamenes', 'Dov', 'McManamen', '[email protected]', '2020-08-24 06:52:49', '1983-01-09', '30ed1057519fc554e8cf51ca374da8fb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Pamiers', '09104 ', 'convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum', false, 1.6196332, 43.1162469, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bkitleeet', 'Beau', 'Kitlee', '[email protected]', '2020-04-30 09:37:11', '1984-07-24', 'd761ca54fd3cac93509ee55b6d5f6bcc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Nevers', '58017 ', 'eget rutrum at lorem integer tincidunt ante', false, 3.1506645, 46.9874505, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdemongeoteu', 'Megen', 'Demongeot', '[email protected]', '2020-02-24 11:13:15', '1991-09-09', 'c5a052e8034082767f808a1315506734', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Lyon', '69265 ', 'felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bcastillaev', 'Bryon', 'Castilla', '[email protected]', '2020-04-13 16:13:26', '1989-07-26', 'd524eeeb465be3c5dfd000cc90881a83', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Marseille', '13316 ', 'justo sit', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jgrinsdaleew', 'Jennee', 'Grinsdale', '[email protected]', '2020-07-08 12:39:30', '1987-06-20', '2ccd3933df9a9a3a64c03d896f4a8821', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Orléans', '45979 ', 'vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis', true, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('chewellex', 'Colette', 'Hewell', '[email protected]', '2020-04-25 09:42:09', '1990-08-07', '4d8c49dad39c9955dd44d6b85dc0e323', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Cergy-Pontoise', '95011 ', 'etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit', true, 2.0721605, 49.0344736, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rmeneoey', 'Roscoe', 'Meneo', '[email protected]', '2020-09-06 08:10:42', '1995-02-17', 'de0af838cb2295be1ba5ad61d7f458d6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Bernay', '27309 ', 'tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus', true, 0.5957159, 49.0871049, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lzannettiez', 'Luther', 'Zannetti', '[email protected]', '2020-10-08 06:47:35', '1999-06-02', '6a11a99e6eb5eb374d1e7fe76654629f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Avignon', '84913 ', 'nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac', false, 1.820875, 47.5113895, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hfearnillf0', 'Huberto', 'Fearnill', '[email protected]', '2020-05-15 23:44:32', '1986-10-26', '912f4056fbcc8041f49546419d801c19', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris 01', '75054 ', 'interdum', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ccogdonf1', 'Charmane', 'Cogdon', '[email protected]', '2021-01-23 21:44:33', '2000-01-19', 'c2e0a8434f68ea37584ef8908fcf6b29', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Quimper', '29102 ', 'ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc', true, -4.1020654, 47.9962116, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kroosf2', 'Karlens', 'Roos', '[email protected]', '2020-12-20 04:53:07', '1986-09-13', 'ce10f59c5e798cba7b49ec5ca4f04de2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Saint-Laurent-Blangy', '62055 ', 'mauris eget', false, 2.801689, 50.300542, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kradbandf3', 'Kath', 'Radband', '[email protected]', '2020-02-27 22:01:02', '2001-01-11', '0d2bed62016ff804d720e5b478597f1d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Tours', '37016 ', 'vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper', false, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sjahnischf4', 'Shandy', 'Jahnisch', '[email protected]', '2020-12-30 03:14:29', '1999-07-30', 'fbaacc10991bb349f3510deeca123b34', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Épernay', '51209 ', 'nec sem duis aliquam convallis nunc proin at turpis', true, 3.979371, 49.0371335, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('falsfordf5', 'Fraser', 'Alsford', '[email protected]', '2021-01-31 17:55:09', '1984-10-24', 'd62307f94defb4ce8a9f9ed1a7d253fc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Saint-Herblain', '44815 ', 'turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum', true, -1.605738, 47.221906, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('unannettif6', 'Urson', 'Nannetti', '[email protected]', '2020-07-06 04:10:12', '2000-07-15', '3507bd7e06fc38e11a116aff457ec79d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Tulle', '19011 ', 'ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae', false, 4.5805038, 44.7016194, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lhaffordf7', 'Lilas', 'Hafford', '[email protected]', '2020-08-06 23:02:23', '2001-12-02', '7256275d7f70f13b92976d7e7c06c525', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Saint-Quentin-en-Yvelines', '78925 ', 'nunc rhoncus dui vel sem sed sagittis nam congue risus semper', true, 2.0433063, 48.7845598, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dayshfordf8', 'Davis', 'Ayshford', '[email protected]', '2020-12-26 04:28:01', '1983-12-16', '52c9f1c1be14a809523c16ae81ffbe84', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Hayange', '57704 ', 'venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus', false, 6.0730865, 49.3305085, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mlassetterf9', 'Marlon', 'Lassetter', '[email protected]', '2021-01-20 01:25:37', '1999-07-09', '15f25b47012fee7c29f7c2ed8f3dbaac', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Blois', '41015 ', 'orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat', true, 1.3155028, 47.594843, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lcaesarfa', 'Lurline', 'Caesar', '[email protected]', '2020-11-08 07:05:49', '1983-07-16', 'ba72e23ab17b549b3f8d03061351a994', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Paris La Défense', '92056 ', 'ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris', false, 2.2372792, 48.890054, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fbranstonfb', 'Fredericka', 'Branston', '[email protected]', '2020-09-26 19:04:30', '1988-12-19', 'b6068d3141ced91629a72f0eb6edea21', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 02', '75104 ', 'nam dui proin leo odio porttitor id consequat in consequat ut', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kisacssonfc', 'Kitti', 'Isacsson', '[email protected]', '2021-02-11 03:55:52', '1994-06-28', 'ed0b699d09567517389b7ba02b550ac6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Boé', '47555 ', 'eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum', false, 0.63968, 44.190357, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dosheefd', 'Damiano', 'O''Shee', '[email protected]', '2020-06-15 23:14:21', '1992-12-02', '4534808b93f5bd5e9e24dbd6fc87ae8b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Pont-à-Mousson', '54704 ', 'bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl', false, 6.0376291, 48.9308651, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hmellerfe', 'Hurleigh', 'Meller', '[email protected]', '2020-03-25 19:43:38', '2001-07-06', '8eb744d8455e0d3ef0fd65f6c173c41e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Créteil', '94019 ', '', true, 2.4882911, 48.7980515, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cstantonff', 'Carrie', 'Stanton', '[email protected]', '2020-07-11 19:11:44', '1990-08-01', 'c5c7d64e522a3c639f14751b48eb9b3f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Bourg-en-Bresse', '01009 ', 'facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel', true, 5.1140864, 46.2501181, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cswainsonfg', 'Cass', 'Swainson', '[email protected]', '2021-01-24 15:20:47', '1991-07-21', '6fdca89b333f73a31b6b98af3802d81a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Montauban', '82037 ', 'turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula', true, 1.378056, 44.025555, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kspillerfh', 'Katerina', 'Spiller', '[email protected]', '2020-04-30 08:45:48', '1995-06-02', '71364f85dfe03a6dc13a999d6daf0566', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Levallois-Perret', '92684 ', 'sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu est congue elementum in', true, 2.8814002, 49.2272998, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jaronstamfi', 'Jeremiah', 'Aronstam', '[email protected]', '2020-09-20 03:21:53', '1986-06-18', 'c3577b19b794302b0751e07aa65b613a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Marseille', '13393 ', 'donec dapibus duis at velit eu est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien placerat', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ajoaofj', 'Aldous', 'Joao', '[email protected]', '2020-05-22 09:32:12', '1990-01-19', 'f415647012e28869587fe9dd8f191f23', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Ouen', '93487 ', 'elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas', false, -1.1457859, 46.5993244, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmaryskafk', 'Lenette', 'Maryska', '[email protected]', '2020-02-26 10:17:06', '1996-07-24', '88d8720cebfeae7fd13a56bdb3f2c022', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Nîmes', '30935 ', 'tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae', false, 4.3520438, 43.8447278, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kgrzelczykfl', 'Karol', 'Grzelczyk', '[email protected]', '2020-12-18 12:59:59', '1999-12-05', 'd305ea5db9f55b0d814160b58b2ab565', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Bagnolet', '93175 ', 'dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi', false, 2.5726619, 45.494149, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sgillisonfm', 'Siward', 'Gillison', '[email protected]', '2020-06-15 09:56:12', '1981-02-04', '619f26c2e050983e085096cf80619389', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Lunel', '34404 ', 'nulla sed vel enim sit amet', true, 4.131084, 43.6793979, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('criddichfn', 'Con', 'Riddich', '[email protected]', '2020-05-11 05:36:00', '1992-08-15', 'b7c59a09471b066904497c7024991568', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Bressuire', '79304 ', 'phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget', false, -0.5451553, 46.8118134, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bmcvanefo', 'Birdie', 'McVane', '[email protected]', '2020-06-26 01:55:45', '2001-08-09', 'e6d32e12c7682d6637100588aac1a0b3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Épinal', '88020 ', 'erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris', false, 6.4140214, 48.2576572, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbarettefp', 'Roxie', 'Barette', '[email protected]', '2020-04-20 12:59:50', '1988-10-09', '9bc91c56924fb3021c2908b388d496ba', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Marcq-en-Barœul', '59704 ', 'elit proin risus praesent lectus vestibulum quam sapien varius ut blandit non interdum', true, 3.0751792, 50.667396, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jmottfq', 'Jo', 'Mott', '[email protected]', '2020-07-27 06:17:03', '1986-08-22', '0538bbf559d9b3bb4a8fe980d01784a7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Caen', '14018 ', 'dolor sit amet consectetuer adipiscing elit proin interdum mauris non', true, -0.3553901, 49.1845517, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbillingefr', 'Roselle', 'Billinge', '[email protected]', '2020-08-25 17:26:27', '1985-11-27', '5f7f74241b6a8f0f17b2a7561b24dbdc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Paris 17', '75837 ', 'ante vestibulum', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nkhominfs', 'Norbie', 'Khomin', '[email protected]', '2020-07-06 02:40:31', '1983-01-25', '4c4d9a0c1984de084e5cc058469a34fc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Pantin', '93504 ', 'quam turpis adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at', false, 4.26286, 45.7608815, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lvaarft', 'Lola', 'Vaar', '[email protected]', '2020-02-19 05:30:58', '1998-12-08', '7f9a8e8fd7870cc7c522a1f89f1d51d9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Toulouse', '31004 ', 'eget massa tempor convallis nulla neque libero convallis eget', false, 1.4525313, 43.6085373, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kaddeycottfu', 'Kelly', 'Addeycott', '[email protected]', '2021-01-02 16:17:30', '1981-01-24', '7d923c1bb09fb45f743637b2c69531a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Lyon', '69488 ', 'vitae consectetuer eget rutrum at lorem integer', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('romarafv', 'Ralina', 'O''Mara', '[email protected]', '2020-11-23 05:59:33', '2000-11-19', '616b5b1d0435884758235a01b2dbd562', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Strasbourg', '67029 ', 'hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis', false, 7.7459273, 48.5597333, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('oairesfw', 'Olivier', 'Aires', '[email protected]', '2020-12-18 09:02:36', '1996-01-30', '86d7379964c4da712e82d1db23171c60', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Dijon', '21072 ', 'turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id', true, 2.5135985, 45.2977605, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kdebruynfx', 'Kurtis', 'De Bruyn', '[email protected]', '2020-12-16 14:19:43', '1985-07-31', '09021b84d0fff91416d86460df7b4621', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Orléans', '45933 ', 'vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero nullam sit amet', false, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ckerwinfy', 'Chic', 'Kerwin', '[email protected]', '2020-08-29 00:27:31', '1992-06-25', '4cfdbc2aa41676c648a154f8fe6a6e64', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Rouen', '76101 ', 'fringilla rhoncus mauris enim', false, 1.0598119, 49.4382375, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ascaddingfz', 'Aubrie', 'Scadding', '[email protected]', '2020-10-30 03:33:04', '1997-11-14', 'b536b88e6879c83241b5a2bc1bc015e9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'Belgium', 'Bruxelles', '1050', 'ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae', true, 4.3766927, 50.8235717, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('volliarg0', 'Veronica', 'Olliar', '[email protected]', '2020-11-05 15:11:14', '1980-12-13', 'b92ecc4929c76935d897b02b6d214b8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Angers', '49023 ', 'cubilia', false, 2.3501981, 48.8693156, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pwilflingg1', 'Paige', 'Wilfling', '[email protected]', '2020-10-20 05:19:02', '1999-01-07', '660a6cea1fe5d0875be523e79b117c65', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Carrières-sur-Seine', '78424 ', 'quis turpis eget', true, 2.16555, 48.911035, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dduigang2', 'Dav', 'Duigan', '[email protected]', '2020-07-05 02:43:42', '1989-11-27', '7c68a45e531cbfc10aa6368e50cc8546', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Niort', '79042 ', 'tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis', false, -0.4546217, 46.3194856, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ibindong3', 'Irena', 'Bindon', '[email protected]', '2020-12-08 21:28:58', '1994-01-04', '1e233e2c408035365cc4fd2065693fe5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Corbeil-Essonnes', '91815 ', 'mi pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque', true, 2.4626489, 48.5975789, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eleadg4', 'Evered', 'Lead', '[email protected]', '2020-09-10 00:42:49', '1998-04-24', 'bca4a260310843a275a24280e205d683', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lyon', '69339 ', 'ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in', false, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rruslingg5', 'Rube', 'Rusling', '[email protected]', '2020-12-11 06:19:55', '2000-12-24', '7ecca0f5673889721b03847210f7e81b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Croix', '59967 ', 'viverra pede ac diam cras pellentesque volutpat dui maecenas tristique est et tempus semper est quam pharetra magna ac consequat metus', true, 0.277316, 47.6252225, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('chazlegroveg6', 'Cirstoforo', 'Hazlegrove', '[email protected]', '2020-12-10 15:57:48', '2001-05-27', '51192bda736d02660945e20abf30d1a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Paris La Défense', '92077 ', 'sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam', true, 2.2372792, 48.890054, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mdilkeg7', 'Morna', 'Dilke', '[email protected]', '2020-06-05 03:08:58', '1982-09-22', 'f544000428ea13915602eebf91402595', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Toulon', '83092 ', 'habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget', true, 5.9294606, 43.1283145, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mmarkieg8', 'Michaela', 'Markie', '[email protected]', '2020-07-30 04:51:43', '1997-04-13', '99927298bbe0628b22be998caf570bb1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Villefranche-sur-Mer', '06234 ', 'arcu libero rutrum ac lobortis vel dapibus at', true, 7.310776, 43.701416, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aivachyovg9', 'Alli', 'Ivachyov', '[email protected]', '2020-08-14 15:53:06', '1980-09-14', '3eb1419ac6de9235463f3c0c32d4de3e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Val-de-Reuil', '27109 ', 'augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat', true, 1.207968, 49.2752229, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mliddellga', 'Morty', 'Liddell', '[email protected]', '2020-08-27 06:25:42', '1983-03-09', '11d0ae6c3503ef0f7c83d5825325c464', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Bordeaux', '33100', 'interdum mauris ullamcorper', false, -0.5494198, 44.8445542, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lgalliergb', 'Lemuel', 'Gallier', '[email protected]', '2020-08-30 07:31:09', '1998-05-13', 'aba66a2bae75681159d4ab1a4e9d9b87', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Tours', '37016 ', 'quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet', false, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('clavistegc', 'Claudina', 'Laviste', '[email protected]', '2020-11-17 16:08:12', '1981-09-18', 'd2012909a17df2b76b28de066c320424', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Bourgoin-Jallieu', '38319 ', 'dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit', false, 5.2733732, 45.5839189, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dclewarthgd', 'Dwight', 'Clewarth', '[email protected]', '2020-10-16 05:47:12', '1998-11-24', 'ef5e2765c19c38d3137faf2b32114e56', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Sélestat', '67609 ', 'hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat', true, 7.4592542, 48.2787299, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bbrendege', 'Barbara-anne', 'Brende', '[email protected]', '2020-07-23 04:11:00', '1998-02-14', '225080033ea0a1602cd2335fc7c9e404', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Rungis', '94636 ', 'odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla', true, 2.3536083, 48.7381259, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('veaglestongf', 'Valentino', 'Eagleston', '[email protected]', '2021-02-06 02:30:20', '1986-09-30', '854d8cdf091c3982c2d3879100a8a80b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Niort', '79031 ', 'tortor sollicitudin mi sit amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla', false, -0.4738335, 46.1839042, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mmouldsgg', 'Margaretha', 'Moulds', '[email protected]', '2021-02-03 19:34:42', '1982-12-02', 'c87219267e370cdd45147df3a194e28a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 02', '75080 ', 'sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ritzcovichchgh', 'Rafaelia', 'Itzcovichch', '[email protected]', '2020-02-17 22:26:50', '1989-08-24', '644fe2189eb3d9a56546e407473cdd2c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Dijon', '21019 ', 'non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis', false, 2.5135985, 45.2977605, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('shansmangi', 'Sonni', 'Hansman', '[email protected]', '2020-12-08 02:36:55', '1998-06-16', '5e0245f8854a6255c7d8d5f410a8d7bb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Bonneuil-sur-Marne', '94384 ', 'blandit nam nulla integer pede justo lacinia', false, 2.5030826, 48.7717343, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bcubingj', 'Blake', 'Cubin', '[email protected]', '2020-02-28 19:35:56', '1989-01-01', 'b8ddcdd79d4ee10687735fc8045a8ba9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Angoulême', '16015 ', 'tellus semper interdum mauris ullamcorper purus sit', false, 0.140606, 45.644891, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wmonsongk', 'Whitman', 'Monson', '[email protected]', '2020-02-17 09:41:36', '1980-07-06', '6eafcfc04451925a6e2dce8391ce2215', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Blois', '41942 ', 'sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis', false, 1.3155028, 47.594843, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hbreegl', 'Hinda', 'Bree', '[email protected]', '2020-11-07 23:38:16', '1990-11-01', '66cb8f3e3edfe32dfdd55fa6b04db607', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Guebwiller', '68504 ', 'tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae mattis nibh ligula', false, 7.286872, 47.9122021, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmurrishgm', 'Lacee', 'Murrish', '[email protected]', '2021-01-15 19:35:34', '1989-06-01', '361abfafc4f3928d0872820af3707c24', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Seynod', '74604 ', 'non mi', false, 6.087112, 45.875212, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('csilbersakgn', 'Christy', 'Silbersak', '[email protected]', '2020-04-30 17:06:33', '1997-07-19', 'd544ae03e60a08a79e533160aa8ab442', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Levallois-Perret', '92309 ', 'lacus morbi sem', true, 2.2936854, 48.8904258, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rashburnergo', 'Rina', 'Ashburner', '[email protected]', '2020-12-12 04:17:32', '1995-06-10', 'bdc6297f275103d3757ed8e61c8d3f8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Mulhouse', '68064 ', '', true, 7.540987, 47.8215045, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dhedgeleygp', 'Dorothy', 'Hedgeley', '[email protected]', '2021-01-01 23:15:58', '1999-11-11', '69e6531ceaaecd4cb12df2472f4ce5db', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Cannes', '06403 ', 'erat nulla tempus vivamus in felis eu sapien cursus', true, 7.0362389, 43.5418913, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hscadinggq', 'Hermione', 'Scading', '[email protected]', '2021-02-14 12:34:48', '1996-10-27', '8016b969e9e2f7992c48a98709695c9a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Locminé', '56504 ', 'vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci', true, -2.8357471, 47.8890778, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbaldonigr', 'Catherin', 'Baldoni', '[email protected]', '2020-10-20 13:00:39', '1980-11-22', '5efdebf48232b25be0292ff43dbc354c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Rungis', '94598 ', 'nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque', true, 2.3508225, 48.7700185, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wwalesags', 'Whitney', 'Walesa', '[email protected]', '2020-06-30 12:05:53', '1996-09-22', 'b246860be35d6dce7758d60d94ff2658', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Chenôve', '21304 ', 'nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non pretium quis lectus', false, 5.0131814, 47.2876246, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmcgrealgt', 'Dorelle', 'McGreal', '[email protected]', '2020-05-01 17:17:22', '1983-02-24', '44661686c7ec0061a5dd63427b2fcd81', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Strasbourg', '67928 ', 'pellentesque quisque porta volutpat erat quisque erat eros viverra eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien', false, 7.7744139, 48.5966574, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ldeftiegu', 'Laverna', 'Deftie', '[email protected]', '2020-10-18 07:21:48', '1999-09-05', 'db56b6d4604dc77b30c217e84d30430d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 15', '75756 ', 'dui luctus rutrum nulla tellus in sagittis dui vel nisl', true, 2.2582125, 48.8466523, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gralphgv', 'Granville', 'Ralph', '[email protected]', '2020-06-19 11:58:04', '1992-05-14', 'd5d265b21afa67b8f241012d802c26d4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Nantes', '44200', 'ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam', true, -1.5411258, 47.2014677, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dmcgillegholegw', 'Daune', 'McGilleghole', '[email protected]', '2020-06-26 15:13:32', '2000-08-24', 'd28e61b60598a09a8f26d580f7495f5e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Paris 16', '75784 ', 'sed magna at', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('olobgx', 'Olga', 'Lob', '[email protected]', '2020-08-04 12:13:43', '1999-08-29', '73aeb3cdd5504f5e8daf2cfdae9498ef', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Nîmes', '30006 ', 'neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna', true, 4.3662321, 43.8324929, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rcordellgy', 'Ruben', 'Cordell', '[email protected]', '2020-07-09 02:40:04', '1997-07-09', '35b64c0041b95d88df72592be7cfc74f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Rueil-Malmaison', '92848 ', 'neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit', false, 2.166848, 48.8708001, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('challergz', 'Cal', 'Haller', '[email protected]', '2020-08-30 04:26:25', '1982-06-09', 'e10efa51a96ceaa5f41e93c620cb3748', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Roscoff', '29688 ', 'quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante', false, -3.7612141, 48.0381485, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jhunstonh0', 'Jose', 'Hunston', '[email protected]', '2020-10-05 10:23:30', '1989-05-08', '2fce2f6ac146699bd56df0512ae198d0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Amiens', '80891 ', 'ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus', false, 2.3000664, 49.8921732, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tfromanth1', 'Terrel', 'Fromant', '[email protected]', '2020-03-19 18:33:57', '1983-03-05', '18251293f56883d879c4f44d2d54e091', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Coutances', '50204 ', '', false, -1.6509128, 49.2706048, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hlarwellh2', 'Hettie', 'Larwell', '[email protected]', '2020-02-29 05:50:46', '1990-03-15', '9d10211083d20ebdfdc73e1c0c1aafc6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Courtaboeuf', '91959 ', 'in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien', true, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kclemmitth3', 'Kiah', 'Clemmitt', '[email protected]', '2020-06-21 12:49:55', '1994-02-01', '2c31176b50bf69c345d886eb4578c737', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Épinal', '88084 ', 'dolor vel est', true, 6.4788333, 48.1967872, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kpoppyh4', 'Katherina', 'Poppy', '[email protected]', '2020-08-12 13:45:31', '1999-02-26', '02ed2916ff0c10ef2194f9dd201d74b3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Albi', '81017 ', 'posuere metus vitae ipsum aliquam non mauris morbi non', true, 2.141706, 43.9235435, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mrosash5', 'Madlen', 'Rosas', '[email protected]', '2020-12-28 22:46:05', '1995-03-03', '4404110b211acf1072e22e4da355adc8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Villeneuve-la-Garenne', '92398 ', 'aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio', true, 2.3265854, 48.9270449, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('amatskevichh6', 'Aarika', 'Matskevich', '[email protected]', '2021-01-14 09:32:42', '2001-09-18', '9fc4845d7a281306c36b91421559191a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Lille', '59715 ', 'nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu', true, 2.0308233, 44.1675867, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aitzhakh7', 'Anet', 'Itzhak', '[email protected]', '2020-11-20 17:00:30', '1994-08-07', '70918bbfa06532b27a1a8eb9e27ce3e6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Niort', '79083 ', 'et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere', false, -0.4546217, 46.3194856, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cvasiljevich8', 'Corabel', 'Vasiljevic', '[email protected]', '2020-04-23 12:43:16', '1996-08-10', 'a4fe56a4e91cdf885807c109f0901bb5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Issoire', '63504 ', 'tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl', true, 3.2448508, 45.5436558, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('shansedh9', 'Sebastien', 'Hansed', '[email protected]', '2020-07-12 00:05:07', '1987-01-18', '5fb0a2690815cc5484533c5ba3d75029', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Marseille', '13568 ', 'interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus', true, 5.3563232, 43.2894617, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tkalbha', 'Tessa', 'Kalb', '[email protected]', '2020-11-08 12:39:54', '1992-01-21', '167f878ae55851b740de6a86d38e3409', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Maisons-Alfort', '94704 ', 'amet lobortis sapien sapien non mi integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis', true, 2.4347009, 48.8039832, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jsawneyhb', 'Johny', 'Sawney', '[email protected]', '2020-11-03 05:58:29', '1984-06-24', '4801d4c7e4919795092f247df2a59dc9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Avignon', '84092 ', 'ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus', true, 4.8762265, 43.9770581, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rleguayhc', 'Rhianon', 'Leguay', '[email protected]', '2020-02-29 14:44:16', '1986-12-17', 'e41b5fcbef08fe2b39e47acaacc89e18', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Nice', '06102 ', 'luctus ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor', true, 7.2559678, 43.6953508, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eseeberthd', 'Ettore', 'Seebert', '[email protected]', '2020-06-27 05:53:31', '1993-10-24', 'bd64043bfa909a7d342351e6fe57a7a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Roubaix', '59100', 'mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing', false, 3.1845673, 50.6930818, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('erichterhe', 'Edouard', 'Richter', '[email protected]', '2021-02-10 14:47:39', '1996-08-12', 'bddb65f505e9b0466920df2de3a73102', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Nanterre', '92742 ', 'orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum', false, 2.2829955, 48.9098794, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nsandlinhf', 'Nil', 'Sandlin', '[email protected]', '2021-02-06 04:49:42', '1987-10-07', '83f4dd9b91d30a192b6fd59aa3975bd7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Saint-Denis', '93285 ', 'vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus', false, 2.3425328, 48.922709, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('blanceleyhg', 'Billye', 'Lanceley', '[email protected]', '2020-03-16 17:51:20', '1982-03-09', '656cd840b1f70aefa2fe276672a3fcd0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Bonneuil-sur-Marne', '94384 ', 'lorem ipsum dolor sit amet', true, 2.5030826, 48.7717343, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('afreanhh', 'Angelo', 'Frean', '[email protected]', '2020-10-10 12:50:34', '2002-02-03', 'bcbbbc6adb8f0b11b680b742de19b45e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Montpellier', '34064 ', 'vulputate justo in blandit ultrices enim lorem', true, 3.319109, 43.862902, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jpatronhi', 'Jemima', 'Patron', '[email protected]', '2020-07-28 09:34:37', '1992-02-17', 'd9bc03894e595fbea012595d0bfe6ad2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Seynod', '74604 ', 'interdum in ante vestibulum', false, 6.087112, 45.875212, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('olanhamhj', 'Orazio', 'Lanham', '[email protected]', '2021-01-13 17:37:40', '2000-12-14', '240909629c4b438f1b50d363051fa7d0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Annecy', '74009 ', 'integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla', false, 6.1266746, 45.922009, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('smurdenhk', 'Standford', 'Murden', '[email protected]', '2020-12-29 02:25:52', '1988-12-09', '2383962c67bead935849c9b3b204084d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Rennes', '35914 ', 'sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed', false, 2.317187, 43.1237608, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ltuckleyhl', 'Luci', 'Tuckley', '[email protected]', '2021-02-13 04:48:44', '2000-02-12', '10443701971d85c9031b72b1d52c20e8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Évry', '91049 ', 'odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia nisi venenatis tristique fusce congue diam id ornare imperdiet sapien urna', true, 2.4381665, 48.6277459, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('egironhm', 'Elva', 'Giron', '[email protected]', '2020-04-02 13:40:28', '1985-05-24', '80dbefce70c179ba5463e77fef40ca39', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Brétigny-sur-Orge', '91229 ', 'at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum', false, 2.3023878, 48.6066876, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rmessamhn', 'Rubin', 'Messam', '[email protected]', '2020-04-01 03:08:31', '1984-09-14', 'e75bead32c6296b6ecb313c8b313a4f0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lyon', '69206 ', 'leo', true, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wkempeho', 'Willie', 'Kempe', '[email protected]', '2020-10-24 06:40:46', '1986-06-01', 'c7e1a2565975726cdb75b655184a18f0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Paris 19', '75954 ', '', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rrustadgehp', 'Rickie', 'Rustadge', '[email protected]', '2020-02-17 03:26:23', '1987-03-11', '106adbb61cc39aa4fe6e7f3a24e723ad', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'Belgium', 'Péruwelz', '7604', 'non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non', false, 3.5567339, 50.5474037, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wcoggleshq', 'Wittie', 'Coggles', '[email protected]', '2021-02-11 03:26:03', '1997-11-05', '06787c0bf6140a1eb75dd2c9234c17f1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Sainte-Luce-sur-Loire', '44984 ', 'donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh quisque', true, -1.4666288, 47.2747492, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nrudeyeardhr', 'Nels', 'Rudeyeard', '[email protected]', '2021-01-21 21:07:04', '2001-12-12', '1b64f216a0c7a6d25cb91d2b4eedec53', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Nantes', '44911 ', 'aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros suspendisse accumsan tortor quis turpis', false, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wboarerhs', 'Wilfred', 'Boarer', '[email protected]', '2020-10-21 16:30:18', '1991-12-02', '19b82acc3ed3af8880420008390648ff', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Roanne', '42304 ', 'ultricies eu nibh quisque id justo sit amet sapien dignissim vestibulum vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus', false, 1.663862, 45.161017, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jhorstedht', 'Jaime', 'Horsted', '[email protected]', '2020-08-11 20:59:36', '1997-11-24', '19eded088ec9bce0514eb0fd726568e5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Armentières', '59425 ', 'dolor morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum sit amet cursus id turpis integer aliquet massa id lobortis convallis tortor risus dapibus', true, -0.9147447, 47.5619629, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aauburyhu', 'Alvera', 'Aubury', '[email protected]', '2021-01-03 08:06:42', '1990-10-20', '980b2b583be71db0841712a45d174600', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Orly aérogare', '94542 ', 'vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere', true, 2.3694452, 48.7282419, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('asingyardhv', 'Aime', 'Singyard', '[email protected]', '2020-03-08 03:54:52', '2000-09-21', 'c0e57b3bee17dfd579ce235383f47e72', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Évry', '91009 ', 'habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi', true, 2.4381665, 48.6277459, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cmeacehw', 'Colene', 'Meace', '[email protected]', '2020-05-16 22:59:36', '1981-06-30', '089943f2170493d739a233ad14a83967', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Nanterre', '92024 ', 'dictumst morbi vestibulum velit id pretium iaculis diam', false, 2.215722, 48.8865404, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('nspeekshx', 'Nels', 'Speeks', '[email protected]', '2020-12-01 13:30:51', '1983-10-28', 'ce2358be997a28bfab1b93e724efb0c1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Melun', '77004 ', 'auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut odio cras', true, 2.7912279, 48.6366985, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cparkynshy', 'Carmina', 'Parkyns', '[email protected]', '2021-02-05 14:39:24', '1995-11-23', '65d7680155e712055894bf576413190f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lunel', '34404 ', 'tortor sollicitudin mi sit', false, 4.131084, 43.6793979, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('srivelinhz', 'Sheila-kathryn', 'Rivelin', '[email protected]', '2020-09-06 12:26:51', '1986-07-28', '096d12e97f009f53499b726a9a7cbc8c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Aubenas', '07204 ', 'tristique est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante', true, 3.9996505, 44.2136985, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pfauloi0', 'Peadar', 'Faulo', '[email protected]', '2020-04-13 18:17:05', '1986-04-21', 'fc79b7361be6bdda8b996ca0cc2d8f22', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Bourg-en-Bresse', '01004 ', 'suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus', false, 4.934624, 45.9033267, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tjacobbei1', 'Tallia', 'Jacobbe', '[email protected]', '2020-09-09 03:27:28', '1999-06-02', 'ff9058b325036f57511cd91cd0e6cd32', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Nancy', '54939 ', 'pellentesque quisque porta volutpat', true, 3.2530151, 46.3410071, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('djandoureki2', 'Devin', 'Jandourek', '[email protected]', '2020-03-15 01:29:42', '1984-03-07', 'b06ce20c4cb467c263ec8664af34e8e0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Caluire-et-Cuire', '69649 ', 'venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit eu', true, 4.8427596, 45.7967858, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ctunesii3', 'Caroline', 'Tunesi', '[email protected]', '2020-05-03 07:32:36', '1991-09-26', '73880ba67c453fe112ab7f77a265828d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Nantes', '44101 ', 'non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce', false, -1.6901492, 47.17532, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wdecourceyi4', 'Willie', 'de Courcey', '[email protected]', '2020-08-05 21:57:27', '1993-08-02', 'ee8be8f3ccdb092ca2b1d08199a89187', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Carpentras', '84204 ', '', false, 5.0852479, 44.0264621, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rtiltei5', 'Robinetta', 'Tilte', '[email protected]', '2020-06-14 15:56:59', '2000-07-25', '8d3d180ff6fb04e3f363fcc21d9c82b8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Courtaboeuf', '91948 ', '', true, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('msappsoni6', 'Marquita', 'Sappson', '[email protected]', '2020-09-27 07:14:21', '1994-06-12', '2e1da2a509531ea1eca71fe63dce5d4f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Troyes', '10606 ', 'felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis', false, 4.0710348, 48.3006708, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hreicharzi7', 'Huberto', 'Reicharz', '[email protected]', '2021-01-19 21:12:51', '1986-05-19', 'f055aad9b2d45785a0593a25d8092cbc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Draguignan', '83300', '', true, 6.464993, 43.5377269, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rbrockhursti8', 'Renae', 'Brockhurst', '[email protected]', '2020-12-11 17:04:03', '1999-11-15', '624bb73f3e84bfd65d28a227f1881a19', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Cahors', '46091 ', 'at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede venenatis non sodales', false, -1.813332, 47.772714, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sdoggarti9', 'Suzette', 'Doggart', '[email protected]', '2020-10-20 11:05:53', '1998-07-03', 'f2bd451f6b24d06f6560e40e787ef83e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Rennes', '35033 ', '', false, -1.695391, 48.120484, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmancktelowia', 'Lodovico', 'Mancktelow', '[email protected]', '2021-02-13 03:13:05', '2001-04-12', '4c50288c1ed9d7400b6aff9a081f1166', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 17', '75853 ', '', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eharrowingib', 'Elmer', 'Harrowing', '[email protected]', '2020-08-28 11:10:26', '1984-01-11', '48d39f43baf4a242e740708c4c880db1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Mazamet', '81204 ', 'erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget', false, 2.3764372, 43.4899263, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ashaveic', 'Anestassia', 'Shave', '[email protected]', '2020-02-19 23:18:48', '1996-12-13', 'c65bd453a08b731741069664ed8aae11', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'La Gacilly', '56209 ', 'vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra', false, -2.1084626, 47.7809616, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('steckid', 'Sergei', 'Teck', '[email protected]', '2020-12-16 10:02:26', '1999-06-20', '8387e3177233630b32ac8761d4b21db1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Metz', '57052 ', 'nulla ac enim in tempor turpis nec euismod scelerisque quam turpis adipiscing lorem vitae', true, 6.1807997, 49.116169, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mhuffaie', 'Mag', 'Huffa', '[email protected]', '2020-10-18 08:25:49', '1982-09-16', 'ab59458c9c9f3e4195ba75409aa556bc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Nantes', '44302 ', 'in congue etiam justo etiam pretium iaculis justo in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum', false, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lmulvaghif', 'Les', 'Mulvagh', '[email protected]', '2020-07-06 15:20:50', '2001-04-09', 'def11dc4ec40432602c5ebfa12c3bfc1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Arras', '62036 ', 'magna at nunc commodo placerat praesent blandit nam nulla integer', true, 2.7425682, 50.2837307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kisabellig', 'Kerrin', 'Isabell', '[email protected]', '2021-01-23 14:38:12', '1997-06-22', '1c5356c70550dd9f78267bd62cc2781a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Rungis', '94598 ', 'imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem', true, 2.3508225, 48.7700185, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sdilksih', 'Sigismundo', 'Dilks', '[email protected]', '2020-05-26 07:16:08', '1991-10-19', 'f9d1afbdae5c6674f7959535736bc46a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'La Gacilly', '56209 ', 'ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non ligula pellentesque ultrices phasellus id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit', true, -2.1084626, 47.7809616, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ivasyutinii', 'Issiah', 'Vasyutin', '[email protected]', '2020-03-13 11:23:41', '1999-09-07', '52c1821fc438df0877d0ff6cda11688f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Boulogne-Billancourt', '92660 ', 'donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec', false, 2.2372823, 48.830394, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('araffanij', 'Aubrey', 'Raffan', '[email protected]', '2020-03-13 21:08:04', '1990-08-23', '39640db475cecb78c356cf60d991c3c3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Rungis', '94593 ', 'ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit', false, 2.3572729, 48.7471816, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hpresdeeik', 'Heddi', 'Presdee', '[email protected]', '2021-01-17 07:50:12', '1980-07-07', '939967f350cc3c25f3e30d961b8998eb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Moissy-Cramayel', '77554 ', 'nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam', true, 2.5921846, 48.627474, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gcastelainil', 'Griffy', 'Castelain', '[email protected]', '2020-08-11 07:07:11', '1986-11-09', '8811f9f4eccdd12ca3264bdaaf4cbb64', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Bry-sur-Marne', '94364 ', 'id', false, 2.5198901, 48.835233, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bgallafantim', 'Boyd', 'Gallafant', '[email protected]', '2020-11-15 00:17:17', '1985-09-10', '7b044e18f6f155a8829c0d6f4260f8a9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Croix', '59967 ', 'consequat lectus in est', true, 0.277316, 47.6252225, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jcrennellin', 'Jessamine', 'Crennell', '[email protected]', '2020-09-20 15:16:11', '1989-06-30', '4465f7191ebc35b0a8d02ba250d21ecd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Caen', '14040 ', 'orci mauris lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis', false, -0.3907558, 49.1931313, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rmosconeio', 'Rand', 'Moscone', '[email protected]', '2020-03-21 09:16:40', '1991-10-12', '74bd6e12c17c25d9f99ad2675d4de568', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Maisons-Alfort', '94704 ', 'eleifend quam a odio in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt', true, 2.4347009, 48.8039832, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aswinyardip', 'Alecia', 'Swinyard', '[email protected]', '2020-05-23 00:28:49', '1999-10-06', '9acfcf5b9be04221371789d7ce3e9eef', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Perpignan', '66050 ', 'ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae donec pharetra magna vestibulum aliquet ultrices erat tortor sollicitudin mi sit amet lobortis sapien sapien', true, 2.8797149, 42.6962642, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cjossiq', 'Cassie', 'Joss', '[email protected]', '2020-07-21 00:33:06', '1989-09-14', '75e0766ded370272bd3580ba4202504a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Saint-Denis', '93209 ', 'integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla', true, 2.3458952, 48.9352465, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bdobeyir', 'Brandise', 'Dobey', '[email protected]', '2020-06-19 18:41:14', '1984-02-23', '5306273499b21f501010c8b747094fb1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'Belgium', 'Bouillon', '6834', 'et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis', false, 5.1214901, 49.8417042, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jschuleris', 'Josey', 'Schuler', '[email protected]', '2020-08-06 00:01:07', '1982-12-30', '312cfb91e05b87cf9d45ac62336b3935', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris La Défense', '92907 ', 'ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet', false, 2.2458912, 48.8887915, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('llangranit', 'Leann', 'Langran', '[email protected]', '2020-10-24 18:17:37', '1985-06-09', 'bfc57ad21b3601e259560b7859e52148', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Le Mans', '72080 ', 'fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus ultricies eu nibh', true, 0.1924459, 47.9956173, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tansteadiu', 'Trumaine', 'Anstead', '[email protected]', '2020-10-07 04:24:10', '1987-06-17', '1d7abf5e0167da504c81290371c51583', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Périgueux', '24016 ', 'id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta', true, 0.7237613, 45.1800316, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jmcmoyeriv', 'Juline', 'McMoyer', '[email protected]', '2020-10-09 18:16:09', '1987-07-03', '5ca02e528da2d4ba4c639d8d9f666bb1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Rennes', '35009 ', 'rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam', false, -1.7128603, 48.1164447, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bleucharsiw', 'Brodie', 'Leuchars', '[email protected]', '2020-07-26 17:44:37', '1995-03-01', '10612079113e2d48d15ca37c90cd1fea', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Perpignan', '66050 ', 'a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus', false, 2.8797149, 42.6962642, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('etrautix', 'Eolanda', 'Traut', '[email protected]', '2020-03-30 00:28:23', '1998-01-26', 'de1e7db5af68025d73636752fef4b8a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Créteil', '94972 ', 'et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum', false, 2.4699259, 48.7997482, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kquaifiy', 'Kara', 'Quaif', '[email protected]', '2020-05-31 14:34:06', '1994-09-09', '53af637dd0be0326e1c9c9afcc6006a2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Paris 11', '75128 ', 'aliquam lacus morbi quis tortor', true, 2.3237084, 48.8610504, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ppontainiz', 'Pepe', 'Pontain', '[email protected]', '2021-01-20 09:33:52', '1998-05-26', '4c743fb4d0344820a0e439d4b3300749', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Tours', '37032 ', 'mauris viverra', true, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bblackboroughj0', 'Batsheva', 'Blackborough', '[email protected]', '2020-11-27 15:11:21', '1991-08-12', '671ee0e6563d0a35e242449a6b889c60', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Sainte-Geneviève-des-Bois', '91709 ', 'tempus vel pede morbi porttitor lorem id ligula suspendisse', false, 2.3269318, 48.6405537, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('phaggettj1', 'Perren', 'Haggett', '[email protected]', '2020-09-22 14:09:53', '1992-11-11', '962faf7d8b7099b7efba6ffe11d42335', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Maisons-Laffitte', '78604 ', '', true, 2.1463759, 48.9449573, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dbergstramj2', 'Dennie', 'Bergstram', '[email protected]', '2020-04-19 02:51:40', '1990-04-18', '6d1bda189a1987e75ebbc2d569e3d9c8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Berck', '62604 ', 'in congue etiam justo etiam pretium iaculis justo in', true, 1.5608271, 50.398362, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bwandsj3', 'Benjamin', 'Wands', '[email protected]', '2020-03-07 01:25:26', '1989-10-05', 'b7a3edfb490a26fce2082b495a4f73d3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Oullins', '69924 ', 'neque duis bibendum morbi non', false, 4.8096702, 45.7173944, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bspurgeonj4', 'Barbaraanne', 'Spurgeon', '[email protected]', '2020-03-29 12:51:44', '1988-12-14', 'c16d4febfd97612203104c65cf57c9a6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Blaye', '33394 ', 'quisque erat eros viverra eget', true, -0.662941, 45.126841, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gabatellij5', 'Grace', 'Abatelli', '[email protected]', '2020-07-13 23:58:51', '1996-10-17', '585a5bae46f379821740fdf69be06617', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Tulle', '19011 ', 'eleifend luctus ultricies eu nibh quisque id', true, 4.5805038, 44.7016194, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('agilbeej6', 'Angelia', 'Gilbee', '[email protected]', '2020-10-16 13:02:21', '1999-01-27', '1017169505d64a3038cfe283973d9a17', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Caen', '14008 ', 'morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus nec molestie sed justo pellentesque viverra pede ac diam', true, -0.4889547, 49.285973, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('relkinsj7', 'Roxanna', 'Elkins', '[email protected]', '2020-05-24 01:00:59', '1982-12-20', 'a83812463b74727b8b799fc15b4db19e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Quimper', '29563 ', 'libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras in purus eu magna vulputate luctus cum sociis', true, -4.1116493, 47.9894676, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jgrancherj8', 'Justin', 'Grancher', '[email protected]', '2020-06-19 04:46:55', '1995-12-22', '42a6752b932c34aa45820d837518e381', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Le Blanc-Mesnil', '93591 ', 'integer ac neque duis bibendum morbi non quam nec dui luctus rutrum nulla tellus in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non', false, 2.4888946, 48.9475246, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pwoollcottj9', 'Patin', 'Woollcott', '[email protected]', '2020-11-11 05:41:35', '1993-04-28', '8919fbaa767f7db2a552a61435721b9a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Saint-Péray', '07139 ', 'phasellus sit amet erat nulla tempus vivamus in felis eu', true, 4.8413855, 44.9447526, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('klaxtonneja', 'Kristy', 'Laxtonne', '[email protected]', '2021-02-12 04:52:40', '1987-10-16', '33df07d034496fceefaead5b0a37aa66', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Clermont-Ferrand', '63057 ', 'et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut', false, 3.0742866, 45.783131, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dventonjb', 'Deeanne', 'Venton', '[email protected]', '2020-09-22 12:25:32', '1991-06-15', '04b201aa972ead8068e968a19a195d22', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Chantilly', '60637 ', 'quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac', true, 2.6981496, 47.3036891, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('blebarrjc', 'Bennett', 'Le Barr', '[email protected]', '2020-05-27 05:07:42', '1981-06-01', '98d4184d48d32c79765c8369223207f1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Arras', '62025 ', 'ultrices libero non mattis pulvinar nulla pede ullamcorper augue a suscipit nulla elit ac nulla sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in', true, 2.7425682, 50.2837307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sfieldhousejd', 'Symon', 'Fieldhouse', '[email protected]', '2020-07-26 11:21:27', '1988-12-01', '91cb605b3c2b9ac736de9866538736b4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Blois', '41976 ', 'cursus urna ut tellus', true, 1.3155028, 47.594843, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('emcdillje', 'Ellyn', 'McDill', '[email protected]', '2020-05-16 01:56:23', '1984-10-21', '3431fc31f6b9cd99fb10b61527371fe1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Rennes', '35076 ', '', false, -1.7819266, 48.0976547, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bschwandjf', 'Bidget', 'Schwand', '[email protected]', '2020-09-28 02:28:04', '1981-09-20', 'bb5a5b0fcb03c2c65bd20cae7be2ccf6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Saint-Étienne', '42963 ', 'posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere', false, -0.8926089, 43.1598675, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pkittmanjg', 'Phineas', 'Kittman', '[email protected]', '2020-03-16 19:07:57', '1999-04-08', '83c4d6f70d4fab6fa8ddbf335318620a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Langres', '52204 ', 'amet consectetuer adipiscing elit', false, 5.2787119, 47.797708, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dsollonjh', 'Dosi', 'Sollon', '[email protected]', '2020-05-08 10:31:55', '1985-03-13', '86903907726361c49044c550cd033a02', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Alès', '30104 ', 'dui maecenas tristique est et tempus', false, 4.0057868, 44.0570174, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rduftonji', 'Rosemary', 'Dufton', '[email protected]', '2020-04-11 11:03:22', '1988-10-07', '9221d6c8ee283e4b908dc7d9e6186519', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Niort', '79031 ', 'in felis donec semper sapien a libero nam dui proin', true, -0.4738335, 46.1839042, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('maronjj', 'Milzie', 'Aron', '[email protected]', '2020-04-27 22:09:51', '2001-10-24', '15ef458d5a899fccca80010a7cbcdf96', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Lattes', '34975 ', 'ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque', true, 1.6250849, 43.586204, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sclissjk', 'Silvie', 'Cliss', '[email protected]', '2020-12-23 05:53:58', '1981-12-27', '0fc7c7dcd33b58f2b23b91cdf426261e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lille', '59865 ', 'lacinia erat vestibulum sed magna at nunc commodo placerat praesent', true, 2.0308233, 44.1675867, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mcloutjl', 'Modesta', 'Clout', '[email protected]', '2020-05-11 19:36:32', '1992-02-05', 'cfe2adcbf2298b9b953ff87446b9bf94', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Flers', '61104 ', 'nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at', false, -0.5692441, 48.7438842, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jsoanesjm', 'Jae', 'Soanes', '[email protected]', '2020-12-31 04:50:27', '1991-02-04', '7b2e4004ef71411d9c69c860999aa176', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marne-la-Vallée', '77708 ', 'suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum', false, 2.6302303, 48.8351221, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ssiggersjn', 'Sidonia', 'Siggers', '[email protected]', '2020-05-21 18:37:56', '1999-05-17', '8fc8a09a857a2aff1ce0912326a8a574', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Pamiers', '09104 ', 'congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis', true, 1.6196332, 43.1162469, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gimpeyjo', 'Gabbey', 'Impey', '[email protected]', '2021-01-11 16:30:53', '1980-07-30', 'f2b21a71742a412539b12b24a4bfbe68', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Cran-Gevrier', '74964 ', 'est et tempus semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in faucibus orci', false, 6.1072, 45.9075, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fgillebridejp', 'Frannie', 'Gillebride', '[email protected]', '2020-10-20 00:44:23', '1998-05-03', '578c54e9ec0ea5999d721e7a51024eda', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Aulnay-sous-Bois', '93604 ', 'aliquam augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo', false, 2.4943891, 48.9318625, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('stextonjq', 'Susie', 'Texton', '[email protected]', '2020-12-29 06:55:35', '1992-12-07', '8daae2133cd784c728880f5497fb4928', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Avon', '77214 ', 'cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et', false, 2.5130988, 48.9741782, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('talflatjr', 'Theodora', 'Alflat', '[email protected]', '2021-02-05 10:00:10', '1984-01-24', 'b546ffd4e133d268fd77d0564aec1524', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Melun', '77050 ', 'orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi', true, 2.6780176, 48.5129473, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mgowingjs', 'Myrtle', 'Gowing', '[email protected]', '2021-02-09 00:28:32', '1993-09-04', 'ee3f007658c7306efea357c7e7cc002b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lille', '59784 ', 'eget congue eget semper rutrum nulla nunc purus phasellus in felis donec semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla', true, 2.0308233, 44.1675867, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mjerwoodjt', 'Mab', 'Jerwood', '[email protected]', '2020-11-07 01:23:46', '1983-02-27', 'ced66b749c81d85604691ef84e6bb156', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Maixent-l''École', '79404 ', '', false, -0.201305, 46.4064605, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cjanczakju', 'Claudette', 'Janczak', '[email protected]', '2020-09-22 22:16:01', '1987-10-18', '4bd27c6da81244e839a109dd07a71bdb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Romans-sur-Isère', '26109 ', 'accumsan tortor quis turpis sed ante vivamus tortor', true, 5.0682113, 45.0478491, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rmumbyjv', 'Rosabelle', 'Mumby', '[email protected]', '2020-12-29 19:46:52', '1985-06-27', 'd68934706fb298a287773febc43aeeb9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Hyères', '83404 ', 'amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod', false, 6.1356499, 43.1286974, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mbishelljw', 'Maximilian', 'Bishell', '[email protected]', '2020-05-14 20:15:36', '1997-06-11', 'b124c5b384c6929307f30dcb0fd3a311', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Caen', '14030 ', 'faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor morbi vel lectus in quam fringilla rhoncus mauris enim', true, -0.4440154, 49.2221045, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lgoatmanjx', 'Lula', 'Goatman', '[email protected]', '2020-09-23 03:16:38', '1987-09-28', 'eaf7465fca0c9558352eb23dd294286b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Mazamet', '81204 ', 'hac habitasse platea dictumst maecenas ut', false, 2.3764372, 43.4899263, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('carnejy', 'Carilyn', 'Arne', '[email protected]', '2020-12-10 08:31:07', '1998-07-24', 'aace17fe66766ce866ee48f51463d509', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Plérin', '22194 ', 'nisl ut volutpat', false, -2.7586364, 48.529165, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lvanthoogjz', 'Lizabeth', 'Van T''Hoog', '[email protected]', '2020-05-01 11:54:19', '1988-04-06', '9bc307edd8501b90693700504def4e36', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Plaisir', '78379 ', 'lacinia sapien quis libero nullam sit amet turpis elementum ligula vehicula consequat morbi', true, 1.967221, 48.8179158, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jaucockk0', 'Judy', 'Aucock', '[email protected]', '2020-05-18 02:46:50', '2000-07-20', 'e23b4d361ae0d22d8cc63b4a0dbca133', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Mundolsheim', '67454 ', 'ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl', false, 7.7212169, 48.6443358, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dyallowleyk1', 'Deena', 'Yallowley', '[email protected]', '2020-10-19 22:51:54', '1983-08-27', 'a09eb470f167342dbb31af226c2e8c74', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Courtaboeuf', '91965 ', 'ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus', false, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tnutleyk2', 'Trefor', 'Nutley', '[email protected]', '2020-03-26 05:30:59', '1993-05-06', '1c16f059d548f4711bf010adeae2cfd4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Cannes', '06403 ', 'dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis', false, 7.0362389, 43.5418913, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tredonk3', 'Tymon', 'Redon', '[email protected]', '2021-01-24 18:23:48', '1991-12-15', 'a20b353cf5de5c4eec973b3590936d91', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Nanterre', '92024 ', 'rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit', false, 2.215722, 48.8865404, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hsattefordk4', 'Hetti', 'Satteford', '[email protected]', '2020-11-25 16:59:19', '1984-01-30', 'ccaa14b22312341f959db21467835d74', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Lomme', '59468 ', 'ridiculus mus etiam vel', false, 4.596042, 44.819386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mleallk5', 'Marice', 'Leall', '[email protected]', '2020-06-25 20:08:46', '1996-09-12', 'bce690737c659aaf94bf7c56b6163f6c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Grenoble', '38066 ', 'consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id luctus', true, 5.7218985, 45.1934857, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kkeningtonk6', 'Kelcy', 'Kenington', '[email protected]', '2020-11-30 21:58:01', '1988-11-05', '4fb5758bba7a073842781291bcc21a5c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Montbéliard', '25204 ', 'augue vel accumsan tellus nisi eu orci mauris lacinia sapien quis libero', true, -0.302506, 45.417087, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('tbogaertk7', 'Todd', 'Bogaert', '[email protected]', '2020-07-07 04:41:35', '1991-09-26', '7ab0a58def9ae4e932748cfebaa5c8bf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Villeneuve-lès-Avignon', '30404 ', 'orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus', true, 4.796809, 43.963917, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cgreirk8', 'Carmita', 'Greir', '[email protected]', '2020-10-19 05:06:50', '1982-02-20', '866d1fab2805154e4590f1912bc1fed8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Saint-Cloud', '92214 ', 'lorem quisque ut erat curabitur gravida nisi', true, 2.2228583, 48.8590219, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zwingark9', 'Zorine', 'Wingar', '[email protected]', '2020-03-20 10:35:36', '1984-03-23', '547cdaaad7fa035dbf3fac5a63205bb3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Millau', '12104 ', 'sed augue aliquam', false, 3.0792713, 44.1012172, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('acleugherka', 'Ariela', 'Cleugher', '[email protected]', '2020-03-04 20:38:06', '1992-02-27', '44f7a660a7fa67a7dc174f5dd03a2c92', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Orléans', '45947 ', 'id sapien in sapien iaculis congue vivamus metus arcu adipiscing molestie hendrerit at vulputate vitae nisl aenean lectus pellentesque eget nunc donec quis orci eget orci vehicula condimentum curabitur', false, 2.8002946, 47.3591366, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ccansdalekb', 'Conny', 'Cansdale', '[email protected]', '2020-05-26 13:30:26', '1988-04-10', '16e3283a303081e1420105b291faa486', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Rodez', '12030 ', 'nam nulla integer pede justo lacinia eget tincidunt', true, 2.14552, 44.5453926, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lderuelkc', 'Lissa', 'De Ruel', '[email protected]', '2020-04-02 05:33:15', '1994-03-25', '5f86e8e65141fce865c97ab37655cd76', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Saint-Dizier', '52109 ', 'in sagittis dui vel nisl duis ac nibh fusce lacus purus aliquet at feugiat non', false, 4.912419, 48.65639, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('smursellkd', 'Staffard', 'Mursell', '[email protected]', '2020-03-04 11:30:39', '1984-08-19', '4c14a059fcf60986b7c76537ae3c91c0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Évreux', '27009 ', 'sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque', false, 1.1518478, 49.0261841, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ekleeske', 'Emmott', 'Klees', '[email protected]', '2020-02-17 00:02:27', '1995-11-03', '7427eb84205305c3486fe0667431a603', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Paris 19', '75949 ', 'mauris laoreet', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rjessettkf', 'Riva', 'Jessett', '[email protected]', '2020-06-09 13:00:52', '1992-05-15', '83bdae0f5ae64f4e7372472b907c8d5a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Versailles', '78014 ', 'in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur convallis duis consequat dui nec nisi volutpat eleifend donec ut dolor', true, 2.1203554, 48.8048649, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wboarerkg', 'Waneta', 'Boarer', '[email protected]', '2021-01-10 21:45:35', '1992-01-04', '4ed536fba10c2545517384cc399c5af1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Pessac', '33604 ', 'nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin', true, -0.630617, 44.8055893, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('esportonkh', 'Eleanore', 'Sporton', '[email protected]', '2020-11-23 08:46:04', '2001-10-03', '94682fe3e8db32d4cd987ced57e21b5b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Tarascon', '13155 ', 'maecenas tristique est et', true, 3.8481099, 44.1640152, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vdoyki', 'Vidovic', 'Doy', '[email protected]', '2020-08-25 17:45:01', '1983-10-29', '9afdd86f8f2f7f8f565e7129c7135ed7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Mulhouse', '68092 ', 'nascetur ridiculus mus vivamus vestibulum sagittis sapien cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean', false, 7.3507066, 47.7489727, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mloverockkj', 'Merrili', 'Loverock', '[email protected]', '2021-01-14 03:04:37', '1981-10-24', 'dc7c4a66dde64d3975c63600a5c9f621', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Saint-Priest', '69794 ', '', false, 4.956609, 45.6739962, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('maggettkk', 'Monique', 'Aggett', '[email protected]', '2020-11-06 11:12:32', '1984-05-09', 'e2fd72a456ad5a0d3e773588594efba3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Lyon', '69281 ', 'morbi vel lectus in quam fringilla rhoncus mauris enim leo rhoncus sed vestibulum', true, 4.909835, 45.6326302, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gjacquetkl', 'Galina', 'Jacquet', '[email protected]', '2020-06-04 21:12:48', '1991-09-28', '4cb368ca405f82bc9b519702af59c375', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Courbevoie', '92671 ', 'vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas', true, 2.238154, 48.8952384, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vbenedidickkm', 'Vittorio', 'Benedidick', '[email protected]', '2020-08-10 12:59:21', '1983-11-27', 'f915247fa6374e25ef72e1262f0e26cd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Marseille', '13444 ', '', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbolekn', 'Charissa', 'Bole', '[email protected]', '2020-09-29 23:59:10', '1982-06-18', '22a6c501234b9af8ba6396fcc4dede47', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Wintzenheim', '68925 ', 'nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in', false, 7.3273853, 48.0684339, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ggoodako', 'Gerry', 'Gooda', '[email protected]', '2020-11-08 19:28:42', '1986-01-30', 'bee79ad0bdcdeeb1dc1ddab0828b4195', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Toulouse', '31201 ', 'justo nec condimentum neque sapien placerat ante nulla justo aliquam', true, 1.4282563, 43.6399974, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('daspinalkp', 'Dulsea', 'Aspinal', '[email protected]', '2020-04-27 16:44:39', '1980-06-23', 'a62afd13e0871c6dde859da75ba971f3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Tourcoing', '59208 ', 'odio porttitor id consequat in consequat ut', true, 3.16806, 50.716719, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gcreberkq', 'Gael', 'Creber', '[email protected]', '2020-12-09 17:52:08', '1998-09-17', '61825e1a7b1c7a86776ac87e299cd9b5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Saint-Avertin', '37554 ', 'bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl', false, 0.7259705, 47.3640936, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cmcnevinkr', 'Catriona', 'McNevin', '[email protected]', '2020-10-09 04:59:54', '1997-01-11', '51fc4165e2a18e31bcf9f93d80110d48', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Chamalières', '63409 ', 'est congue elementum in hac habitasse platea dictumst morbi vestibulum velit id pretium iaculis diam erat fermentum justo nec condimentum neque sapien', false, 3.562575, 45.130018, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wmeeks', 'Wash', 'Mee', '[email protected]', '2020-05-19 01:55:52', '1990-05-06', 'fe692000d53b1f8dd0b840edbbb6e668', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Le Blanc-Mesnil', '93154 ', 'nisi eu orci mauris lacinia sapien quis libero nullam sit amet turpis elementum', false, 2.4774664, 48.9323908, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cfreethkt', 'Codie', 'Freeth', '[email protected]', '2020-12-18 02:48:22', '1981-02-25', '3aa32667e07422536dc254f11fd851b1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Agen', '47923 ', 'venenatis tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl', true, 0.6352163, 44.2171148, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dbulfootku', 'Denney', 'Bulfoot', '[email protected]', '2020-09-29 12:53:07', '1982-03-02', 'd04f0ae08b2e59753b6a3bb394fde366', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Nantes', '44307 ', 'adipiscing lorem vitae mattis nibh ligula nec sem duis aliquam convallis nunc proin at turpis a pede posuere nonummy integer non velit donec diam neque vestibulum eget vulputate ut', true, -1.5401497, 47.2550409, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jthoriuskv', 'Judas', 'Thorius', '[email protected]', '2020-05-11 07:13:01', '1987-04-03', 'd345957335a58fc0ad9dda8a8e245e5f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Créteil', '94972 ', 'sed vel enim sit amet nunc viverra dapibus nulla suscipit ligula in lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper purus sit amet nulla quisque arcu libero rutrum', true, 2.4699259, 48.7997482, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cfrenzlkw', 'Clifford', 'Frenzl', '[email protected]', '2020-11-12 12:35:00', '1987-06-01', 'c66739a97dded1f24c48f0057b1fee6e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Lille', '59865 ', 'lacus curabitur at ipsum ac tellus semper interdum mauris ullamcorper', false, 2.0308233, 44.1675867, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dperellkx', 'Doralia', 'Perell', '[email protected]', '2020-03-18 05:42:33', '1983-02-23', 'b5dd437b4d5548380162df75f67fc897', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Toulon', '83087 ', 'luctus rutrum nulla tellus in sagittis dui vel', false, 5.9294606, 43.1283145, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hkivitsky', 'Haily', 'Kivits', '[email protected]', '2020-12-28 20:59:23', '1992-10-09', '104380784a103c952128ba5ffa97c435', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Tours', '37032 ', 'rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl', true, 0.6942885, 47.3892142, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('speytonkz', 'Scotti', 'Peyton', '[email protected]', '2020-10-24 20:59:07', '1997-10-28', 'c8ed4c00ad12820a08edef1fd0a04d5a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Pau', '64017 ', 'vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum sed magna at nunc commodo placerat praesent blandit nam nulla', true, -0.3696612, 43.2916776, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jhackworthyl0', 'Jacky', 'Hackworthy', '[email protected]', '2020-11-25 06:51:34', '1991-01-10', 'e1b64a10d667cf5de9b6bed66a9097c4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Montpellier', '34294 ', 'pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at', false, -0.8453268, 47.3752386, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('oranniganl1', 'Olivia', 'Rannigan', '[email protected]', '2020-04-16 00:26:00', '2000-02-29', '41b6c3f36ed01eb3024663866854fa50', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Neuilly-sur-Seine', '92521 ', 'nulla quisque arcu libero rutrum ac lobortis vel dapibus at diam', false, 2.2679278, 48.8959487, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('levequotl2', 'Lisetta', 'Evequot', '[email protected]', '2020-04-24 22:25:54', '1986-11-10', 'bcb9eaadb43af54cfe0818d9ecec0fc7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Landerneau', '29411 ', 'eros suspendisse accumsan', true, -4.212759, 48.3728929, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mburtenshawl3', 'Minnnie', 'Burtenshaw', '[email protected]', '2020-02-19 19:57:31', '1990-06-16', 'f288e89737401575f5c80c87ca7cceee', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Agen', '47912 ', 'integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus in est risus auctor sed tristique in tempus sit amet', false, 2.0928189, 44.2641474, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('msmalll4', 'Major', 'Small', '[email protected]', '2020-07-02 04:34:48', '1990-06-16', 'e46551458809f1452c8fc868af9fb158', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Chalon-sur-Saône', '71332 ', 'nunc rhoncus dui vel sem', true, 4.936847, 46.7251598, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ltompkinl5', 'Lorne', 'Tompkin', '[email protected]', '2020-11-27 13:08:40', '1994-11-23', 'd64fed82c2687bd62ec244a2fecf475c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Paris La Défense', '92061 ', 'tristique fusce congue diam id ornare imperdiet sapien urna pretium nisl ut volutpat', false, 2.2372792, 48.890054, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('deverardl6', 'Dania', 'Everard', '[email protected]', '2021-02-09 23:06:00', '2001-08-08', '73f303017a6fee3718222675924ff7ee', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 13', '75638 ', 'posuere cubilia curae mauris viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hygoul7', 'Heywood', 'Ygou', '[email protected]', '2021-02-16 23:18:56', '1981-02-07', '89924b4db493371057329f2f64e9b333', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Paris 07', '75321 ', 'natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('vscamadinl8', 'Verge', 'Scamadin', '[email protected]', '2020-08-12 14:37:56', '1991-12-01', 'bc39a28f3f724aa541b2dbeb41c98307', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris 09', '75439 ', 'sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gbeecraftl9', 'Gabi', 'Beecraft', '[email protected]', '2020-06-06 04:01:15', '1987-05-28', 'eac05f5fd29d7d36832ae0403b103617', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Vedène', '84274 ', 'ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse platea dictumst aliquam augue quam sollicitudin', true, 4.9052738, 43.9763746, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('efabbla', 'Ezra', 'Fabb', '[email protected]', '2020-10-29 21:44:24', '1984-12-09', '14bc0f447f50db11fc0f091f945beddb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Saint-Julien-en-Genevois', '74164 ', 'id ligula suspendisse ornare', true, 6.0796844, 46.1468572, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rspringalllb', 'Randell', 'Springall', '[email protected]', '2020-06-20 04:28:04', '2001-11-25', 'b9b8240968e3a751e6e004b2d675a0a8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Paris La Défense', '92980 ', 'sit amet eros suspendisse accumsan tortor quis turpis sed ante', true, 2.233089, 48.892701, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('phellislc', 'Paige', 'Hellis', '[email protected]', '2020-03-19 12:16:19', '1990-03-02', '464780df8682d269458c28236394ec0c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Chilly-Mazarin', '91384 ', 'rhoncus sed', false, 2.3056035, 48.7037515, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('alukeschld', 'Annamaria', 'Lukesch', '[email protected]', '2020-09-28 05:47:22', '2001-06-12', '9f90d298622cea600726f25fc6fac6b7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Angoulême', '16004 ', 'ultrices mattis odio donec vitae nisi nam ultrices libero', true, 0.129895, 45.638468, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bspeckle', 'Benedicta', 'Speck', '[email protected]', '2020-12-17 07:35:08', '1992-03-06', '33eee9a88b892bc2876c89247646443a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Laval', '53009 ', 'eu massa donec dapibus duis at velit eu est congue elementum in hac habitasse platea', false, -0.7609009, 48.0762327, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('klewinglf', 'Koren', 'Lewing', '[email protected]', '2020-04-22 23:10:51', '1998-09-01', 'f74d5459bc8452d5e34c591d1ab2bdf7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13456 ', 'in hac habitasse platea dictumst etiam faucibus cursus urna ut tellus nulla ut erat id mauris vulputate elementum nullam varius nulla facilisi cras non velit', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gmacintoshlg', 'Goldina', 'MacIntosh', '[email protected]', '2020-04-02 21:01:40', '1983-04-16', 'e2b4371fde85c47e6a2d6b057d6de1a3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Valenciennes', '59304 ', 'primis in', true, 3.5246977, 50.3566891, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rhruskalh', 'Rubie', 'Hruska', '[email protected]', '2020-03-15 00:30:49', '1995-02-06', '1828b27c4f5ce2402077eaf0e10085a5', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Chartres', '28901 ', 'in magna bibendum imperdiet nullam orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet', true, -0.6297654, 45.106849, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aheaneyli', 'Anabella', 'Heaney`', '[email protected]', '2020-03-15 01:59:48', '1997-06-18', '9dddb724a3e1b48b82dfc2ed2508b434', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Toulon', '83092 ', 'suspendisse ornare', true, 5.9294606, 43.1283145, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('traithmilllj', 'Tadeo', 'Raithmill', '[email protected]', '2020-07-05 06:48:23', '1984-05-25', 'fbbe9ecbbe13844da4c491b03e59727e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Bourges', '18013 ', 'faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus', true, 1.206057, 47.6632745, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('zoferrislk', 'Zebedee', 'O''Ferris', '[email protected]', '2020-05-12 06:52:51', '1983-11-11', 'b3d77d153a06c9ec3f3b3999e45828a0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Paris 15', '75737 ', 'lectus', false, 2.2582125, 48.8466523, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ggeorgeotll', 'Gae', 'Georgeot', '[email protected]', '2021-02-11 17:10:08', '2001-09-06', '055d3b3dbc755c87fec6e200ad5e1ec1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Cherbourg-Octeville', '50109 ', 'et ultrices posuere cubilia curae duis faucibus', true, -1.6272462, 49.6355347, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('scartmellm', 'Salvador', 'Cartmel', '[email protected]', '2020-06-06 13:39:11', '1989-02-12', '3760f551bcdce321ee27942e3506dd3d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Rouen', '76011 ', 'sit amet diam in magna bibendum imperdiet nullam orci', true, 0.3908219, 47.8225694, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pgadaudln', 'Penni', 'Gadaud', '[email protected]', '2020-07-07 01:50:30', '1984-06-21', 'adca8bf4601cc72c8507c572e3be89f3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Courbevoie', '92671 ', 'donec quis orci eget orci vehicula condimentum curabitur in libero ut massa volutpat convallis morbi odio odio elementum eu interdum eu tincidunt in leo maecenas pulvinar lobortis', true, 2.238154, 48.8952384, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gvaneslo', 'Gypsy', 'Vanes', '[email protected]', '2021-01-16 18:49:08', '1993-03-11', '948da19b262257d0319e77166ac22358', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Bressuire', '79304 ', 'hac habitasse platea', true, -0.5451553, 46.8118134, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('whasneylp', 'Wren', 'Hasney', '[email protected]', '2020-06-18 17:09:14', '1980-05-25', 'ab9a7c86940c71d2ec777f90aafa0e2f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Troyes', '10004 ', 'integer aliquet massa id lobortis convallis tortor', false, 4.0710348, 48.3006708, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jclouttlq', 'Jenna', 'Cloutt', '[email protected]', '2020-10-30 10:03:28', '1996-01-23', '6bb17aec38a57becde71c6acd6ed9a32', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Romans-sur-Isère', '26109 ', 'nonummy integer non velit donec diam neque vestibulum eget vulputate ut ultrices vel augue vestibulum', false, 5.0682113, 45.0478491, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mduffylr', 'Maud', 'Duffy', '[email protected]', '2020-06-10 04:39:57', '1987-06-08', '95ac6fe89f0d214eb9b2421a31d9ad49', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Strasbourg', '67200', 'erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac enim in tempor turpis nec euismod scelerisque quam', true, 7.7170649, 48.586322, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gtabardls', 'Georas', 'Tabard', '[email protected]', '2020-11-24 15:11:49', '1988-12-29', '2b2eea778c2a72b9897de777ab7ae4bf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Poitiers', '86093 ', 'augue vestibulum rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo', false, 0.3350126, 46.5838069, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gmclleeselt', 'Grover', 'McLleese', '[email protected]', '2020-09-02 06:32:07', '1999-10-24', '07b9eba52721ea2f40650196798e578f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 19', '75949 ', 'velit nec nisi vulputate nonummy', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('eaerslu', 'Eve', 'Aers', '[email protected]', '2020-03-19 06:17:59', '1994-10-11', 'c87eb37e2651e2b229bce83c6881ae3c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lavaur', '81506 ', 'orci pede venenatis non sodales sed tincidunt eu felis fusce posuere felis sed lacus morbi sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem', false, 1.7811783, 43.974344, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cregglerlv', 'Chastity', 'Reggler', '[email protected]', '2020-02-17 16:38:09', '1995-01-30', 'da983f538a4c0836fc6a9e983104de27', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Belfort', '90009 ', 'placerat praesent blandit nam nulla integer pede justo lacinia eget tincidunt eget tempus vel pede morbi porttitor lorem id', false, 6.923811, 47.484145, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wguerralw', 'Wyatt', 'Guerra', '[email protected]', '2020-05-16 14:27:26', '1999-10-23', '7def239f030b9dce8bb2aa003a28a7cf', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Rivesaltes', '66605 ', 'rutrum rutrum neque aenean auctor gravida sem praesent id massa id nisl venenatis lacinia aenean sit amet justo morbi ut', false, 2.9134412, 42.8271637, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wmaddockslx', 'Wilmer', 'Maddocks', '[email protected]', '2020-11-08 19:53:18', '1991-01-14', '71fb9d0d8e044a208d093ab055cb2755', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Nice', '06357 ', 'eget tincidunt eget tempus vel', true, 7.2559678, 43.6953508, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mducely', 'Morgan', 'Duce', '[email protected]', '2020-12-22 04:20:55', '1995-10-10', '89b501246bcbabdf33aa490a11a78251', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Croix', '59967 ', 'semper sapien a libero nam dui proin leo odio porttitor id consequat in consequat ut nulla sed accumsan felis ut at dolor', false, 0.277316, 47.6252225, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dsarginsonlz', 'Dolli', 'Sarginson', '[email protected]', '2020-08-03 05:19:05', '1980-11-15', '7599e17301fff443788e45884810cc52', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Alès', '30112 ', '', false, 4.0057868, 44.0570174, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbottinim0', 'Chalmers', 'Bottini', '[email protected]', '2020-10-10 01:41:47', '1985-02-18', '219db1827d30883fdf95c32c35feafd3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Marseille', '13219 ', 'id mauris vulputate elementum nullam varius nulla facilisi cras non velit nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus', true, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sstowtem1', 'Sallie', 'Stowte', '[email protected]', '2020-12-04 16:39:55', '1980-12-09', 'b5d598050d5547f84ed429a7c1a0410d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Chartres', '28009 ', 'sem mauris laoreet ut rhoncus aliquet pulvinar sed nisl nunc rhoncus dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede', true, -0.6297654, 45.106849, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dchesherm2', 'Dory', 'Chesher', '[email protected]', '2020-06-09 17:14:55', '1986-05-01', 'ab28fb6d625f4cdd4a9312e325aac5ec', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Arras', '62036 ', 'maecenas rhoncus aliquam lacus morbi quis tortor id nulla ultrices aliquet maecenas leo odio condimentum id', true, 2.7425682, 50.2837307, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ejoutapaviciusm3', 'Elsie', 'Joutapavicius', '[email protected]', '2020-08-01 21:46:14', '1998-10-21', 'ed7a4b09a691ac79f57c3b0d984fb4f7', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Digne-les-Bains', '04004 ', 'ut volutpat sapien arcu sed augue aliquam erat volutpat in congue etiam justo etiam pretium iaculis justo in hac habitasse', true, 6.1717148, 44.0527811, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jdouthwaitem4', 'Jerrold', 'Douthwaite', '[email protected]', '2020-10-07 19:59:11', '2000-12-29', '811a764396d13a1cdf9b15904cdf5c95', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Saint-Amand-les-Eaux', '59734 ', 'non quam nec dui luctus rutrum nulla tellus in sagittis', true, 3.3941571, 50.4398775, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('kjoynesm5', 'Kassey', 'Joynes', '[email protected]', '2020-12-01 07:50:46', '1992-09-24', 'a7ce0879fefbfde9243655ad7f3f6470', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Brest', '29213 ', 'nisl duis bibendum felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at velit', false, -4.1166788, 48.6059152, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dhadkinsm6', 'Dori', 'Hadkins', '[email protected]', '2020-03-12 15:37:02', '1986-06-18', '92d61e28aff5b354f6aeea906b05c099', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Villeneuve-d''Ascq', '59663 ', 'elementum pellentesque quisque', false, 3.1244315, 50.6140977, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bumneym7', 'Berri', 'Umney', '[email protected]', '2020-03-09 23:52:38', '1988-09-03', '6cd2b50642218ce48d6214a1df4ba06e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Le Puy-en-Velay', '43010 ', 'augue quam sollicitudin vitae consectetuer eget rutrum at lorem integer tincidunt ante vel ipsum praesent blandit lacinia erat vestibulum', true, 3.8924136, 45.0428681, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lkrebsm8', 'Lewes', 'Krebs', '[email protected]', '2020-05-25 00:09:21', '1985-02-16', 'ae1aa0719f2cfb89999f98dde1fcf2cc', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Angers', '49010 ', 'felis sed interdum venenatis turpis enim blandit mi in porttitor pede justo eu massa donec dapibus duis at', true, -0.5572458, 47.4441206, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cpeterkinm9', 'Christophorus', 'Peterkin', '[email protected]', '2020-04-09 08:40:20', '1983-03-19', '7e4195d546ece74a6d5ac8c989baaa83', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Nancy', '54021 ', 'faucibus orci luctus et ultrices posuere cubilia curae nulla dapibus dolor vel est donec odio', true, 6.17445, 48.689836, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('shenderma', 'Scarlett', 'Hender', '[email protected]', '2020-07-16 21:09:48', '1994-12-07', 'e46c3a1c39a95721cde2eb4d2d0b89a3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Limoges', '87066 ', 'tortor duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis', false, 3.5276642, 45.521519, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('arufflimb', 'Allyn', 'Ruffli', '[email protected]', '2020-10-19 22:35:29', '1997-10-18', 'c1a633cf46f783ad73bfbf3d806671c9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Épernay', '51209 ', 'metus arcu adipiscing molestie hendrerit at', true, 3.979371, 49.0371335, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('randreoumc', 'Rafaela', 'Andreou', '[email protected]', '2020-09-04 20:56:36', '2001-09-25', '3f5ae3a4737df178ff8062c0ed4f9dde', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Angoulême', '16025 ', 'neque vestibulum eget vulputate ut ultrices vel augue vestibulum', true, 0.129895, 45.638468, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bbeavermd', 'Bathsheba', 'Beaver', '[email protected]', '2020-04-18 04:52:56', '1991-09-23', 'ed3dc181c378f55a9604998016933e49', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Aurillac', '15004 ', 'duis mattis egestas metus aenean fermentum donec ut mauris eget massa tempor convallis nulla neque libero convallis eget eleifend luctus', true, 2.4396467, 44.9263486, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ooxbieme', 'Ottilie', 'Oxbie', '[email protected]', '2020-03-28 01:41:45', '1998-05-23', '251711798ec867ebf992cec0360ebc00', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Saint-Quentin-en-Yvelines', '78897 ', 'in tempus', true, 2.0439219, 48.7835538, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rwinleymf', 'Rees', 'Winley', '[email protected]', '2020-08-20 00:08:21', '1988-07-05', 'b5a46b9a6df7cfab7b031361da780dc9', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Courbevoie', '92404 ', 'semper est quam pharetra magna ac consequat metus sapien ut nunc vestibulum ante ipsum primis in', false, 2.2478659, 48.8981844, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('chearnesmg', 'Cathe', 'Hearnes', '[email protected]', '2021-02-15 22:34:46', '1993-02-11', 'c252b73c8d3b1e9059ded58ef608df8f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Colombes', '92715 ', 'ornare consequat lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc', true, 2.234305, 48.9101028, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ascholtemh', 'Andy', 'Scholte', '[email protected]', '2020-04-21 01:08:35', '1993-02-08', '7f302a578f4147f0b62d58517dcdec63', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Reims', '51679 ', 'nascetur ridiculus mus etiam vel augue vestibulum rutrum rutrum neque aenean auctor', true, -1.8090692, 48.2414942, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('broycraftmi', 'Britt', 'Roycraft', '[email protected]', '2020-11-03 05:56:44', '1988-03-11', '3902ffe505f277c73c863a5c2ccf9ee8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Lyon', '69281 ', 'nec nisi vulputate nonummy maecenas tincidunt lacus at velit vivamus vel nulla eget eros elementum pellentesque quisque porta volutpat erat quisque erat eros viverra eget', true, 4.909835, 45.6326302, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cwilcinskismj', 'Cathie', 'Wilcinskis', '[email protected]', '2020-11-08 08:55:45', '1989-01-31', 'e148a272aed6a9c2614d48a432017ed2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Saint-Denis', '93209 ', 'lobortis sapien sapien non mi integer ac neque duis bibendum', true, 2.3458952, 48.9352465, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('glissamanmk', 'Griswold', 'Lissaman', '[email protected]', '2020-06-14 20:06:33', '1988-04-25', '506101a9316eb507401d716ce01a2806', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Blois', '41976 ', 'tincidunt nulla', true, 1.3155028, 47.594843, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mkennardml', 'Mort', 'Kennard', '[email protected]', '2021-02-09 12:06:31', '1986-08-04', 'c0546510105f2947a55862fc891cae18', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Issoire', '63504 ', 'dui vel sem sed sagittis nam congue risus semper porta volutpat quam pede lobortis ligula sit amet eleifend pede libero quis orci nullam molestie nibh in', true, 3.2448508, 45.5436558, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sbeamm', 'Shaughn', 'Bea', '[email protected]', '2020-06-29 03:40:42', '1980-08-02', 'e00898946775d1eb7d640a03ed52a064', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Longwy', '54412 ', 'vitae nisi nam ultrices libero non', true, 5.6944757, 49.5048872, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mbothammn', 'Merrel', 'Botham', '[email protected]', '2020-10-29 13:46:06', '1996-03-19', '03634fe0764ef297718931211f64e62c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Bagnolet', '93175 ', 'vehicula condimentum', true, 2.5726619, 45.494149, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mleitchemo', 'Marcile', 'Leitche', '[email protected]', '2020-07-01 01:29:21', '1989-11-17', 'fcabdfde2cc6af124e6d0cc5d01df611', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Paris 12', '75587 ', 'tellus nulla ut', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('wturpinmp', 'Waneta', 'Turpin', '[email protected]', '2021-02-08 03:20:01', '1992-09-21', 'd0a9cef2de0a667360217b3afb03591d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Nancy', '54039 ', 'quam turpis adipiscing lorem vitae', false, 6.17445, 48.689836, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dcordetmq', 'Daphna', 'Cordet', '[email protected]', '2020-08-13 09:59:42', '1991-10-18', '1e603e8256e7ce51bb1e28c7ba4a6533', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Bernay', '27309 ', 'praesent lectus vestibulum quam sapien varius ut blandit non interdum in ante vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae duis faucibus accumsan odio curabitur', true, 0.5957159, 49.0871049, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lwindusmr', 'Lowe', 'Windus', '[email protected]', '2020-08-15 14:05:54', '1991-12-19', '32619c103435b111c443a255d14b528d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Cergy-Pontoise', '95011 ', 'semper sapien a libero nam dui proin leo odio porttitor id consequat', false, 2.0721605, 49.0344736, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('echurchardms', 'Ely', 'Churchard', '[email protected]', '2020-05-14 02:14:13', '1990-11-12', '530f5f583f63b6d026fd10f0f435face', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Soissons', '02204 ', 'orci pede', false, 3.338092, 49.369115, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ssuntermt', 'Serene', 'Sunter', '[email protected]', '2021-01-31 16:44:59', '1981-04-12', '4af1fe20c0260c6c7109c1a67872a85b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Chambray-lès-Tours', '37174 ', 'eu est congue elementum in hac', true, 0.723116, 47.3411618, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bmatyukonmu', 'Blondelle', 'Matyukon', '[email protected]', '2020-03-27 17:45:55', '1980-05-21', '2bf9878e8d66f767435c4a9c12650279', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Angers', '49033 ', 'donec vitae nisi nam ultrices libero non mattis pulvinar nulla', false, 2.3501981, 48.8693156, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('snattrissmv', 'Sheffield', 'Nattriss', '[email protected]', '2020-05-04 17:52:29', '1995-05-30', '4c803faaf099a0cb45c3469e851968bd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'La Roche-sur-Yon', '85009 ', '', true, -1.4244076, 46.6704712, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('agettonemw', 'Anica', 'Gettone', '[email protected]', '2020-10-13 23:22:21', '1989-04-05', 'e879d31ca9862a3bc027baa002903a52', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Paris 12', '75582 ', 'primis in faucibus orci luctus et ultrices posuere cubilia curae nulla', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rimlenmx', 'Roselin', 'Imlen', '[email protected]', '2020-05-31 12:22:57', '1980-11-11', '5bede3b112d9d4ebb0d615d8933b1b48', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Chaumont', '52011 ', 'semper sapien a libero nam dui proin leo odio porttitor id', false, 5.1345996, 48.1096576, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jfriftmy', 'Jordon', 'Frift', '[email protected]', '2020-03-04 18:00:07', '1995-11-29', '2a5102be89003acb20abf3ae8861cef3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Bourges', '18934 ', 'pede malesuada in imperdiet et commodo vulputate justo in blandit ultrices enim lorem ipsum dolor sit amet consectetuer adipiscing elit proin interdum mauris non', true, 1.206057, 47.6632745, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dpottesmz', 'Dmitri', 'Pottes', '[email protected]', '2020-12-05 08:03:48', '2000-04-19', '1d9867333026d992486f298e5ee4be5f', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 16', '75220 ', 'viverra diam vitae quam suspendisse potenti nullam porttitor lacus at turpis', false, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lrowdelln0', 'Lissi', 'Rowdell', '[email protected]', '2020-10-01 00:44:48', '2001-05-14', 'd68a42547eeb2d08a8a8c4f1ef4ff4d3', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Lomme', '59463 ', 'sodales sed tincidunt eu felis', true, 2.9982752, 50.6503044, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bbuxsyn1', 'Berry', 'Buxsy', '[email protected]', '2020-07-29 13:59:39', '2001-03-09', '696e7517801e6a9e624886924cae5495', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Choisy-le-Roi', '94604 ', 'sed sagittis nam congue risus semper porta volutpat quam', true, 2.4119232, 48.7663087, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dsellimann2', 'Danika', 'Selliman', '[email protected]', '2021-01-03 04:53:18', '1982-07-20', '4841aa96cd668f12d929e385f94839ca', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lavaur', '81506 ', 'in hac habitasse platea dictumst maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac', true, 1.7811783, 43.974344, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cbulcockn3', 'Crista', 'Bulcock', '[email protected]', '2020-04-25 03:34:19', '1997-09-27', '0513b0040d3c5c1f400c6cd2d0a5094b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Cesson', '77246 ', 'leo maecenas pulvinar lobortis est phasellus sit amet erat nulla tempus vivamus in felis eu sapien cursus vestibulum proin eu mi nulla ac', false, -2.1105468, 46.8315136, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fsalazarn4', 'Fremont', 'Salazar', '[email protected]', '2020-09-08 00:58:36', '1990-10-15', 'c171033ec12516de4988eeebc10e34fa', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Metz', '57032 ', 'diam vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam', false, 6.1807997, 49.116169, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('agibbonsn5', 'Andros', 'Gibbons', '[email protected]', '2020-08-25 18:21:16', '1989-08-29', '3b89b489e40972d377211b48536653f4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Courtaboeuf', '91959 ', 'leo odio porttitor id consequat in consequat ut nulla sed', true, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bchapiron6', 'Bella', 'Chapiro', '[email protected]', '2020-07-01 19:57:13', '1993-08-11', '4ca7d09d8d4d6528be388ada23fd85fe', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Rungis', '94659 ', 'ac diam cras pellentesque volutpat', true, 2.3536083, 48.7381259, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cgibbesonn7', 'Cointon', 'Gibbeson', '[email protected]', '2021-02-05 00:19:26', '2000-01-08', '2ffb7d06e9f3b7001bda6d59918b82a0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Longjumeau', '91821 ', '', false, 2.3491182, 48.6939078, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('emacleann8', 'Edward', 'Maclean', '[email protected]', '2020-02-22 03:07:12', '1991-07-25', '99ec50d4f3f9f49d76dcbc24fbbb052b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Metz', '57032 ', 'curae nulla dapibus dolor vel est donec odio justo sollicitudin ut suscipit a feugiat et eros vestibulum ac est lacinia', true, 6.1807997, 49.116169, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gpeetern9', 'Glynnis', 'Peeter', '[email protected]', '2020-03-29 07:41:13', '1994-12-15', '0622863acbc37c67ac94b340f1e9e302', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Béthune', '62411 ', 'lobortis convallis tortor risus dapibus augue vel accumsan tellus nisi eu', true, 2.6404239, 50.5213838, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rlillowna', 'Randy', 'Lillow', '[email protected]', '2020-12-11 07:57:45', '2001-06-19', 'fbb67c656341fb5833122071d7be48b8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Blois', '41942 ', 'lectus in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl', false, 1.3155028, 47.594843, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gjozefiaknb', 'Guillema', 'Jozefiak', '[email protected]', '2020-09-24 15:27:08', '1993-12-04', '2c369c3050604fe58801874076e5bc18', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Bondy', '93144 ', 'arcu adipiscing molestie hendrerit at vulputate vitae', false, 4.9979479, 46.3410256, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bminghellanc', 'Belita', 'Minghella', '[email protected]', '2020-12-09 20:56:25', '1999-01-07', 'b65927c597fe05efe72c046cd71e8a3e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Lyon', '69406 ', 'consequat varius integer', false, 1.9038837, 43.0429124, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('psamsnd', 'Pablo', 'Sams', '[email protected]', '2020-04-28 15:01:55', '1982-03-06', 'bdd10fd42c86dd32c5792c821a110e65', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Saint-Cloud', '92214 ', 'cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus vivamus', true, 2.2228583, 48.8590219, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('plawlandne', 'Pablo', 'Lawland', '[email protected]', '2021-01-19 16:10:18', '1993-04-11', '193151bd0423f0821994e561b40c1d11', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Cosne-Cours-sur-Loire', '58209 ', 'vestibulum ante ipsum primis in faucibus orci', true, 2.901637, 47.3675629, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('alaytonnf', 'Agustin', 'Layton', '[email protected]', '2020-06-03 04:37:13', '1993-01-06', '75761cd5fef94960caccafa835f2020c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Balma', '31139 ', 'vel pede morbi porttitor lorem id ligula suspendisse ornare consequat lectus', false, 1.5256514, 43.6227518, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('sikringillng', 'Shurlock', 'Ikringill', '[email protected]', '2020-08-19 03:05:17', '1988-08-13', '7007560cd9233d916804e258d9390a6e', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Metz', '57045 ', 'dui vel sem sed sagittis nam congue risus semper', true, 6.1650769, 49.1199699, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('lvericknh', 'Linnea', 'Verick', '[email protected]', '2020-10-29 09:52:05', '2001-01-05', '62339a53f2c7cf5fe3aadbcc2fa302fd', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Paris 08', '75367 ', 'nulla tellus in', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bmckevanyni', 'Bruis', 'McKevany', '[email protected]', '2020-04-04 16:21:58', '1981-06-08', 'e2d34e05b5e5a4be7f2d6f003dc07522', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Méru', '60116 ', 'hac habitasse platea dictumst aliquam augue quam sollicitudin', false, 2.121866, 49.2176624, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('fbahlsnj', 'Francine', 'Bahls', '[email protected]', '2020-10-30 13:31:17', '1991-07-01', 'c80ed55a6b3a6111a0709572d39693d6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Amiens', '80089 ', 'suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in magna bibendum imperdiet nullam orci pede', true, 2.3081396, 49.8905368, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('aeaglestonnk', 'Ame', 'Eagleston', '[email protected]', '2020-02-29 18:55:06', '1993-11-03', '19be2a8beda4f855ce2b3f7d602ec416', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Aurillac', '15004 ', 'maecenas ut massa quis augue luctus tincidunt nulla mollis molestie lorem quisque ut erat curabitur gravida nisi at nibh in hac habitasse', false, 2.4396467, 44.9263486, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('dsomesnl', 'Dominik', 'Somes', '[email protected]', '2020-06-30 05:02:07', '1981-04-20', 'f0a38c47ff984431db07102d5f829d8a', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'bisexual', 'France', 'Courtaboeuf', '91959 ', '', false, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hhaxellnm', 'Hal', 'Haxell', '[email protected]', '2021-02-06 21:03:39', '1988-05-26', 'ac0b159da07b72a13a38e1021d79afe0', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Rennes', '35704 ', '', true, -1.7123278, 48.1552902, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ablenkharnnn', 'Arly', 'Blenkharn', '[email protected]', '2020-06-28 00:01:40', '2000-10-30', '0e77fe3f0ec56e684c95b1d31d6138fe', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Amiens', '80020 ', 'sed accumsan felis ut at dolor quis odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla pede', false, 2.3081396, 49.8905368, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gsevierno', 'Greg', 'Sevier', '[email protected]', '2020-08-11 10:45:48', '1988-05-18', 'dce9dbb26a339785df691e8cf65f2911', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'female', 'France', 'Ivry-sur-Seine', '94857 ', 'consectetuer adipiscing elit proin interdum mauris non ligula', false, 2.394771, 48.819324, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pcourtnp', 'Petunia', 'Court', '[email protected]', '2020-10-06 19:26:59', '1982-04-23', '56c623606ccff34885686290eca907c2', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Saint-Malo', '35409 ', 'aenean auctor gravida sem praesent id massa id nisl', true, -2.0280739, 48.6360664, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('cworhamnq', 'Crissie', 'Worham', '[email protected]', '2020-03-26 21:48:45', '1984-06-08', 'bc39128071632a5b797ab57adf16b0b6', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Gap', '05004 ', 'odio consequat varius integer ac leo pellentesque ultrices mattis odio donec vitae nisi nam ultrices libero non mattis pulvinar nulla', false, 2.3477753, 48.8588363, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hmainstonnr', 'Hermon', 'Mainston', '[email protected]', '2020-10-25 19:12:45', '1981-10-13', 'a03418bd6bd48013c94333ceb3d604f1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Issoire', '63504 ', 'in blandit ultrices enim', true, 3.2448508, 45.5436558, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('itoonns', 'Ina', 'Toon', '[email protected]', '2020-09-03 21:36:01', '1989-03-27', '5989253af29d5c7ce1ea8fafa6e2c5bb', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Saint-Denis', '93285 ', 'tristique', true, 2.3425328, 48.922709, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bkornackint', 'Beverlee', 'Kornacki', '[email protected]', '2020-11-04 17:28:44', '1987-05-01', '379f8901cb3ad94530f1651f7b924e42', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'female', 'France', 'Paris 08', '75419 ', 'proin risus praesent lectus vestibulum quam sapien', true, 5.8978018, 43.4945737, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('gdeesonnu', 'Graham', 'Deeson', '[email protected]', '2021-01-18 12:49:36', '1985-10-23', 'e7d53c18a5123dbc2594d2421f352fa8', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Avignon', '84019 ', 'potenti cras in', true, 4.3686291, 43.8317876, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pmerredynv', 'Pierrette', 'Merredy', '[email protected]', '2020-11-20 04:46:04', '1986-12-29', '43125c94dc608c24a333af17a2cab149', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Montpellier', '34004 ', 'neque sapien placerat ante nulla justo aliquam quis turpis eget elit sodales scelerisque mauris sit amet eros', true, 3.8626074, 43.6121586, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('jcarberrynw', 'Jessamyn', 'Carberry', '[email protected]', '2020-12-14 07:37:29', '2000-11-05', '992e7c2f0296a7697c497f818cc90c8c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Paris La Défense', '92077 ', 'in lacus curabitur at ipsum ac tellus', false, 2.2372792, 48.890054, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('ewellbelovednx', 'Elfie', 'Wellbeloved', '[email protected]', '2020-05-13 18:28:33', '1999-11-09', 'aa9b5835269fd0839d40deb97033d40c', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'male', 'France', 'Villeneuve-lès-Avignon', '30404 ', '', false, 4.796809, 43.963917, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('mgianny', 'Millisent', 'Gian', '[email protected]', '2020-02-18 04:37:00', '2001-09-22', '89a182b2b384a084173031bd0d47afe1', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'non-binary', 'male', 'France', 'Paris 15', '75509 ', 'vitae quam suspendisse potenti nullam porttitor lacus at turpis donec posuere metus vitae ipsum aliquam non mauris morbi non lectus aliquam sit amet diam in', false, 2.2754517, 48.8357169, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('hmerannz', 'Hunter', 'Meran', '[email protected]', '2020-07-22 04:34:33', '1995-12-09', 'bb0efcccf982d353427acfd54621cc10', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'female', 'France', 'Marseille', '13399 ', 'sit amet eleifend pede libero quis orci nullam molestie nibh in lectus pellentesque at nulla suspendisse potenti cras', false, 2.511999, 43.7441795, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('pklimuso0', 'Percy', 'Klimus', '[email protected]', '2020-03-24 16:38:33', '1985-10-16', 'fa7398d76dff856e42fccf2dd314664d', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Vitry-le-François', '51361 ', 'nulla ultrices aliquet maecenas leo odio', false, 4.7001329, 48.747518, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('qmayoo1', 'Quincey', 'Mayo', '[email protected]', '2020-07-04 12:43:35', '1980-10-13', 'f6f970f16c82d2260dcc37f2bca789b4', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'bisexual', 'France', 'Cahors', '46091 ', 'turpis elementum ligula vehicula consequat morbi a ipsum integer a nibh in quis justo maecenas rhoncus aliquam', true, -1.813332, 47.772714, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('bdesporto2', 'Benn', 'Desport', '[email protected]', '2020-09-08 04:09:21', '1980-11-24', 'a2eec3769facc2973f46e8c264212d4b', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'female', 'bisexual', 'France', 'Courtaboeuf', '91959 ', 'scelerisque mauris sit amet eros suspendisse', true, 2.190167, 48.695223, 1, 1, 1);
insert into users (username, firstname, lastname, email, registered_date, dob, pw_hash, picture_1, picture_2, picture_3, picture_4, picture_5, gender, gender_target, country, city, zipcode, biography, authorizeGPS, longitude, latitude, is_verified, is_completed, is_bot) values ('rhedwortho3', 'Rickie', 'Hedworth', '[email protected]', '2020-08-15 06:06:19', '1983-04-09', '0536c1dde1beaab42192cf95193bf234', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'http://localhost:8080/api/images/default/default.png', 'male', 'male', 'France', 'Dijon', '21030 ', 'in est risus auctor sed tristique in tempus sit amet sem fusce consequat nulla nisl nunc nisl duis bibendum felis sed interdum venenatis turpis enim', false, 2.5135985, 45.2977605, 1, 1, 1);