@sil/data 0.1.8 → 0.1.9
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.
- package/dist/sil-data.cjs +398 -197
- package/dist/sil-data.cjs.map +1 -1
- package/dist/sil-data.js +398 -197
- package/dist/sil-data.js.map +1 -1
- package/dist/types/data/countries.d.ts +5 -0
- package/dist/types/index.d.ts +2 -2
- package/dist/types/types/index.d.ts +46 -0
- package/package.json +1 -1
package/dist/sil-data.cjs
CHANGED
|
@@ -12,7 +12,8 @@ const countries = [
|
|
|
12
12
|
continent: "Asia",
|
|
13
13
|
currency: "AFN",
|
|
14
14
|
languages: ["Dari", "Pashto"],
|
|
15
|
-
tld: ".af"
|
|
15
|
+
tld: ".af",
|
|
16
|
+
recognized: true
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
19
|
name: "Albania",
|
|
@@ -25,7 +26,8 @@ const countries = [
|
|
|
25
26
|
continent: "Europe",
|
|
26
27
|
currency: "ALL",
|
|
27
28
|
languages: ["Albanian"],
|
|
28
|
-
tld: ".al"
|
|
29
|
+
tld: ".al",
|
|
30
|
+
recognized: true
|
|
29
31
|
},
|
|
30
32
|
{
|
|
31
33
|
name: "Algeria",
|
|
@@ -38,7 +40,8 @@ const countries = [
|
|
|
38
40
|
continent: "Africa",
|
|
39
41
|
currency: "DZD",
|
|
40
42
|
languages: ["Arabic", "Tamazight"],
|
|
41
|
-
tld: ".dz"
|
|
43
|
+
tld: ".dz",
|
|
44
|
+
recognized: true
|
|
42
45
|
},
|
|
43
46
|
{
|
|
44
47
|
name: "Andorra",
|
|
@@ -51,7 +54,8 @@ const countries = [
|
|
|
51
54
|
continent: "Europe",
|
|
52
55
|
currency: "EUR",
|
|
53
56
|
languages: ["Catalan"],
|
|
54
|
-
tld: ".ad"
|
|
57
|
+
tld: ".ad",
|
|
58
|
+
recognized: true
|
|
55
59
|
},
|
|
56
60
|
{
|
|
57
61
|
name: "Angola",
|
|
@@ -64,7 +68,8 @@ const countries = [
|
|
|
64
68
|
continent: "Africa",
|
|
65
69
|
currency: "AOA",
|
|
66
70
|
languages: ["Portuguese"],
|
|
67
|
-
tld: ".ao"
|
|
71
|
+
tld: ".ao",
|
|
72
|
+
recognized: true
|
|
68
73
|
},
|
|
69
74
|
{
|
|
70
75
|
name: "Antigua and Barbuda",
|
|
@@ -77,7 +82,8 @@ const countries = [
|
|
|
77
82
|
continent: "North America",
|
|
78
83
|
currency: "XCD",
|
|
79
84
|
languages: ["English"],
|
|
80
|
-
tld: ".ag"
|
|
85
|
+
tld: ".ag",
|
|
86
|
+
recognized: true
|
|
81
87
|
},
|
|
82
88
|
{
|
|
83
89
|
name: "Argentina",
|
|
@@ -90,7 +96,8 @@ const countries = [
|
|
|
90
96
|
continent: "South America",
|
|
91
97
|
currency: "ARS",
|
|
92
98
|
languages: ["Spanish"],
|
|
93
|
-
tld: ".ar"
|
|
99
|
+
tld: ".ar",
|
|
100
|
+
recognized: true
|
|
94
101
|
},
|
|
95
102
|
{
|
|
96
103
|
name: "Armenia",
|
|
@@ -103,7 +110,8 @@ const countries = [
|
|
|
103
110
|
continent: "Asia",
|
|
104
111
|
currency: "AMD",
|
|
105
112
|
languages: ["Armenian"],
|
|
106
|
-
tld: ".am"
|
|
113
|
+
tld: ".am",
|
|
114
|
+
recognized: true
|
|
107
115
|
},
|
|
108
116
|
{
|
|
109
117
|
name: "Australia",
|
|
@@ -116,7 +124,8 @@ const countries = [
|
|
|
116
124
|
continent: "Oceania",
|
|
117
125
|
currency: "AUD",
|
|
118
126
|
languages: ["English"],
|
|
119
|
-
tld: ".au"
|
|
127
|
+
tld: ".au",
|
|
128
|
+
recognized: true
|
|
120
129
|
},
|
|
121
130
|
{
|
|
122
131
|
name: "Austria",
|
|
@@ -129,7 +138,8 @@ const countries = [
|
|
|
129
138
|
continent: "Europe",
|
|
130
139
|
currency: "EUR",
|
|
131
140
|
languages: ["German"],
|
|
132
|
-
tld: ".at"
|
|
141
|
+
tld: ".at",
|
|
142
|
+
recognized: true
|
|
133
143
|
},
|
|
134
144
|
{
|
|
135
145
|
name: "Azerbaijan",
|
|
@@ -142,7 +152,8 @@ const countries = [
|
|
|
142
152
|
continent: "Asia",
|
|
143
153
|
currency: "AZN",
|
|
144
154
|
languages: ["Azerbaijani"],
|
|
145
|
-
tld: ".az"
|
|
155
|
+
tld: ".az",
|
|
156
|
+
recognized: true
|
|
146
157
|
},
|
|
147
158
|
{
|
|
148
159
|
name: "Bahamas",
|
|
@@ -155,7 +166,8 @@ const countries = [
|
|
|
155
166
|
continent: "North America",
|
|
156
167
|
currency: "BSD",
|
|
157
168
|
languages: ["English"],
|
|
158
|
-
tld: ".bs"
|
|
169
|
+
tld: ".bs",
|
|
170
|
+
recognized: true
|
|
159
171
|
},
|
|
160
172
|
{
|
|
161
173
|
name: "Bahrain",
|
|
@@ -168,7 +180,8 @@ const countries = [
|
|
|
168
180
|
continent: "Asia",
|
|
169
181
|
currency: "BHD",
|
|
170
182
|
languages: ["Arabic"],
|
|
171
|
-
tld: ".bh"
|
|
183
|
+
tld: ".bh",
|
|
184
|
+
recognized: true
|
|
172
185
|
},
|
|
173
186
|
{
|
|
174
187
|
name: "Bangladesh",
|
|
@@ -181,7 +194,8 @@ const countries = [
|
|
|
181
194
|
continent: "Asia",
|
|
182
195
|
currency: "BDT",
|
|
183
196
|
languages: ["Bengali"],
|
|
184
|
-
tld: ".bd"
|
|
197
|
+
tld: ".bd",
|
|
198
|
+
recognized: true
|
|
185
199
|
},
|
|
186
200
|
{
|
|
187
201
|
name: "Barbados",
|
|
@@ -194,7 +208,8 @@ const countries = [
|
|
|
194
208
|
continent: "North America",
|
|
195
209
|
currency: "BBD",
|
|
196
210
|
languages: ["English"],
|
|
197
|
-
tld: ".bb"
|
|
211
|
+
tld: ".bb",
|
|
212
|
+
recognized: true
|
|
198
213
|
},
|
|
199
214
|
{
|
|
200
215
|
name: "Belarus",
|
|
@@ -207,7 +222,8 @@ const countries = [
|
|
|
207
222
|
continent: "Europe",
|
|
208
223
|
currency: "BYN",
|
|
209
224
|
languages: ["Belarusian", "Russian"],
|
|
210
|
-
tld: ".by"
|
|
225
|
+
tld: ".by",
|
|
226
|
+
recognized: true
|
|
211
227
|
},
|
|
212
228
|
{
|
|
213
229
|
name: "Belgium",
|
|
@@ -220,7 +236,8 @@ const countries = [
|
|
|
220
236
|
continent: "Europe",
|
|
221
237
|
currency: "EUR",
|
|
222
238
|
languages: ["Dutch", "French", "German"],
|
|
223
|
-
tld: ".be"
|
|
239
|
+
tld: ".be",
|
|
240
|
+
recognized: true
|
|
224
241
|
},
|
|
225
242
|
{
|
|
226
243
|
name: "Belize",
|
|
@@ -233,7 +250,8 @@ const countries = [
|
|
|
233
250
|
continent: "North America",
|
|
234
251
|
currency: "BZD",
|
|
235
252
|
languages: ["English"],
|
|
236
|
-
tld: ".bz"
|
|
253
|
+
tld: ".bz",
|
|
254
|
+
recognized: true
|
|
237
255
|
},
|
|
238
256
|
{
|
|
239
257
|
name: "Benin",
|
|
@@ -246,7 +264,8 @@ const countries = [
|
|
|
246
264
|
continent: "Africa",
|
|
247
265
|
currency: "XOF",
|
|
248
266
|
languages: ["French"],
|
|
249
|
-
tld: ".bj"
|
|
267
|
+
tld: ".bj",
|
|
268
|
+
recognized: true
|
|
250
269
|
},
|
|
251
270
|
{
|
|
252
271
|
name: "Bhutan",
|
|
@@ -259,7 +278,8 @@ const countries = [
|
|
|
259
278
|
continent: "Asia",
|
|
260
279
|
currency: "BTN",
|
|
261
280
|
languages: ["Dzongkha"],
|
|
262
|
-
tld: ".bt"
|
|
281
|
+
tld: ".bt",
|
|
282
|
+
recognized: true
|
|
263
283
|
},
|
|
264
284
|
{
|
|
265
285
|
name: "Bolivia",
|
|
@@ -272,7 +292,8 @@ const countries = [
|
|
|
272
292
|
continent: "South America",
|
|
273
293
|
currency: "BOB",
|
|
274
294
|
languages: ["Spanish", "Quechua", "Aymara"],
|
|
275
|
-
tld: ".bo"
|
|
295
|
+
tld: ".bo",
|
|
296
|
+
recognized: true
|
|
276
297
|
},
|
|
277
298
|
{
|
|
278
299
|
name: "Bosnia and Herzegovina",
|
|
@@ -285,7 +306,8 @@ const countries = [
|
|
|
285
306
|
continent: "Europe",
|
|
286
307
|
currency: "BAM",
|
|
287
308
|
languages: ["Bosnian", "Serbian", "Croatian"],
|
|
288
|
-
tld: ".ba"
|
|
309
|
+
tld: ".ba",
|
|
310
|
+
recognized: true
|
|
289
311
|
},
|
|
290
312
|
{
|
|
291
313
|
name: "Botswana",
|
|
@@ -298,7 +320,8 @@ const countries = [
|
|
|
298
320
|
continent: "Africa",
|
|
299
321
|
currency: "BWP",
|
|
300
322
|
languages: ["English", "Tswana"],
|
|
301
|
-
tld: ".bw"
|
|
323
|
+
tld: ".bw",
|
|
324
|
+
recognized: true
|
|
302
325
|
},
|
|
303
326
|
{
|
|
304
327
|
name: "Brazil",
|
|
@@ -311,7 +334,8 @@ const countries = [
|
|
|
311
334
|
continent: "South America",
|
|
312
335
|
currency: "BRL",
|
|
313
336
|
languages: ["Portuguese"],
|
|
314
|
-
tld: ".br"
|
|
337
|
+
tld: ".br",
|
|
338
|
+
recognized: true
|
|
315
339
|
},
|
|
316
340
|
{
|
|
317
341
|
name: "Brunei",
|
|
@@ -324,7 +348,8 @@ const countries = [
|
|
|
324
348
|
continent: "Asia",
|
|
325
349
|
currency: "BND",
|
|
326
350
|
languages: ["Malay", "English"],
|
|
327
|
-
tld: ".bn"
|
|
351
|
+
tld: ".bn",
|
|
352
|
+
recognized: true
|
|
328
353
|
},
|
|
329
354
|
{
|
|
330
355
|
name: "Bulgaria",
|
|
@@ -337,7 +362,8 @@ const countries = [
|
|
|
337
362
|
continent: "Europe",
|
|
338
363
|
currency: "BGN",
|
|
339
364
|
languages: ["Bulgarian"],
|
|
340
|
-
tld: ".bg"
|
|
365
|
+
tld: ".bg",
|
|
366
|
+
recognized: true
|
|
341
367
|
},
|
|
342
368
|
{
|
|
343
369
|
name: "Burkina Faso",
|
|
@@ -350,7 +376,8 @@ const countries = [
|
|
|
350
376
|
continent: "Africa",
|
|
351
377
|
currency: "XOF",
|
|
352
378
|
languages: ["French"],
|
|
353
|
-
tld: ".bf"
|
|
379
|
+
tld: ".bf",
|
|
380
|
+
recognized: true
|
|
354
381
|
},
|
|
355
382
|
{
|
|
356
383
|
name: "Burundi",
|
|
@@ -363,7 +390,8 @@ const countries = [
|
|
|
363
390
|
continent: "Africa",
|
|
364
391
|
currency: "BIF",
|
|
365
392
|
languages: ["Kirundi", "French"],
|
|
366
|
-
tld: ".bi"
|
|
393
|
+
tld: ".bi",
|
|
394
|
+
recognized: true
|
|
367
395
|
},
|
|
368
396
|
{
|
|
369
397
|
name: "Cabo Verde",
|
|
@@ -376,7 +404,8 @@ const countries = [
|
|
|
376
404
|
continent: "Africa",
|
|
377
405
|
currency: "CVE",
|
|
378
406
|
languages: ["Portuguese"],
|
|
379
|
-
tld: ".cv"
|
|
407
|
+
tld: ".cv",
|
|
408
|
+
recognized: true
|
|
380
409
|
},
|
|
381
410
|
{
|
|
382
411
|
name: "Cambodia",
|
|
@@ -389,7 +418,8 @@ const countries = [
|
|
|
389
418
|
continent: "Asia",
|
|
390
419
|
currency: "KHR",
|
|
391
420
|
languages: ["Khmer"],
|
|
392
|
-
tld: ".kh"
|
|
421
|
+
tld: ".kh",
|
|
422
|
+
recognized: true
|
|
393
423
|
},
|
|
394
424
|
{
|
|
395
425
|
name: "Cameroon",
|
|
@@ -402,7 +432,8 @@ const countries = [
|
|
|
402
432
|
continent: "Africa",
|
|
403
433
|
currency: "XAF",
|
|
404
434
|
languages: ["French", "English"],
|
|
405
|
-
tld: ".cm"
|
|
435
|
+
tld: ".cm",
|
|
436
|
+
recognized: true
|
|
406
437
|
},
|
|
407
438
|
{
|
|
408
439
|
name: "Canada",
|
|
@@ -415,7 +446,8 @@ const countries = [
|
|
|
415
446
|
continent: "North America",
|
|
416
447
|
currency: "CAD",
|
|
417
448
|
languages: ["English", "French"],
|
|
418
|
-
tld: ".ca"
|
|
449
|
+
tld: ".ca",
|
|
450
|
+
recognized: true
|
|
419
451
|
},
|
|
420
452
|
{
|
|
421
453
|
name: "Central African Republic",
|
|
@@ -428,7 +460,8 @@ const countries = [
|
|
|
428
460
|
continent: "Africa",
|
|
429
461
|
currency: "XAF",
|
|
430
462
|
languages: ["French", "Sango"],
|
|
431
|
-
tld: ".cf"
|
|
463
|
+
tld: ".cf",
|
|
464
|
+
recognized: true
|
|
432
465
|
},
|
|
433
466
|
{
|
|
434
467
|
name: "Chad",
|
|
@@ -441,7 +474,8 @@ const countries = [
|
|
|
441
474
|
continent: "Africa",
|
|
442
475
|
currency: "XAF",
|
|
443
476
|
languages: ["French", "Arabic"],
|
|
444
|
-
tld: ".td"
|
|
477
|
+
tld: ".td",
|
|
478
|
+
recognized: true
|
|
445
479
|
},
|
|
446
480
|
{
|
|
447
481
|
name: "Chile",
|
|
@@ -454,7 +488,8 @@ const countries = [
|
|
|
454
488
|
continent: "South America",
|
|
455
489
|
currency: "CLP",
|
|
456
490
|
languages: ["Spanish"],
|
|
457
|
-
tld: ".cl"
|
|
491
|
+
tld: ".cl",
|
|
492
|
+
recognized: true
|
|
458
493
|
},
|
|
459
494
|
{
|
|
460
495
|
name: "China",
|
|
@@ -467,7 +502,8 @@ const countries = [
|
|
|
467
502
|
continent: "Asia",
|
|
468
503
|
currency: "CNY",
|
|
469
504
|
languages: ["Mandarin"],
|
|
470
|
-
tld: ".cn"
|
|
505
|
+
tld: ".cn",
|
|
506
|
+
recognized: true
|
|
471
507
|
},
|
|
472
508
|
{
|
|
473
509
|
name: "Colombia",
|
|
@@ -480,7 +516,8 @@ const countries = [
|
|
|
480
516
|
continent: "South America",
|
|
481
517
|
currency: "COP",
|
|
482
518
|
languages: ["Spanish"],
|
|
483
|
-
tld: ".co"
|
|
519
|
+
tld: ".co",
|
|
520
|
+
recognized: true
|
|
484
521
|
},
|
|
485
522
|
{
|
|
486
523
|
name: "Comoros",
|
|
@@ -493,7 +530,8 @@ const countries = [
|
|
|
493
530
|
continent: "Africa",
|
|
494
531
|
currency: "KMF",
|
|
495
532
|
languages: ["Comorian", "Arabic", "French"],
|
|
496
|
-
tld: ".km"
|
|
533
|
+
tld: ".km",
|
|
534
|
+
recognized: true
|
|
497
535
|
},
|
|
498
536
|
{
|
|
499
537
|
name: "Congo (Democratic Republic)",
|
|
@@ -506,7 +544,8 @@ const countries = [
|
|
|
506
544
|
continent: "Africa",
|
|
507
545
|
currency: "CDF",
|
|
508
546
|
languages: ["French"],
|
|
509
|
-
tld: ".cd"
|
|
547
|
+
tld: ".cd",
|
|
548
|
+
recognized: true
|
|
510
549
|
},
|
|
511
550
|
{
|
|
512
551
|
name: "Congo (Republic)",
|
|
@@ -519,7 +558,8 @@ const countries = [
|
|
|
519
558
|
continent: "Africa",
|
|
520
559
|
currency: "XAF",
|
|
521
560
|
languages: ["French"],
|
|
522
|
-
tld: ".cg"
|
|
561
|
+
tld: ".cg",
|
|
562
|
+
recognized: true
|
|
523
563
|
},
|
|
524
564
|
{
|
|
525
565
|
name: "Costa Rica",
|
|
@@ -532,7 +572,8 @@ const countries = [
|
|
|
532
572
|
continent: "North America",
|
|
533
573
|
currency: "CRC",
|
|
534
574
|
languages: ["Spanish"],
|
|
535
|
-
tld: ".cr"
|
|
575
|
+
tld: ".cr",
|
|
576
|
+
recognized: true
|
|
536
577
|
},
|
|
537
578
|
{
|
|
538
579
|
name: "Croatia",
|
|
@@ -545,7 +586,8 @@ const countries = [
|
|
|
545
586
|
continent: "Europe",
|
|
546
587
|
currency: "EUR",
|
|
547
588
|
languages: ["Croatian"],
|
|
548
|
-
tld: ".hr"
|
|
589
|
+
tld: ".hr",
|
|
590
|
+
recognized: true
|
|
549
591
|
},
|
|
550
592
|
{
|
|
551
593
|
name: "Cuba",
|
|
@@ -558,7 +600,8 @@ const countries = [
|
|
|
558
600
|
continent: "North America",
|
|
559
601
|
currency: "CUP",
|
|
560
602
|
languages: ["Spanish"],
|
|
561
|
-
tld: ".cu"
|
|
603
|
+
tld: ".cu",
|
|
604
|
+
recognized: true
|
|
562
605
|
},
|
|
563
606
|
{
|
|
564
607
|
name: "Cyprus",
|
|
@@ -571,7 +614,8 @@ const countries = [
|
|
|
571
614
|
continent: "Asia",
|
|
572
615
|
currency: "EUR",
|
|
573
616
|
languages: ["Greek", "Turkish"],
|
|
574
|
-
tld: ".cy"
|
|
617
|
+
tld: ".cy",
|
|
618
|
+
recognized: true
|
|
575
619
|
},
|
|
576
620
|
{
|
|
577
621
|
name: "Czech Republic",
|
|
@@ -584,7 +628,8 @@ const countries = [
|
|
|
584
628
|
continent: "Europe",
|
|
585
629
|
currency: "CZK",
|
|
586
630
|
languages: ["Czech"],
|
|
587
|
-
tld: ".cz"
|
|
631
|
+
tld: ".cz",
|
|
632
|
+
recognized: true
|
|
588
633
|
},
|
|
589
634
|
{
|
|
590
635
|
name: "Denmark",
|
|
@@ -597,7 +642,8 @@ const countries = [
|
|
|
597
642
|
continent: "Europe",
|
|
598
643
|
currency: "DKK",
|
|
599
644
|
languages: ["Danish"],
|
|
600
|
-
tld: ".dk"
|
|
645
|
+
tld: ".dk",
|
|
646
|
+
recognized: true
|
|
601
647
|
},
|
|
602
648
|
{
|
|
603
649
|
name: "Djibouti",
|
|
@@ -610,7 +656,8 @@ const countries = [
|
|
|
610
656
|
continent: "Africa",
|
|
611
657
|
currency: "DJF",
|
|
612
658
|
languages: ["French", "Arabic"],
|
|
613
|
-
tld: ".dj"
|
|
659
|
+
tld: ".dj",
|
|
660
|
+
recognized: true
|
|
614
661
|
},
|
|
615
662
|
{
|
|
616
663
|
name: "Dominica",
|
|
@@ -623,7 +670,8 @@ const countries = [
|
|
|
623
670
|
continent: "North America",
|
|
624
671
|
currency: "XCD",
|
|
625
672
|
languages: ["English"],
|
|
626
|
-
tld: ".dm"
|
|
673
|
+
tld: ".dm",
|
|
674
|
+
recognized: true
|
|
627
675
|
},
|
|
628
676
|
{
|
|
629
677
|
name: "Dominican Republic",
|
|
@@ -636,7 +684,8 @@ const countries = [
|
|
|
636
684
|
continent: "North America",
|
|
637
685
|
currency: "DOP",
|
|
638
686
|
languages: ["Spanish"],
|
|
639
|
-
tld: ".do"
|
|
687
|
+
tld: ".do",
|
|
688
|
+
recognized: true
|
|
640
689
|
},
|
|
641
690
|
{
|
|
642
691
|
name: "Ecuador",
|
|
@@ -649,7 +698,8 @@ const countries = [
|
|
|
649
698
|
continent: "South America",
|
|
650
699
|
currency: "USD",
|
|
651
700
|
languages: ["Spanish"],
|
|
652
|
-
tld: ".ec"
|
|
701
|
+
tld: ".ec",
|
|
702
|
+
recognized: true
|
|
653
703
|
},
|
|
654
704
|
{
|
|
655
705
|
name: "Egypt",
|
|
@@ -662,7 +712,8 @@ const countries = [
|
|
|
662
712
|
continent: "Africa",
|
|
663
713
|
currency: "EGP",
|
|
664
714
|
languages: ["Arabic"],
|
|
665
|
-
tld: ".eg"
|
|
715
|
+
tld: ".eg",
|
|
716
|
+
recognized: true
|
|
666
717
|
},
|
|
667
718
|
{
|
|
668
719
|
name: "El Salvador",
|
|
@@ -675,7 +726,8 @@ const countries = [
|
|
|
675
726
|
continent: "North America",
|
|
676
727
|
currency: "USD",
|
|
677
728
|
languages: ["Spanish"],
|
|
678
|
-
tld: ".sv"
|
|
729
|
+
tld: ".sv",
|
|
730
|
+
recognized: true
|
|
679
731
|
},
|
|
680
732
|
{
|
|
681
733
|
name: "Equatorial Guinea",
|
|
@@ -688,7 +740,8 @@ const countries = [
|
|
|
688
740
|
continent: "Africa",
|
|
689
741
|
currency: "XAF",
|
|
690
742
|
languages: ["Spanish", "French", "Portuguese"],
|
|
691
|
-
tld: ".gq"
|
|
743
|
+
tld: ".gq",
|
|
744
|
+
recognized: true
|
|
692
745
|
},
|
|
693
746
|
{
|
|
694
747
|
name: "Eritrea",
|
|
@@ -701,7 +754,8 @@ const countries = [
|
|
|
701
754
|
continent: "Africa",
|
|
702
755
|
currency: "ERN",
|
|
703
756
|
languages: ["Tigrinya", "Arabic", "English"],
|
|
704
|
-
tld: ".er"
|
|
757
|
+
tld: ".er",
|
|
758
|
+
recognized: true
|
|
705
759
|
},
|
|
706
760
|
{
|
|
707
761
|
name: "Estonia",
|
|
@@ -714,7 +768,8 @@ const countries = [
|
|
|
714
768
|
continent: "Europe",
|
|
715
769
|
currency: "EUR",
|
|
716
770
|
languages: ["Estonian"],
|
|
717
|
-
tld: ".ee"
|
|
771
|
+
tld: ".ee",
|
|
772
|
+
recognized: true
|
|
718
773
|
},
|
|
719
774
|
{
|
|
720
775
|
name: "Eswatini",
|
|
@@ -727,7 +782,8 @@ const countries = [
|
|
|
727
782
|
continent: "Africa",
|
|
728
783
|
currency: "SZL",
|
|
729
784
|
languages: ["English", "Swati"],
|
|
730
|
-
tld: ".sz"
|
|
785
|
+
tld: ".sz",
|
|
786
|
+
recognized: true
|
|
731
787
|
},
|
|
732
788
|
{
|
|
733
789
|
name: "Ethiopia",
|
|
@@ -740,7 +796,8 @@ const countries = [
|
|
|
740
796
|
continent: "Africa",
|
|
741
797
|
currency: "ETB",
|
|
742
798
|
languages: ["Amharic"],
|
|
743
|
-
tld: ".et"
|
|
799
|
+
tld: ".et",
|
|
800
|
+
recognized: true
|
|
744
801
|
},
|
|
745
802
|
{
|
|
746
803
|
name: "Fiji",
|
|
@@ -753,7 +810,8 @@ const countries = [
|
|
|
753
810
|
continent: "Oceania",
|
|
754
811
|
currency: "FJD",
|
|
755
812
|
languages: ["English", "Fijian", "Hindi"],
|
|
756
|
-
tld: ".fj"
|
|
813
|
+
tld: ".fj",
|
|
814
|
+
recognized: true
|
|
757
815
|
},
|
|
758
816
|
{
|
|
759
817
|
name: "Finland",
|
|
@@ -766,7 +824,8 @@ const countries = [
|
|
|
766
824
|
continent: "Europe",
|
|
767
825
|
currency: "EUR",
|
|
768
826
|
languages: ["Finnish", "Swedish"],
|
|
769
|
-
tld: ".fi"
|
|
827
|
+
tld: ".fi",
|
|
828
|
+
recognized: true
|
|
770
829
|
},
|
|
771
830
|
{
|
|
772
831
|
name: "France",
|
|
@@ -779,7 +838,8 @@ const countries = [
|
|
|
779
838
|
continent: "Europe",
|
|
780
839
|
currency: "EUR",
|
|
781
840
|
languages: ["French"],
|
|
782
|
-
tld: ".fr"
|
|
841
|
+
tld: ".fr",
|
|
842
|
+
recognized: true
|
|
783
843
|
},
|
|
784
844
|
{
|
|
785
845
|
name: "Gabon",
|
|
@@ -792,7 +852,8 @@ const countries = [
|
|
|
792
852
|
continent: "Africa",
|
|
793
853
|
currency: "XAF",
|
|
794
854
|
languages: ["French"],
|
|
795
|
-
tld: ".ga"
|
|
855
|
+
tld: ".ga",
|
|
856
|
+
recognized: true
|
|
796
857
|
},
|
|
797
858
|
{
|
|
798
859
|
name: "Gambia",
|
|
@@ -805,7 +866,8 @@ const countries = [
|
|
|
805
866
|
continent: "Africa",
|
|
806
867
|
currency: "GMD",
|
|
807
868
|
languages: ["English"],
|
|
808
|
-
tld: ".gm"
|
|
869
|
+
tld: ".gm",
|
|
870
|
+
recognized: true
|
|
809
871
|
},
|
|
810
872
|
{
|
|
811
873
|
name: "Georgia",
|
|
@@ -818,7 +880,8 @@ const countries = [
|
|
|
818
880
|
continent: "Asia",
|
|
819
881
|
currency: "GEL",
|
|
820
882
|
languages: ["Georgian"],
|
|
821
|
-
tld: ".ge"
|
|
883
|
+
tld: ".ge",
|
|
884
|
+
recognized: true
|
|
822
885
|
},
|
|
823
886
|
{
|
|
824
887
|
name: "Germany",
|
|
@@ -831,7 +894,8 @@ const countries = [
|
|
|
831
894
|
continent: "Europe",
|
|
832
895
|
currency: "EUR",
|
|
833
896
|
languages: ["German"],
|
|
834
|
-
tld: ".de"
|
|
897
|
+
tld: ".de",
|
|
898
|
+
recognized: true
|
|
835
899
|
},
|
|
836
900
|
{
|
|
837
901
|
name: "Ghana",
|
|
@@ -844,7 +908,8 @@ const countries = [
|
|
|
844
908
|
continent: "Africa",
|
|
845
909
|
currency: "GHS",
|
|
846
910
|
languages: ["English"],
|
|
847
|
-
tld: ".gh"
|
|
911
|
+
tld: ".gh",
|
|
912
|
+
recognized: true
|
|
848
913
|
},
|
|
849
914
|
{
|
|
850
915
|
name: "Greece",
|
|
@@ -857,7 +922,8 @@ const countries = [
|
|
|
857
922
|
continent: "Europe",
|
|
858
923
|
currency: "EUR",
|
|
859
924
|
languages: ["Greek"],
|
|
860
|
-
tld: ".gr"
|
|
925
|
+
tld: ".gr",
|
|
926
|
+
recognized: true
|
|
861
927
|
},
|
|
862
928
|
{
|
|
863
929
|
name: "Grenada",
|
|
@@ -870,7 +936,8 @@ const countries = [
|
|
|
870
936
|
continent: "North America",
|
|
871
937
|
currency: "XCD",
|
|
872
938
|
languages: ["English"],
|
|
873
|
-
tld: ".gd"
|
|
939
|
+
tld: ".gd",
|
|
940
|
+
recognized: true
|
|
874
941
|
},
|
|
875
942
|
{
|
|
876
943
|
name: "Guatemala",
|
|
@@ -883,7 +950,8 @@ const countries = [
|
|
|
883
950
|
continent: "North America",
|
|
884
951
|
currency: "GTQ",
|
|
885
952
|
languages: ["Spanish"],
|
|
886
|
-
tld: ".gt"
|
|
953
|
+
tld: ".gt",
|
|
954
|
+
recognized: true
|
|
887
955
|
},
|
|
888
956
|
{
|
|
889
957
|
name: "Guinea",
|
|
@@ -896,7 +964,8 @@ const countries = [
|
|
|
896
964
|
continent: "Africa",
|
|
897
965
|
currency: "GNF",
|
|
898
966
|
languages: ["French"],
|
|
899
|
-
tld: ".gn"
|
|
967
|
+
tld: ".gn",
|
|
968
|
+
recognized: true
|
|
900
969
|
},
|
|
901
970
|
{
|
|
902
971
|
name: "Guinea-Bissau",
|
|
@@ -909,7 +978,8 @@ const countries = [
|
|
|
909
978
|
continent: "Africa",
|
|
910
979
|
currency: "XOF",
|
|
911
980
|
languages: ["Portuguese"],
|
|
912
|
-
tld: ".gw"
|
|
981
|
+
tld: ".gw",
|
|
982
|
+
recognized: true
|
|
913
983
|
},
|
|
914
984
|
{
|
|
915
985
|
name: "Guyana",
|
|
@@ -922,7 +992,8 @@ const countries = [
|
|
|
922
992
|
continent: "South America",
|
|
923
993
|
currency: "GYD",
|
|
924
994
|
languages: ["English"],
|
|
925
|
-
tld: ".gy"
|
|
995
|
+
tld: ".gy",
|
|
996
|
+
recognized: true
|
|
926
997
|
},
|
|
927
998
|
{
|
|
928
999
|
name: "Haiti",
|
|
@@ -935,7 +1006,8 @@ const countries = [
|
|
|
935
1006
|
continent: "North America",
|
|
936
1007
|
currency: "HTG",
|
|
937
1008
|
languages: ["French", "Haitian Creole"],
|
|
938
|
-
tld: ".ht"
|
|
1009
|
+
tld: ".ht",
|
|
1010
|
+
recognized: true
|
|
939
1011
|
},
|
|
940
1012
|
{
|
|
941
1013
|
name: "Honduras",
|
|
@@ -948,7 +1020,8 @@ const countries = [
|
|
|
948
1020
|
continent: "North America",
|
|
949
1021
|
currency: "HNL",
|
|
950
1022
|
languages: ["Spanish"],
|
|
951
|
-
tld: ".hn"
|
|
1023
|
+
tld: ".hn",
|
|
1024
|
+
recognized: true
|
|
952
1025
|
},
|
|
953
1026
|
{
|
|
954
1027
|
name: "Hungary",
|
|
@@ -961,7 +1034,8 @@ const countries = [
|
|
|
961
1034
|
continent: "Europe",
|
|
962
1035
|
currency: "HUF",
|
|
963
1036
|
languages: ["Hungarian"],
|
|
964
|
-
tld: ".hu"
|
|
1037
|
+
tld: ".hu",
|
|
1038
|
+
recognized: true
|
|
965
1039
|
},
|
|
966
1040
|
{
|
|
967
1041
|
name: "Iceland",
|
|
@@ -974,7 +1048,8 @@ const countries = [
|
|
|
974
1048
|
continent: "Europe",
|
|
975
1049
|
currency: "ISK",
|
|
976
1050
|
languages: ["Icelandic"],
|
|
977
|
-
tld: ".is"
|
|
1051
|
+
tld: ".is",
|
|
1052
|
+
recognized: true
|
|
978
1053
|
},
|
|
979
1054
|
{
|
|
980
1055
|
name: "India",
|
|
@@ -987,7 +1062,8 @@ const countries = [
|
|
|
987
1062
|
continent: "Asia",
|
|
988
1063
|
currency: "INR",
|
|
989
1064
|
languages: ["Hindi", "English"],
|
|
990
|
-
tld: ".in"
|
|
1065
|
+
tld: ".in",
|
|
1066
|
+
recognized: true
|
|
991
1067
|
},
|
|
992
1068
|
{
|
|
993
1069
|
name: "Indonesia",
|
|
@@ -1000,7 +1076,8 @@ const countries = [
|
|
|
1000
1076
|
continent: "Asia",
|
|
1001
1077
|
currency: "IDR",
|
|
1002
1078
|
languages: ["Indonesian"],
|
|
1003
|
-
tld: ".id"
|
|
1079
|
+
tld: ".id",
|
|
1080
|
+
recognized: true
|
|
1004
1081
|
},
|
|
1005
1082
|
{
|
|
1006
1083
|
name: "Iran",
|
|
@@ -1013,7 +1090,8 @@ const countries = [
|
|
|
1013
1090
|
continent: "Asia",
|
|
1014
1091
|
currency: "IRR",
|
|
1015
1092
|
languages: ["Persian"],
|
|
1016
|
-
tld: ".ir"
|
|
1093
|
+
tld: ".ir",
|
|
1094
|
+
recognized: true
|
|
1017
1095
|
},
|
|
1018
1096
|
{
|
|
1019
1097
|
name: "Iraq",
|
|
@@ -1026,7 +1104,8 @@ const countries = [
|
|
|
1026
1104
|
continent: "Asia",
|
|
1027
1105
|
currency: "IQD",
|
|
1028
1106
|
languages: ["Arabic", "Kurdish"],
|
|
1029
|
-
tld: ".iq"
|
|
1107
|
+
tld: ".iq",
|
|
1108
|
+
recognized: true
|
|
1030
1109
|
},
|
|
1031
1110
|
{
|
|
1032
1111
|
name: "Ireland",
|
|
@@ -1039,7 +1118,8 @@ const countries = [
|
|
|
1039
1118
|
continent: "Europe",
|
|
1040
1119
|
currency: "EUR",
|
|
1041
1120
|
languages: ["Irish", "English"],
|
|
1042
|
-
tld: ".ie"
|
|
1121
|
+
tld: ".ie",
|
|
1122
|
+
recognized: true
|
|
1043
1123
|
},
|
|
1044
1124
|
{
|
|
1045
1125
|
name: "Israel",
|
|
@@ -1052,7 +1132,8 @@ const countries = [
|
|
|
1052
1132
|
continent: "Asia",
|
|
1053
1133
|
currency: "ILS",
|
|
1054
1134
|
languages: ["Hebrew", "Arabic"],
|
|
1055
|
-
tld: ".il"
|
|
1135
|
+
tld: ".il",
|
|
1136
|
+
recognized: true
|
|
1056
1137
|
},
|
|
1057
1138
|
{
|
|
1058
1139
|
name: "Italy",
|
|
@@ -1065,7 +1146,8 @@ const countries = [
|
|
|
1065
1146
|
continent: "Europe",
|
|
1066
1147
|
currency: "EUR",
|
|
1067
1148
|
languages: ["Italian"],
|
|
1068
|
-
tld: ".it"
|
|
1149
|
+
tld: ".it",
|
|
1150
|
+
recognized: true
|
|
1069
1151
|
},
|
|
1070
1152
|
{
|
|
1071
1153
|
name: "Jamaica",
|
|
@@ -1078,7 +1160,8 @@ const countries = [
|
|
|
1078
1160
|
continent: "North America",
|
|
1079
1161
|
currency: "JMD",
|
|
1080
1162
|
languages: ["English"],
|
|
1081
|
-
tld: ".jm"
|
|
1163
|
+
tld: ".jm",
|
|
1164
|
+
recognized: true
|
|
1082
1165
|
},
|
|
1083
1166
|
{
|
|
1084
1167
|
name: "Japan",
|
|
@@ -1091,7 +1174,8 @@ const countries = [
|
|
|
1091
1174
|
continent: "Asia",
|
|
1092
1175
|
currency: "JPY",
|
|
1093
1176
|
languages: ["Japanese"],
|
|
1094
|
-
tld: ".jp"
|
|
1177
|
+
tld: ".jp",
|
|
1178
|
+
recognized: true
|
|
1095
1179
|
},
|
|
1096
1180
|
{
|
|
1097
1181
|
name: "Jordan",
|
|
@@ -1104,7 +1188,8 @@ const countries = [
|
|
|
1104
1188
|
continent: "Asia",
|
|
1105
1189
|
currency: "JOD",
|
|
1106
1190
|
languages: ["Arabic"],
|
|
1107
|
-
tld: ".jo"
|
|
1191
|
+
tld: ".jo",
|
|
1192
|
+
recognized: true
|
|
1108
1193
|
},
|
|
1109
1194
|
{
|
|
1110
1195
|
name: "Kazakhstan",
|
|
@@ -1117,7 +1202,8 @@ const countries = [
|
|
|
1117
1202
|
continent: "Asia",
|
|
1118
1203
|
currency: "KZT",
|
|
1119
1204
|
languages: ["Kazakh", "Russian"],
|
|
1120
|
-
tld: ".kz"
|
|
1205
|
+
tld: ".kz",
|
|
1206
|
+
recognized: true
|
|
1121
1207
|
},
|
|
1122
1208
|
{
|
|
1123
1209
|
name: "Kenya",
|
|
@@ -1130,7 +1216,8 @@ const countries = [
|
|
|
1130
1216
|
continent: "Africa",
|
|
1131
1217
|
currency: "KES",
|
|
1132
1218
|
languages: ["Swahili", "English"],
|
|
1133
|
-
tld: ".ke"
|
|
1219
|
+
tld: ".ke",
|
|
1220
|
+
recognized: true
|
|
1134
1221
|
},
|
|
1135
1222
|
{
|
|
1136
1223
|
name: "Kiribati",
|
|
@@ -1143,7 +1230,8 @@ const countries = [
|
|
|
1143
1230
|
continent: "Oceania",
|
|
1144
1231
|
currency: "AUD",
|
|
1145
1232
|
languages: ["English", "Gilbertese"],
|
|
1146
|
-
tld: ".ki"
|
|
1233
|
+
tld: ".ki",
|
|
1234
|
+
recognized: true
|
|
1147
1235
|
},
|
|
1148
1236
|
{
|
|
1149
1237
|
name: "Kosovo",
|
|
@@ -1156,7 +1244,8 @@ const countries = [
|
|
|
1156
1244
|
continent: "Europe",
|
|
1157
1245
|
currency: "EUR",
|
|
1158
1246
|
languages: ["Albanian", "Serbian"],
|
|
1159
|
-
tld: ".xk"
|
|
1247
|
+
tld: ".xk",
|
|
1248
|
+
recognized: false
|
|
1160
1249
|
},
|
|
1161
1250
|
{
|
|
1162
1251
|
name: "Kuwait",
|
|
@@ -1169,7 +1258,8 @@ const countries = [
|
|
|
1169
1258
|
continent: "Asia",
|
|
1170
1259
|
currency: "KWD",
|
|
1171
1260
|
languages: ["Arabic"],
|
|
1172
|
-
tld: ".kw"
|
|
1261
|
+
tld: ".kw",
|
|
1262
|
+
recognized: true
|
|
1173
1263
|
},
|
|
1174
1264
|
{
|
|
1175
1265
|
name: "Kyrgyzstan",
|
|
@@ -1182,7 +1272,8 @@ const countries = [
|
|
|
1182
1272
|
continent: "Asia",
|
|
1183
1273
|
currency: "KGS",
|
|
1184
1274
|
languages: ["Kyrgyz", "Russian"],
|
|
1185
|
-
tld: ".kg"
|
|
1275
|
+
tld: ".kg",
|
|
1276
|
+
recognized: true
|
|
1186
1277
|
},
|
|
1187
1278
|
{
|
|
1188
1279
|
name: "Laos",
|
|
@@ -1195,7 +1286,8 @@ const countries = [
|
|
|
1195
1286
|
continent: "Asia",
|
|
1196
1287
|
currency: "LAK",
|
|
1197
1288
|
languages: ["Lao"],
|
|
1198
|
-
tld: ".la"
|
|
1289
|
+
tld: ".la",
|
|
1290
|
+
recognized: true
|
|
1199
1291
|
},
|
|
1200
1292
|
{
|
|
1201
1293
|
name: "Latvia",
|
|
@@ -1208,7 +1300,8 @@ const countries = [
|
|
|
1208
1300
|
continent: "Europe",
|
|
1209
1301
|
currency: "EUR",
|
|
1210
1302
|
languages: ["Latvian"],
|
|
1211
|
-
tld: ".lv"
|
|
1303
|
+
tld: ".lv",
|
|
1304
|
+
recognized: true
|
|
1212
1305
|
},
|
|
1213
1306
|
{
|
|
1214
1307
|
name: "Lebanon",
|
|
@@ -1221,7 +1314,8 @@ const countries = [
|
|
|
1221
1314
|
continent: "Asia",
|
|
1222
1315
|
currency: "LBP",
|
|
1223
1316
|
languages: ["Arabic", "French"],
|
|
1224
|
-
tld: ".lb"
|
|
1317
|
+
tld: ".lb",
|
|
1318
|
+
recognized: true
|
|
1225
1319
|
},
|
|
1226
1320
|
{
|
|
1227
1321
|
name: "Lesotho",
|
|
@@ -1234,7 +1328,8 @@ const countries = [
|
|
|
1234
1328
|
continent: "Africa",
|
|
1235
1329
|
currency: "LSL",
|
|
1236
1330
|
languages: ["Sesotho", "English"],
|
|
1237
|
-
tld: ".ls"
|
|
1331
|
+
tld: ".ls",
|
|
1332
|
+
recognized: true
|
|
1238
1333
|
},
|
|
1239
1334
|
{
|
|
1240
1335
|
name: "Liberia",
|
|
@@ -1247,7 +1342,8 @@ const countries = [
|
|
|
1247
1342
|
continent: "Africa",
|
|
1248
1343
|
currency: "LRD",
|
|
1249
1344
|
languages: ["English"],
|
|
1250
|
-
tld: ".lr"
|
|
1345
|
+
tld: ".lr",
|
|
1346
|
+
recognized: true
|
|
1251
1347
|
},
|
|
1252
1348
|
{
|
|
1253
1349
|
name: "Libya",
|
|
@@ -1260,7 +1356,8 @@ const countries = [
|
|
|
1260
1356
|
continent: "Africa",
|
|
1261
1357
|
currency: "LYD",
|
|
1262
1358
|
languages: ["Arabic"],
|
|
1263
|
-
tld: ".ly"
|
|
1359
|
+
tld: ".ly",
|
|
1360
|
+
recognized: true
|
|
1264
1361
|
},
|
|
1265
1362
|
{
|
|
1266
1363
|
name: "Liechtenstein",
|
|
@@ -1273,7 +1370,8 @@ const countries = [
|
|
|
1273
1370
|
continent: "Europe",
|
|
1274
1371
|
currency: "CHF",
|
|
1275
1372
|
languages: ["German"],
|
|
1276
|
-
tld: ".li"
|
|
1373
|
+
tld: ".li",
|
|
1374
|
+
recognized: true
|
|
1277
1375
|
},
|
|
1278
1376
|
{
|
|
1279
1377
|
name: "Lithuania",
|
|
@@ -1286,7 +1384,8 @@ const countries = [
|
|
|
1286
1384
|
continent: "Europe",
|
|
1287
1385
|
currency: "EUR",
|
|
1288
1386
|
languages: ["Lithuanian"],
|
|
1289
|
-
tld: ".lt"
|
|
1387
|
+
tld: ".lt",
|
|
1388
|
+
recognized: true
|
|
1290
1389
|
},
|
|
1291
1390
|
{
|
|
1292
1391
|
name: "Luxembourg",
|
|
@@ -1299,7 +1398,8 @@ const countries = [
|
|
|
1299
1398
|
continent: "Europe",
|
|
1300
1399
|
currency: "EUR",
|
|
1301
1400
|
languages: ["Luxembourgish", "French", "German"],
|
|
1302
|
-
tld: ".lu"
|
|
1401
|
+
tld: ".lu",
|
|
1402
|
+
recognized: true
|
|
1303
1403
|
},
|
|
1304
1404
|
{
|
|
1305
1405
|
name: "Madagascar",
|
|
@@ -1312,7 +1412,8 @@ const countries = [
|
|
|
1312
1412
|
continent: "Africa",
|
|
1313
1413
|
currency: "MGA",
|
|
1314
1414
|
languages: ["Malagasy", "French"],
|
|
1315
|
-
tld: ".mg"
|
|
1415
|
+
tld: ".mg",
|
|
1416
|
+
recognized: true
|
|
1316
1417
|
},
|
|
1317
1418
|
{
|
|
1318
1419
|
name: "Malawi",
|
|
@@ -1325,7 +1426,8 @@ const countries = [
|
|
|
1325
1426
|
continent: "Africa",
|
|
1326
1427
|
currency: "MWK",
|
|
1327
1428
|
languages: ["English", "Chichewa"],
|
|
1328
|
-
tld: ".mw"
|
|
1429
|
+
tld: ".mw",
|
|
1430
|
+
recognized: true
|
|
1329
1431
|
},
|
|
1330
1432
|
{
|
|
1331
1433
|
name: "Malaysia",
|
|
@@ -1338,7 +1440,8 @@ const countries = [
|
|
|
1338
1440
|
continent: "Asia",
|
|
1339
1441
|
currency: "MYR",
|
|
1340
1442
|
languages: ["Malay"],
|
|
1341
|
-
tld: ".my"
|
|
1443
|
+
tld: ".my",
|
|
1444
|
+
recognized: true
|
|
1342
1445
|
},
|
|
1343
1446
|
{
|
|
1344
1447
|
name: "Maldives",
|
|
@@ -1351,7 +1454,8 @@ const countries = [
|
|
|
1351
1454
|
continent: "Asia",
|
|
1352
1455
|
currency: "MVR",
|
|
1353
1456
|
languages: ["Dhivehi"],
|
|
1354
|
-
tld: ".mv"
|
|
1457
|
+
tld: ".mv",
|
|
1458
|
+
recognized: true
|
|
1355
1459
|
},
|
|
1356
1460
|
{
|
|
1357
1461
|
name: "Mali",
|
|
@@ -1364,7 +1468,8 @@ const countries = [
|
|
|
1364
1468
|
continent: "Africa",
|
|
1365
1469
|
currency: "XOF",
|
|
1366
1470
|
languages: ["French"],
|
|
1367
|
-
tld: ".ml"
|
|
1471
|
+
tld: ".ml",
|
|
1472
|
+
recognized: true
|
|
1368
1473
|
},
|
|
1369
1474
|
{
|
|
1370
1475
|
name: "Malta",
|
|
@@ -1377,7 +1482,8 @@ const countries = [
|
|
|
1377
1482
|
continent: "Europe",
|
|
1378
1483
|
currency: "EUR",
|
|
1379
1484
|
languages: ["Maltese", "English"],
|
|
1380
|
-
tld: ".mt"
|
|
1485
|
+
tld: ".mt",
|
|
1486
|
+
recognized: true
|
|
1381
1487
|
},
|
|
1382
1488
|
{
|
|
1383
1489
|
name: "Marshall Islands",
|
|
@@ -1390,7 +1496,8 @@ const countries = [
|
|
|
1390
1496
|
continent: "Oceania",
|
|
1391
1497
|
currency: "USD",
|
|
1392
1498
|
languages: ["Marshallese", "English"],
|
|
1393
|
-
tld: ".mh"
|
|
1499
|
+
tld: ".mh",
|
|
1500
|
+
recognized: true
|
|
1394
1501
|
},
|
|
1395
1502
|
{
|
|
1396
1503
|
name: "Mauritania",
|
|
@@ -1403,7 +1510,8 @@ const countries = [
|
|
|
1403
1510
|
continent: "Africa",
|
|
1404
1511
|
currency: "MRU",
|
|
1405
1512
|
languages: ["Arabic"],
|
|
1406
|
-
tld: ".mr"
|
|
1513
|
+
tld: ".mr",
|
|
1514
|
+
recognized: true
|
|
1407
1515
|
},
|
|
1408
1516
|
{
|
|
1409
1517
|
name: "Mauritius",
|
|
@@ -1416,7 +1524,8 @@ const countries = [
|
|
|
1416
1524
|
continent: "Africa",
|
|
1417
1525
|
currency: "MUR",
|
|
1418
1526
|
languages: ["English", "French"],
|
|
1419
|
-
tld: ".mu"
|
|
1527
|
+
tld: ".mu",
|
|
1528
|
+
recognized: true
|
|
1420
1529
|
},
|
|
1421
1530
|
{
|
|
1422
1531
|
name: "Mexico",
|
|
@@ -1429,7 +1538,8 @@ const countries = [
|
|
|
1429
1538
|
continent: "North America",
|
|
1430
1539
|
currency: "MXN",
|
|
1431
1540
|
languages: ["Spanish"],
|
|
1432
|
-
tld: ".mx"
|
|
1541
|
+
tld: ".mx",
|
|
1542
|
+
recognized: true
|
|
1433
1543
|
},
|
|
1434
1544
|
{
|
|
1435
1545
|
name: "Micronesia",
|
|
@@ -1442,7 +1552,8 @@ const countries = [
|
|
|
1442
1552
|
continent: "Oceania",
|
|
1443
1553
|
currency: "USD",
|
|
1444
1554
|
languages: ["English"],
|
|
1445
|
-
tld: ".fm"
|
|
1555
|
+
tld: ".fm",
|
|
1556
|
+
recognized: true
|
|
1446
1557
|
},
|
|
1447
1558
|
{
|
|
1448
1559
|
name: "Moldova",
|
|
@@ -1455,7 +1566,8 @@ const countries = [
|
|
|
1455
1566
|
continent: "Europe",
|
|
1456
1567
|
currency: "MDL",
|
|
1457
1568
|
languages: ["Romanian"],
|
|
1458
|
-
tld: ".md"
|
|
1569
|
+
tld: ".md",
|
|
1570
|
+
recognized: true
|
|
1459
1571
|
},
|
|
1460
1572
|
{
|
|
1461
1573
|
name: "Monaco",
|
|
@@ -1468,7 +1580,8 @@ const countries = [
|
|
|
1468
1580
|
continent: "Europe",
|
|
1469
1581
|
currency: "EUR",
|
|
1470
1582
|
languages: ["French"],
|
|
1471
|
-
tld: ".mc"
|
|
1583
|
+
tld: ".mc",
|
|
1584
|
+
recognized: true
|
|
1472
1585
|
},
|
|
1473
1586
|
{
|
|
1474
1587
|
name: "Mongolia",
|
|
@@ -1481,7 +1594,8 @@ const countries = [
|
|
|
1481
1594
|
continent: "Asia",
|
|
1482
1595
|
currency: "MNT",
|
|
1483
1596
|
languages: ["Mongolian"],
|
|
1484
|
-
tld: ".mn"
|
|
1597
|
+
tld: ".mn",
|
|
1598
|
+
recognized: true
|
|
1485
1599
|
},
|
|
1486
1600
|
{
|
|
1487
1601
|
name: "Montenegro",
|
|
@@ -1494,7 +1608,8 @@ const countries = [
|
|
|
1494
1608
|
continent: "Europe",
|
|
1495
1609
|
currency: "EUR",
|
|
1496
1610
|
languages: ["Montenegrin"],
|
|
1497
|
-
tld: ".me"
|
|
1611
|
+
tld: ".me",
|
|
1612
|
+
recognized: true
|
|
1498
1613
|
},
|
|
1499
1614
|
{
|
|
1500
1615
|
name: "Morocco",
|
|
@@ -1507,7 +1622,8 @@ const countries = [
|
|
|
1507
1622
|
continent: "Africa",
|
|
1508
1623
|
currency: "MAD",
|
|
1509
1624
|
languages: ["Arabic", "Tamazight"],
|
|
1510
|
-
tld: ".ma"
|
|
1625
|
+
tld: ".ma",
|
|
1626
|
+
recognized: true
|
|
1511
1627
|
},
|
|
1512
1628
|
{
|
|
1513
1629
|
name: "Mozambique",
|
|
@@ -1520,7 +1636,8 @@ const countries = [
|
|
|
1520
1636
|
continent: "Africa",
|
|
1521
1637
|
currency: "MZN",
|
|
1522
1638
|
languages: ["Portuguese"],
|
|
1523
|
-
tld: ".mz"
|
|
1639
|
+
tld: ".mz",
|
|
1640
|
+
recognized: true
|
|
1524
1641
|
},
|
|
1525
1642
|
{
|
|
1526
1643
|
name: "Myanmar",
|
|
@@ -1533,7 +1650,8 @@ const countries = [
|
|
|
1533
1650
|
continent: "Asia",
|
|
1534
1651
|
currency: "MMK",
|
|
1535
1652
|
languages: ["Burmese"],
|
|
1536
|
-
tld: ".mm"
|
|
1653
|
+
tld: ".mm",
|
|
1654
|
+
recognized: true
|
|
1537
1655
|
},
|
|
1538
1656
|
{
|
|
1539
1657
|
name: "Nagorno-Karabakh",
|
|
@@ -1545,7 +1663,8 @@ const countries = [
|
|
|
1545
1663
|
capital: "Stepanakert",
|
|
1546
1664
|
continent: "Asia",
|
|
1547
1665
|
currency: "AMD",
|
|
1548
|
-
languages: ["Armenian"]
|
|
1666
|
+
languages: ["Armenian"],
|
|
1667
|
+
recognized: false
|
|
1549
1668
|
},
|
|
1550
1669
|
{
|
|
1551
1670
|
name: "Namibia",
|
|
@@ -1558,7 +1677,8 @@ const countries = [
|
|
|
1558
1677
|
continent: "Africa",
|
|
1559
1678
|
currency: "NAD",
|
|
1560
1679
|
languages: ["English"],
|
|
1561
|
-
tld: ".na"
|
|
1680
|
+
tld: ".na",
|
|
1681
|
+
recognized: true
|
|
1562
1682
|
},
|
|
1563
1683
|
{
|
|
1564
1684
|
name: "Nauru",
|
|
@@ -1571,7 +1691,8 @@ const countries = [
|
|
|
1571
1691
|
continent: "Oceania",
|
|
1572
1692
|
currency: "AUD",
|
|
1573
1693
|
languages: ["Nauruan", "English"],
|
|
1574
|
-
tld: ".nr"
|
|
1694
|
+
tld: ".nr",
|
|
1695
|
+
recognized: true
|
|
1575
1696
|
},
|
|
1576
1697
|
{
|
|
1577
1698
|
name: "Nepal",
|
|
@@ -1584,7 +1705,8 @@ const countries = [
|
|
|
1584
1705
|
continent: "Asia",
|
|
1585
1706
|
currency: "NPR",
|
|
1586
1707
|
languages: ["Nepali"],
|
|
1587
|
-
tld: ".np"
|
|
1708
|
+
tld: ".np",
|
|
1709
|
+
recognized: true
|
|
1588
1710
|
},
|
|
1589
1711
|
{
|
|
1590
1712
|
name: "Netherlands",
|
|
@@ -1597,7 +1719,8 @@ const countries = [
|
|
|
1597
1719
|
continent: "Europe",
|
|
1598
1720
|
currency: "EUR",
|
|
1599
1721
|
languages: ["Dutch"],
|
|
1600
|
-
tld: ".nl"
|
|
1722
|
+
tld: ".nl",
|
|
1723
|
+
recognized: true
|
|
1601
1724
|
},
|
|
1602
1725
|
{
|
|
1603
1726
|
name: "New Zealand",
|
|
@@ -1610,7 +1733,8 @@ const countries = [
|
|
|
1610
1733
|
continent: "Oceania",
|
|
1611
1734
|
currency: "NZD",
|
|
1612
1735
|
languages: ["English", "Māori"],
|
|
1613
|
-
tld: ".nz"
|
|
1736
|
+
tld: ".nz",
|
|
1737
|
+
recognized: true
|
|
1614
1738
|
},
|
|
1615
1739
|
{
|
|
1616
1740
|
name: "Nicaragua",
|
|
@@ -1623,7 +1747,8 @@ const countries = [
|
|
|
1623
1747
|
continent: "North America",
|
|
1624
1748
|
currency: "NIO",
|
|
1625
1749
|
languages: ["Spanish"],
|
|
1626
|
-
tld: ".ni"
|
|
1750
|
+
tld: ".ni",
|
|
1751
|
+
recognized: true
|
|
1627
1752
|
},
|
|
1628
1753
|
{
|
|
1629
1754
|
name: "Niger",
|
|
@@ -1636,7 +1761,8 @@ const countries = [
|
|
|
1636
1761
|
continent: "Africa",
|
|
1637
1762
|
currency: "XOF",
|
|
1638
1763
|
languages: ["French"],
|
|
1639
|
-
tld: ".ne"
|
|
1764
|
+
tld: ".ne",
|
|
1765
|
+
recognized: true
|
|
1640
1766
|
},
|
|
1641
1767
|
{
|
|
1642
1768
|
name: "Nigeria",
|
|
@@ -1649,7 +1775,8 @@ const countries = [
|
|
|
1649
1775
|
continent: "Africa",
|
|
1650
1776
|
currency: "NGN",
|
|
1651
1777
|
languages: ["English"],
|
|
1652
|
-
tld: ".ng"
|
|
1778
|
+
tld: ".ng",
|
|
1779
|
+
recognized: true
|
|
1653
1780
|
},
|
|
1654
1781
|
{
|
|
1655
1782
|
name: "North Korea",
|
|
@@ -1662,7 +1789,8 @@ const countries = [
|
|
|
1662
1789
|
continent: "Asia",
|
|
1663
1790
|
currency: "KPW",
|
|
1664
1791
|
languages: ["Korean"],
|
|
1665
|
-
tld: ".kp"
|
|
1792
|
+
tld: ".kp",
|
|
1793
|
+
recognized: true
|
|
1666
1794
|
},
|
|
1667
1795
|
{
|
|
1668
1796
|
name: "North Macedonia",
|
|
@@ -1675,7 +1803,8 @@ const countries = [
|
|
|
1675
1803
|
continent: "Europe",
|
|
1676
1804
|
currency: "MKD",
|
|
1677
1805
|
languages: ["Macedonian", "Albanian"],
|
|
1678
|
-
tld: ".mk"
|
|
1806
|
+
tld: ".mk",
|
|
1807
|
+
recognized: true
|
|
1679
1808
|
},
|
|
1680
1809
|
{
|
|
1681
1810
|
name: "Norway",
|
|
@@ -1688,7 +1817,8 @@ const countries = [
|
|
|
1688
1817
|
continent: "Europe",
|
|
1689
1818
|
currency: "NOK",
|
|
1690
1819
|
languages: ["Norwegian"],
|
|
1691
|
-
tld: ".no"
|
|
1820
|
+
tld: ".no",
|
|
1821
|
+
recognized: true
|
|
1692
1822
|
},
|
|
1693
1823
|
{
|
|
1694
1824
|
name: "Oman",
|
|
@@ -1701,7 +1831,8 @@ const countries = [
|
|
|
1701
1831
|
continent: "Asia",
|
|
1702
1832
|
currency: "OMR",
|
|
1703
1833
|
languages: ["Arabic"],
|
|
1704
|
-
tld: ".om"
|
|
1834
|
+
tld: ".om",
|
|
1835
|
+
recognized: true
|
|
1705
1836
|
},
|
|
1706
1837
|
{
|
|
1707
1838
|
name: "Pakistan",
|
|
@@ -1714,7 +1845,8 @@ const countries = [
|
|
|
1714
1845
|
continent: "Asia",
|
|
1715
1846
|
currency: "PKR",
|
|
1716
1847
|
languages: ["Urdu", "English"],
|
|
1717
|
-
tld: ".pk"
|
|
1848
|
+
tld: ".pk",
|
|
1849
|
+
recognized: true
|
|
1718
1850
|
},
|
|
1719
1851
|
{
|
|
1720
1852
|
name: "Palau",
|
|
@@ -1727,7 +1859,8 @@ const countries = [
|
|
|
1727
1859
|
continent: "Oceania",
|
|
1728
1860
|
currency: "USD",
|
|
1729
1861
|
languages: ["Palauan", "English"],
|
|
1730
|
-
tld: ".pw"
|
|
1862
|
+
tld: ".pw",
|
|
1863
|
+
recognized: true
|
|
1731
1864
|
},
|
|
1732
1865
|
{
|
|
1733
1866
|
name: "Palestine",
|
|
@@ -1740,7 +1873,8 @@ const countries = [
|
|
|
1740
1873
|
continent: "Asia",
|
|
1741
1874
|
currency: "ILS",
|
|
1742
1875
|
languages: ["Arabic"],
|
|
1743
|
-
tld: ".ps"
|
|
1876
|
+
tld: ".ps",
|
|
1877
|
+
recognized: true
|
|
1744
1878
|
},
|
|
1745
1879
|
{
|
|
1746
1880
|
name: "Panama",
|
|
@@ -1753,7 +1887,8 @@ const countries = [
|
|
|
1753
1887
|
continent: "North America",
|
|
1754
1888
|
currency: "PAB",
|
|
1755
1889
|
languages: ["Spanish"],
|
|
1756
|
-
tld: ".pa"
|
|
1890
|
+
tld: ".pa",
|
|
1891
|
+
recognized: true
|
|
1757
1892
|
},
|
|
1758
1893
|
{
|
|
1759
1894
|
name: "Papua New Guinea",
|
|
@@ -1766,7 +1901,8 @@ const countries = [
|
|
|
1766
1901
|
continent: "Oceania",
|
|
1767
1902
|
currency: "PGK",
|
|
1768
1903
|
languages: ["English", "Tok Pisin"],
|
|
1769
|
-
tld: ".pg"
|
|
1904
|
+
tld: ".pg",
|
|
1905
|
+
recognized: true
|
|
1770
1906
|
},
|
|
1771
1907
|
{
|
|
1772
1908
|
name: "Paraguay",
|
|
@@ -1779,7 +1915,8 @@ const countries = [
|
|
|
1779
1915
|
continent: "South America",
|
|
1780
1916
|
currency: "PYG",
|
|
1781
1917
|
languages: ["Spanish", "Guaraní"],
|
|
1782
|
-
tld: ".py"
|
|
1918
|
+
tld: ".py",
|
|
1919
|
+
recognized: true
|
|
1783
1920
|
},
|
|
1784
1921
|
{
|
|
1785
1922
|
name: "Peru",
|
|
@@ -1792,7 +1929,8 @@ const countries = [
|
|
|
1792
1929
|
continent: "South America",
|
|
1793
1930
|
currency: "PEN",
|
|
1794
1931
|
languages: ["Spanish", "Quechua", "Aymara"],
|
|
1795
|
-
tld: ".pe"
|
|
1932
|
+
tld: ".pe",
|
|
1933
|
+
recognized: true
|
|
1796
1934
|
},
|
|
1797
1935
|
{
|
|
1798
1936
|
name: "Philippines",
|
|
@@ -1805,7 +1943,8 @@ const countries = [
|
|
|
1805
1943
|
continent: "Asia",
|
|
1806
1944
|
currency: "PHP",
|
|
1807
1945
|
languages: ["Filipino", "English"],
|
|
1808
|
-
tld: ".ph"
|
|
1946
|
+
tld: ".ph",
|
|
1947
|
+
recognized: true
|
|
1809
1948
|
},
|
|
1810
1949
|
{
|
|
1811
1950
|
name: "Poland",
|
|
@@ -1818,7 +1957,8 @@ const countries = [
|
|
|
1818
1957
|
continent: "Europe",
|
|
1819
1958
|
currency: "PLN",
|
|
1820
1959
|
languages: ["Polish"],
|
|
1821
|
-
tld: ".pl"
|
|
1960
|
+
tld: ".pl",
|
|
1961
|
+
recognized: true
|
|
1822
1962
|
},
|
|
1823
1963
|
{
|
|
1824
1964
|
name: "Portugal",
|
|
@@ -1831,7 +1971,8 @@ const countries = [
|
|
|
1831
1971
|
continent: "Europe",
|
|
1832
1972
|
currency: "EUR",
|
|
1833
1973
|
languages: ["Portuguese"],
|
|
1834
|
-
tld: ".pt"
|
|
1974
|
+
tld: ".pt",
|
|
1975
|
+
recognized: true
|
|
1835
1976
|
},
|
|
1836
1977
|
{
|
|
1837
1978
|
name: "Qatar",
|
|
@@ -1844,7 +1985,8 @@ const countries = [
|
|
|
1844
1985
|
continent: "Asia",
|
|
1845
1986
|
currency: "QAR",
|
|
1846
1987
|
languages: ["Arabic"],
|
|
1847
|
-
tld: ".qa"
|
|
1988
|
+
tld: ".qa",
|
|
1989
|
+
recognized: true
|
|
1848
1990
|
},
|
|
1849
1991
|
{
|
|
1850
1992
|
name: "Romania",
|
|
@@ -1857,7 +1999,8 @@ const countries = [
|
|
|
1857
1999
|
continent: "Europe",
|
|
1858
2000
|
currency: "RON",
|
|
1859
2001
|
languages: ["Romanian"],
|
|
1860
|
-
tld: ".ro"
|
|
2002
|
+
tld: ".ro",
|
|
2003
|
+
recognized: true
|
|
1861
2004
|
},
|
|
1862
2005
|
{
|
|
1863
2006
|
name: "Russia",
|
|
@@ -1870,7 +2013,8 @@ const countries = [
|
|
|
1870
2013
|
continent: "Europe",
|
|
1871
2014
|
currency: "RUB",
|
|
1872
2015
|
languages: ["Russian"],
|
|
1873
|
-
tld: ".ru"
|
|
2016
|
+
tld: ".ru",
|
|
2017
|
+
recognized: true
|
|
1874
2018
|
},
|
|
1875
2019
|
{
|
|
1876
2020
|
name: "Rwanda",
|
|
@@ -1883,7 +2027,8 @@ const countries = [
|
|
|
1883
2027
|
continent: "Africa",
|
|
1884
2028
|
currency: "RWF",
|
|
1885
2029
|
languages: ["Kinyarwanda", "French", "English"],
|
|
1886
|
-
tld: ".rw"
|
|
2030
|
+
tld: ".rw",
|
|
2031
|
+
recognized: true
|
|
1887
2032
|
},
|
|
1888
2033
|
{
|
|
1889
2034
|
name: "Saint Kitts and Nevis",
|
|
@@ -1896,7 +2041,8 @@ const countries = [
|
|
|
1896
2041
|
continent: "North America",
|
|
1897
2042
|
currency: "XCD",
|
|
1898
2043
|
languages: ["English"],
|
|
1899
|
-
tld: ".kn"
|
|
2044
|
+
tld: ".kn",
|
|
2045
|
+
recognized: true
|
|
1900
2046
|
},
|
|
1901
2047
|
{
|
|
1902
2048
|
name: "Saint Lucia",
|
|
@@ -1909,7 +2055,8 @@ const countries = [
|
|
|
1909
2055
|
continent: "North America",
|
|
1910
2056
|
currency: "XCD",
|
|
1911
2057
|
languages: ["English"],
|
|
1912
|
-
tld: ".lc"
|
|
2058
|
+
tld: ".lc",
|
|
2059
|
+
recognized: true
|
|
1913
2060
|
},
|
|
1914
2061
|
{
|
|
1915
2062
|
name: "Saint Vincent and the Grenadines",
|
|
@@ -1922,7 +2069,8 @@ const countries = [
|
|
|
1922
2069
|
continent: "North America",
|
|
1923
2070
|
currency: "XCD",
|
|
1924
2071
|
languages: ["English"],
|
|
1925
|
-
tld: ".vc"
|
|
2072
|
+
tld: ".vc",
|
|
2073
|
+
recognized: true
|
|
1926
2074
|
},
|
|
1927
2075
|
{
|
|
1928
2076
|
name: "Samoa",
|
|
@@ -1935,7 +2083,8 @@ const countries = [
|
|
|
1935
2083
|
continent: "Oceania",
|
|
1936
2084
|
currency: "WST",
|
|
1937
2085
|
languages: ["Samoan", "English"],
|
|
1938
|
-
tld: ".ws"
|
|
2086
|
+
tld: ".ws",
|
|
2087
|
+
recognized: true
|
|
1939
2088
|
},
|
|
1940
2089
|
{
|
|
1941
2090
|
name: "San Marino",
|
|
@@ -1948,7 +2097,8 @@ const countries = [
|
|
|
1948
2097
|
continent: "Europe",
|
|
1949
2098
|
currency: "EUR",
|
|
1950
2099
|
languages: ["Italian"],
|
|
1951
|
-
tld: ".sm"
|
|
2100
|
+
tld: ".sm",
|
|
2101
|
+
recognized: true
|
|
1952
2102
|
},
|
|
1953
2103
|
{
|
|
1954
2104
|
name: "São Tomé and Príncipe",
|
|
@@ -1961,7 +2111,8 @@ const countries = [
|
|
|
1961
2111
|
continent: "Africa",
|
|
1962
2112
|
currency: "STN",
|
|
1963
2113
|
languages: ["Portuguese"],
|
|
1964
|
-
tld: ".st"
|
|
2114
|
+
tld: ".st",
|
|
2115
|
+
recognized: true
|
|
1965
2116
|
},
|
|
1966
2117
|
{
|
|
1967
2118
|
name: "Saudi Arabia",
|
|
@@ -1974,7 +2125,8 @@ const countries = [
|
|
|
1974
2125
|
continent: "Asia",
|
|
1975
2126
|
currency: "SAR",
|
|
1976
2127
|
languages: ["Arabic"],
|
|
1977
|
-
tld: ".sa"
|
|
2128
|
+
tld: ".sa",
|
|
2129
|
+
recognized: true
|
|
1978
2130
|
},
|
|
1979
2131
|
{
|
|
1980
2132
|
name: "Senegal",
|
|
@@ -1987,7 +2139,8 @@ const countries = [
|
|
|
1987
2139
|
continent: "Africa",
|
|
1988
2140
|
currency: "XOF",
|
|
1989
2141
|
languages: ["French"],
|
|
1990
|
-
tld: ".sn"
|
|
2142
|
+
tld: ".sn",
|
|
2143
|
+
recognized: true
|
|
1991
2144
|
},
|
|
1992
2145
|
{
|
|
1993
2146
|
name: "Serbia",
|
|
@@ -2000,7 +2153,8 @@ const countries = [
|
|
|
2000
2153
|
continent: "Europe",
|
|
2001
2154
|
currency: "RSD",
|
|
2002
2155
|
languages: ["Serbian"],
|
|
2003
|
-
tld: ".rs"
|
|
2156
|
+
tld: ".rs",
|
|
2157
|
+
recognized: true
|
|
2004
2158
|
},
|
|
2005
2159
|
{
|
|
2006
2160
|
name: "Seychelles",
|
|
@@ -2013,7 +2167,8 @@ const countries = [
|
|
|
2013
2167
|
continent: "Africa",
|
|
2014
2168
|
currency: "SCR",
|
|
2015
2169
|
languages: ["Seychellois Creole", "English", "French"],
|
|
2016
|
-
tld: ".sc"
|
|
2170
|
+
tld: ".sc",
|
|
2171
|
+
recognized: true
|
|
2017
2172
|
},
|
|
2018
2173
|
{
|
|
2019
2174
|
name: "Sierra Leone",
|
|
@@ -2026,7 +2181,8 @@ const countries = [
|
|
|
2026
2181
|
continent: "Africa",
|
|
2027
2182
|
currency: "SLL",
|
|
2028
2183
|
languages: ["English"],
|
|
2029
|
-
tld: ".sl"
|
|
2184
|
+
tld: ".sl",
|
|
2185
|
+
recognized: true
|
|
2030
2186
|
},
|
|
2031
2187
|
{
|
|
2032
2188
|
name: "Singapore",
|
|
@@ -2039,7 +2195,8 @@ const countries = [
|
|
|
2039
2195
|
continent: "Asia",
|
|
2040
2196
|
currency: "SGD",
|
|
2041
2197
|
languages: ["English", "Malay", "Mandarin", "Tamil"],
|
|
2042
|
-
tld: ".sg"
|
|
2198
|
+
tld: ".sg",
|
|
2199
|
+
recognized: true
|
|
2043
2200
|
},
|
|
2044
2201
|
{
|
|
2045
2202
|
name: "Slovakia",
|
|
@@ -2052,7 +2209,8 @@ const countries = [
|
|
|
2052
2209
|
continent: "Europe",
|
|
2053
2210
|
currency: "EUR",
|
|
2054
2211
|
languages: ["Slovak"],
|
|
2055
|
-
tld: ".sk"
|
|
2212
|
+
tld: ".sk",
|
|
2213
|
+
recognized: true
|
|
2056
2214
|
},
|
|
2057
2215
|
{
|
|
2058
2216
|
name: "Slovenia",
|
|
@@ -2065,7 +2223,8 @@ const countries = [
|
|
|
2065
2223
|
continent: "Europe",
|
|
2066
2224
|
currency: "EUR",
|
|
2067
2225
|
languages: ["Slovenian"],
|
|
2068
|
-
tld: ".si"
|
|
2226
|
+
tld: ".si",
|
|
2227
|
+
recognized: true
|
|
2069
2228
|
},
|
|
2070
2229
|
{
|
|
2071
2230
|
name: "Solomon Islands",
|
|
@@ -2078,7 +2237,8 @@ const countries = [
|
|
|
2078
2237
|
continent: "Oceania",
|
|
2079
2238
|
currency: "SBD",
|
|
2080
2239
|
languages: ["English"],
|
|
2081
|
-
tld: ".sb"
|
|
2240
|
+
tld: ".sb",
|
|
2241
|
+
recognized: true
|
|
2082
2242
|
},
|
|
2083
2243
|
{
|
|
2084
2244
|
name: "Somalia",
|
|
@@ -2091,7 +2251,8 @@ const countries = [
|
|
|
2091
2251
|
continent: "Africa",
|
|
2092
2252
|
currency: "SOS",
|
|
2093
2253
|
languages: ["Somali", "Arabic"],
|
|
2094
|
-
tld: ".so"
|
|
2254
|
+
tld: ".so",
|
|
2255
|
+
recognized: true
|
|
2095
2256
|
},
|
|
2096
2257
|
{
|
|
2097
2258
|
name: "South Africa",
|
|
@@ -2104,7 +2265,8 @@ const countries = [
|
|
|
2104
2265
|
continent: "Africa",
|
|
2105
2266
|
currency: "ZAR",
|
|
2106
2267
|
languages: ["Zulu", "Xhosa", "Afrikaans", "English"],
|
|
2107
|
-
tld: ".za"
|
|
2268
|
+
tld: ".za",
|
|
2269
|
+
recognized: true
|
|
2108
2270
|
},
|
|
2109
2271
|
{
|
|
2110
2272
|
name: "South Korea",
|
|
@@ -2117,7 +2279,8 @@ const countries = [
|
|
|
2117
2279
|
continent: "Asia",
|
|
2118
2280
|
currency: "KRW",
|
|
2119
2281
|
languages: ["Korean"],
|
|
2120
|
-
tld: ".kr"
|
|
2282
|
+
tld: ".kr",
|
|
2283
|
+
recognized: true
|
|
2121
2284
|
},
|
|
2122
2285
|
{
|
|
2123
2286
|
name: "South Sudan",
|
|
@@ -2130,7 +2293,8 @@ const countries = [
|
|
|
2130
2293
|
continent: "Africa",
|
|
2131
2294
|
currency: "SSP",
|
|
2132
2295
|
languages: ["English"],
|
|
2133
|
-
tld: ".ss"
|
|
2296
|
+
tld: ".ss",
|
|
2297
|
+
recognized: true
|
|
2134
2298
|
},
|
|
2135
2299
|
{
|
|
2136
2300
|
name: "Spain",
|
|
@@ -2143,7 +2307,8 @@ const countries = [
|
|
|
2143
2307
|
continent: "Europe",
|
|
2144
2308
|
currency: "EUR",
|
|
2145
2309
|
languages: ["Spanish"],
|
|
2146
|
-
tld: ".es"
|
|
2310
|
+
tld: ".es",
|
|
2311
|
+
recognized: true
|
|
2147
2312
|
},
|
|
2148
2313
|
{
|
|
2149
2314
|
name: "Sri Lanka",
|
|
@@ -2156,7 +2321,8 @@ const countries = [
|
|
|
2156
2321
|
continent: "Asia",
|
|
2157
2322
|
currency: "LKR",
|
|
2158
2323
|
languages: ["Sinhala", "Tamil"],
|
|
2159
|
-
tld: ".lk"
|
|
2324
|
+
tld: ".lk",
|
|
2325
|
+
recognized: true
|
|
2160
2326
|
},
|
|
2161
2327
|
{
|
|
2162
2328
|
name: "Sudan",
|
|
@@ -2169,7 +2335,8 @@ const countries = [
|
|
|
2169
2335
|
continent: "Africa",
|
|
2170
2336
|
currency: "SDG",
|
|
2171
2337
|
languages: ["Arabic", "English"],
|
|
2172
|
-
tld: ".sd"
|
|
2338
|
+
tld: ".sd",
|
|
2339
|
+
recognized: true
|
|
2173
2340
|
},
|
|
2174
2341
|
{
|
|
2175
2342
|
name: "Suriname",
|
|
@@ -2182,7 +2349,8 @@ const countries = [
|
|
|
2182
2349
|
continent: "South America",
|
|
2183
2350
|
currency: "SRD",
|
|
2184
2351
|
languages: ["Dutch"],
|
|
2185
|
-
tld: ".sr"
|
|
2352
|
+
tld: ".sr",
|
|
2353
|
+
recognized: true
|
|
2186
2354
|
},
|
|
2187
2355
|
{
|
|
2188
2356
|
name: "Sweden",
|
|
@@ -2195,7 +2363,8 @@ const countries = [
|
|
|
2195
2363
|
continent: "Europe",
|
|
2196
2364
|
currency: "SEK",
|
|
2197
2365
|
languages: ["Swedish"],
|
|
2198
|
-
tld: ".se"
|
|
2366
|
+
tld: ".se",
|
|
2367
|
+
recognized: true
|
|
2199
2368
|
},
|
|
2200
2369
|
{
|
|
2201
2370
|
name: "Switzerland",
|
|
@@ -2208,7 +2377,8 @@ const countries = [
|
|
|
2208
2377
|
continent: "Europe",
|
|
2209
2378
|
currency: "CHF",
|
|
2210
2379
|
languages: ["German", "French", "Italian", "Romansh"],
|
|
2211
|
-
tld: ".ch"
|
|
2380
|
+
tld: ".ch",
|
|
2381
|
+
recognized: true
|
|
2212
2382
|
},
|
|
2213
2383
|
{
|
|
2214
2384
|
name: "Syria",
|
|
@@ -2221,7 +2391,8 @@ const countries = [
|
|
|
2221
2391
|
continent: "Asia",
|
|
2222
2392
|
currency: "SYP",
|
|
2223
2393
|
languages: ["Arabic"],
|
|
2224
|
-
tld: ".sy"
|
|
2394
|
+
tld: ".sy",
|
|
2395
|
+
recognized: true
|
|
2225
2396
|
},
|
|
2226
2397
|
{
|
|
2227
2398
|
name: "Taiwan",
|
|
@@ -2234,7 +2405,8 @@ const countries = [
|
|
|
2234
2405
|
continent: "Asia",
|
|
2235
2406
|
currency: "TWD",
|
|
2236
2407
|
languages: ["Mandarin"],
|
|
2237
|
-
tld: ".tw"
|
|
2408
|
+
tld: ".tw",
|
|
2409
|
+
recognized: true
|
|
2238
2410
|
},
|
|
2239
2411
|
{
|
|
2240
2412
|
name: "Tajikistan",
|
|
@@ -2247,7 +2419,8 @@ const countries = [
|
|
|
2247
2419
|
continent: "Asia",
|
|
2248
2420
|
currency: "TJS",
|
|
2249
2421
|
languages: ["Tajik"],
|
|
2250
|
-
tld: ".tj"
|
|
2422
|
+
tld: ".tj",
|
|
2423
|
+
recognized: true
|
|
2251
2424
|
},
|
|
2252
2425
|
{
|
|
2253
2426
|
name: "Tanzania",
|
|
@@ -2260,7 +2433,8 @@ const countries = [
|
|
|
2260
2433
|
continent: "Africa",
|
|
2261
2434
|
currency: "TZS",
|
|
2262
2435
|
languages: ["Swahili", "English"],
|
|
2263
|
-
tld: ".tz"
|
|
2436
|
+
tld: ".tz",
|
|
2437
|
+
recognized: true
|
|
2264
2438
|
},
|
|
2265
2439
|
{
|
|
2266
2440
|
name: "Thailand",
|
|
@@ -2273,7 +2447,8 @@ const countries = [
|
|
|
2273
2447
|
continent: "Asia",
|
|
2274
2448
|
currency: "THB",
|
|
2275
2449
|
languages: ["Thai"],
|
|
2276
|
-
tld: ".th"
|
|
2450
|
+
tld: ".th",
|
|
2451
|
+
recognized: true
|
|
2277
2452
|
},
|
|
2278
2453
|
{
|
|
2279
2454
|
name: "Timor-Leste",
|
|
@@ -2286,7 +2461,8 @@ const countries = [
|
|
|
2286
2461
|
continent: "Asia",
|
|
2287
2462
|
currency: "USD",
|
|
2288
2463
|
languages: ["Portuguese", "Tetum"],
|
|
2289
|
-
tld: ".tl"
|
|
2464
|
+
tld: ".tl",
|
|
2465
|
+
recognized: true
|
|
2290
2466
|
},
|
|
2291
2467
|
{
|
|
2292
2468
|
name: "Togo",
|
|
@@ -2299,7 +2475,8 @@ const countries = [
|
|
|
2299
2475
|
continent: "Africa",
|
|
2300
2476
|
currency: "XOF",
|
|
2301
2477
|
languages: ["French"],
|
|
2302
|
-
tld: ".tg"
|
|
2478
|
+
tld: ".tg",
|
|
2479
|
+
recognized: true
|
|
2303
2480
|
},
|
|
2304
2481
|
{
|
|
2305
2482
|
name: "Tonga",
|
|
@@ -2312,7 +2489,8 @@ const countries = [
|
|
|
2312
2489
|
continent: "Oceania",
|
|
2313
2490
|
currency: "TOP",
|
|
2314
2491
|
languages: ["Tongan", "English"],
|
|
2315
|
-
tld: ".to"
|
|
2492
|
+
tld: ".to",
|
|
2493
|
+
recognized: true
|
|
2316
2494
|
},
|
|
2317
2495
|
{
|
|
2318
2496
|
name: "Trinidad and Tobago",
|
|
@@ -2325,7 +2503,8 @@ const countries = [
|
|
|
2325
2503
|
continent: "North America",
|
|
2326
2504
|
currency: "TTD",
|
|
2327
2505
|
languages: ["English"],
|
|
2328
|
-
tld: ".tt"
|
|
2506
|
+
tld: ".tt",
|
|
2507
|
+
recognized: true
|
|
2329
2508
|
},
|
|
2330
2509
|
{
|
|
2331
2510
|
name: "Tunisia",
|
|
@@ -2338,7 +2517,8 @@ const countries = [
|
|
|
2338
2517
|
continent: "Africa",
|
|
2339
2518
|
currency: "TND",
|
|
2340
2519
|
languages: ["Arabic"],
|
|
2341
|
-
tld: ".tn"
|
|
2520
|
+
tld: ".tn",
|
|
2521
|
+
recognized: true
|
|
2342
2522
|
},
|
|
2343
2523
|
{
|
|
2344
2524
|
name: "Turkey",
|
|
@@ -2351,7 +2531,8 @@ const countries = [
|
|
|
2351
2531
|
continent: "Asia",
|
|
2352
2532
|
currency: "TRY",
|
|
2353
2533
|
languages: ["Turkish"],
|
|
2354
|
-
tld: ".tr"
|
|
2534
|
+
tld: ".tr",
|
|
2535
|
+
recognized: true
|
|
2355
2536
|
},
|
|
2356
2537
|
{
|
|
2357
2538
|
name: "Turkmenistan",
|
|
@@ -2364,7 +2545,8 @@ const countries = [
|
|
|
2364
2545
|
continent: "Asia",
|
|
2365
2546
|
currency: "TMT",
|
|
2366
2547
|
languages: ["Turkmen"],
|
|
2367
|
-
tld: ".tm"
|
|
2548
|
+
tld: ".tm",
|
|
2549
|
+
recognized: true
|
|
2368
2550
|
},
|
|
2369
2551
|
{
|
|
2370
2552
|
name: "Tuvalu",
|
|
@@ -2377,7 +2559,8 @@ const countries = [
|
|
|
2377
2559
|
continent: "Oceania",
|
|
2378
2560
|
currency: "AUD",
|
|
2379
2561
|
languages: ["Tuvaluan", "English"],
|
|
2380
|
-
tld: ".tv"
|
|
2562
|
+
tld: ".tv",
|
|
2563
|
+
recognized: true
|
|
2381
2564
|
},
|
|
2382
2565
|
{
|
|
2383
2566
|
name: "Uganda",
|
|
@@ -2390,7 +2573,8 @@ const countries = [
|
|
|
2390
2573
|
continent: "Africa",
|
|
2391
2574
|
currency: "UGX",
|
|
2392
2575
|
languages: ["English", "Swahili"],
|
|
2393
|
-
tld: ".ug"
|
|
2576
|
+
tld: ".ug",
|
|
2577
|
+
recognized: true
|
|
2394
2578
|
},
|
|
2395
2579
|
{
|
|
2396
2580
|
name: "Ukraine",
|
|
@@ -2403,7 +2587,8 @@ const countries = [
|
|
|
2403
2587
|
continent: "Europe",
|
|
2404
2588
|
currency: "UAH",
|
|
2405
2589
|
languages: ["Ukrainian"],
|
|
2406
|
-
tld: ".ua"
|
|
2590
|
+
tld: ".ua",
|
|
2591
|
+
recognized: true
|
|
2407
2592
|
},
|
|
2408
2593
|
{
|
|
2409
2594
|
name: "United Arab Emirates",
|
|
@@ -2416,7 +2601,8 @@ const countries = [
|
|
|
2416
2601
|
continent: "Asia",
|
|
2417
2602
|
currency: "AED",
|
|
2418
2603
|
languages: ["Arabic"],
|
|
2419
|
-
tld: ".ae"
|
|
2604
|
+
tld: ".ae",
|
|
2605
|
+
recognized: true
|
|
2420
2606
|
},
|
|
2421
2607
|
{
|
|
2422
2608
|
name: "United Kingdom",
|
|
@@ -2429,7 +2615,8 @@ const countries = [
|
|
|
2429
2615
|
continent: "Europe",
|
|
2430
2616
|
currency: "GBP",
|
|
2431
2617
|
languages: ["English"],
|
|
2432
|
-
tld: ".uk"
|
|
2618
|
+
tld: ".uk",
|
|
2619
|
+
recognized: true
|
|
2433
2620
|
},
|
|
2434
2621
|
{
|
|
2435
2622
|
name: "United States",
|
|
@@ -2442,7 +2629,8 @@ const countries = [
|
|
|
2442
2629
|
continent: "North America",
|
|
2443
2630
|
currency: "USD",
|
|
2444
2631
|
languages: ["English"],
|
|
2445
|
-
tld: ".us"
|
|
2632
|
+
tld: ".us",
|
|
2633
|
+
recognized: true
|
|
2446
2634
|
},
|
|
2447
2635
|
{
|
|
2448
2636
|
name: "Uruguay",
|
|
@@ -2455,7 +2643,8 @@ const countries = [
|
|
|
2455
2643
|
continent: "South America",
|
|
2456
2644
|
currency: "UYU",
|
|
2457
2645
|
languages: ["Spanish"],
|
|
2458
|
-
tld: ".uy"
|
|
2646
|
+
tld: ".uy",
|
|
2647
|
+
recognized: true
|
|
2459
2648
|
},
|
|
2460
2649
|
{
|
|
2461
2650
|
name: "Uzbekistan",
|
|
@@ -2468,7 +2657,8 @@ const countries = [
|
|
|
2468
2657
|
continent: "Asia",
|
|
2469
2658
|
currency: "UZS",
|
|
2470
2659
|
languages: ["Uzbek"],
|
|
2471
|
-
tld: ".uz"
|
|
2660
|
+
tld: ".uz",
|
|
2661
|
+
recognized: true
|
|
2472
2662
|
},
|
|
2473
2663
|
{
|
|
2474
2664
|
name: "Vanuatu",
|
|
@@ -2481,7 +2671,8 @@ const countries = [
|
|
|
2481
2671
|
continent: "Oceania",
|
|
2482
2672
|
currency: "VUV",
|
|
2483
2673
|
languages: ["Bislama", "English", "French"],
|
|
2484
|
-
tld: ".vu"
|
|
2674
|
+
tld: ".vu",
|
|
2675
|
+
recognized: true
|
|
2485
2676
|
},
|
|
2486
2677
|
{
|
|
2487
2678
|
name: "Vatican City",
|
|
@@ -2494,7 +2685,8 @@ const countries = [
|
|
|
2494
2685
|
continent: "Europe",
|
|
2495
2686
|
currency: "EUR",
|
|
2496
2687
|
languages: ["Italian", "Latin"],
|
|
2497
|
-
tld: ".va"
|
|
2688
|
+
tld: ".va",
|
|
2689
|
+
recognized: true
|
|
2498
2690
|
},
|
|
2499
2691
|
{
|
|
2500
2692
|
name: "Venezuela",
|
|
@@ -2507,7 +2699,8 @@ const countries = [
|
|
|
2507
2699
|
continent: "South America",
|
|
2508
2700
|
currency: "VES",
|
|
2509
2701
|
languages: ["Spanish"],
|
|
2510
|
-
tld: ".ve"
|
|
2702
|
+
tld: ".ve",
|
|
2703
|
+
recognized: true
|
|
2511
2704
|
},
|
|
2512
2705
|
{
|
|
2513
2706
|
name: "Vietnam",
|
|
@@ -2520,7 +2713,8 @@ const countries = [
|
|
|
2520
2713
|
continent: "Asia",
|
|
2521
2714
|
currency: "VND",
|
|
2522
2715
|
languages: ["Vietnamese"],
|
|
2523
|
-
tld: ".vn"
|
|
2716
|
+
tld: ".vn",
|
|
2717
|
+
recognized: true
|
|
2524
2718
|
},
|
|
2525
2719
|
{
|
|
2526
2720
|
name: "Yemen",
|
|
@@ -2533,7 +2727,8 @@ const countries = [
|
|
|
2533
2727
|
continent: "Asia",
|
|
2534
2728
|
currency: "YER",
|
|
2535
2729
|
languages: ["Arabic"],
|
|
2536
|
-
tld: ".ye"
|
|
2730
|
+
tld: ".ye",
|
|
2731
|
+
recognized: true
|
|
2537
2732
|
},
|
|
2538
2733
|
{
|
|
2539
2734
|
name: "Zambia",
|
|
@@ -2546,7 +2741,8 @@ const countries = [
|
|
|
2546
2741
|
continent: "Africa",
|
|
2547
2742
|
currency: "ZMW",
|
|
2548
2743
|
languages: ["English"],
|
|
2549
|
-
tld: ".zm"
|
|
2744
|
+
tld: ".zm",
|
|
2745
|
+
recognized: true
|
|
2550
2746
|
},
|
|
2551
2747
|
{
|
|
2552
2748
|
name: "Zimbabwe",
|
|
@@ -2559,7 +2755,8 @@ const countries = [
|
|
|
2559
2755
|
continent: "Africa",
|
|
2560
2756
|
currency: "ZWL",
|
|
2561
2757
|
languages: ["English", "Shona", "Ndebele"],
|
|
2562
|
-
tld: ".zw"
|
|
2758
|
+
tld: ".zw",
|
|
2759
|
+
recognized: true
|
|
2563
2760
|
}
|
|
2564
2761
|
];
|
|
2565
2762
|
function getCountryByCode(code) {
|
|
@@ -2574,6 +2771,9 @@ function getCountryFlag(alpha2) {
|
|
|
2574
2771
|
const OFFSET = 127397;
|
|
2575
2772
|
return [...alpha2.toUpperCase()].map((char) => String.fromCodePoint(char.charCodeAt(0) + OFFSET)).join("");
|
|
2576
2773
|
}
|
|
2774
|
+
function getRecognizedCountries() {
|
|
2775
|
+
return countries.filter((c) => c.recognized);
|
|
2776
|
+
}
|
|
2577
2777
|
const phoneCountryCodes = [
|
|
2578
2778
|
...countries.map((country) => ({
|
|
2579
2779
|
country: country.name,
|
|
@@ -4934,6 +5134,7 @@ exports.getHemisphere = getHemisphere;
|
|
|
4934
5134
|
exports.getLandlockedCountries = getLandlockedCountries;
|
|
4935
5135
|
exports.getNeighbors = getNeighbors;
|
|
4936
5136
|
exports.getPhoneCodeByCountry = getPhoneCodeByCountry;
|
|
5137
|
+
exports.getRecognizedCountries = getRecognizedCountries;
|
|
4937
5138
|
exports.getSimilarFlags = getSimilarFlags;
|
|
4938
5139
|
exports.getStateByCode = getStateByCode;
|
|
4939
5140
|
exports.getStatesByCountry = getStatesByCountry;
|