-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.sql
More file actions
1000 lines (1000 loc) · 128 KB
/
data.sql
File metadata and controls
1000 lines (1000 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
insert into api_address (id, country, city, street, post_code) values (1, 'China', 'Datang', 'Parkring 28', null);
insert into api_address (id, country, city, street, post_code) values (2, 'Philippines', 'Communal', 'PO BOX 69', '3302');
insert into api_address (id, country, city, street, post_code) values (3, 'Uzbekistan', 'Charxin', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (4, 'Kenya', 'Butere', '625 SE 2ND ST', null);
insert into api_address (id, country, city, street, post_code) values (5, 'China', 'Qiucun', 'Main Street, Emyvale,', null);
insert into api_address (id, country, city, street, post_code) values (6, 'Indonesia', 'Petiga', 'P.O. BOX 85139', null);
insert into api_address (id, country, city, street, post_code) values (7, 'Nigeria', 'Badagry', '12 PLACE DES ETATS UNIS', null);
insert into api_address (id, country, city, street, post_code) values (8, 'Colombia', 'Calimita', '315 MAIN ST.', '520006');
insert into api_address (id, country, city, street, post_code) values (9, 'Uruguay', 'La Paz', '12 PLACE DES ETATS-UNIS', null);
insert into api_address (id, country, city, street, post_code) values (10, 'Japan', 'Okegawa', 'AEGONPLN', '365-0024');
insert into api_address (id, country, city, street, post_code) values (11, 'Brazil', 'São José do Rio Preto', 'PIAZZA FILIPPO MEDA 4', '15000-000');
insert into api_address (id, country, city, street, post_code) values (12, 'Brazil', 'Ibotirama', 'T. Narbuto g. 5-1', '47520-000');
insert into api_address (id, country, city, street, post_code) values (13, 'Tanzania', 'Mikumi', 'NY-31-17-0119', null);
insert into api_address (id, country, city, street, post_code) values (14, 'Indonesia', 'Maikawada', '85, Bulgaria Blvd.', null);
insert into api_address (id, country, city, street, post_code) values (15, 'Portugal', 'Alfeizerão', 'P.O. BOX 85139', '2460-105');
insert into api_address (id, country, city, street, post_code) values (16, 'Mexico', 'Buenavista', '101 NORTH STATE STREET', '94463');
insert into api_address (id, country, city, street, post_code) values (17, 'Tanzania', 'Rujewa', '1200 E WARRENVILLE RD', null);
insert into api_address (id, country, city, street, post_code) values (18, 'Nigeria', 'Uyo', 'P O BOX 170', null);
insert into api_address (id, country, city, street, post_code) values (19, 'Brazil', 'São Roque', 'Radlická 751/113e', '18130-000');
insert into api_address (id, country, city, street, post_code) values (20, 'China', 'Tianqian', 'Apollolaan 171', null);
insert into api_address (id, country, city, street, post_code) values (21, 'Mexico', 'Lazaro Cardenas', 'VIA CAPITELLO, 36', '40977');
insert into api_address (id, country, city, street, post_code) values (22, 'Bolivia', 'Huajlaya', 'Linzerstr., 14', null);
insert into api_address (id, country, city, street, post_code) values (23, 'Jersey', 'Saint Helier', '7TH FLOOR - ACH DEPT.', 'JE3');
insert into api_address (id, country, city, street, post_code) values (24, 'Sweden', 'Oskarshamn', '105 LOCUST STREET', '572 60');
insert into api_address (id, country, city, street, post_code) values (25, 'Indonesia', 'Nangka', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (26, 'Portugal', 'Mó', '65 AVENUE D IENA', '4730-062');
insert into api_address (id, country, city, street, post_code) values (27, 'Mongolia', 'Mönhbulag', '181 MAIN ST', null);
insert into api_address (id, country, city, street, post_code) values (28, 'Colombia', 'Nariño', '80 SUGAR CREEK CENTER BLVD', '252837');
insert into api_address (id, country, city, street, post_code) values (29, 'Netherlands', 'Enschede', 'Große Straße 31/33', '7524');
insert into api_address (id, country, city, street, post_code) values (30, 'Indonesia', 'Kawengan', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (31, 'China', 'Xianlin', 'ZAE SAINT GUÉNAULT 1 RUE JEAN MERMOZ', null);
insert into api_address (id, country, city, street, post_code) values (32, 'Indonesia', 'Nilanapo', 'Debeka-Platz 2', null);
insert into api_address (id, country, city, street, post_code) values (33, 'China', 'Hekou', '16 BOULEVARD DES ITALIENS', null);
insert into api_address (id, country, city, street, post_code) values (34, 'Ukraine', 'Irshava', '2020 ROSINA ST', null);
insert into api_address (id, country, city, street, post_code) values (35, 'China', 'Duqiao', 'Vestergade 8 - 16', null);
insert into api_address (id, country, city, street, post_code) values (36, 'Colombia', 'Jamundí', 'Dorfstraße, 50', '764008');
insert into api_address (id, country, city, street, post_code) values (37, 'China', 'Donggong', 'Wilhelm-Leuschner-Straße 12-14', null);
insert into api_address (id, country, city, street, post_code) values (38, 'China', 'Huangtugang', 'Friedrich-Thurner-Straße, 14', null);
insert into api_address (id, country, city, street, post_code) values (39, 'Mali', 'Ké-Macina', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (40, 'Chile', 'Las Animas', 'PIAZZA TRE TORRI, 3', null);
insert into api_address (id, country, city, street, post_code) values (41, 'China', 'Shuicha', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (42, 'China', 'Qili', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (43, 'United States', 'Greensboro', 'Main Street, Leighlinbridge,', '27409');
insert into api_address (id, country, city, street, post_code) values (44, 'China', 'Zhihe', 'Königswall 2', null);
insert into api_address (id, country, city, street, post_code) values (45, 'Poland', 'Koszyce Wielkie', 'Prinz-Eugen-Straße 8-10, Top 17 + Top 18', '33-111');
insert into api_address (id, country, city, street, post_code) values (46, 'Israel', 'Lapid', 'Landwehrstraße 11', null);
insert into api_address (id, country, city, street, post_code) values (47, 'Sweden', 'Floda', '80 BOULEVARD AUGUSTE BLANQUI', '448 92');
insert into api_address (id, country, city, street, post_code) values (48, 'Portugal', 'Martingança-Gare', 'Sparkassenplatz, 1', '2445-764');
insert into api_address (id, country, city, street, post_code) values (49, 'Honduras', 'El Benque', '2910 W JACKSON STREET', null);
insert into api_address (id, country, city, street, post_code) values (50, 'China', 'Haitou', 'Eisenbahnstraße 26', null);
insert into api_address (id, country, city, street, post_code) values (51, 'China', 'Xiaoyang', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (52, 'China', 'Sanjing', 'Jacobsonstraße 26', null);
insert into api_address (id, country, city, street, post_code) values (53, 'China', 'Qibu', 'VIA BRA, 15', null);
insert into api_address (id, country, city, street, post_code) values (54, 'Uganda', 'Mpigi', 'Dorfplatz, 311', null);
insert into api_address (id, country, city, street, post_code) values (55, 'Venezuela', 'Porlamar', '747 MERIDIAN', null);
insert into api_address (id, country, city, street, post_code) values (56, 'Nigeria', 'Gagarawa', 'P.O. BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (57, 'Thailand', 'Ra-ngae', 'Str. Barbu Stefanescu Delavrancea, nr.6 A, sector 1', '96130');
insert into api_address (id, country, city, street, post_code) values (58, 'Russia', 'Vichuga', '1 BANK PLAZA', '155334');
insert into api_address (id, country, city, street, post_code) values (59, 'Russia', 'Tbilisskaya', '9600 W. BRYN MAWR', '352364');
insert into api_address (id, country, city, street, post_code) values (60, 'China', 'Duishan', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (61, 'Ecuador', 'Tena', 'Magyar Tudósok körútja körút 9. G. épület', null);
insert into api_address (id, country, city, street, post_code) values (62, 'Mexico', 'Buenavista', 'PO BOX I', '54414');
insert into api_address (id, country, city, street, post_code) values (63, 'China', 'Heishui', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (64, 'Indonesia', 'Sembon', 'Little Green Street', null);
insert into api_address (id, country, city, street, post_code) values (65, 'China', 'Lufang', 'Tilsiter Straße 3', null);
insert into api_address (id, country, city, street, post_code) values (66, 'Germany', 'Essen', 'VIA LAGRANGE, 20', '45356');
insert into api_address (id, country, city, street, post_code) values (67, 'China', 'Haoyi', 'Mergenthalerallee 61', null);
insert into api_address (id, country, city, street, post_code) values (68, 'Poland', 'Wiązownica', 'Siemensstraße 7', '37-522');
insert into api_address (id, country, city, street, post_code) values (69, 'China', 'Yushan', 'PIAZZA DEL CALENDARIO, 3', null);
insert into api_address (id, country, city, street, post_code) values (70, 'Cameroon', 'Akonolinga', '316 EAST BREMER AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (71, 'China', 'Kangxung', 'LOCATOR 5138', null);
insert into api_address (id, country, city, street, post_code) values (72, 'Colombia', 'Envigado', '76 AVENUE DU 8 MAI 1945', '055428');
insert into api_address (id, country, city, street, post_code) values (73, 'Russia', 'Muchkapskiy', '5900 LA PLACE COURT SUITE 200', '394961');
insert into api_address (id, country, city, street, post_code) values (74, 'Japan', 'Sandachō', '820 CHURCH STREET', '673-1236');
insert into api_address (id, country, city, street, post_code) values (75, 'Indonesia', 'Pagak Kulon', 'P O BOX 8', null);
insert into api_address (id, country, city, street, post_code) values (76, 'Serbia', 'Pirot', 'PO DRAWER 789', null);
insert into api_address (id, country, city, street, post_code) values (77, 'China', 'Tiebukenwusan', 'Kungsträdgårdsgatan 2', null);
insert into api_address (id, country, city, street, post_code) values (78, 'Indonesia', 'Kebonbencoy', 'Škrétova 490/12', null);
insert into api_address (id, country, city, street, post_code) values (79, 'Thailand', 'Phon Phisai', 'P.O. BOX 85139', '43120');
insert into api_address (id, country, city, street, post_code) values (80, 'Sweden', 'Båstad', '200 WEST CONGRESS STREET', '269 36');
insert into api_address (id, country, city, street, post_code) values (81, 'Philippines', 'Pandan', '2525 GREENBAY ROAD', '5712');
insert into api_address (id, country, city, street, post_code) values (82, 'Philippines', 'Santa Praxedes', '12 PLACE DES ETATS UNIS', '3521');
insert into api_address (id, country, city, street, post_code) values (83, 'Brazil', 'Itabira', '200 WEST CONGRESS STREET', '35900-000');
insert into api_address (id, country, city, street, post_code) values (84, 'Tanzania', 'Kihurio', 'Nr., 7', null);
insert into api_address (id, country, city, street, post_code) values (85, 'Colombia', 'Puerto Asís', '3451 PRESCOTT', '862069');
insert into api_address (id, country, city, street, post_code) values (86, 'Mexico', 'Hidalgo', 'PO BOX 85139', '26060');
insert into api_address (id, country, city, street, post_code) values (87, 'Portugal', 'Ribas', 'LOCATER 01-5138', '4610-535');
insert into api_address (id, country, city, street, post_code) values (88, 'Chad', 'N''Djamena', 'Clare House, 37 Glenageary Park', null);
insert into api_address (id, country, city, street, post_code) values (89, 'Chile', 'Tocopilla', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (90, 'China', 'Xilian', 'Rue Perdue(TOU), 7', null);
insert into api_address (id, country, city, street, post_code) values (91, 'Russia', 'Bershet’', 'Rohanské nábřeží 693/10', '614551');
insert into api_address (id, country, city, street, post_code) values (92, 'Nigeria', 'Danja', 'Klagenfurter Str., 5', null);
insert into api_address (id, country, city, street, post_code) values (93, 'Russia', 'Dubki', 'Avenida João XXI, 63', '368117');
insert into api_address (id, country, city, street, post_code) values (94, 'China', 'Kanbula', 'Leipziger Straße 4', null);
insert into api_address (id, country, city, street, post_code) values (95, 'China', 'Mulong', 'SUITE 300', null);
insert into api_address (id, country, city, street, post_code) values (96, 'Philippines', 'Buensuseso', 'P O BOX 351', '2011');
insert into api_address (id, country, city, street, post_code) values (97, 'Guatemala', 'Champerico', 'SUITE 312', '11007');
insert into api_address (id, country, city, street, post_code) values (98, 'China', 'Bailiang', '200 W CONGRESS ST', null);
insert into api_address (id, country, city, street, post_code) values (99, 'Nigeria', 'Zango', 'Sparkassen-Karree 1', null);
insert into api_address (id, country, city, street, post_code) values (100, 'Indonesia', 'Pekuwon', '60 LIVINGSTON', null);
insert into api_address (id, country, city, street, post_code) values (101, 'Argentina', 'General Pico', 'ROP440', '6360');
insert into api_address (id, country, city, street, post_code) values (102, 'Russia', 'Staryy Togul', 'RS-14', '302525');
insert into api_address (id, country, city, street, post_code) values (103, 'China', 'Shuyuan Zhen', 'PO BOX 290', null);
insert into api_address (id, country, city, street, post_code) values (104, 'Sweden', 'Trollhättan', 'P O BOX 70', '461 25');
insert into api_address (id, country, city, street, post_code) values (105, 'Sweden', 'Nora', 'Klarabergsviadukten 61-63', '713 80');
insert into api_address (id, country, city, street, post_code) values (106, 'Philippines', 'Estaca', 'PIAZZA FILIPPO MEDA 4', '1123');
insert into api_address (id, country, city, street, post_code) values (107, 'Brazil', 'Jaciara', 'VIA RICCARDO SELVATICO, 2', '78820-000');
insert into api_address (id, country, city, street, post_code) values (108, 'Ireland', 'Sandymount', '2ND FLOOR', 'D04');
insert into api_address (id, country, city, street, post_code) values (109, 'Serbia', 'Zemun', 'Pettelaarpark 104', null);
insert into api_address (id, country, city, street, post_code) values (110, 'Portugal', 'Alto de São Sebastião', 'VIALE ALTIERO SPINELLI, 30', '2860-305');
insert into api_address (id, country, city, street, post_code) values (111, 'Indonesia', 'Lodoyo', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (112, 'Russia', 'Skhodnya', '5 AVENUE DE LA LIBERTE', '143020');
insert into api_address (id, country, city, street, post_code) values (113, 'Indonesia', 'Manglid', 'P O BOX 195', null);
insert into api_address (id, country, city, street, post_code) values (114, 'Spain', 'Murcia', 'Hoofdstraat 10 a', '30010');
insert into api_address (id, country, city, street, post_code) values (115, 'Portugal', 'Ferreira do Alentejo', 'MAC N9301-041', '7900-551');
insert into api_address (id, country, city, street, post_code) values (116, 'Armenia', 'Nor Yerznka', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (117, 'Philippines', 'Dugongan', 'NY-31-17-0119', '4508');
insert into api_address (id, country, city, street, post_code) values (118, 'Italy', 'Messina', 'VIALE ALTIERO SPINELLI, 30', '98135');
insert into api_address (id, country, city, street, post_code) values (119, 'Poland', 'Jasieniec', 'Cl Pintor Sorolla 2-4', '05-604');
insert into api_address (id, country, city, street, post_code) values (120, 'China', 'Tonggu', 'Raiffeisenstraße 1', null);
insert into api_address (id, country, city, street, post_code) values (121, 'France', 'Barr', 'PIAZZA DEL CALENDARIO, 3', '67144 CEDEX');
insert into api_address (id, country, city, street, post_code) values (122, 'Laos', 'Mounlapamôk', 'Bijlmerdreef 106', null);
insert into api_address (id, country, city, street, post_code) values (123, 'Brazil', 'Conceição do Coité', 'Siemensstraße 7', '48730-000');
insert into api_address (id, country, city, street, post_code) values (124, 'China', 'Hepingjie', 'Clare House, 37 Glenageary Park', null);
insert into api_address (id, country, city, street, post_code) values (125, 'Japan', 'Iwaki', 'PO BOX 26158', '999-3503');
insert into api_address (id, country, city, street, post_code) values (126, 'Mali', 'Kokofata', 'SUITE 5', null);
insert into api_address (id, country, city, street, post_code) values (127, 'China', 'Baishi', 'PO BOX 82929', null);
insert into api_address (id, country, city, street, post_code) values (128, 'Mexico', 'Nueva Esperanza', 'TOUR SOCIETE GENERALE 17 COURS VALMY', '29216');
insert into api_address (id, country, city, street, post_code) values (129, 'Indonesia', 'Sruni', 'Church Street, Newmarket,', null);
insert into api_address (id, country, city, street, post_code) values (130, 'Serbia', 'Gadžin Han', 'P O BOX 10566', null);
insert into api_address (id, country, city, street, post_code) values (131, 'Peru', 'Morcolla', '17555 NE SACRAMENTO ST', null);
insert into api_address (id, country, city, street, post_code) values (132, 'Philippines', 'Can-asujan', '1008 OAK STREET', '8715');
insert into api_address (id, country, city, street, post_code) values (133, 'Poland', 'Ceranów', '5050 KINGSLEY DRIVE', '08-322');
insert into api_address (id, country, city, street, post_code) values (134, 'China', 'Jinchuan', '8001 VILLA PARK DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (135, 'China', 'Huancheng', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (136, 'Panama', 'Cañazas', 'Friedrich-List-Platz 1', null);
insert into api_address (id, country, city, street, post_code) values (137, 'Indonesia', 'Sambongmulyo', '10 QUAI DES QUEYRIES', null);
insert into api_address (id, country, city, street, post_code) values (138, 'China', 'Tailing', 'NY-31-17-0119', null);
insert into api_address (id, country, city, street, post_code) values (139, 'Poland', 'Kup', 'PO BOX 100', '46-082');
insert into api_address (id, country, city, street, post_code) values (140, 'Portugal', 'Marco de Canaveses', 'Østergade 2, Hvidbjerg', '4630-087');
insert into api_address (id, country, city, street, post_code) values (141, 'Indonesia', 'Krajan', 'SUITE 5', null);
insert into api_address (id, country, city, street, post_code) values (142, 'Russia', 'Debesy', 'ATTENTION: ACH DEPT', '427060');
insert into api_address (id, country, city, street, post_code) values (143, 'Mexico', 'La Laguna', 'str. Daniel Danielopolu nr. 30-32, etaj 7, sector 1', '51247');
insert into api_address (id, country, city, street, post_code) values (144, 'Uruguay', 'Vichadero', 'Hauptplatz, 1', null);
insert into api_address (id, country, city, street, post_code) values (145, 'Russia', 'Surovikino', 'Platz der Republik', '404436');
insert into api_address (id, country, city, street, post_code) values (146, 'Indonesia', 'Gemuruh', 'Gebhardinaukio 1', null);
insert into api_address (id, country, city, street, post_code) values (147, 'Canada', 'Camlachie', 'Hindenburgstraße 8', 'G5Z');
insert into api_address (id, country, city, street, post_code) values (148, 'Denmark', 'København', '24010 PARTNERSHIP BLVD', '1440');
insert into api_address (id, country, city, street, post_code) values (149, 'Finland', 'Karis', 'VIA ETTORE TITO, 1', '39290');
insert into api_address (id, country, city, street, post_code) values (150, 'Guatemala', 'Santa Bárbara', 'P.O.BOX 36', '13010');
insert into api_address (id, country, city, street, post_code) values (151, 'Indonesia', 'Kabare', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (152, 'Tajikistan', 'Khovaling', 'Bahnhofstraße 19', null);
insert into api_address (id, country, city, street, post_code) values (153, 'Iran', 'Ārān Bīdgol', '1 North Wall Quay', null);
insert into api_address (id, country, city, street, post_code) values (154, 'Brazil', 'Frutal', 'Ulster Bank Head Office, Block B, Central Park, Leopardstown', '38200-000');
insert into api_address (id, country, city, street, post_code) values (155, 'Ukraine', 'Synevyr', 'Linzer Straße, 6', null);
insert into api_address (id, country, city, street, post_code) values (156, 'Honduras', 'San Ignacio', '43-45 Dublin Street, Balbriggan', null);
insert into api_address (id, country, city, street, post_code) values (157, 'China', 'Qingshanhu', 'P.O. BOX 709', null);
insert into api_address (id, country, city, street, post_code) values (158, 'Palestinian Territory', '‘Aşīrah ash Shamālīyah', 'VIA CIVIDINA, 9', null);
insert into api_address (id, country, city, street, post_code) values (159, 'Armenia', 'Haykashen', '320 N MAIN', null);
insert into api_address (id, country, city, street, post_code) values (160, 'Albania', 'Fratar', '56 RUE DE LA GLACIERE', null);
insert into api_address (id, country, city, street, post_code) values (161, 'China', 'Dengmu', 'Burgstraße 1', null);
insert into api_address (id, country, city, street, post_code) values (162, 'China', 'Paipu', 'AV DE BARCELÓ, 6', null);
insert into api_address (id, country, city, street, post_code) values (163, 'Portugal', 'Boco', 'Vasario 16-osios g. 10-6', '2425-405');
insert into api_address (id, country, city, street, post_code) values (164, 'Uganda', 'Agago', '100 N MARKET ST', null);
insert into api_address (id, country, city, street, post_code) values (165, 'Mexico', 'Santa Maria', 'Hauptstraße, 40', '97714');
insert into api_address (id, country, city, street, post_code) values (166, 'Indonesia', 'Nangabere', 'SUITE 600', null);
insert into api_address (id, country, city, street, post_code) values (167, 'Portugal', 'Agualva', 'ENTREE 2 2 BOULEVARD DE L EUROPE', '9760-016');
insert into api_address (id, country, city, street, post_code) values (168, 'Russia', 'Klyuchevskiy', 'VIA FLAMINIA, 1', '632514');
insert into api_address (id, country, city, street, post_code) values (169, 'Bosnia and Herzegovina', 'Radišići', 'R. do Comércio, 58', null);
insert into api_address (id, country, city, street, post_code) values (170, 'China', 'Yingwusitang', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (171, 'Peru', 'Providencia', '320 N MAIN', null);
insert into api_address (id, country, city, street, post_code) values (172, 'Ukraine', 'Yampil’', 'Taunusanlage 17', null);
insert into api_address (id, country, city, street, post_code) values (173, 'Peru', 'Ricardo Palma', '5420 BROAD STREET SOUTH', null);
insert into api_address (id, country, city, street, post_code) values (174, 'Japan', 'Abashiri', '245 BELGRADE AVE', '336-0926');
insert into api_address (id, country, city, street, post_code) values (175, 'Nigeria', 'Obolo-Eke (1)', '27-29 Patrick Street, Fermoy,', null);
insert into api_address (id, country, city, street, post_code) values (176, 'Philippines', 'Bolaoit', '1645 ELLINGTON RD', '2422');
insert into api_address (id, country, city, street, post_code) values (177, 'Ukraine', 'Berezovo', 'Hoveniersstraat, 29', null);
insert into api_address (id, country, city, street, post_code) values (178, 'Philippines', 'Guisguis', 'P.O. BOX 681', '9803');
insert into api_address (id, country, city, street, post_code) values (179, 'Nepal', 'Panaoti', 'VIA TIROLO, 2', null);
insert into api_address (id, country, city, street, post_code) values (180, 'China', 'Lindian', '23 avenue de la Costa', null);
insert into api_address (id, country, city, street, post_code) values (181, 'China', 'Shaxi', '2280 45TH STREET SOUTH', null);
insert into api_address (id, country, city, street, post_code) values (182, 'Argentina', 'Comodoro Rivadavia', '615 NORTH DIXIE HIGHWAY', '9000');
insert into api_address (id, country, city, street, post_code) values (183, 'United States', 'Houston', 'Weena 780', '77299');
insert into api_address (id, country, city, street, post_code) values (184, 'Russia', 'Yablonovskiy', '25 RUE LIBERGIER CS 50001', '385141');
insert into api_address (id, country, city, street, post_code) values (185, 'Russia', 'Barguzin', '4, rue Jean Monnet', '671610');
insert into api_address (id, country, city, street, post_code) values (186, 'Nigeria', 'Orita Eruwa', 'Adolf Fredriks Kyrkogata 8', null);
insert into api_address (id, country, city, street, post_code) values (187, 'United States', 'Detroit', 'Berliner Straße 25', '48217');
insert into api_address (id, country, city, street, post_code) values (188, 'Netherlands', 'Lelystad', '3RD FLOOR', '8214');
insert into api_address (id, country, city, street, post_code) values (189, 'United States', 'Hamilton', 'ul. Postępu 18B', '45020');
insert into api_address (id, country, city, street, post_code) values (190, 'Philippines', 'Manika', '3RD FLOOR', '7005');
insert into api_address (id, country, city, street, post_code) values (191, 'China', 'Nanding', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (192, 'Indonesia', 'Kayan Hulu', '51, Avenue J.F. Kennedy', null);
insert into api_address (id, country, city, street, post_code) values (193, 'China', 'Daxi', '5, Sveta Sofia Str.', null);
insert into api_address (id, country, city, street, post_code) values (194, 'China', 'Luoqi', 'SUITE 5', null);
insert into api_address (id, country, city, street, post_code) values (195, 'China', 'Lanlongkou', 'New Street, Rathangan,', null);
insert into api_address (id, country, city, street, post_code) values (196, 'China', 'Dingcheng', 'Greystone Street, Carrick-on-suir,', null);
insert into api_address (id, country, city, street, post_code) values (197, 'Philippines', 'Quibal', '12345 W. COLFAX AVE', '5103');
insert into api_address (id, country, city, street, post_code) values (198, 'Russia', 'Bezhta', 'Calea Dorobanților nr.30-36', '368418');
insert into api_address (id, country, city, street, post_code) values (199, 'Russia', 'Ochakovo-Matveyevskoye', '123 MAIN', '249028');
insert into api_address (id, country, city, street, post_code) values (200, 'Portugal', 'Pavia', '707 17TH STREET, SUITE 2950', '7490-405');
insert into api_address (id, country, city, street, post_code) values (201, 'Canada', 'Stettler', '1200 E. WARRENVILLE RD', 'G8J');
insert into api_address (id, country, city, street, post_code) values (202, 'Bosnia and Herzegovina', 'Jelah', '5800 SAN DARIO', null);
insert into api_address (id, country, city, street, post_code) values (203, 'Madagascar', 'Vavatenina', '103 S 5TH', null);
insert into api_address (id, country, city, street, post_code) values (204, 'Japan', 'Muramatsu', 'VIA G. GARIBALDI, 46', '441-3603');
insert into api_address (id, country, city, street, post_code) values (205, 'Tunisia', 'Şaqānis', '12 PLACE DES ETATS UNIS', null);
insert into api_address (id, country, city, street, post_code) values (206, 'China', 'Dengmingsi', 'Rothenburger Weg 2', null);
insert into api_address (id, country, city, street, post_code) values (207, 'Grenada', 'Victoria', 'Bayernstraße 9', null);
insert into api_address (id, country, city, street, post_code) values (208, 'Zambia', 'Lukulu', 'Schloßstraße 6-8', null);
insert into api_address (id, country, city, street, post_code) values (209, 'Belarus', 'Plyeshchanitsy', 'P.O. BOX 878', null);
insert into api_address (id, country, city, street, post_code) values (210, 'Anguilla', 'The Valley', 'ul. Grzybowska 53/57', null);
insert into api_address (id, country, city, street, post_code) values (211, 'United States', 'Chicago', 'The Square, Drumshanbo', '60614');
insert into api_address (id, country, city, street, post_code) values (212, 'Indonesia', 'Karanggedang', '333 E. COURT ST', null);
insert into api_address (id, country, city, street, post_code) values (213, 'China', 'Zijin', 'Eschenauer Straße 5', null);
insert into api_address (id, country, city, street, post_code) values (214, 'Austria', 'Klagenfurt am Wörthersee', '4140 EAST STATE STREET', '9073');
insert into api_address (id, country, city, street, post_code) values (215, 'Tunisia', 'Menzel Jemil', '5050 KINGSLEY DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (216, 'China', 'Jiadingzhen', 'P.O. BOX 105', null);
insert into api_address (id, country, city, street, post_code) values (217, 'Palestinian Territory', 'Kafr Şūr', 'P.O. BOX 87003', null);
insert into api_address (id, country, city, street, post_code) values (218, 'Uruguay', 'Bella Unión', '86, Aiolou Str.', null);
insert into api_address (id, country, city, street, post_code) values (219, 'China', 'Xinbei', '300 W VINE ST', null);
insert into api_address (id, country, city, street, post_code) values (220, 'Honduras', 'La Sabana', '1460 VALLEY ROAD', null);
insert into api_address (id, country, city, street, post_code) values (221, 'Japan', 'Enzan', '80 SUGAR CREEK CENTER BLVD', '918-8207');
insert into api_address (id, country, city, street, post_code) values (222, 'Brunei', 'Kuala Belait', 'Jura Alunāna iela 2', null);
insert into api_address (id, country, city, street, post_code) values (223, 'Canada', 'Espanola', 'Simon Carmiggeltstraat 6', 'P5E');
insert into api_address (id, country, city, street, post_code) values (224, 'Mexico', 'Lazaro Cardenas', 'Prinses Beatrixlaan 35', '61150');
insert into api_address (id, country, city, street, post_code) values (225, 'Kenya', 'Embu', 'ROUTE DE PARIS', null);
insert into api_address (id, country, city, street, post_code) values (226, 'Bosnia and Herzegovina', 'Petkovci', 'P.O. BOX 528', null);
insert into api_address (id, country, city, street, post_code) values (227, 'Malaysia', 'Kota Kinabalu', '400 RELLA BOULEVARD', '88564');
insert into api_address (id, country, city, street, post_code) values (228, 'Russia', 'Balakhta', 'MAC N9301-041', '662340');
insert into api_address (id, country, city, street, post_code) values (229, 'Portugal', 'Vila Nova de Milfontes', '1200 E. WARRENVILLE ROAD', '7645-215');
insert into api_address (id, country, city, street, post_code) values (230, 'Portugal', 'Figueiredo', 'Str. Stefan cel Mare, nr. 3, parter si erajul 1, sector 1', '4705-722');
insert into api_address (id, country, city, street, post_code) values (231, 'Ivory Coast', 'Gagnoa', 'Curraheen Road', null);
insert into api_address (id, country, city, street, post_code) values (232, 'Colombia', 'Popayán', '7 PROMENADE GERMAINE SABLON', '190018');
insert into api_address (id, country, city, street, post_code) values (233, 'China', 'Baikouquan', '1 AVENUE DE LA LIBERATION', null);
insert into api_address (id, country, city, street, post_code) values (234, 'China', 'Guanzhou', 'James Finton Lawlor Avenue, Portlaoise,', null);
insert into api_address (id, country, city, street, post_code) values (235, 'China', 'Gao’an', 'PO BOX 67', null);
insert into api_address (id, country, city, street, post_code) values (236, 'Syria', '‘Irbīn', 'PO BOX 85929', null);
insert into api_address (id, country, city, street, post_code) values (237, 'Indonesia', 'Bogorame', 'Ettinger Straße 3', null);
insert into api_address (id, country, city, street, post_code) values (238, 'Iceland', 'Sandgerði', '5050 KINGSLEY DRIVE', '245');
insert into api_address (id, country, city, street, post_code) values (239, 'Brazil', 'Jardim', 'Landsvägen 40', '79240-000');
insert into api_address (id, country, city, street, post_code) values (240, 'Bolivia', 'Mojocoya', '5050 KINGSLEY DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (241, 'Finland', 'Lammi', '255 SECOND AVE.', '16901');
insert into api_address (id, country, city, street, post_code) values (242, 'China', 'Dongchen', 'Seamus Ennis Road, Finglas', null);
insert into api_address (id, country, city, street, post_code) values (243, 'Thailand', 'Yala', '4140 EAST STATE STREET', '95000');
insert into api_address (id, country, city, street, post_code) values (244, 'Kenya', 'Kisii', 'Vasagatan 14', null);
insert into api_address (id, country, city, street, post_code) values (245, 'Poland', 'Balice', 'Neumarkt 6-6a', '32-083');
insert into api_address (id, country, city, street, post_code) values (246, 'China', 'Pu’er', '33 Parnell Square', null);
insert into api_address (id, country, city, street, post_code) values (247, 'Morocco', 'Adassil', '110 S FERRALL STREET', null);
insert into api_address (id, country, city, street, post_code) values (248, 'China', 'Ronglong', '3731 WILSHIRE BLVD SUITE 1000', null);
insert into api_address (id, country, city, street, post_code) values (249, 'Czech Republic', 'Postřekov', 'VIALE ALTIERO SPINELLI, 30', '345 35');
insert into api_address (id, country, city, street, post_code) values (250, 'Portugal', 'Bertelhe', 'DATA CONTROL ACH DESK', '3505-143');
insert into api_address (id, country, city, street, post_code) values (251, 'Ukraine', 'Zuya', '1620 DODGE STREET', null);
insert into api_address (id, country, city, street, post_code) values (252, 'China', 'Gaotuo', 'Hauptstraße 29', null);
insert into api_address (id, country, city, street, post_code) values (253, 'United States', 'Duluth', 'Am Hof, 4', '30096');
insert into api_address (id, country, city, street, post_code) values (254, 'Argentina', 'Victoria', 'PZA DE SANT ROC, 20', '3153');
insert into api_address (id, country, city, street, post_code) values (255, 'Ivory Coast', 'Abobo', 'VIALE ANTONIO GRAMSCI 34', null);
insert into api_address (id, country, city, street, post_code) values (256, 'China', 'Sanli', '12345 W COLFAX AVE', null);
insert into api_address (id, country, city, street, post_code) values (257, 'China', 'Chengui', '12 RUE DU PORT', null);
insert into api_address (id, country, city, street, post_code) values (258, 'Serbia', 'Apatin', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (259, 'China', 'Xinzhou', '1 BANK PLAZA', null);
insert into api_address (id, country, city, street, post_code) values (260, 'Mexico', 'Reforma', 'VIA J.F. KENNEDY, 1', '69818');
insert into api_address (id, country, city, street, post_code) values (261, 'China', 'Ningdun', 'Dieselstraße 45', null);
insert into api_address (id, country, city, street, post_code) values (262, 'Indonesia', 'Bayuwan', 'Pç. D. João I, 28', null);
insert into api_address (id, country, city, street, post_code) values (263, 'Ukraine', 'Kornyn', 'SUITE 1500', null);
insert into api_address (id, country, city, street, post_code) values (264, 'Haiti', 'Chardonnière', 'Schulstr., 2', null);
insert into api_address (id, country, city, street, post_code) values (265, 'Philippines', 'Agoncillo', 'W&W-Platz 1', '4211');
insert into api_address (id, country, city, street, post_code) values (266, 'China', 'Taoxi', 'Markt, 17', null);
insert into api_address (id, country, city, street, post_code) values (267, 'Indonesia', 'Nangakeo', '1460 VALLEY ROAD', null);
insert into api_address (id, country, city, street, post_code) values (268, 'Portugal', 'Peroguarda', 'P O BOX 277', '7900-455');
insert into api_address (id, country, city, street, post_code) values (269, 'Armenia', 'Hoktember', '1620 DODGE STREET', null);
insert into api_address (id, country, city, street, post_code) values (270, 'France', 'Longwy', 'P.O. BOX 85139', '54412 CEDEX');
insert into api_address (id, country, city, street, post_code) values (271, 'Portugal', 'Abelheira', 'Credit Union House, Main Street, Ballybay', '2530-063');
insert into api_address (id, country, city, street, post_code) values (272, 'Greece', 'Kimméria', '3090 CRAIG DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (273, 'Denmark', 'København', 'PIAZZA FILIPPO MEDA 4', '1410');
insert into api_address (id, country, city, street, post_code) values (274, 'China', 'Duyang', 'AVENUE DE MONPELLIÉRET - MAURIN', null);
insert into api_address (id, country, city, street, post_code) values (275, 'Czech Republic', 'Chabařovice', 'Stadtpl., 25-26', '403 17');
insert into api_address (id, country, city, street, post_code) values (276, 'Armenia', 'Darpas', 'VIA SOPERGA, 9', null);
insert into api_address (id, country, city, street, post_code) values (277, 'Colombia', 'Belén de Umbría', '2910 W JACKSON STREET', '664048');
insert into api_address (id, country, city, street, post_code) values (278, 'Haiti', 'Aquin', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (279, 'France', 'Sarlat-la-Canéda', 'PO BOX 431', '24212 CEDEX');
insert into api_address (id, country, city, street, post_code) values (280, 'Philippines', 'Hilotongan', 'BOX 797', '3201');
insert into api_address (id, country, city, street, post_code) values (281, 'Portugal', 'Idanha-a-Nova', 'VIA ALCIDE DE GASPERI, 11', '6060-104');
insert into api_address (id, country, city, street, post_code) values (282, 'Kazakhstan', 'Semey', 'Am Stadtpark, 9', null);
insert into api_address (id, country, city, street, post_code) values (283, 'Philippines', 'Toong', '4140 EAST STATE STREET', '1106');
insert into api_address (id, country, city, street, post_code) values (284, 'Indonesia', 'Lokuuy', '5210 74TH ST W SUITE B', null);
insert into api_address (id, country, city, street, post_code) values (285, 'Sweden', 'Linköping', '110 S FERRALL STREET', '581 86');
insert into api_address (id, country, city, street, post_code) values (286, 'Indonesia', 'Sidamukti', 'SUITE 130', null);
insert into api_address (id, country, city, street, post_code) values (287, 'Indonesia', 'Camplong', '3731 WILSHIRE BLVD SUITE 1000', null);
insert into api_address (id, country, city, street, post_code) values (288, 'Indonesia', 'Putukrejo', 'ACH OPERATIONS 100-99-04-10', null);
insert into api_address (id, country, city, street, post_code) values (289, 'Croatia', 'Kastav', '9600 W. BRYN MAWR', '51215');
insert into api_address (id, country, city, street, post_code) values (290, 'Japan', 'Ishikawa', 'P.O. BOX 255', '960-1476');
insert into api_address (id, country, city, street, post_code) values (291, 'Mauritius', 'Chamouny', '16 BOULEVARD DES ITALIENS', null);
insert into api_address (id, country, city, street, post_code) values (292, 'China', 'Beibao', '333 E MAIN STREET', null);
insert into api_address (id, country, city, street, post_code) values (293, 'Sweden', 'Svenljunga', '3RD FLOOR', '512 24');
insert into api_address (id, country, city, street, post_code) values (294, 'Russia', 'Nizhniy Lomov', 'PO BOX 30', '442153');
insert into api_address (id, country, city, street, post_code) values (295, 'Somalia', 'Dhuusamarreeb', 'Credit Union House, Main Street, Castleblayney,', null);
insert into api_address (id, country, city, street, post_code) values (296, 'Indonesia', 'Fatufeto', '110 S FERRALL STREET', null);
insert into api_address (id, country, city, street, post_code) values (297, 'Honduras', 'La Guama', 'Rynek Kleparski 8', null);
insert into api_address (id, country, city, street, post_code) values (298, 'Greece', 'Astypálaia', '811 MAIN STREET', null);
insert into api_address (id, country, city, street, post_code) values (299, 'Brazil', 'Nepomuceno', 'Praça Marquês de Pombal, n.º 13, 2.º andar', '37250-000');
insert into api_address (id, country, city, street, post_code) values (300, 'Paraguay', 'Bella Vista', '301 E BLACKHAWK AVE', null);
insert into api_address (id, country, city, street, post_code) values (301, 'Netherlands', 'Schiedam postbusnummers', 'VIA BITETTO, 2', '3109');
insert into api_address (id, country, city, street, post_code) values (302, 'Indonesia', 'Wailebe', 'P O BOX 10566', null);
insert into api_address (id, country, city, street, post_code) values (303, 'China', 'Liucun', 'PO BOX 1377', null);
insert into api_address (id, country, city, street, post_code) values (304, 'Vietnam', 'Vân Đình', '1200 E WARRENVILLE ROAD', null);
insert into api_address (id, country, city, street, post_code) values (305, 'Colombia', 'La Cruz', 'PIAZZA FILIPPO MEDA 4', '521028');
insert into api_address (id, country, city, street, post_code) values (306, 'Colombia', 'Rivera', 'Adolf-Müller-Straße 1', '413008');
insert into api_address (id, country, city, street, post_code) values (307, 'France', 'Cestas', 'PO BOX 27025, VA2-430-01-01', '33614 CEDEX');
insert into api_address (id, country, city, street, post_code) values (308, 'Russia', 'Is', 'Pz de San Nicolás, 4', '624238');
insert into api_address (id, country, city, street, post_code) values (309, 'Mexico', 'San Isidro', 'Goethestr., 1a', '94723');
insert into api_address (id, country, city, street, post_code) values (310, 'China', 'Luwu', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (311, 'Nigeria', 'Giade', '100 N PHILLIPS AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (312, 'United States', 'Clearwater', '1000 PEACHTREE ST N.E.', '34629');
insert into api_address (id, country, city, street, post_code) values (313, 'France', 'Royan', '4140 EAST STATE STREET', '17209 CEDEX');
insert into api_address (id, country, city, street, post_code) values (314, 'Vietnam', 'Thị Trấn Trùng Khánh', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (315, 'Poland', 'Zebrzydowice', '26, Todor Alexandrov Blvd.', '43-410');
insert into api_address (id, country, city, street, post_code) values (316, 'Russia', 'Solnechnogorsk', 'Kurfürstendamm 119', '141508');
insert into api_address (id, country, city, street, post_code) values (317, 'Armenia', 'Artashat', 'PO BOX 307', null);
insert into api_address (id, country, city, street, post_code) values (318, 'Poland', 'Strzelce Krajeńskie', '24010 PARTNERSHIP BOULEVARD', '66-500');
insert into api_address (id, country, city, street, post_code) values (319, 'Japan', 'Kōnosu', '1 AVENUE NAPOLÉON III', '369-0137');
insert into api_address (id, country, city, street, post_code) values (320, 'China', 'Hecun', 'PO BOX 27025, VA2-430-01-01', null);
insert into api_address (id, country, city, street, post_code) values (321, 'China', 'Qiaotou', '2, boulevard Konrad Adenauer', null);
insert into api_address (id, country, city, street, post_code) values (322, 'United States', 'Salinas', 'P O BO 681', '93907');
insert into api_address (id, country, city, street, post_code) values (323, 'Canada', 'Saint-Tite', 'Trg bana Josipa Jelačića 10', 'G8B');
insert into api_address (id, country, city, street, post_code) values (324, 'Thailand', 'Phan Thong', '2301 INDEPENDENCE BOULEVARD', '20160');
insert into api_address (id, country, city, street, post_code) values (325, 'China', 'Chunmuying', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (326, 'Portugal', 'Alfena', 'Gerhard-Rohlfs-Straße 29 / Am Sedanplatz 1', '4445-005');
insert into api_address (id, country, city, street, post_code) values (327, 'Thailand', 'Tha Tako', 'P O BOX 550', '60160');
insert into api_address (id, country, city, street, post_code) values (328, 'Mauritius', 'Port Louis', '102 DUFFY AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (329, 'Indonesia', 'Baru', 'Albrechtstraße 24', null);
insert into api_address (id, country, city, street, post_code) values (330, 'Poland', 'Skrzyszów', 'Fabrikstraße 5', '44-348');
insert into api_address (id, country, city, street, post_code) values (331, 'Czech Republic', 'Zdíkov', 'P O BOX 738', '384 72');
insert into api_address (id, country, city, street, post_code) values (332, 'Afghanistan', 'Nayak', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (333, 'Colombia', 'Facatativá', '200 WEST CONGRESS STREET', '253017');
insert into api_address (id, country, city, street, post_code) values (334, 'Finland', 'Loimaan Kunta', '397e North Circular Road,', '32560');
insert into api_address (id, country, city, street, post_code) values (335, 'China', 'Liubo', '500 FIRST AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (336, 'Japan', 'Kitahama', 'PO BOX 546', '985-0003');
insert into api_address (id, country, city, street, post_code) values (337, 'Indonesia', 'Kebonsari', 'Bijlmerdreef 106', null);
insert into api_address (id, country, city, street, post_code) values (338, 'Philippines', 'San Martin', '10430 HIGHLAND MANOR DRIVE', '9002');
insert into api_address (id, country, city, street, post_code) values (339, 'Dominican Republic', 'Río Grande', 'Daimlerstraße 129', '11515');
insert into api_address (id, country, city, street, post_code) values (340, 'Portugal', 'Maganha', 'Hindenburgstraße 52', '4785-650');
insert into api_address (id, country, city, street, post_code) values (341, 'Philippines', 'Carmen', '10 RUE DU GENERAL FOY', '9408');
insert into api_address (id, country, city, street, post_code) values (342, 'China', 'Henglin', '111 SILVAN AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (343, 'Laos', 'Savannakhét', '12345 W COLFAX AVE', null);
insert into api_address (id, country, city, street, post_code) values (344, 'China', 'Danzao', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (345, 'Pakistan', 'Muzaffargarh', 'Neubrunnenstraße 2', '34201');
insert into api_address (id, country, city, street, post_code) values (346, 'Greece', 'Rizári', 'Kurtalstraße 2', null);
insert into api_address (id, country, city, street, post_code) values (347, 'Armenia', 'Hrazdan', 'Credit Union House, 36-38 Lower Cork Street, Mitchelstown,', null);
insert into api_address (id, country, city, street, post_code) values (348, 'China', 'Sansheng', 'Siedlungsstraße, 1', null);
insert into api_address (id, country, city, street, post_code) values (349, 'Lebanon', 'Tyre', 'Invalidenstraße 28', null);
insert into api_address (id, country, city, street, post_code) values (350, 'China', 'Lab', 'CL TUTOR, 16', null);
insert into api_address (id, country, city, street, post_code) values (351, 'China', 'Wanliang', '110 S FERRALL STREET', null);
insert into api_address (id, country, city, street, post_code) values (352, 'Germany', 'Dortmund', 'Klarabergsviadukten 61-63', '44143');
insert into api_address (id, country, city, street, post_code) values (353, 'Ukraine', 'Staryy Sambor', 'Regeringsgatan 103', null);
insert into api_address (id, country, city, street, post_code) values (354, 'China', 'Meipu', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (355, 'Portugal', 'Carcavelos', 'PIAZZA TRE TORRI, 3', '2775-398');
insert into api_address (id, country, city, street, post_code) values (356, 'China', 'Pinggang', 'PIAZZA DI SANTA MARIA SOPRARNO, 1', null);
insert into api_address (id, country, city, street, post_code) values (357, 'China', 'Chegang', 'Philipp-Reis-Straße 7', null);
insert into api_address (id, country, city, street, post_code) values (358, 'United States', 'Las Vegas', 'Karlstraße 4', '89105');
insert into api_address (id, country, city, street, post_code) values (359, 'Russia', 'Roza', '105 EAST LONG', '456659');
insert into api_address (id, country, city, street, post_code) values (360, 'China', 'Yedun', '5 PLACE DE JAUDE', null);
insert into api_address (id, country, city, street, post_code) values (361, 'China', 'Shaoha', 'Landsberger Straße 406', null);
insert into api_address (id, country, city, street, post_code) values (362, 'Estonia', 'Võhma', '400 W. MAIN', null);
insert into api_address (id, country, city, street, post_code) values (363, 'China', 'Anding', 'P. O. BOX 10566', null);
insert into api_address (id, country, city, street, post_code) values (364, 'Peru', 'Tunal', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (365, 'China', 'Dasha', 'Victoria Reginaplantsoen, 1', null);
insert into api_address (id, country, city, street, post_code) values (366, 'Greece', 'Plagiári', 'Eichendorffstraße 13', null);
insert into api_address (id, country, city, street, post_code) values (367, 'India', 'Sadar Bazar', '1200 E WARRENVILLE ROAD', '281002');
insert into api_address (id, country, city, street, post_code) values (368, 'Indonesia', 'Tlogocilik', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (369, 'Mozambique', 'Montepuez', 'Nijverheidsstraat, 44', null);
insert into api_address (id, country, city, street, post_code) values (370, 'Tajikistan', 'Abdurahmoni Jomí', 'DANVILLE COUNTY', null);
insert into api_address (id, country, city, street, post_code) values (371, 'Japan', 'Minami-rinkan', 'Hauptstraße 8', '246-0038');
insert into api_address (id, country, city, street, post_code) values (372, 'China', 'Shuanghejiedao', '1008 OAK STREET', null);
insert into api_address (id, country, city, street, post_code) values (373, 'Mongolia', 'Eg', 'Untermarkt, 3', null);
insert into api_address (id, country, city, street, post_code) values (374, 'Philippines', 'Basak', 'R. Direita, 118', '5317');
insert into api_address (id, country, city, street, post_code) values (375, 'Indonesia', 'Tumu', 'Bleiweisova cesta 1', null);
insert into api_address (id, country, city, street, post_code) values (376, 'Canada', 'Chase', 'P.O. BOX 85139', 'H4R');
insert into api_address (id, country, city, street, post_code) values (377, 'China', 'Guanyinge', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (378, 'United States', 'Durham', '5455 SUNSET BOULEVARD', '27717');
insert into api_address (id, country, city, street, post_code) values (379, 'Ethiopia', 'Bako', 'P.O. BOX 85139', null);
insert into api_address (id, country, city, street, post_code) values (380, 'Poland', 'Święciechowa', '100 EAST TRYON ROAD/DAC28', '64-115');
insert into api_address (id, country, city, street, post_code) values (381, 'Luxembourg', 'Wilwerwiltz', 'STE B', 'L-9776');
insert into api_address (id, country, city, street, post_code) values (382, 'China', 'Zhangjiawan', 'P.O. BOX 878', null);
insert into api_address (id, country, city, street, post_code) values (383, 'Slovenia', 'Celje', 'Victoria Reginaplantsoen, 1', '3600');
insert into api_address (id, country, city, street, post_code) values (384, 'Nigeria', 'Umunede', '900 BROAD STREET', null);
insert into api_address (id, country, city, street, post_code) values (385, 'Indonesia', 'Paupanda Bawah', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (386, 'France', 'Balma', 'Bahnhofstraße 2', '31139 CEDEX');
insert into api_address (id, country, city, street, post_code) values (387, 'Japan', 'Miharu', 'BOX 797', '839-1407');
insert into api_address (id, country, city, street, post_code) values (388, 'Peru', 'Chalaco', 'St. Julien-Str., 12', null);
insert into api_address (id, country, city, street, post_code) values (389, 'China', 'Shangying', 'Neusser Straße 5', null);
insert into api_address (id, country, city, street, post_code) values (390, 'Indonesia', 'Kauhan', '8770 TESORO DR', null);
insert into api_address (id, country, city, street, post_code) values (391, 'Cameroon', 'Akonolinga', '218 S GLENSTONE', null);
insert into api_address (id, country, city, street, post_code) values (392, 'Portugal', 'Pereiras', '135 SECTION LINE ROAD', '4620-073');
insert into api_address (id, country, city, street, post_code) values (393, 'Sweden', 'Vimmerby', 'PIAZZA FILIPPO MEDA 4', '598 93');
insert into api_address (id, country, city, street, post_code) values (394, 'Poland', 'Strachówka', 'PO BOX 85929', '05-282');
insert into api_address (id, country, city, street, post_code) values (395, 'Sweden', 'Järna', '8001 VILLA PARK DRIVE', '153 31');
insert into api_address (id, country, city, street, post_code) values (396, 'Russia', 'Волочаевское', 'BOX 1468', '238346');
insert into api_address (id, country, city, street, post_code) values (397, 'Philippines', 'Concepcion', 'P O BOX 307', '7213');
insert into api_address (id, country, city, street, post_code) values (398, 'China', 'Longmenfan', 'Rosenheimer Straße 116', null);
insert into api_address (id, country, city, street, post_code) values (399, 'Malaysia', 'Kota Kinabalu', 'VIA CALABRITTO, 20', '88661');
insert into api_address (id, country, city, street, post_code) values (400, 'Thailand', 'Bang Racham', '235 GRIFFIN ST', '16130');
insert into api_address (id, country, city, street, post_code) values (401, 'Philippines', 'Palanit', '10430 HIGHLAND MANOR DRIVE 3RD FLOOR', '5700');
insert into api_address (id, country, city, street, post_code) values (402, 'Tajikistan', 'Dushanbe', 'ONE PENN''S WAY', null);
insert into api_address (id, country, city, street, post_code) values (403, 'South Africa', 'Calvinia', 'P O BOX 507', '8193');
insert into api_address (id, country, city, street, post_code) values (404, 'Ukraine', 'Kalyny', '7 EASTON OVAL', null);
insert into api_address (id, country, city, street, post_code) values (405, 'Indonesia', 'Ombul Barat', '210 S MEKUSUKEY', null);
insert into api_address (id, country, city, street, post_code) values (406, 'Latvia', 'Jaunpiebalga', 'PIAZZA GAE AULENTI, 3 TOWER A', null);
insert into api_address (id, country, city, street, post_code) values (407, 'Indonesia', 'Weetobula', 'Am Diek 50', null);
insert into api_address (id, country, city, street, post_code) values (408, 'Poland', 'Ruda Maleniecka', '56, 58 AVENUE ANDRE MALRAUX', '26-242');
insert into api_address (id, country, city, street, post_code) values (409, 'China', 'Laiyuan', 'Magazinska cesta 69', null);
insert into api_address (id, country, city, street, post_code) values (410, 'Mongolia', 'Javarthushuu', 'SUITE 300', null);
insert into api_address (id, country, city, street, post_code) values (411, 'Ecuador', 'Cariamanga', 'Narva mnt 2', null);
insert into api_address (id, country, city, street, post_code) values (412, 'Poland', 'Lgota Wielka', 'Frydenlundsvej 30', '97-565');
insert into api_address (id, country, city, street, post_code) values (413, 'China', 'Zhenqiao', 'Englundavägen 4', null);
insert into api_address (id, country, city, street, post_code) values (414, 'Germany', 'Wiesbaden', 'Landsvägen 40', '65191');
insert into api_address (id, country, city, street, post_code) values (415, 'Luxembourg', 'Mertert', 'PIAZZA FILIPPO MEDA 4', 'L-6693');
insert into api_address (id, country, city, street, post_code) values (416, 'Norway', 'Asker', '120 W ARKANSAS', '1384');
insert into api_address (id, country, city, street, post_code) values (417, 'Estonia', 'Orissaare', '600 HWY 71 SOUTH', null);
insert into api_address (id, country, city, street, post_code) values (418, 'Indonesia', 'Neglasari', 'P.O. BOX 9009', null);
insert into api_address (id, country, city, street, post_code) values (419, 'France', 'Longjumeau', 'PIAZZA GAE AULENTI, 3 TOWER A', '91821 CEDEX');
insert into api_address (id, country, city, street, post_code) values (420, 'Iran', 'Āstārā', 'ACH OPERATIONS 100-99-04-10', null);
insert into api_address (id, country, city, street, post_code) values (421, 'Reunion', 'Saint-Pierre', '123 EAST MAIN STREET', '97853 CEDEX');
insert into api_address (id, country, city, street, post_code) values (422, 'Indonesia', 'Tamanan', '80 SUGAR CREEK CENTER BLVD.', null);
insert into api_address (id, country, city, street, post_code) values (423, 'China', 'Mazongling', '12345 W COLFAX AVE', null);
insert into api_address (id, country, city, street, post_code) values (424, 'Greece', 'Agriá', 'VIA VITTORIO VENETO, 72', null);
insert into api_address (id, country, city, street, post_code) values (425, 'China', 'Hanjiashu', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (426, 'China', 'Hanting', '719 HARKRIDER ST. 3RD FLOOR', null);
insert into api_address (id, country, city, street, post_code) values (427, 'Costa Rica', 'Salitral', 'Altstadtmarkt 11', '10902');
insert into api_address (id, country, city, street, post_code) values (428, 'Poland', 'Lubień Kujawski', '7 PROMENADE GERMAINE SABLON', '87-840');
insert into api_address (id, country, city, street, post_code) values (429, 'Brazil', 'Indaial', 'Upper Main Street, Portarlington,', '89130-000');
insert into api_address (id, country, city, street, post_code) values (430, 'China', 'Jingang', 'Marktplatz 10', null);
insert into api_address (id, country, city, street, post_code) values (431, 'France', 'Metz', 'PO BOX 27025, VA2-430-01-01', '57016 CEDEX 01');
insert into api_address (id, country, city, street, post_code) values (432, 'Senegal', 'Goléré', 'Main Street, Ballybofey,', null);
insert into api_address (id, country, city, street, post_code) values (433, 'Indonesia', 'Kepahiang', '245 BELLEVUE AVE', null);
insert into api_address (id, country, city, street, post_code) values (434, 'Indonesia', 'Trasak', '1238 BROAD STREET', null);
insert into api_address (id, country, city, street, post_code) values (435, 'China', 'Licun', 'Ukmergės g. 322-1', null);
insert into api_address (id, country, city, street, post_code) values (436, 'France', 'Saint-Étienne', '16 BOULEVARD DES ITALIENS', '42021 CEDEX 1');
insert into api_address (id, country, city, street, post_code) values (437, 'Russia', 'Vyatskiye Polyany', 'VIA OTTAVIO SERENA 13', '622937');
insert into api_address (id, country, city, street, post_code) values (438, 'Canada', 'Labelle', '4140 EAST STATE STREET', 'N2L');
insert into api_address (id, country, city, street, post_code) values (439, 'Mexico', 'Luis Donaldo Colosio', 'Bahnhofplatz, 10', '26095');
insert into api_address (id, country, city, street, post_code) values (440, 'China', 'Yancheng', 'ul. Gizewiusza 2A', null);
insert into api_address (id, country, city, street, post_code) values (441, 'Iran', 'Sarvābād', '909 S CLAY ST', null);
insert into api_address (id, country, city, street, post_code) values (442, 'Sweden', 'Borlänge', 'VIA MARGHERITA DI SAVOIA, 13', '781 87');
insert into api_address (id, country, city, street, post_code) values (443, 'Slovenia', 'Šalovci', 'PIAZZA DEL CALENDARIO, 3', '9204');
insert into api_address (id, country, city, street, post_code) values (444, 'Pakistan', 'Pithoro', 'NY-31-17-0119', '69060');
insert into api_address (id, country, city, street, post_code) values (445, 'Afghanistan', 'Khānaqāh', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (446, 'Poland', 'Debrzno', '3833 EBONY ST', '77-310');
insert into api_address (id, country, city, street, post_code) values (447, 'Ukraine', 'Shakhtars’k', 'VA2-430-01-01', null);
insert into api_address (id, country, city, street, post_code) values (448, 'Finland', 'Kronoby', 'PIAZZA FILIPPO MEDA 4', '01760');
insert into api_address (id, country, city, street, post_code) values (449, 'Sweden', 'Hofors', 'PZA DE ESPAÑA, 5', '813 27');
insert into api_address (id, country, city, street, post_code) values (450, 'China', 'Guantouzui', 'Hauptstraße, 35', null);
insert into api_address (id, country, city, street, post_code) values (451, 'Indonesia', 'Longkali', '626 LIBERTY STREET', null);
insert into api_address (id, country, city, street, post_code) values (452, 'New Zealand', 'Paraparaumu', '812 MAIN ST', '5254');
insert into api_address (id, country, city, street, post_code) values (453, 'North Korea', 'Chunghwa', 'P.O. BOX 27025', null);
insert into api_address (id, country, city, street, post_code) values (454, 'Poland', 'Mogilany', 'VIA ALESSANDRO POLIDORI, 72', '32-031');
insert into api_address (id, country, city, street, post_code) values (455, 'China', 'Xuanhua', 'Wildunger Straße 14', null);
insert into api_address (id, country, city, street, post_code) values (456, 'Afghanistan', 'Pārūn', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (457, 'China', 'Canghou', '128 E MAIN', null);
insert into api_address (id, country, city, street, post_code) values (458, 'Brazil', 'Araguari', '401 N MAGUIRE', '38440-000');
insert into api_address (id, country, city, street, post_code) values (459, 'Indonesia', 'Cigemlong', 'PO BOX 10566', null);
insert into api_address (id, country, city, street, post_code) values (460, 'Indonesia', 'Rantepang', 'Bahnhofplatz 2', null);
insert into api_address (id, country, city, street, post_code) values (461, 'Philippines', 'Carpenter', 'Rauterplatz, 4', '2009');
insert into api_address (id, country, city, street, post_code) values (462, 'New Caledonia', 'Dumbéa', 'Cl Pintor Sorolla 2-4', '98839');
insert into api_address (id, country, city, street, post_code) values (463, 'Portugal', 'Verba', 'Am Hauptbahnhof 3', '3810-600');
insert into api_address (id, country, city, street, post_code) values (464, 'Indonesia', 'Tabu', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (465, 'Indonesia', 'Kotadukuh', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (466, 'France', 'Lyon', 'P.O. BOX 85139', '69339 CEDEX 02');
insert into api_address (id, country, city, street, post_code) values (467, 'Brazil', 'Três Coroas', 'P.O. BOX 643', '95660-000');
insert into api_address (id, country, city, street, post_code) values (468, 'Palestinian Territory', 'Kharbathā Banī Ḩārith', '110 S FERRALL STREET', null);
insert into api_address (id, country, city, street, post_code) values (469, 'Colombia', 'Cruces de Anorí', '1200 E. WARRENVILLE RD', '052857');
insert into api_address (id, country, city, street, post_code) values (470, 'Brazil', 'Guanhães', 'CI Cantón Claudino Pita, 2', '39740-000');
insert into api_address (id, country, city, street, post_code) values (471, 'Albania', 'Otllak', 'Liffey Park, Barnhall', null);
insert into api_address (id, country, city, street, post_code) values (472, 'China', 'Changchi', '5050 KINGSLEY DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (473, 'Canada', 'West End', 'PIAZZA FILIPPO MEDA 4', 'V7Y');
insert into api_address (id, country, city, street, post_code) values (474, 'Albania', 'Blerim', 'VIA RICCARDO SELVATICO, 2', null);
insert into api_address (id, country, city, street, post_code) values (475, 'China', 'Jinshi', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (476, 'China', 'Quanzhou', '112 WEST FULTON STREET', null);
insert into api_address (id, country, city, street, post_code) values (477, 'Mongolia', 'Bayanbulag', 'PO DRAWER 789', null);
insert into api_address (id, country, city, street, post_code) values (478, 'Portugal', 'Amor', '111 SILVAN AVENUE', '2400-772');
insert into api_address (id, country, city, street, post_code) values (479, 'Canada', 'Okotoks', '3-6 Parnell Street, Dungarvan,', 'T1S');
insert into api_address (id, country, city, street, post_code) values (480, 'Brazil', 'Toritama', '1130 MUNOZ RIVERA A', '55125-000');
insert into api_address (id, country, city, street, post_code) values (481, 'France', 'Aix-en-Provence', 'VA2-430-01-01', '13792 CEDEX 3');
insert into api_address (id, country, city, street, post_code) values (482, 'Brazil', 'Canutama', 'MAC N9301-041', '69820-000');
insert into api_address (id, country, city, street, post_code) values (483, 'Dominican Republic', 'Quisqueya', 'P. O. BOX 4678', '11109');
insert into api_address (id, country, city, street, post_code) values (484, 'China', 'Qiaotou', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (485, 'China', 'Huangni', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (486, 'France', 'Rouen', 'Dr.-Theobald-Schrems-Straße 3', '76029 CEDEX');
insert into api_address (id, country, city, street, post_code) values (487, 'Sweden', 'Ljungbyholm', '2ND FLOOR', '388 31');
insert into api_address (id, country, city, street, post_code) values (488, 'Peru', 'Ocongate', '104 N. TEMPLE', null);
insert into api_address (id, country, city, street, post_code) values (489, 'Portugal', 'Lamas', 'P.O. BOX 87003', '4830-411');
insert into api_address (id, country, city, street, post_code) values (490, 'China', 'Huimin', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (491, 'France', 'Tarbes', '104 AVENUE DES CHAMPS ELYSEES', '65911 CEDEX 9');
insert into api_address (id, country, city, street, post_code) values (492, 'Indonesia', 'Ciguha Tengah', '69 O''Connell Street,', null);
insert into api_address (id, country, city, street, post_code) values (493, 'Portugal', 'Póvoa', '7, Sveta Nedelya Sq.', '3720-029');
insert into api_address (id, country, city, street, post_code) values (494, 'Sweden', 'Uppsala', '17555 NE SACRAMENTO ST', '751 41');
insert into api_address (id, country, city, street, post_code) values (495, 'Peru', 'Lobitos', '16 PLACE DE LA MADELEINE', null);
insert into api_address (id, country, city, street, post_code) values (496, 'China', 'Dujiajing', 'Große Gallusstraße 18 (Omniturm)', null);
insert into api_address (id, country, city, street, post_code) values (497, 'China', 'Gaogu', 'Am Markt 1', null);
insert into api_address (id, country, city, street, post_code) values (498, 'Russia', 'Sovetskoye', 'Marktplatz 19', '659540');
insert into api_address (id, country, city, street, post_code) values (499, 'Mexico', 'Pueblo Nuevo', 'Bahnhofstraße 3', '52332');
insert into api_address (id, country, city, street, post_code) values (500, 'Ukraine', 'Zalishchyky', 'Maximilianstraße 29', null);
insert into api_address (id, country, city, street, post_code) values (501, 'Slovenia', 'Kozje', 'P.O. BOX 85139', '3260');
insert into api_address (id, country, city, street, post_code) values (502, 'Armenia', 'Akunk’', '21ST FLOOR', null);
insert into api_address (id, country, city, street, post_code) values (503, 'China', 'Zhongzhou', 'VIA JOSEF ANTON ZOLLER, 6', null);
insert into api_address (id, country, city, street, post_code) values (504, 'China', 'Taibai', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (505, 'China', 'Fuxing', 'JUNCTION HWYS. 76,86 & 37', null);
insert into api_address (id, country, city, street, post_code) values (506, 'China', 'Zhouyuan', 'Am Hauptbahnhof 2', null);
insert into api_address (id, country, city, street, post_code) values (507, 'Philippines', 'Vigan', '19 RUE DU LOUVRE', '2727');
insert into api_address (id, country, city, street, post_code) values (508, 'South Africa', 'Vryburg', 'Sveavägen 163', '8680');
insert into api_address (id, country, city, street, post_code) values (509, 'Ukraine', 'Zolotonosha', 'VIA DE LAI, 2', null);
insert into api_address (id, country, city, street, post_code) values (510, 'Portugal', 'Ribeiro', '1927 GREENSBURG CROSSING', '4600-758');
insert into api_address (id, country, city, street, post_code) values (511, 'Venezuela', 'San Juan de Manapiare', 'P.O. BOX 677', null);
insert into api_address (id, country, city, street, post_code) values (512, 'Japan', 'Asahi', 'Rothschildplatz, 1', '989-2474');
insert into api_address (id, country, city, street, post_code) values (513, 'Philippines', 'Santa Maria', 'Gifhorner Straße 57', '8011');
insert into api_address (id, country, city, street, post_code) values (514, 'China', 'Hake', 'Sveavägen 46', null);
insert into api_address (id, country, city, street, post_code) values (515, 'China', 'Yangqiaodian', 'VIA MARTIRI DELLE FOSSE ARDEATINE, 9', null);
insert into api_address (id, country, city, street, post_code) values (516, 'China', '城郊', 'Rauterplatz, 4', null);
insert into api_address (id, country, city, street, post_code) values (517, 'Myanmar', 'Kyaukse', 'Kornmarkt 9', null);
insert into api_address (id, country, city, street, post_code) values (518, 'Colombia', 'Maicao', 'P.O. BOX 1207', '442009');
insert into api_address (id, country, city, street, post_code) values (519, 'Iran', 'Zarrīn Shahr', 'P O BOX 27025', null);
insert into api_address (id, country, city, street, post_code) values (520, 'Indonesia', 'Cikalang', '2ND FLOOR', null);
insert into api_address (id, country, city, street, post_code) values (521, 'China', 'Huangshagang', 'Bahnhofstraße 3', null);
insert into api_address (id, country, city, street, post_code) values (522, 'Indonesia', 'Puncaksempur', 'Hauptstraße, 14/1', null);
insert into api_address (id, country, city, street, post_code) values (523, 'China', 'Jiangchi', '2430 MALL DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (524, 'Armenia', 'Kasakh', 'Alströmergatan 39', null);
insert into api_address (id, country, city, street, post_code) values (525, 'Indonesia', 'Rainis', 'Kremser Landstraße, 18', null);
insert into api_address (id, country, city, street, post_code) values (526, 'Belarus', 'Atolina', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (527, 'Vietnam', 'Đắk Song', 'PO BOX 820749', null);
insert into api_address (id, country, city, street, post_code) values (528, 'Indonesia', 'Randusari', '1645 ELLINGTON RD', null);
insert into api_address (id, country, city, street, post_code) values (529, 'Argentina', 'Las Higueras', 'PARC DE LA HAUTE BORNE 61 AVENUE HALLEY', '5385');
insert into api_address (id, country, city, street, post_code) values (530, 'China', 'Xinglongchang', 'P.O. BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (531, 'Pakistan', 'Khānpur', 'PO BOX 75000', '33100');
insert into api_address (id, country, city, street, post_code) values (532, 'Brazil', 'Camaquã', '7 EASTON OVAL', '96180-000');
insert into api_address (id, country, city, street, post_code) values (533, 'Canada', 'Summerland', 'Con Colbert Street, Athea,', 'H1V');
insert into api_address (id, country, city, street, post_code) values (534, 'Japan', 'Iwatsuki', 'Hauptplatz, 22', '339-0061');
insert into api_address (id, country, city, street, post_code) values (535, 'Indonesia', 'Desakolot', '65 AVENUE D IENA', null);
insert into api_address (id, country, city, street, post_code) values (536, 'Indonesia', 'Kiuola', 'Raiffeisenplatz, 1', null);
insert into api_address (id, country, city, street, post_code) values (537, 'Brazil', 'Porto Feliz', 'Rheinstraße 12', '18540-000');
insert into api_address (id, country, city, street, post_code) values (538, 'Kosovo', 'Prilep', 'Credit Union House, Market Square, Kilrush,', null);
insert into api_address (id, country, city, street, post_code) values (539, 'China', 'Shiqiao', '811 MAIN ST', null);
insert into api_address (id, country, city, street, post_code) values (540, 'Canada', 'Gibbons', 'Magyar Tudósok körútja körút 9. G. épület', 'M1E');
insert into api_address (id, country, city, street, post_code) values (541, 'Colombia', 'Turbo', 'ACH OPERATIONS 100-99-04-10', '057869');
insert into api_address (id, country, city, street, post_code) values (542, 'China', 'Heicheng', 'Lamprechtstraße 52-54', null);
insert into api_address (id, country, city, street, post_code) values (543, 'China', 'Cuozhou', 'PRAÇA DUQUE DE SALDANHA, N.º 1, EDIFÍCIO ATRIUM SALDANHA, PISO 3', null);
insert into api_address (id, country, city, street, post_code) values (544, 'Mexico', 'San Jose', '200 WEST CONGRESS STREET', '33856');
insert into api_address (id, country, city, street, post_code) values (545, 'Brazil', 'Igaraçu do Tietê', 'PO BOX 7005', '17350-000');
insert into api_address (id, country, city, street, post_code) values (546, 'Kenya', 'Nanyuki', 'Market Street, Dundalk,', null);
insert into api_address (id, country, city, street, post_code) values (547, 'Russia', 'Tyret’ Pervaya', 'Raiffeisenstraße 1', '666330');
insert into api_address (id, country, city, street, post_code) values (548, 'Indonesia', 'Kapasan', 'Kufsteiner Straße 1-5', null);
insert into api_address (id, country, city, street, post_code) values (549, 'France', 'Maubeuge', 'P O DRAWER 1099', '59604 CEDEX');
insert into api_address (id, country, city, street, post_code) values (550, 'Colombia', 'Puerto Rico', 'Bijlmerdreef 106', '503068');
insert into api_address (id, country, city, street, post_code) values (551, 'China', 'Hejiang', '2430 MALL DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (552, 'Russia', 'Kamyshevatskaya', 'Spoorlaan 298', '353650');
insert into api_address (id, country, city, street, post_code) values (553, 'Indonesia', 'Weepanapi', '2525 GREENBAY ROAD', null);
insert into api_address (id, country, city, street, post_code) values (554, 'Mexico', 'Fernando Gutierrez Barrios', 'P.O. BOX 1377', '93420');
insert into api_address (id, country, city, street, post_code) values (555, 'Kenya', 'Moyale', 'The Square, Claremorris,', null);
insert into api_address (id, country, city, street, post_code) values (556, 'Peru', 'Buenos Aires', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (557, 'Latvia', 'Viļāni', 'Bijlmerdreef 106', null);
insert into api_address (id, country, city, street, post_code) values (558, 'Russia', 'Golynki', 'Klopeiner Straße, 3', '216740');
insert into api_address (id, country, city, street, post_code) values (559, 'Colombia', 'Barrancabermeja', '9600 W. BRYN MAWR', '687047');
insert into api_address (id, country, city, street, post_code) values (560, 'China', 'Chixi', 'Bockenheimer Landstraße 2-4 (Opernturm)', null);
insert into api_address (id, country, city, street, post_code) values (561, 'Belarus', 'Dowsk', 'Havenlaan, 2', null);
insert into api_address (id, country, city, street, post_code) values (562, 'Croatia', 'Jelisavac', 'Upper Barrack Street, Belmullet,', '31225');
insert into api_address (id, country, city, street, post_code) values (563, 'Ukraine', 'Novovolyns’k', 'PIAZZA DEL CALENDARIO, 3', null);
insert into api_address (id, country, city, street, post_code) values (564, 'Armenia', 'Nor Gyugh', 'PO BOX 709', null);
insert into api_address (id, country, city, street, post_code) values (565, 'Canada', 'Wabana', 'VIA EMILIA A SAN PIETRO, 4', 'V7X');
insert into api_address (id, country, city, street, post_code) values (566, 'Czech Republic', 'Jablonné nad Orlicí', 'VIA EMILIA A SAN PIETRO, 4', '561 64');
insert into api_address (id, country, city, street, post_code) values (567, 'Philippines', 'Kaytitinga', '212 S. BROADWAY', '4901');
insert into api_address (id, country, city, street, post_code) values (568, 'Poland', 'Łękawica', '245 COMMERCIAL STREET', '34-321');
insert into api_address (id, country, city, street, post_code) values (569, 'Russia', 'El’brus', 'Am Belvedere, 1', '361603');
insert into api_address (id, country, city, street, post_code) values (570, 'Russia', 'Severskaya', 'PO BOX 69', '353241');
insert into api_address (id, country, city, street, post_code) values (571, 'Argentina', 'Laboulaye', '0 3-5 avenue de Friedland', '5120');
insert into api_address (id, country, city, street, post_code) values (572, 'Russia', 'Barguzin', 'PIAZZA FILIPPO MEDA 4', '671610');
insert into api_address (id, country, city, street, post_code) values (573, 'Brazil', 'Santarém', '2910 WEST JACKSON', '58928-000');
insert into api_address (id, country, city, street, post_code) values (574, 'Belarus', 'Horki', '111 SYLVAN AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (575, 'China', 'Baofeng', '101 MAIN STREET', null);
insert into api_address (id, country, city, street, post_code) values (576, 'Indonesia', 'Krajan Puru', '255 2ND AVE SOUTH', null);
insert into api_address (id, country, city, street, post_code) values (577, 'Belarus', 'Kobryn', 'Eberschwang, 116', null);
insert into api_address (id, country, city, street, post_code) values (578, 'China', 'Meilin', 'Münchner Straße 2', null);
insert into api_address (id, country, city, street, post_code) values (579, 'Japan', 'Aioi', '12 PLACE DES ETATS UNIS CS 20001', '999-3222');
insert into api_address (id, country, city, street, post_code) values (580, 'China', 'Zhangtan', 'SUITE 600', null);
insert into api_address (id, country, city, street, post_code) values (581, 'Ireland', 'Donnycarney', 'Kasteelpleinstraat, 44', 'D17');
insert into api_address (id, country, city, street, post_code) values (582, 'Kiribati', 'Ambo Village', '400 SUNDAY LAKE STREET', null);
insert into api_address (id, country, city, street, post_code) values (583, 'Georgia', 'Bagdadi', 'Av Don Bosco, 2', null);
insert into api_address (id, country, city, street, post_code) values (584, 'Sweden', 'Ekerö', '1400 BEST PLAZA DRIVE', '178 54');
insert into api_address (id, country, city, street, post_code) values (585, 'Russia', 'Ozerki', 'Am Floßkanal 4', '309092');
insert into api_address (id, country, city, street, post_code) values (586, 'Norway', 'Stavanger', 'MAC N9301-041', '4069');
insert into api_address (id, country, city, street, post_code) values (587, 'China', 'Gucheng', 'St. Julien-Str., 12', null);
insert into api_address (id, country, city, street, post_code) values (588, 'Mozambique', 'Ressano Garcia', 'Bijlmerdreef 106', null);
insert into api_address (id, country, city, street, post_code) values (589, 'United States', 'Daytona Beach', 'Konstitucijos pr. 24', '32128');
insert into api_address (id, country, city, street, post_code) values (590, 'Brazil', 'Moreno', 'Friedrichring 28-30', '54800-000');
insert into api_address (id, country, city, street, post_code) values (591, 'Russia', 'Mikhaylovsk', 'VIALE ALTIERO SPINELLI, 30', '243421');
insert into api_address (id, country, city, street, post_code) values (592, 'Indonesia', 'Tawaran', '6 RUE DE L AMIRAL HAMELIN', null);
insert into api_address (id, country, city, street, post_code) values (593, 'Brazil', 'Farroupilha', 'Schupstraat, 18-20', '95180-000');
insert into api_address (id, country, city, street, post_code) values (594, 'Equatorial Guinea', 'Río Campo', 'Bažnyčios g. 11', null);
insert into api_address (id, country, city, street, post_code) values (595, 'United Kingdom', 'Wootton', 'MAIL CODE 10-6438-AH5', 'NN4');
insert into api_address (id, country, city, street, post_code) values (596, 'Ireland', 'Tralee', 'Markt, 17', 'V92');
insert into api_address (id, country, city, street, post_code) values (597, 'Peru', 'Ayabaca', '84 RUE DUGUESCLIN', null);
insert into api_address (id, country, city, street, post_code) values (598, 'Philippines', 'Talisay', 'MAC N9301-041', '4602');
insert into api_address (id, country, city, street, post_code) values (599, 'Indonesia', 'Tawaran', 'Maximilian-Philipp-Straße 14', null);
insert into api_address (id, country, city, street, post_code) values (600, 'Myanmar', 'Myingyan', '1620 DODGE DTREET', null);
insert into api_address (id, country, city, street, post_code) values (601, 'Argentina', 'Buta Ranquil', 'VIALE ALTIERO SPINELLI, 30', '8353');
insert into api_address (id, country, city, street, post_code) values (602, 'Philippines', 'Kinalaglagan', 'Ps de la Castellana 29', '5614');
insert into api_address (id, country, city, street, post_code) values (603, 'China', 'Baitouli', 'PL DE LA GARE 1 PLACE DE LA GARE', null);
insert into api_address (id, country, city, street, post_code) values (604, 'China', 'Humen', 'Hauptstraße, 9', null);
insert into api_address (id, country, city, street, post_code) values (605, 'Albania', 'Hasan', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (606, 'Ukraine', 'Lityn', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (607, 'Afghanistan', 'Surkh Bilandī', '73 Orwell Road, Rathgar,', null);
insert into api_address (id, country, city, street, post_code) values (608, 'Portugal', 'Paderne', '2, Boulevard de la Foire', '8200-510');
insert into api_address (id, country, city, street, post_code) values (609, 'Poland', 'Ceranów', '60 LIVINGSTON AVENUE', '08-322');
insert into api_address (id, country, city, street, post_code) values (610, 'Nigeria', 'Idah', '138 PUTNAM ST.', null);
insert into api_address (id, country, city, street, post_code) values (611, 'Indonesia', 'Lalukoen Dua', '747 MERIDIAN', null);
insert into api_address (id, country, city, street, post_code) values (612, 'Poland', 'Dziewin', 'Pienzenauerstraße 27', '32-708');
insert into api_address (id, country, city, street, post_code) values (613, 'China', 'Guanshan', '7 EASTON OVAL', null);
insert into api_address (id, country, city, street, post_code) values (614, 'China', 'Tuzhu', 'P O BOX 27025', null);
insert into api_address (id, country, city, street, post_code) values (615, 'Tajikistan', 'Kolkhozobod', 'P.O. BOX 398', null);
insert into api_address (id, country, city, street, post_code) values (616, 'China', 'Raofeng', '24 SECOND AVE SE', null);
insert into api_address (id, country, city, street, post_code) values (617, 'China', 'Liudong', '3833 EBONY ST', null);
insert into api_address (id, country, city, street, post_code) values (618, 'Russia', 'Yartsevo', 'Marktplatz 5', '215807');
insert into api_address (id, country, city, street, post_code) values (619, 'Madagascar', 'Andramasina', '27-29 Patrick Street, Fermoy,', null);
insert into api_address (id, country, city, street, post_code) values (620, 'Russia', 'Severka', '1200 E WARRENVILLE ROAD', '620920');
insert into api_address (id, country, city, street, post_code) values (621, 'Croatia', 'Metković', 'HOOGE STEENWG 29', '20350');
insert into api_address (id, country, city, street, post_code) values (622, 'Jordan', 'Karak City', 'Hauptstraße 13', null);
insert into api_address (id, country, city, street, post_code) values (623, 'Canada', 'Nanaimo', 'Bahnhofstraße 20', 'V6L');
insert into api_address (id, country, city, street, post_code) values (624, 'Philippines', 'Calangain', '10583 MAIN', '2005');
insert into api_address (id, country, city, street, post_code) values (625, 'Sweden', 'Göteborg', 'R. General Firmino Miguel, 5 - 1º', '418 72');
insert into api_address (id, country, city, street, post_code) values (626, 'China', 'Xin Bulag', 'Präsident-Krahn-Straße 16-17', null);
insert into api_address (id, country, city, street, post_code) values (627, 'China', 'Jiazhuang', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (628, 'Indonesia', 'Mlawe', '2220 6TH STREET', null);
insert into api_address (id, country, city, street, post_code) values (629, 'Indonesia', 'Soreang', '221 JEFFERSON STREET', null);
insert into api_address (id, country, city, street, post_code) values (630, 'United States', 'Cheyenne', '101 EAST MAIN', '82007');
insert into api_address (id, country, city, street, post_code) values (631, 'Nicaragua', 'Bluefields', '24010 PARTNERSHIP BOULEVARD', null);
insert into api_address (id, country, city, street, post_code) values (632, 'Iran', 'Galūgāh', 'PIAZZA LIBERTA'', 23', null);
insert into api_address (id, country, city, street, post_code) values (633, 'China', 'Nyinqug', '6600 PLAZA DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (634, 'Georgia', 'Tsaghveri', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (635, 'Mexico', 'Guadalupe', 'Friedrich-Ebert-Anlage 49 (MesseTurm) 29. OG', '24400');
insert into api_address (id, country, city, street, post_code) values (636, 'Philippines', 'Padang', 'CL SAN CRISTÓBAL, 19', '1719');
insert into api_address (id, country, city, street, post_code) values (637, 'Czech Republic', 'Uherské Hradiště', 'VIA ROMA, 81/83', '686 05');
insert into api_address (id, country, city, street, post_code) values (638, 'Burkina Faso', 'Yako', 'Kärntner Straße, 394', null);
insert into api_address (id, country, city, street, post_code) values (639, 'China', 'Lianyun', 'PIAZZA GAE AULENTI, 3 TOWER A', null);
insert into api_address (id, country, city, street, post_code) values (640, 'Slovenia', 'Žirovnica', 'SUITE 600', '4274');
insert into api_address (id, country, city, street, post_code) values (641, 'Philippines', 'Barurao', '29 Avenue de la Porte-Neuve', '8108');
insert into api_address (id, country, city, street, post_code) values (642, 'United States', 'South Bend', 'PO BOX 218', '46620');
insert into api_address (id, country, city, street, post_code) values (643, 'Indonesia', 'Karangturi', '51, Avenue J.F. Kennedy', null);
insert into api_address (id, country, city, street, post_code) values (644, 'Indonesia', 'Ketawang', '55, Boulevard Royal', null);
insert into api_address (id, country, city, street, post_code) values (645, 'Egypt', 'Kafr ash Shaykh', '1 TALLMAN RD', null);
insert into api_address (id, country, city, street, post_code) values (646, 'Greece', 'Lápas', 'PO BOX 137', null);
insert into api_address (id, country, city, street, post_code) values (647, 'China', 'Guohua', '201 N. WASHINGTON ST.', null);
insert into api_address (id, country, city, street, post_code) values (648, 'Russia', 'Vostochnyy', 'PIAZZA FILIPPO MEDA 4', '612711');
insert into api_address (id, country, city, street, post_code) values (649, 'Indonesia', 'Sumberdadi', '708 S. MAIN', null);
insert into api_address (id, country, city, street, post_code) values (650, 'Indonesia', 'Babakandesa', '333 E. MAIN STREET', null);
insert into api_address (id, country, city, street, post_code) values (651, 'Brazil', 'Cabreúva', 'VIA G. MARCONI, 58', '13315-000');
insert into api_address (id, country, city, street, post_code) values (652, 'China', 'Shimeitang', '1855 SECOND ST', null);
insert into api_address (id, country, city, street, post_code) values (653, 'China', 'Huifeng', 'Liffey Park, Barnhall', null);
insert into api_address (id, country, city, street, post_code) values (654, 'China', 'Dagang', '12345 W. COLFAX AVE', null);
insert into api_address (id, country, city, street, post_code) values (655, 'Russia', 'Petrovsk', 'Kesselbrink 1', '412545');
insert into api_address (id, country, city, street, post_code) values (656, 'China', 'Daqian', '6400 N ORACLE', null);
insert into api_address (id, country, city, street, post_code) values (657, 'Brazil', 'Barbalha', 'Bahnhofstraße 20', '63180-000');
insert into api_address (id, country, city, street, post_code) values (658, 'Argentina', 'Villa Santa Rita', 'Anger 25/26', '4600');
insert into api_address (id, country, city, street, post_code) values (659, 'Croatia', 'Greda', '3320 DREDGE DRIVE', '44273');
insert into api_address (id, country, city, street, post_code) values (660, 'Greece', 'Yiánnouli', 'Tabbenstraße 20', null);
insert into api_address (id, country, city, street, post_code) values (661, 'United States', 'Salinas', '4TH FLOOR', '93907');
insert into api_address (id, country, city, street, post_code) values (662, 'China', 'Mazhu', 'PO BOX 196', null);
insert into api_address (id, country, city, street, post_code) values (663, 'Dominican Republic', 'Punta Cana', 'Wielandstraße 22', '11805');
insert into api_address (id, country, city, street, post_code) values (664, 'Paraguay', 'Paraguarí', '2, Boulevard de la Foire', null);
insert into api_address (id, country, city, street, post_code) values (665, 'China', 'Baochang', '400 BURY', null);
insert into api_address (id, country, city, street, post_code) values (666, 'China', 'Lingshan', 'Lechner Ödön fasor 9.', null);
insert into api_address (id, country, city, street, post_code) values (667, 'Bangladesh', 'Jamālpur', '29 AVENUE DE L OPERA', '2011');
insert into api_address (id, country, city, street, post_code) values (668, 'China', 'Fenghui', '3731 WILSHIRE BLVD SUITE 1000', null);
insert into api_address (id, country, city, street, post_code) values (669, 'Norway', 'Porsgrunn', 'Werdenbergerstraße, 9', '3996');
insert into api_address (id, country, city, street, post_code) values (670, 'United States', 'Jefferson City', 'Münchner Allee 2', '65105');
insert into api_address (id, country, city, street, post_code) values (671, 'Sweden', 'Vilhelmina', '51, Avenue J.F. Kennedy', '912 24');
insert into api_address (id, country, city, street, post_code) values (672, 'United States', 'Tempe', 'ul. Żeromskiego 68', '85284');
insert into api_address (id, country, city, street, post_code) values (673, 'Argentina', 'Tigre', 'NY-31-17-0119', '3350');
insert into api_address (id, country, city, street, post_code) values (674, 'Russia', 'Uvarovo', 'Credit Union House, Bridge Street, Gort,', '393479');
insert into api_address (id, country, city, street, post_code) values (675, 'Philippines', 'San Remigio', 'VIA DEL RICREATORIO, 2', '6011');
insert into api_address (id, country, city, street, post_code) values (676, 'Indonesia', 'Tanjung Raja', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (677, 'China', 'Chengzhong', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (678, 'Macedonia', 'Крива Паланка', '502 S. HICKORY STREET', '1333');
insert into api_address (id, country, city, street, post_code) values (679, 'Indonesia', 'Cimarelang', '117 W 1ST STREET', null);
insert into api_address (id, country, city, street, post_code) values (680, 'Indonesia', 'Mojokerto', '1460 VALLEY ROAD', null);
insert into api_address (id, country, city, street, post_code) values (681, 'China', 'Chengkou', 'P.O. BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (682, 'China', 'Lincheng', '119 NORTH SAINT PETER', null);
insert into api_address (id, country, city, street, post_code) values (683, 'France', 'Fosses', 'EP-MN-WN1A', '95479 CEDEX');
insert into api_address (id, country, city, street, post_code) values (684, 'Poland', 'Dębowiec', '10 AVENUE FOCH CS 70369', '43-426');
insert into api_address (id, country, city, street, post_code) values (685, 'Finland', 'Juupajoki', 'PO BOX 129', '35540');
insert into api_address (id, country, city, street, post_code) values (686, 'China', 'Xiaotang', '2220 6TH STREET', null);
insert into api_address (id, country, city, street, post_code) values (687, 'Guatemala', 'Jacaltenango', '8001 VILLA PARK DRIVE', '13007');
insert into api_address (id, country, city, street, post_code) values (688, 'Philippines', 'Lalagsan', 'PO BOX 40', '6328');
insert into api_address (id, country, city, street, post_code) values (689, 'Poland', 'Zagórów', 'PIAZZA FILIPPO MEDA 4', '62-410');
insert into api_address (id, country, city, street, post_code) values (690, 'Sweden', 'Ängelholm', 'PIAZZA FILIPPO MEDA 4', '262 92');
insert into api_address (id, country, city, street, post_code) values (691, 'Indonesia', 'Kampungbaru', 'VIA JOSEF ANTON ZOLLER, 6', null);
insert into api_address (id, country, city, street, post_code) values (692, 'China', 'Henggang', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (693, 'Portugal', 'Olival', 'Am Hof, 4', '2435-454');
insert into api_address (id, country, city, street, post_code) values (694, 'China', 'Litian', 'Kaiser-Heinrich-II.-Straße 2', null);
insert into api_address (id, country, city, street, post_code) values (695, 'United Kingdom', 'Weston', 'PO BOX 27025', 'GU32');
insert into api_address (id, country, city, street, post_code) values (696, 'Brazil', 'Capela', '3848 OSAGE BEACH PARKWAY', '49700-000');
insert into api_address (id, country, city, street, post_code) values (697, 'China', 'Gexi', 'Hauptplatz, 1', null);
insert into api_address (id, country, city, street, post_code) values (698, 'Indonesia', 'Manganitu', 'Taunusanlage 12', null);
insert into api_address (id, country, city, street, post_code) values (699, 'Lithuania', 'Vilkija', 'PO BOX 37025', '54015');
insert into api_address (id, country, city, street, post_code) values (700, 'Colombia', 'Ospina', '1 PENNS WAY', '523047');
insert into api_address (id, country, city, street, post_code) values (701, 'China', 'Huaniao', 'P.O. BOX 1377', null);
insert into api_address (id, country, city, street, post_code) values (702, 'Indonesia', 'Umbultanjung', 'Gaisbeurer Straße 42', null);
insert into api_address (id, country, city, street, post_code) values (703, 'China', 'Longshan', 'P O BOX I', null);
insert into api_address (id, country, city, street, post_code) values (704, 'Sweden', 'Sala', 'Hauptstraße 35', '733 31');
insert into api_address (id, country, city, street, post_code) values (705, 'Indonesia', 'Sukodono', 'Bergerweg, 1', null);
insert into api_address (id, country, city, street, post_code) values (706, 'Cyprus', 'Peristerona', 'PO BOX 7005', null);
insert into api_address (id, country, city, street, post_code) values (707, 'Panama', 'Nueva Gorgona', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (708, 'Portugal', 'Outeiro de Polima', 'Eilgutstraße 9', '2785-505');
insert into api_address (id, country, city, street, post_code) values (709, 'China', 'Xiaolong', 'Am Stadtpark, 9', null);
insert into api_address (id, country, city, street, post_code) values (710, 'China', 'Sanlicheng', 'P O BOX 550', null);
insert into api_address (id, country, city, street, post_code) values (711, 'United States', 'Newport News', 'PO BOX 233', '23612');
insert into api_address (id, country, city, street, post_code) values (712, 'China', 'Dinghuo', 'Marktstraße 35', null);
insert into api_address (id, country, city, street, post_code) values (713, 'China', 'Shangying', 'Corner 200, Limassol Avenue and Athalassas Avenue, Strovolos', null);
insert into api_address (id, country, city, street, post_code) values (714, 'France', 'Bourges', 'CITÉ DES LAURIERS PARC JEAN DE CAMBIAIRE', '18035 CEDEX');
insert into api_address (id, country, city, street, post_code) values (715, 'United States', 'Chico', 'P. O. BOX 10566', '95973');
insert into api_address (id, country, city, street, post_code) values (716, 'Indonesia', 'Cimaung Kidul', '3802 OAK LAWN AVE', null);
insert into api_address (id, country, city, street, post_code) values (717, 'Russia', 'Krasnoznamensk', 'Friedrichstraße 4', '172126');
insert into api_address (id, country, city, street, post_code) values (718, 'Cambodia', 'Ban Lŭng', '211 BURNETTE ST', null);
insert into api_address (id, country, city, street, post_code) values (719, 'Brazil', 'Codajás', 'P O BOX 15', '69450-000');
insert into api_address (id, country, city, street, post_code) values (720, 'Portugal', 'Arcos de Valdevez', '7 PROMENADE GERMAINE SABLON', '4970-434');
insert into api_address (id, country, city, street, post_code) values (721, 'Venezuela', 'San Fernando de Atabapo', '1460 VALLEY RD', null);
insert into api_address (id, country, city, street, post_code) values (722, 'Ukraine', 'Energodar', '80, route d''Esch', null);
insert into api_address (id, country, city, street, post_code) values (723, 'Germany', 'Berlin', '122 W. STATE ST.', '10587');
insert into api_address (id, country, city, street, post_code) values (724, 'Syria', 'Duwayr Raslān', '2nd Floor International House 3 Harbour Master Place', null);
insert into api_address (id, country, city, street, post_code) values (725, 'China', 'Pinghu', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (726, 'China', 'Nanxindian', '80 SUGAR CREEK CENTER BLVD.', null);
insert into api_address (id, country, city, street, post_code) values (727, 'France', 'Woippy', '6TH FLOOR', '57148 CEDEX');
insert into api_address (id, country, city, street, post_code) values (728, 'China', 'Zhuhe', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (729, 'Venezuela', 'Lagunillas', '200 S LOCUST', null);
insert into api_address (id, country, city, street, post_code) values (730, 'Poland', 'Knurów', 'Holzgraben 31', '44-196');
insert into api_address (id, country, city, street, post_code) values (731, 'North Korea', 'Hŭkkyo-ri', '3731 WILSHIRE BLVD SUITE 1000', null);
insert into api_address (id, country, city, street, post_code) values (732, 'Greece', 'Dióni', '8-10, rue Jean Monnet', null);
insert into api_address (id, country, city, street, post_code) values (733, 'Indonesia', 'Kendal', '1101 HIGHWAY 35 SOUTH', null);
insert into api_address (id, country, city, street, post_code) values (734, 'Sweden', 'Jönköping', '245 BELGRADE AVE', '556 31');
insert into api_address (id, country, city, street, post_code) values (735, 'Philippines', 'Tolosa', '5820 82ND STREET', '6503');
insert into api_address (id, country, city, street, post_code) values (736, 'Indonesia', 'Biito', '1008 OAK STREET', null);
insert into api_address (id, country, city, street, post_code) values (737, 'China', 'Beigang', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (738, 'Greece', 'Ágios Spyrídon', 'VA2-430-01-01', null);
insert into api_address (id, country, city, street, post_code) values (739, 'Russia', 'Sheregesh', '3731 WILSHIRE BOULEVARD SUITE 1000', '660126');
insert into api_address (id, country, city, street, post_code) values (740, 'Panama', 'El Coco', '12 PLACE DES ETATS UNIS', null);
insert into api_address (id, country, city, street, post_code) values (741, 'Russia', 'Lyuban’', 'PIAZZA FILIPPO MEDA 4', '187052');
insert into api_address (id, country, city, street, post_code) values (742, 'Portugal', 'Santarém', 'Mannebeekstraat, 33', '2000-014');
insert into api_address (id, country, city, street, post_code) values (743, 'Oman', 'Bawshar', 'Grazer Straße, 62', null);
insert into api_address (id, country, city, street, post_code) values (744, 'Mongolia', 'Ulaan Khat', 'Bdul. Expozitiei nr.1F, sector 1', null);
insert into api_address (id, country, city, street, post_code) values (745, 'Russia', 'Yessentukskaya', '701 SOUTH 32ND STREET', '357637');
insert into api_address (id, country, city, street, post_code) values (746, 'Antigua and Barbuda', 'Saint John’s', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (747, 'Nigeria', 'Idanre', 'Pz de San Nicolás, 4', null);
insert into api_address (id, country, city, street, post_code) values (748, 'Colombia', 'Belén de Umbría', 'LOCATER 01-5138', '664048');
insert into api_address (id, country, city, street, post_code) values (749, 'Indonesia', 'Cigagade', 'Am Floßkanal 4', null);
insert into api_address (id, country, city, street, post_code) values (750, 'China', 'Shangde', 'PO BOX 7005', null);
insert into api_address (id, country, city, street, post_code) values (751, 'Togo', 'Dapaong', '12345 W COLFAX AVE', null);
insert into api_address (id, country, city, street, post_code) values (752, 'Argentina', 'Catriló', 'PO BOX 27025, VA2-430-01-01', '6330');
insert into api_address (id, country, city, street, post_code) values (753, 'Ireland', 'Adare', 'Rennweg, 6', 'H54');
insert into api_address (id, country, city, street, post_code) values (754, 'Argentina', 'Almafuerte', 'PO BOX 289', '3317');
insert into api_address (id, country, city, street, post_code) values (755, 'Indonesia', 'Nusajaya', 'Aleja kralja Zvonimira 1', null);
insert into api_address (id, country, city, street, post_code) values (756, 'France', 'Amiens', 'P.O. BOX 85139', '80075 CEDEX 1');
insert into api_address (id, country, city, street, post_code) values (757, 'Mexico', 'El Mirador', '4140 EAST STATE STREET', '56564');
insert into api_address (id, country, city, street, post_code) values (758, 'Indonesia', 'Lokea', 'PO BOX 525', null);
insert into api_address (id, country, city, street, post_code) values (759, 'Brazil', 'Paracambi', 'Residenzplatz 23', '26600-000');
insert into api_address (id, country, city, street, post_code) values (760, 'France', 'Rungis', 'CL TUTOR, 16', '94569 CEDEX 2');
insert into api_address (id, country, city, street, post_code) values (761, 'Costa Rica', 'Colima', 'Friedrich-Ebert-Anlage 35-37', '11305');
insert into api_address (id, country, city, street, post_code) values (762, 'Indonesia', 'Sarirejo Satu', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (763, 'Pakistan', 'Lārkāna', 'Attergaustraße, 38a', '77381');
insert into api_address (id, country, city, street, post_code) values (764, 'Russia', 'Novoaleksandrovsk', '5050 KINGSLEY DRIVE', '356003');
insert into api_address (id, country, city, street, post_code) values (765, 'China', 'Chahannao', '333 E MAIN ST', null);
insert into api_address (id, country, city, street, post_code) values (766, 'China', 'Dadukou', '1630 4TH AVENUE NORTH', null);
insert into api_address (id, country, city, street, post_code) values (767, 'Czech Republic', 'Kašperské Hory', 'PIAZZA FILIPPO MEDA 4', '341 92');
insert into api_address (id, country, city, street, post_code) values (768, 'Ecuador', 'Huaquillas', 'P.O. BOX 351', null);
insert into api_address (id, country, city, street, post_code) values (769, 'Kenya', 'Machakos', '5 AVENUE DE LA LIBERTE', null);
insert into api_address (id, country, city, street, post_code) values (770, 'Poland', 'Stare Pole', '5050 KINGSLEY DRIVE', '82-220');
insert into api_address (id, country, city, street, post_code) values (771, 'Russia', 'Mikun’', 'Bahnhofstraße 3', '169060');
insert into api_address (id, country, city, street, post_code) values (772, 'China', 'Chenyang', '80 SUGAR CREEK CENTER BLVD', null);
insert into api_address (id, country, city, street, post_code) values (773, 'Serbia', 'Padej', 'PO BOX 27025, VA2-430-01-01', null);
insert into api_address (id, country, city, street, post_code) values (774, 'France', 'Hyères', 'Große Elbstraße 39', '83404 CEDEX');
insert into api_address (id, country, city, street, post_code) values (775, 'Palestinian Territory', 'Al Jīb', 'P O BOX 370', null);
insert into api_address (id, country, city, street, post_code) values (776, 'China', 'Sanchahe', 'Magazinska cesta 69', null);
insert into api_address (id, country, city, street, post_code) values (777, 'Egypt', 'Hurghada', 'Marktplatz, 6', null);
insert into api_address (id, country, city, street, post_code) values (778, 'Rwanda', 'Kigali', 'Senefelderstraße 25', null);
insert into api_address (id, country, city, street, post_code) values (779, 'Indonesia', 'Wanglu Kulon', 'PO BOX 738', null);
insert into api_address (id, country, city, street, post_code) values (780, 'Laos', 'Sainyabuli', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (781, 'Russia', 'Orlovka', 'Untere Hauptstraße, 36', '357311');
insert into api_address (id, country, city, street, post_code) values (782, 'Brazil', 'Barreiro do Jaíba', '323 E 7TH ST.', '29785-000');
insert into api_address (id, country, city, street, post_code) values (783, 'Russia', 'Reshetikha', '1 CITIZENS DRIVE ROP440', '606093');
insert into api_address (id, country, city, street, post_code) values (784, 'China', 'Yicheng', 'PIAZZA DEL CALENDARIO, 3', null);
insert into api_address (id, country, city, street, post_code) values (785, 'China', 'Liaobu', 'P.O. BOX 1009', null);
insert into api_address (id, country, city, street, post_code) values (786, 'Thailand', 'Kae Dam', 'SECOND FLOOR', '44190');
insert into api_address (id, country, city, street, post_code) values (787, 'Switzerland', 'Zürich', '5900 LA PLACE COURT STE 200', '8012');
insert into api_address (id, country, city, street, post_code) values (788, 'Sweden', 'Helsingborg', '43 RUE GIOFFREDO', '254 36');
insert into api_address (id, country, city, street, post_code) values (789, 'Peru', 'La Unión', '1238 BROAD STREET', null);
insert into api_address (id, country, city, street, post_code) values (790, 'Finland', 'Tuusula', '12, rue Eugène Ruppert', '04380');
insert into api_address (id, country, city, street, post_code) values (791, 'Russia', 'Pokrovo-Prigorodnoye', 'VIA ORZINUOVI, 75', '392999');
insert into api_address (id, country, city, street, post_code) values (792, 'Indonesia', 'Wakduwa’ Barat', 'Paldau, 40', null);
insert into api_address (id, country, city, street, post_code) values (793, 'Iran', 'Shahr-e Qods', '12183 MS HWY 182', null);
insert into api_address (id, country, city, street, post_code) values (794, 'China', 'Xinzhou', 'NY-31-17-0119', null);
insert into api_address (id, country, city, street, post_code) values (795, 'Namibia', 'Maltahöhe', '10430 HIGHLAND MANOR DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (796, 'Libya', 'Tagiura', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (797, 'Indonesia', 'Puamata', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (798, 'Vietnam', 'Khánh Hải', 'Schrobenhausener Straße 2', null);
insert into api_address (id, country, city, street, post_code) values (799, 'Indonesia', 'Juwana', 'Deckerstraße 37-39', null);
insert into api_address (id, country, city, street, post_code) values (800, 'Tanzania', 'Mugumu', 'P.O. BOX 87003', null);
insert into api_address (id, country, city, street, post_code) values (801, 'Czech Republic', 'Velké Meziříčí', 'Cl Santa María, 9', '594 01');
insert into api_address (id, country, city, street, post_code) values (802, 'China', 'Chiguang', 'Tenter Weg 1-3', null);
insert into api_address (id, country, city, street, post_code) values (803, 'Syria', 'Al Qāmishlī', 'Hauptplatz, 20', null);
insert into api_address (id, country, city, street, post_code) values (804, 'Russia', 'Polyarnyy', 'Bahnhofplatz 1', '184653');
insert into api_address (id, country, city, street, post_code) values (805, 'Czech Republic', 'Jindřichův Hradec', 'P.O. BOX 85139', '378 33');
insert into api_address (id, country, city, street, post_code) values (806, 'Venezuela', 'Santa María de Caparo', '403 NORTH CROSS STREET', null);
insert into api_address (id, country, city, street, post_code) values (807, 'China', 'Xinglong', 'ACH OPERATIONS 100-99-04-10', null);
insert into api_address (id, country, city, street, post_code) values (808, 'Indonesia', 'Bindang', 'MAC N9301-041', null);
insert into api_address (id, country, city, street, post_code) values (809, 'Argentina', 'San Carlos', 'SUITE 101', '4186');
insert into api_address (id, country, city, street, post_code) values (810, 'China', 'Duowa', 'RS-14', null);
insert into api_address (id, country, city, street, post_code) values (811, 'Japan', 'Fujisawa', 'VIA CALDERA, 21', '997-0751');
insert into api_address (id, country, city, street, post_code) values (812, 'Ukraine', 'Kharkiv', 'Lower Friars Walk', null);
insert into api_address (id, country, city, street, post_code) values (813, 'Peru', 'Aco', '17555 NE SACRAMENTO ST', null);
insert into api_address (id, country, city, street, post_code) values (814, 'Cameroon', 'Ébolowa', '30 RUE DE LILLE BP 613', null);
insert into api_address (id, country, city, street, post_code) values (815, 'Indonesia', 'Rejasa Kaja', 'Credit Union Office, Market Square, Castlebar,', null);
insert into api_address (id, country, city, street, post_code) values (816, 'Venezuela', 'San Juan de Manapiare', '255 2ND AVE SOUTH', null);
insert into api_address (id, country, city, street, post_code) values (817, 'Finland', 'Vaasa', 'ONE PENN''S WAY', '66999');
insert into api_address (id, country, city, street, post_code) values (818, 'Philippines', 'Gang', 'P.O. BOX 87003', '3703');
insert into api_address (id, country, city, street, post_code) values (819, 'Nigeria', 'Onitsha', 'AVENUE DES CHAMPS ELYSEES 90', null);
insert into api_address (id, country, city, street, post_code) values (820, 'Poland', 'Psary', 'LOC 01-5138', '42-580');
insert into api_address (id, country, city, street, post_code) values (821, 'Greece', 'Kallithéa', '1 PENNS WAY', null);
insert into api_address (id, country, city, street, post_code) values (822, 'China', 'Rongdoi', 'STE B', null);
insert into api_address (id, country, city, street, post_code) values (823, 'China', 'Qiaotou', 'NY-31-17-0119', null);
insert into api_address (id, country, city, street, post_code) values (824, 'China', 'Enshi', 'SECOND FLOOR', null);
insert into api_address (id, country, city, street, post_code) values (825, 'Greece', 'Erétria', '3RD FLOOR', null);
insert into api_address (id, country, city, street, post_code) values (826, 'Macedonia', 'Gevgelija', 'Sparkassenplatz', '1480');
insert into api_address (id, country, city, street, post_code) values (827, 'Colombia', 'La Montañita', 'Taunusanlage 12', '181067');
insert into api_address (id, country, city, street, post_code) values (828, 'China', 'Jincun', '5TH FLOOR', null);
insert into api_address (id, country, city, street, post_code) values (829, 'Philippines', 'Dimiao', 'P.O. BOX 709', '6305');
insert into api_address (id, country, city, street, post_code) values (830, 'Indonesia', 'Pomahan', 'Magyar Tudósok körútja körút 9. G. épület', null);
insert into api_address (id, country, city, street, post_code) values (831, 'Vietnam', 'Bảo Lộc', 'P O BOX 9', null);
insert into api_address (id, country, city, street, post_code) values (832, 'Brazil', 'Limoeiro do Ajuru', 'Ludwig-Erhard-Allee 15', '68415-000');
insert into api_address (id, country, city, street, post_code) values (833, 'Brazil', 'Cajuru', '1620 DODGE STREET', '14240-000');
insert into api_address (id, country, city, street, post_code) values (834, 'Poland', 'Rajsko', 'P7-PFSC-03-H', '32-626');
insert into api_address (id, country, city, street, post_code) values (835, 'Bosnia and Herzegovina', 'Pećigrad', 'Bahnhofstraße 125', null);
insert into api_address (id, country, city, street, post_code) values (836, 'China', 'Tanjiaqiao', '1 Railway Avenue, Malahide,', null);
insert into api_address (id, country, city, street, post_code) values (837, 'Philippines', 'Union', 'Dr.-Götz-Straße 1', '4314');
insert into api_address (id, country, city, street, post_code) values (838, 'China', 'Jiuheyuan', 'AVENUE DES CHAMPS ELYSEES 90', null);
insert into api_address (id, country, city, street, post_code) values (839, 'Portugal', 'Penalva de Alva', 'Teréz körút 55-57.', '3400-548');
insert into api_address (id, country, city, street, post_code) values (840, 'Russia', 'Debesy', '24 SECOND AVENUE', '427060');
insert into api_address (id, country, city, street, post_code) values (841, 'Yemen', 'Maţarah', 'Dorfstraße 20', null);
insert into api_address (id, country, city, street, post_code) values (842, 'Uruguay', 'Porvenir', 'Alpbach, 177', null);
insert into api_address (id, country, city, street, post_code) values (843, 'Poland', 'Szklarska Poręba', 'VIA EMILIA A SAN PIETRO, 4', '58-580');
insert into api_address (id, country, city, street, post_code) values (844, 'Chile', 'Molina', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (845, 'Indonesia', 'Kampungbaru', '16 BOULEVARD DES ITALIENS', null);
insert into api_address (id, country, city, street, post_code) values (846, 'Russia', 'Североморск-3', 'Paulinenstraße 15', '184606');
insert into api_address (id, country, city, street, post_code) values (847, 'Norway', 'Oslo', '4140 EAST STATE STREET', '1101');
insert into api_address (id, country, city, street, post_code) values (848, 'Brazil', 'Jataí', 'BUILDING B', '75800-000');
insert into api_address (id, country, city, street, post_code) values (849, 'China', 'Dongcun', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (850, 'Guatemala', 'Santa Clara La Laguna', 'PO BOX 709', '07007');
insert into api_address (id, country, city, street, post_code) values (851, 'Niger', 'Tessaoua', 'PO BOX 158', null);
insert into api_address (id, country, city, street, post_code) values (852, 'Brazil', 'Guaíba', 'PIAZZA DEL CALENDARIO, 3', '92500-000');
insert into api_address (id, country, city, street, post_code) values (853, 'Philippines', 'San Pascual', 'AVENUE DES CHAMPS ELYSEES 90', '5420');
insert into api_address (id, country, city, street, post_code) values (854, 'Brazil', 'Itaperuna', 'Curraheen Road', '28300-000');
insert into api_address (id, country, city, street, post_code) values (855, 'Cuba', 'Cacocum', 'Schupstraat, 18-20', null);
insert into api_address (id, country, city, street, post_code) values (856, 'Syria', 'Al Karāmah', 'Store Torv 1', null);
insert into api_address (id, country, city, street, post_code) values (857, 'Russia', 'Linëvo', '80 SUGAR CREEK CENTER BLVD', '633216');
insert into api_address (id, country, city, street, post_code) values (858, 'Dominican Republic', 'Villa Bisonó', 'P.O. BOX 85139', '11105');
insert into api_address (id, country, city, street, post_code) values (859, 'Russia', 'Gornyy', '113 W NORTH WATER ST', '413545');
insert into api_address (id, country, city, street, post_code) values (860, 'Argentina', 'Ushuaia', 'PIAZZA GARIBALDI, 16', '9410');
insert into api_address (id, country, city, street, post_code) values (861, 'Argentina', 'Espinillo', 'Av Don Bosco, 2', '3460');
insert into api_address (id, country, city, street, post_code) values (862, 'Portugal', 'Oliveira', 'PIAZZA FILIPPO MEDA 4', '4750-584');
insert into api_address (id, country, city, street, post_code) values (863, 'Philippines', 'Buruanga', '49 AVENUE KLEBER', '5609');
insert into api_address (id, country, city, street, post_code) values (864, 'Indonesia', 'Bagok', '17 COURS VALMY', null);
insert into api_address (id, country, city, street, post_code) values (865, 'Thailand', 'Wang Thonglang', '1200 E WARRENVILLE RD', '52140');
insert into api_address (id, country, city, street, post_code) values (866, 'Indonesia', 'Terentang', 'VIA INSORTI D''UNGHERIA, 30', null);
insert into api_address (id, country, city, street, post_code) values (867, 'Philippines', 'Matungao', 'PO BOX 27025', '9203');
insert into api_address (id, country, city, street, post_code) values (868, 'Ukraine', 'Krasnotorka', 'BOX 137', null);
insert into api_address (id, country, city, street, post_code) values (869, 'Vietnam', 'Thị Trấn Ngọc Lặc', 'VIALE BARI, 10', null);
insert into api_address (id, country, city, street, post_code) values (870, 'South Africa', 'Muldersdriseloop', 'Bahnhofstraße 41', '3250');
insert into api_address (id, country, city, street, post_code) values (871, 'Argentina', 'Carcarañá', '1B, Rue Gabriel Lippmann', '2138');
insert into api_address (id, country, city, street, post_code) values (872, 'Philippines', 'Taytay', '2ND FLOOR', '5312');
insert into api_address (id, country, city, street, post_code) values (873, 'Colombia', 'Guaitarilla', 'VIA MARIO BIANCHINI 13', '525508');
insert into api_address (id, country, city, street, post_code) values (874, 'Indonesia', 'Klayusiwalan', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (875, 'Iran', 'Aghajari', '15 SAMMY MCGHEE BLVD', null);
insert into api_address (id, country, city, street, post_code) values (876, 'China', 'Shichuan', '5050 KINGSLEY DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (877, 'France', 'Sablé-sur-Sarthe', 'PIAZZA FILIPPO MEDA 4', '72304 CEDEX');
insert into api_address (id, country, city, street, post_code) values (878, 'Philippines', 'Baro', 'P O BOX 7009', '2445');
insert into api_address (id, country, city, street, post_code) values (879, 'Indonesia', 'Sumurwaru', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (880, 'Brazil', 'Tarauacá', 'STE 312', '69970-000');
insert into api_address (id, country, city, street, post_code) values (881, 'Nigeria', 'Kankara', 'Na Florenci 2139/2', null);
insert into api_address (id, country, city, street, post_code) values (882, 'Mexico', 'San Francisco', 'MAC N9301-041', '51016');
insert into api_address (id, country, city, street, post_code) values (883, 'Sweden', 'Uppsala', '12345 W COLFAX AVE', '751 87');
insert into api_address (id, country, city, street, post_code) values (884, 'China', 'Wanmingang', 'P O BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (885, 'Peru', 'Uticyacu', '204 E. HWY 16', null);
insert into api_address (id, country, city, street, post_code) values (886, 'Sweden', 'Halmstad', 'Hauptplatz, 1', '302 55');
insert into api_address (id, country, city, street, post_code) values (887, 'China', 'Xiayunling', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (888, 'Kazakhstan', 'Ust-Kamenogorsk', 'Bergstraße 4', null);
insert into api_address (id, country, city, street, post_code) values (889, 'Estonia', 'Pärnu-Jaagupi', '4140 EAST STATE STREET', null);
insert into api_address (id, country, city, street, post_code) values (890, 'Thailand', 'Thung Yang Daeng', '5050 KINGSLEY DRIVE', '46000');
insert into api_address (id, country, city, street, post_code) values (891, 'France', 'Paris 13', 'VIALE ALTIERO SPINELLI, 30', '75243 CEDEX 13');
insert into api_address (id, country, city, street, post_code) values (892, 'Czech Republic', 'Horní Libina', '324 N STATE ST', '789 74');
insert into api_address (id, country, city, street, post_code) values (893, 'France', 'Perpignan', 'Old Church Street, Athenry,', '66050 CEDEX');
insert into api_address (id, country, city, street, post_code) values (894, 'Brazil', 'Bocaiúva', 'PIAZZA FILIPPO MEDA 4', '39390-000');
insert into api_address (id, country, city, street, post_code) values (895, 'Indonesia', 'Purut', '1398 CENTRAL AVE', null);
insert into api_address (id, country, city, street, post_code) values (896, 'Jamaica', 'Half Way Tree', 'VIALE ALTIERO SPINELLI, 30', null);
insert into api_address (id, country, city, street, post_code) values (897, 'Russia', 'Puksoozero', 'Kaiserstraße 16 (Kaiserplatz)', '164251');
insert into api_address (id, country, city, street, post_code) values (898, 'Vietnam', 'Dĩ An', 'P.O. BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (899, 'Czech Republic', 'Nový Bor', 'Yrjönkatu 9 A', '473 01');
insert into api_address (id, country, city, street, post_code) values (900, 'Peru', 'Usicayos', 'Artane Roundabout', null);
insert into api_address (id, country, city, street, post_code) values (901, 'Mexico', 'Benito Juarez', '535 BENT AVE', '95749');
insert into api_address (id, country, city, street, post_code) values (902, 'Nigeria', 'Gaya', '10430 HIGHLAND MANOR DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (903, 'China', 'Wujiabao', 'Untermainanlage 1', null);
insert into api_address (id, country, city, street, post_code) values (904, 'Slovenia', 'Ljubno ob Savinji', 'VIALE ALTIERO SPINELLI, 30', '3333');
insert into api_address (id, country, city, street, post_code) values (905, 'Philippines', 'De la Paz', 'Thülecke 12', '6337');
insert into api_address (id, country, city, street, post_code) values (906, 'Bolivia', 'Villamontes', 'Europaplatz, 1a', null);
insert into api_address (id, country, city, street, post_code) values (907, 'Sweden', 'Uppsala', 'P.O. BOX 5269', '753 26');
insert into api_address (id, country, city, street, post_code) values (908, 'China', 'Xinxu', '2301 INDEPENDENCE BLVD', null);
insert into api_address (id, country, city, street, post_code) values (909, 'Argentina', 'Azul', 'PS JOSE MARÍA ARIZMENDIARRIETA SN', '7300');
insert into api_address (id, country, city, street, post_code) values (910, 'Pakistan', 'New Mīrpur', 'Schupstraat, 18-20', '47951');
insert into api_address (id, country, city, street, post_code) values (911, 'Luxembourg', 'Sandweiler', '458 COLORADO AVENUE', 'L-5290');
insert into api_address (id, country, city, street, post_code) values (912, 'Mongolia', 'Tsant', '151 RUE D UELZEN', null);
insert into api_address (id, country, city, street, post_code) values (913, 'Costa Rica', 'Escazú', '302 W CHICKASHA', '10201');
insert into api_address (id, country, city, street, post_code) values (914, 'China', 'Xishaping', 'LOCATER 01-5138', null);
insert into api_address (id, country, city, street, post_code) values (915, 'China', 'Juxing', 'P.O. BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (916, 'Indonesia', 'Kuluran', 'PIAZZA FILIPPO MEDA 4', null);
insert into api_address (id, country, city, street, post_code) values (917, 'Russia', 'Kemlya', '26 QUAI DE LA RAPEE', '431646');
insert into api_address (id, country, city, street, post_code) values (918, 'China', 'Xiangfu', 'PIAZZA SAN CARLO, 156', null);
insert into api_address (id, country, city, street, post_code) values (919, 'Kosovo', 'Junik', 'PIAZZA SAN CARLO, 156', null);
insert into api_address (id, country, city, street, post_code) values (920, 'Indonesia', 'Cikaso', 'Wolfgang-Brumme-Allee 1', null);
insert into api_address (id, country, city, street, post_code) values (921, 'Ukraine', 'Barvinkove', '201 SOUTH MAIN STREET', null);
insert into api_address (id, country, city, street, post_code) values (922, 'Pakistan', 'Kāleke Mandi', '2910 W JACKSON STREET', '52150');
insert into api_address (id, country, city, street, post_code) values (923, 'China', 'Xialaba', 'PO BOX 525', null);
insert into api_address (id, country, city, street, post_code) values (924, 'Macedonia', 'Лабуништа', 'PO BOX 10566', '6337');
insert into api_address (id, country, city, street, post_code) values (925, 'Indonesia', 'Pasongsongan', '1200 E. WARRENVILLE RD', null);
insert into api_address (id, country, city, street, post_code) values (926, 'Indonesia', 'Kota Ternate', 'P.O. BOX 87003', null);
insert into api_address (id, country, city, street, post_code) values (927, 'Finland', 'Juupajoki', 'Stau 15/17', '35540');
insert into api_address (id, country, city, street, post_code) values (928, 'Poland', 'Wisła', '13840 W. NEWBERRY RD', '43-460');
insert into api_address (id, country, city, street, post_code) values (929, 'Indonesia', 'Pandean', 'Ludwig-Erhard-Allee 15', null);
insert into api_address (id, country, city, street, post_code) values (930, 'Georgia', 'Abastumani', '16 BOULEVARD DES ITALIENS', null);
insert into api_address (id, country, city, street, post_code) values (931, 'China', 'Duobagou', 'EP-MN-WN1A', null);
insert into api_address (id, country, city, street, post_code) values (932, 'Albania', 'Vithkuq', 'P O BOX 1400', null);
insert into api_address (id, country, city, street, post_code) values (933, 'Japan', 'Kushiro', '24 SECOND AVE SE', '729-5122');
insert into api_address (id, country, city, street, post_code) values (934, 'Brazil', 'Governador Valadares', 'Adolf-Müller-Straße 1', '35000-000');
insert into api_address (id, country, city, street, post_code) values (935, 'Bolivia', 'Arani', '111 SILVAN AVENUE', null);
insert into api_address (id, country, city, street, post_code) values (936, 'China', 'Kuasha', 'VIA BELENZANI, 12', null);
insert into api_address (id, country, city, street, post_code) values (937, 'Honduras', 'Baja Mar', '7813 OFFICE PARK BLVD', null);
insert into api_address (id, country, city, street, post_code) values (938, 'Afghanistan', 'Faīẕābād', 'Bahnhofstraße 26', null);
insert into api_address (id, country, city, street, post_code) values (939, 'Russia', 'Bogdanovich', 'LOCATER 01/5138', '624857');
insert into api_address (id, country, city, street, post_code) values (940, 'Sweden', 'Östersund', 'BOX 269', '831 17');
insert into api_address (id, country, city, street, post_code) values (941, 'Democratic Republic of the Congo', 'Bumba', '101 W MASON', null);
insert into api_address (id, country, city, street, post_code) values (942, 'Vietnam', 'Tân Việt', '5050 KINGSLEY DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (943, 'Sweden', 'Norrtälje', 'P.O. BOX 85139', '761 43');
insert into api_address (id, country, city, street, post_code) values (944, 'China', 'Xiangyun', 'Fuhlsbüttler Straße 437', null);
insert into api_address (id, country, city, street, post_code) values (945, 'Armenia', 'Prroshyan', 'Lower Friars Walk', null);
insert into api_address (id, country, city, street, post_code) values (946, 'Cameroon', 'Edéa', 'VIA MACHIAVELLI, 4', null);
insert into api_address (id, country, city, street, post_code) values (947, 'China', 'Kongjiang', '3035 LEONARDTOWN RD', null);
insert into api_address (id, country, city, street, post_code) values (948, 'France', 'Carcassonne', 'Schupstraat, 18-20', '11878 CEDEX 9');
insert into api_address (id, country, city, street, post_code) values (949, 'Mexico', 'Guadalupe', 'VIALE ALTIERO SPINELLI, 30', '94590');
insert into api_address (id, country, city, street, post_code) values (950, 'Guatemala', 'Atescatempa', '200 W CONGRESS ST', '22007');
insert into api_address (id, country, city, street, post_code) values (951, 'Philippines', 'Calumpit', 'SUITE 600', '3003');
insert into api_address (id, country, city, street, post_code) values (952, 'Peru', 'Aquia', 'IMMEUBLE COEUR DÉFENSE 110 ESPLANADE DU GAL DE GAULLE', null);
insert into api_address (id, country, city, street, post_code) values (953, 'Russia', 'Urazovo', 'PO BOX 742', '309975');
insert into api_address (id, country, city, street, post_code) values (954, 'Peru', 'Chaviña', 'Kleiner Markt', null);
insert into api_address (id, country, city, street, post_code) values (955, 'Indonesia', 'Kalimati', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (956, 'China', 'Yujia', 'Coolsingel 139', null);
insert into api_address (id, country, city, street, post_code) values (957, 'Czech Republic', 'Zlechov', 'P.O. BOX 85139', '687 10');
insert into api_address (id, country, city, street, post_code) values (958, 'Portugal', 'São Manços', 'CI Cantón Claudino Pita, 2', '7005-724');
insert into api_address (id, country, city, street, post_code) values (959, 'Guatemala', 'Sololá', 'MAC N9301-041', '07023');
insert into api_address (id, country, city, street, post_code) values (960, 'Poland', 'Jemielno', 'Marktplatz 5', '56-209');
insert into api_address (id, country, city, street, post_code) values (961, 'Palestinian Territory', 'Al ‘Awjā', 'GLFI/COO/STC 189 RUE D''AUBERVILLIERS', null);
insert into api_address (id, country, city, street, post_code) values (962, 'Thailand', 'Khao Kho', 'Morleystraße 2-6', '67270');
insert into api_address (id, country, city, street, post_code) values (963, 'Finland', 'Längelmäki', 'Credit Union House, Askea,', '35400');
insert into api_address (id, country, city, street, post_code) values (964, 'Tajikistan', 'Khodzha-Maston', 'Jan Van Rijswijcklaan, 184', null);
insert into api_address (id, country, city, street, post_code) values (965, 'Russia', 'Ventsy', '2525 GREENBAY ROAD', '352177');
insert into api_address (id, country, city, street, post_code) values (966, 'Cameroon', 'Bertoua', 'P O BOX 67', null);
insert into api_address (id, country, city, street, post_code) values (967, 'Morocco', 'Selouane', '234 E 1ST AVE', null);
insert into api_address (id, country, city, street, post_code) values (968, 'China', 'Baoping', '17555 NE SACRAMENTO ST', null);
insert into api_address (id, country, city, street, post_code) values (969, 'Russia', 'Kedrovyy', 'PO BOX 1377', '443096');
insert into api_address (id, country, city, street, post_code) values (970, 'Botswana', 'Gaborone', 'P7-PFSC-03-H', null);
insert into api_address (id, country, city, street, post_code) values (971, 'Estonia', 'Kilingi-Nõmme', '8770 TESORO DRIVE', null);
insert into api_address (id, country, city, street, post_code) values (972, 'Indonesia', 'Karawatu', 'Marktplatz, 10', null);
insert into api_address (id, country, city, street, post_code) values (973, 'Poland', 'Owczarnia', 'PO BOX 709', '05-824');
insert into api_address (id, country, city, street, post_code) values (974, 'Norway', 'Kristiansand S', 'ul. Puławska 15', '4695');
insert into api_address (id, country, city, street, post_code) values (975, 'Portugal', 'Vale de Madeiros', '18 QUAI DE LA RAPEE', '3525-355');
insert into api_address (id, country, city, street, post_code) values (976, 'China', 'Huating', 'Hauptstr., 41', null);
insert into api_address (id, country, city, street, post_code) values (977, 'Russia', 'Pokrov', 'Wedeler Chaussee 21', '601120');
insert into api_address (id, country, city, street, post_code) values (978, 'Uzbekistan', 'Quvasoy', 'Darmstädter Straße 22', null);
insert into api_address (id, country, city, street, post_code) values (979, 'Portugal', 'Souto da Costa', 'Fleminginkatu 34', '3700-599');
insert into api_address (id, country, city, street, post_code) values (980, 'Indonesia', 'Toupopu', '3320 DREDGE DR', null);
insert into api_address (id, country, city, street, post_code) values (981, 'Guatemala', 'Parramos', 'St. Veiter Ring, 43', '04014');
insert into api_address (id, country, city, street, post_code) values (982, 'Venezuela', 'Ejido', '1 MAIN ST S', null);
insert into api_address (id, country, city, street, post_code) values (983, 'China', 'Shangbahe', 'Republikas laukums 2A', null);
insert into api_address (id, country, city, street, post_code) values (984, 'Malaysia', 'Klang', '7 PROMENADE GERMAINE SABLON', '41918');
insert into api_address (id, country, city, street, post_code) values (985, 'Thailand', 'Na Khu', 'PIAZZA GARIBALDI, 16', '70170');
insert into api_address (id, country, city, street, post_code) values (986, 'Czech Republic', 'Zákupy', '436 SLATER RD', '471 23');
insert into api_address (id, country, city, street, post_code) values (987, 'Sweden', 'Mariefred', 'PO BOX 27025, VA2-430-01-01', '647 81');
insert into api_address (id, country, city, street, post_code) values (988, 'Armenia', 'Mayisyan', 'Hauptstraße 49', null);
insert into api_address (id, country, city, street, post_code) values (989, 'Finland', 'Pertunmaa', 'SUITE 1500', '19430');
insert into api_address (id, country, city, street, post_code) values (990, 'Ukraine', 'Vyshneve', 'PZ DE SAN ANTONIO, SN', null);
insert into api_address (id, country, city, street, post_code) values (991, 'Russia', 'Povedniki', '1927 GREENSBURG CROSSINGS', '172026');
insert into api_address (id, country, city, street, post_code) values (992, 'Morocco', 'Taounate', 'P O BOX 681', null);
insert into api_address (id, country, city, street, post_code) values (993, 'France', 'Marseille', 'NY-31-17-0119', '13281 CEDEX 06');
insert into api_address (id, country, city, street, post_code) values (994, 'United States', 'Springfield', 'Große Elbstraße 39', '62764');
insert into api_address (id, country, city, street, post_code) values (995, 'Indonesia', 'Pahonjean', '3320 DREDGE DR', null);
insert into api_address (id, country, city, street, post_code) values (996, 'Nigeria', 'Mubi', 'Credit Union Centre, Kent Street, Clonakilty,', null);
insert into api_address (id, country, city, street, post_code) values (997, 'Central African Republic', 'Carnot', '397e North Circular Road,', null);
insert into api_address (id, country, city, street, post_code) values (998, 'Poland', 'Drzewica', 'Seestraße, 1', '26-340');
insert into api_address (id, country, city, street, post_code) values (999, 'France', 'Bordeaux', 'VIALE ALTIERO SPINELLI, 30', '33050 CEDEX');
insert into api_address (id, country, city, street, post_code) values (1000, 'Portugal', 'Torreira', 'Kavalleriestraße 22', '3870-306');