@antscorp/antsomi-ui 2.0.33 → 2.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/es/__mocks__/1000_city.json +802 -0
  2. package/es/components/atoms/IconField/IconField.d.ts +5 -0
  3. package/es/components/atoms/IconField/IconField.js +24 -0
  4. package/es/components/atoms/IconField/index.d.ts +1 -0
  5. package/es/components/atoms/IconField/index.js +1 -0
  6. package/es/components/atoms/Suspense/Suspense.d.ts +4 -0
  7. package/es/components/atoms/Suspense/Suspense.js +7 -0
  8. package/es/components/atoms/Suspense/index.d.ts +1 -0
  9. package/es/components/atoms/Suspense/index.js +1 -0
  10. package/es/components/atoms/index.d.ts +2 -0
  11. package/es/components/atoms/index.js +2 -0
  12. package/es/components/molecules/EditingList/EditingList.d.ts +2 -0
  13. package/es/components/molecules/EditingList/EditingList.js +23 -0
  14. package/es/components/molecules/EditingList/components/Action/Action.d.ts +6 -0
  15. package/es/components/molecules/EditingList/components/Action/Action.js +10 -0
  16. package/es/components/molecules/EditingList/components/Action/index.d.ts +1 -0
  17. package/es/components/molecules/EditingList/components/Action/index.js +1 -0
  18. package/es/components/molecules/EditingList/components/List/List.d.ts +10 -0
  19. package/es/components/molecules/EditingList/components/List/List.js +29 -0
  20. package/es/components/molecules/EditingList/components/List/index.d.ts +1 -0
  21. package/es/components/molecules/EditingList/components/List/index.js +1 -0
  22. package/es/components/molecules/EditingList/components/Loadable.d.ts +13 -0
  23. package/es/components/molecules/EditingList/components/Loadable.js +3 -0
  24. package/es/components/molecules/EditingList/components/Popover/Popover.d.ts +10 -0
  25. package/es/components/molecules/EditingList/components/Popover/Popover.js +9 -0
  26. package/es/components/molecules/EditingList/components/Popover/index.d.ts +1 -0
  27. package/es/components/molecules/EditingList/components/Popover/index.js +1 -0
  28. package/es/components/molecules/EditingList/components/Search/Search.d.ts +4 -0
  29. package/es/components/molecules/EditingList/components/Search/Search.js +8 -0
  30. package/es/components/molecules/EditingList/components/Search/index.d.ts +1 -0
  31. package/es/components/molecules/EditingList/components/Search/index.js +1 -0
  32. package/es/components/molecules/EditingList/components/Title/Title.d.ts +9 -0
  33. package/es/components/molecules/EditingList/components/Title/Title.js +16 -0
  34. package/es/components/molecules/EditingList/components/Title/index.d.ts +1 -0
  35. package/es/components/molecules/EditingList/components/Title/index.js +1 -0
  36. package/es/components/molecules/EditingList/components/index.d.ts +6 -0
  37. package/es/components/molecules/EditingList/components/index.js +6 -0
  38. package/es/components/molecules/EditingList/index.d.ts +2 -0
  39. package/es/components/molecules/EditingList/index.js +1 -0
  40. package/es/components/molecules/EditingList/styled.d.ts +5 -0
  41. package/es/components/molecules/EditingList/styled.js +37 -0
  42. package/es/components/molecules/EditingList/types.d.ts +18 -0
  43. package/es/components/molecules/EditingList/types.js +1 -0
  44. package/es/components/molecules/EditingList/utils.d.ts +27 -0
  45. package/es/components/molecules/EditingList/utils.js +28 -0
  46. package/es/components/molecules/InputSearch/styled.js +1 -2
  47. package/es/components/molecules/SearchPopover/components/PopoverAddField/PopoverAddField.js +4 -4
  48. package/es/components/molecules/SearchPopover/components/PopoverSelect/PopoverSelect.js +17 -17
  49. package/es/components/molecules/SearchPopover/components/PopoverSelect/styled.d.ts +3 -1
  50. package/es/components/molecules/SearchPopover/components/PopoverSelect/styled.js +3 -30
  51. package/es/components/molecules/SearchPopover/index.d.ts +1 -0
  52. package/es/components/molecules/SearchPopover/index.js +1 -0
  53. package/es/components/molecules/SearchPopover/types.d.ts +5 -2
  54. package/es/components/molecules/SearchPopover/utils.d.ts +7 -1
  55. package/es/components/molecules/SearchPopover/utils.js +17 -21
  56. package/es/components/molecules/ShareAccess/types.d.ts +2 -1
  57. package/es/components/molecules/ShareAccess/utils.d.ts +15 -4
  58. package/es/components/molecules/VirtualizedMenu/VirtualizedMenu.d.ts +4 -4
  59. package/es/components/molecules/VirtualizedMenu/VirtualizedMenu.js +3 -2
  60. package/es/components/molecules/VirtualizedMenu/__mocks__/index.js +2 -1
  61. package/es/components/molecules/VirtualizedMenu/components/Item/Item.d.ts +14 -8
  62. package/es/components/molecules/VirtualizedMenu/components/Item/Item.js +34 -8
  63. package/es/components/molecules/VirtualizedMenu/components/MenuInline/MenuInline.d.ts +4 -4
  64. package/es/components/molecules/VirtualizedMenu/components/MenuInline/MenuInline.js +29 -52
  65. package/es/components/molecules/VirtualizedMenu/config.d.ts +1 -0
  66. package/es/components/molecules/VirtualizedMenu/config.js +1 -0
  67. package/es/components/molecules/VirtualizedMenu/index.d.ts +1 -0
  68. package/es/components/molecules/VirtualizedMenu/index.js +1 -0
  69. package/es/components/molecules/VirtualizedMenu/styled.d.ts +9 -1
  70. package/es/components/molecules/VirtualizedMenu/styled.js +37 -30
  71. package/es/components/molecules/VirtualizedMenu/types.d.ts +15 -11
  72. package/es/components/molecules/VirtualizedMenu/utils.d.ts +31 -15
  73. package/es/components/molecules/VirtualizedMenu/utils.js +44 -0
  74. package/es/components/molecules/index.d.ts +2 -0
  75. package/es/components/molecules/index.js +1 -0
  76. package/es/components/organism/LeftMenu/hooks/useLeftMenu.js +13 -8
  77. package/es/constants/theme.js +1 -1
  78. package/es/constants/variables.d.ts +1 -0
  79. package/es/constants/variables.js +1 -0
  80. package/es/locales/ja/google-sheet.json +12 -12
  81. package/es/providers/ConfigProvider/ConfigProvider.js +2 -2
  82. package/es/utils/common.d.ts +1 -0
  83. package/es/utils/common.js +11 -0
  84. package/package.json +4 -3
  85. package/es/components/organism/ActivityTimeline/__mocks__/event_tracking.json +0 -1556
  86. package/es/components/organism/ActivityTimeline/__mocks__/timeline.json +0 -2885
  87. /package/es/components/{molecules/SearchPopover → atoms/IconField}/constants.d.ts +0 -0
  88. /package/es/components/{molecules/SearchPopover → atoms/IconField}/constants.js +0 -0
@@ -0,0 +1,802 @@
1
+ [
2
+ {
3
+ "value": 1,
4
+ "label": "Maigo"
5
+ },
6
+ {
7
+ "value": 2,
8
+ "label": "Muleba"
9
+ },
10
+ {
11
+ "value": 3,
12
+ "label": "Guandu"
13
+ },
14
+ {
15
+ "value": 4,
16
+ "label": "San Juan"
17
+ },
18
+ {
19
+ "value": 5,
20
+ "label": "Guaramirim"
21
+ },
22
+ {
23
+ "value": 6,
24
+ "label": "Nanxing"
25
+ },
26
+ {
27
+ "value": 7,
28
+ "label": "Confey"
29
+ },
30
+ {
31
+ "value": 8,
32
+ "label": "Lapuan"
33
+ },
34
+ {
35
+ "value": 9,
36
+ "label": "Chociwel"
37
+ },
38
+ {
39
+ "value": 10,
40
+ "label": "Oklahoma City"
41
+ },
42
+ {
43
+ "value": 11,
44
+ "label": "Łęknica"
45
+ },
46
+ {
47
+ "value": 12,
48
+ "label": "Banbalah"
49
+ },
50
+ {
51
+ "value": 13,
52
+ "label": "Tanjung Kidul"
53
+ },
54
+ {
55
+ "value": 14,
56
+ "label": "Orong"
57
+ },
58
+ {
59
+ "value": 15,
60
+ "label": "Ten’gushevo"
61
+ },
62
+ {
63
+ "value": 16,
64
+ "label": "Jianshan"
65
+ },
66
+ {
67
+ "value": 17,
68
+ "label": "Bawshar"
69
+ },
70
+ {
71
+ "value": 18,
72
+ "label": "Saintes"
73
+ },
74
+ {
75
+ "value": 19,
76
+ "label": "Lizhai"
77
+ },
78
+ {
79
+ "value": 20,
80
+ "label": "Temblador"
81
+ },
82
+ {
83
+ "value": 21,
84
+ "label": "Ust’-Abakan"
85
+ },
86
+ {
87
+ "value": 22,
88
+ "label": "Vavuniya"
89
+ },
90
+ {
91
+ "value": 23,
92
+ "label": "Tignapalan"
93
+ },
94
+ {
95
+ "value": 24,
96
+ "label": "Ino"
97
+ },
98
+ {
99
+ "value": 25,
100
+ "label": "Erlangkou"
101
+ },
102
+ {
103
+ "value": 26,
104
+ "label": "Xinchengzi"
105
+ },
106
+ {
107
+ "value": 27,
108
+ "label": "Bagumbayan"
109
+ },
110
+ {
111
+ "value": 28,
112
+ "label": "Minneapolis"
113
+ },
114
+ {
115
+ "value": 29,
116
+ "label": "Voiron"
117
+ },
118
+ {
119
+ "value": 30,
120
+ "label": "Newlands"
121
+ },
122
+ {
123
+ "value": 31,
124
+ "label": "Enshi"
125
+ },
126
+ {
127
+ "value": 32,
128
+ "label": "Cintra"
129
+ },
130
+ {
131
+ "value": 33,
132
+ "label": "Saint-Dizier"
133
+ },
134
+ {
135
+ "value": 34,
136
+ "label": "Xiaojian"
137
+ },
138
+ {
139
+ "value": 35,
140
+ "label": "Marina"
141
+ },
142
+ {
143
+ "value": 36,
144
+ "label": "Balayong"
145
+ },
146
+ {
147
+ "value": 37,
148
+ "label": "Göteborg"
149
+ },
150
+ {
151
+ "value": 38,
152
+ "label": "Býšť"
153
+ },
154
+ {
155
+ "value": 39,
156
+ "label": "Maayong Tubig"
157
+ },
158
+ {
159
+ "value": 40,
160
+ "label": "Borås"
161
+ },
162
+ {
163
+ "value": 41,
164
+ "label": "Rio Meão"
165
+ },
166
+ {
167
+ "value": 42,
168
+ "label": "Nuevitas"
169
+ },
170
+ {
171
+ "value": 43,
172
+ "label": "Peso da Régua"
173
+ },
174
+ {
175
+ "value": 44,
176
+ "label": "Herálec"
177
+ },
178
+ {
179
+ "value": 45,
180
+ "label": "Jingyang"
181
+ },
182
+ {
183
+ "value": 46,
184
+ "label": "Biito"
185
+ },
186
+ {
187
+ "value": 47,
188
+ "label": "Rende"
189
+ },
190
+ {
191
+ "value": 48,
192
+ "label": "Rancagua"
193
+ },
194
+ {
195
+ "value": 49,
196
+ "label": "Yablochnyy"
197
+ },
198
+ {
199
+ "value": 50,
200
+ "label": "Gostimë"
201
+ },
202
+ {
203
+ "value": 51,
204
+ "label": "Langgapayung"
205
+ },
206
+ {
207
+ "value": 52,
208
+ "label": "Parque Industrial"
209
+ },
210
+ {
211
+ "value": 53,
212
+ "label": "Một Ngàn"
213
+ },
214
+ {
215
+ "value": 54,
216
+ "label": "Málaga"
217
+ },
218
+ {
219
+ "value": 55,
220
+ "label": "Azul"
221
+ },
222
+ {
223
+ "value": 56,
224
+ "label": "Casal da Anja"
225
+ },
226
+ {
227
+ "value": 57,
228
+ "label": "Ukrainka"
229
+ },
230
+ {
231
+ "value": 58,
232
+ "label": "Bełsznica"
233
+ },
234
+ {
235
+ "value": 59,
236
+ "label": "Montpellier"
237
+ },
238
+ {
239
+ "value": 60,
240
+ "label": "La Francia"
241
+ },
242
+ {
243
+ "value": 61,
244
+ "label": "Calizo"
245
+ },
246
+ {
247
+ "value": 62,
248
+ "label": "Sada"
249
+ },
250
+ {
251
+ "value": 63,
252
+ "label": "Divichibazar"
253
+ },
254
+ {
255
+ "value": 64,
256
+ "label": "Liuhe"
257
+ },
258
+ {
259
+ "value": 65,
260
+ "label": "Gongjiahe"
261
+ },
262
+ {
263
+ "value": 66,
264
+ "label": "Changzheng"
265
+ },
266
+ {
267
+ "value": 67,
268
+ "label": "Araucária"
269
+ },
270
+ {
271
+ "value": 68,
272
+ "label": "Dampit"
273
+ },
274
+ {
275
+ "value": 69,
276
+ "label": "Kaduela"
277
+ },
278
+ {
279
+ "value": 70,
280
+ "label": "Xiangying"
281
+ },
282
+ {
283
+ "value": 71,
284
+ "label": "Irvine"
285
+ },
286
+ {
287
+ "value": 72,
288
+ "label": "Incheon"
289
+ },
290
+ {
291
+ "value": 73,
292
+ "label": "Corgo"
293
+ },
294
+ {
295
+ "value": 74,
296
+ "label": "Monte-Carlo"
297
+ },
298
+ {
299
+ "value": 75,
300
+ "label": "Igarapé"
301
+ },
302
+ {
303
+ "value": 76,
304
+ "label": "Sagae"
305
+ },
306
+ {
307
+ "value": 77,
308
+ "label": "Xuanhuadian"
309
+ },
310
+ {
311
+ "value": 78,
312
+ "label": "Togu"
313
+ },
314
+ {
315
+ "value": 79,
316
+ "label": "Nguékhokh"
317
+ },
318
+ {
319
+ "value": 80,
320
+ "label": "Yantai"
321
+ },
322
+ {
323
+ "value": 81,
324
+ "label": "Jabranti"
325
+ },
326
+ {
327
+ "value": 82,
328
+ "label": "Oyan"
329
+ },
330
+ {
331
+ "value": 83,
332
+ "label": "Tak Bai"
333
+ },
334
+ {
335
+ "value": 84,
336
+ "label": "Kalmunai"
337
+ },
338
+ {
339
+ "value": 85,
340
+ "label": "Jackson"
341
+ },
342
+ {
343
+ "value": 86,
344
+ "label": "Changle"
345
+ },
346
+ {
347
+ "value": 87,
348
+ "label": "Soledade"
349
+ },
350
+ {
351
+ "value": 88,
352
+ "label": "Pirapora"
353
+ },
354
+ {
355
+ "value": 89,
356
+ "label": "Haitou"
357
+ },
358
+ {
359
+ "value": 90,
360
+ "label": "Fengniancun"
361
+ },
362
+ {
363
+ "value": 91,
364
+ "label": "Château-Richer"
365
+ },
366
+ {
367
+ "value": 92,
368
+ "label": "Fatualam"
369
+ },
370
+ {
371
+ "value": 93,
372
+ "label": "Mansôa"
373
+ },
374
+ {
375
+ "value": 94,
376
+ "label": "Zheleznogorsk"
377
+ },
378
+ {
379
+ "value": 95,
380
+ "label": "Áyios Yeóryios"
381
+ },
382
+ {
383
+ "value": 96,
384
+ "label": "Bouças"
385
+ },
386
+ {
387
+ "value": 97,
388
+ "label": "Tugela Ferry"
389
+ },
390
+ {
391
+ "value": 98,
392
+ "label": "Xincheng"
393
+ },
394
+ {
395
+ "value": 99,
396
+ "label": "Sinarharapan"
397
+ },
398
+ {
399
+ "value": 100,
400
+ "label": "Taltal"
401
+ },
402
+ {
403
+ "value": 101,
404
+ "label": "Río Grande"
405
+ },
406
+ {
407
+ "value": 102,
408
+ "label": "Lalagsan"
409
+ },
410
+ {
411
+ "value": 103,
412
+ "label": "Cijeungjing Kaler"
413
+ },
414
+ {
415
+ "value": 104,
416
+ "label": "Mehtar Lām"
417
+ },
418
+ {
419
+ "value": 105,
420
+ "label": "Viana do Castelo"
421
+ },
422
+ {
423
+ "value": 106,
424
+ "label": "Limanowa"
425
+ },
426
+ {
427
+ "value": 107,
428
+ "label": "Valenciennes"
429
+ },
430
+ {
431
+ "value": 108,
432
+ "label": "Sāh"
433
+ },
434
+ {
435
+ "value": 109,
436
+ "label": "Daishan"
437
+ },
438
+ {
439
+ "value": 110,
440
+ "label": "Nieborów"
441
+ },
442
+ {
443
+ "value": 111,
444
+ "label": "Kanthararom"
445
+ },
446
+ {
447
+ "value": 112,
448
+ "label": "Otse"
449
+ },
450
+ {
451
+ "value": 113,
452
+ "label": "Akademgorodok"
453
+ },
454
+ {
455
+ "value": 114,
456
+ "label": "Hongshi"
457
+ },
458
+ {
459
+ "value": 115,
460
+ "label": "Booterstown"
461
+ },
462
+ {
463
+ "value": 116,
464
+ "label": "Gludug"
465
+ },
466
+ {
467
+ "value": 117,
468
+ "label": "Brodarica"
469
+ },
470
+ {
471
+ "value": 118,
472
+ "label": "Gapyeong"
473
+ },
474
+ {
475
+ "value": 119,
476
+ "label": "Krajan"
477
+ },
478
+ {
479
+ "value": 120,
480
+ "label": "Porto Calvo"
481
+ },
482
+ {
483
+ "value": 121,
484
+ "label": "Al ‘Ulá"
485
+ },
486
+ {
487
+ "value": 122,
488
+ "label": "Roshal’"
489
+ },
490
+ {
491
+ "value": 123,
492
+ "label": "Caoxi"
493
+ },
494
+ {
495
+ "value": 124,
496
+ "label": "Limassol"
497
+ },
498
+ {
499
+ "value": 125,
500
+ "label": "Srpska Crnja"
501
+ },
502
+ {
503
+ "value": 126,
504
+ "label": "Sibagat"
505
+ },
506
+ {
507
+ "value": 127,
508
+ "label": "Saint Petersburg"
509
+ },
510
+ {
511
+ "value": 128,
512
+ "label": "Sumoto"
513
+ },
514
+ {
515
+ "value": 129,
516
+ "label": "Shendang"
517
+ },
518
+ {
519
+ "value": 130,
520
+ "label": "Lapuz"
521
+ },
522
+ {
523
+ "value": 131,
524
+ "label": "Markaz-e Woluswalī-ye Āchīn"
525
+ },
526
+ {
527
+ "value": 132,
528
+ "label": "Chamouny"
529
+ },
530
+ {
531
+ "value": 133,
532
+ "label": "Chengdong"
533
+ },
534
+ {
535
+ "value": 134,
536
+ "label": "San Pedro Apartado"
537
+ },
538
+ {
539
+ "value": 135,
540
+ "label": "Conceição da Feira"
541
+ },
542
+ {
543
+ "value": 136,
544
+ "label": "Carhuac"
545
+ },
546
+ {
547
+ "value": 137,
548
+ "label": "Entebbe"
549
+ },
550
+ {
551
+ "value": 138,
552
+ "label": "Tukums"
553
+ },
554
+ {
555
+ "value": 139,
556
+ "label": "Minuyan"
557
+ },
558
+ {
559
+ "value": 140,
560
+ "label": "Song"
561
+ },
562
+ {
563
+ "value": 141,
564
+ "label": "Nantes"
565
+ },
566
+ {
567
+ "value": 142,
568
+ "label": "Guandiping"
569
+ },
570
+ {
571
+ "value": 143,
572
+ "label": "Golbey"
573
+ },
574
+ {
575
+ "value": 144,
576
+ "label": "Watubura"
577
+ },
578
+ {
579
+ "value": 145,
580
+ "label": "Wanmingang"
581
+ },
582
+ {
583
+ "value": 146,
584
+ "label": "Lupane"
585
+ },
586
+ {
587
+ "value": 147,
588
+ "label": "Druzhba"
589
+ },
590
+ {
591
+ "value": 148,
592
+ "label": "Diaofeng"
593
+ },
594
+ {
595
+ "value": 149,
596
+ "label": "Tambangan"
597
+ },
598
+ {
599
+ "value": 150,
600
+ "label": "Huaquirca"
601
+ },
602
+ {
603
+ "value": 151,
604
+ "label": "Shuanggang"
605
+ },
606
+ {
607
+ "value": 152,
608
+ "label": "Sirinhaém"
609
+ },
610
+ {
611
+ "value": 153,
612
+ "label": "Bondo"
613
+ },
614
+ {
615
+ "value": 154,
616
+ "label": "Montalvão"
617
+ },
618
+ {
619
+ "value": 155,
620
+ "label": "Ustrzyki Dolne"
621
+ },
622
+ {
623
+ "value": 156,
624
+ "label": "Phalaborwa"
625
+ },
626
+ {
627
+ "value": 157,
628
+ "label": "São Filipe"
629
+ },
630
+ {
631
+ "value": 158,
632
+ "label": "Pshekhskaya"
633
+ },
634
+ {
635
+ "value": 159,
636
+ "label": "Venezuela"
637
+ },
638
+ {
639
+ "value": 160,
640
+ "label": "Amaury"
641
+ },
642
+ {
643
+ "value": 161,
644
+ "label": "Qiandeng"
645
+ },
646
+ {
647
+ "value": 162,
648
+ "label": "Guxi"
649
+ },
650
+ {
651
+ "value": 163,
652
+ "label": "Tchoban Bey"
653
+ },
654
+ {
655
+ "value": 164,
656
+ "label": "Voronezh"
657
+ },
658
+ {
659
+ "value": 165,
660
+ "label": "Santa María del Real"
661
+ },
662
+ {
663
+ "value": 166,
664
+ "label": "Huddinge"
665
+ },
666
+ {
667
+ "value": 167,
668
+ "label": "Tandel"
669
+ },
670
+ {
671
+ "value": 168,
672
+ "label": "Mangqu"
673
+ },
674
+ {
675
+ "value": 169,
676
+ "label": "Tanshi"
677
+ },
678
+ {
679
+ "value": 170,
680
+ "label": "McKinley"
681
+ },
682
+ {
683
+ "value": 171,
684
+ "label": "Rato"
685
+ },
686
+ {
687
+ "value": 172,
688
+ "label": "Guararapes"
689
+ },
690
+ {
691
+ "value": 173,
692
+ "label": "Voi"
693
+ },
694
+ {
695
+ "value": 174,
696
+ "label": "Mengyin"
697
+ },
698
+ {
699
+ "value": 175,
700
+ "label": "Potchefstroom"
701
+ },
702
+ {
703
+ "value": 176,
704
+ "label": "Piquillín"
705
+ },
706
+ {
707
+ "value": 177,
708
+ "label": "Buenavista"
709
+ },
710
+ {
711
+ "value": 178,
712
+ "label": "Chapultepec"
713
+ },
714
+ {
715
+ "value": 179,
716
+ "label": "Drakino"
717
+ },
718
+ {
719
+ "value": 180,
720
+ "label": "Larkird"
721
+ },
722
+ {
723
+ "value": 181,
724
+ "label": "Hongor"
725
+ },
726
+ {
727
+ "value": 182,
728
+ "label": "Ballisodare"
729
+ },
730
+ {
731
+ "value": 183,
732
+ "label": "Qiaotou"
733
+ },
734
+ {
735
+ "value": 184,
736
+ "label": "Canavieiras"
737
+ },
738
+ {
739
+ "value": 185,
740
+ "label": "Zhenchuan"
741
+ },
742
+ {
743
+ "value": 186,
744
+ "label": "Nāḩiyat Alī ash Sharqī"
745
+ },
746
+ {
747
+ "value": 187,
748
+ "label": "Liuyuan"
749
+ },
750
+ {
751
+ "value": 188,
752
+ "label": "Paris 20"
753
+ },
754
+ {
755
+ "value": 189,
756
+ "label": "Pöytyä"
757
+ },
758
+ {
759
+ "value": 190,
760
+ "label": "Guxi"
761
+ },
762
+ {
763
+ "value": 191,
764
+ "label": "La Azulita"
765
+ },
766
+ {
767
+ "value": 192,
768
+ "label": "Quiling"
769
+ },
770
+ {
771
+ "value": 193,
772
+ "label": "Frederiksberg"
773
+ },
774
+ {
775
+ "value": 194,
776
+ "label": "Qabqir"
777
+ },
778
+ {
779
+ "value": 195,
780
+ "label": "Čačinci"
781
+ },
782
+ {
783
+ "value": 196,
784
+ "label": "Třešť"
785
+ },
786
+ {
787
+ "value": 197,
788
+ "label": "Selasari"
789
+ },
790
+ {
791
+ "value": 198,
792
+ "label": "Wassu"
793
+ },
794
+ {
795
+ "value": 199,
796
+ "label": "Toulouse"
797
+ },
798
+ {
799
+ "value": 200,
800
+ "label": "Uspenka"
801
+ }
802
+ ]