@revolugo/common 6.9.7 → 6.10.0-beta.1
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/package.json +13 -7
- package/src/cancellation-policies.test.ts +12 -9
- package/src/cancellation-policies.ts +31 -26
- package/src/constants/countries.ts +0 -2515
- package/src/constants/currencies.ts +0 -1812
- package/src/constants/environment.ts +1 -0
- package/src/constants/hotel-offers.ts +2 -0
- package/src/constants/hotel.ts +3 -0
- package/src/constants/locales.ts +6 -0
- package/src/constants/measurement.ts +1 -0
- package/src/constants/time.ts +1 -0
- package/src/countries/constants.ts +2518 -0
- package/src/countries/index.ts +7 -0
- package/src/currencies/index.ts +1817 -0
- package/src/map/distance.ts +22 -0
- package/src/map/index.ts +1 -0
- package/src/models/paginated-queries.ts +1 -0
- package/src/types/country.ts +1 -1
- package/src/types/elements/amenity.ts +266 -0
- package/src/types/elements/bed.ts +20 -0
- package/src/types/elements/booking-policy.ts +80 -0
- package/src/types/elements/booking.ts +236 -0
- package/src/types/elements/cancellation-policy.ts +20 -0
- package/src/types/elements/contact-person.ts +158 -0
- package/src/types/elements/currency.ts +3 -0
- package/src/types/elements/event-metadata.ts +38 -0
- package/src/types/elements/event.ts +14 -0
- package/src/types/elements/hotel-image.ts +44 -0
- package/src/types/elements/hotel-images.ts +47 -0
- package/src/types/elements/hotel-offer-request.ts +82 -0
- package/src/types/elements/hotel-offer.ts +208 -0
- package/src/types/elements/hotel-review-rating.ts +14 -0
- package/src/types/elements/hotel-room-offer-package-type.ts +8 -0
- package/src/types/elements/hotel-room-offer-request.ts +77 -0
- package/src/types/elements/hotel-room-offer-type.ts +6 -0
- package/src/types/elements/hotel-room-offer.ts +192 -0
- package/src/types/elements/hotel-room.ts +102 -0
- package/src/types/elements/hotel-rooming-list.ts +49 -0
- package/src/types/elements/hotel.ts +184 -0
- package/src/types/elements/index.ts +22 -0
- package/src/types/elements/invoice.ts +21 -0
- package/src/types/elements/payment-method.ts +159 -0
- package/src/types/elements/source-market.ts +247 -0
- package/src/types/elements/tag.ts +32 -0
- package/src/types/elements/tax.ts +52 -0
- package/src/types/elements/travel-times.ts +45 -0
- package/src/types/geo-coordinates.ts +4 -0
- package/src/types/index.ts +2 -0
- package/src/utils/array-tools.ts +3 -2
- package/src/utils/case-transformers.ts +1 -0
- package/src/utils/colors.ts +4 -4
- package/src/utils/currency.ts +30 -18
- package/src/utils/dates.ts +6 -10
- package/src/utils/debounce.ts +2 -2
- package/src/utils/find-unique-keys.ts +2 -2
- package/src/utils/get-guest-count.ts +1 -0
- package/src/utils/images.ts +58 -0
- package/src/utils/index.ts +2 -1
- package/src/utils/lang-default-fallbacks.ts +1 -1
- package/src/utils/math.ts +3 -3
- package/src/utils/numbers.ts +8 -7
- package/src/utils/object-tools.ts +66 -2
- package/src/utils/poller.ts +1 -0
- package/src/utils/random.ts +12 -0
- package/src/utils/strings.ts +5 -2
- package/src/utils/uniq-by.ts +12 -9
- package/src/utils/validators.ts +1 -0
- package/src/utils/countries.ts +0 -4
|
@@ -0,0 +1,2518 @@
|
|
|
1
|
+
// oxlint-disable max-lines
|
|
2
|
+
import { CountryIso2Code } from '../constants/countries.ts'
|
|
3
|
+
import { Currency } from '../constants/currencies.ts'
|
|
4
|
+
|
|
5
|
+
import type { Country } from '../types/country.ts'
|
|
6
|
+
|
|
7
|
+
/* @__PURE__ */
|
|
8
|
+
export const EU_COUNTRIES_ISO2_CODE = new Set<string>([
|
|
9
|
+
CountryIso2Code.AT,
|
|
10
|
+
CountryIso2Code.BE,
|
|
11
|
+
CountryIso2Code.BG,
|
|
12
|
+
CountryIso2Code.CY,
|
|
13
|
+
CountryIso2Code.CZ,
|
|
14
|
+
CountryIso2Code.DE,
|
|
15
|
+
CountryIso2Code.DK,
|
|
16
|
+
CountryIso2Code.EE,
|
|
17
|
+
CountryIso2Code.ES,
|
|
18
|
+
CountryIso2Code.FI,
|
|
19
|
+
CountryIso2Code.FR,
|
|
20
|
+
CountryIso2Code.GR,
|
|
21
|
+
CountryIso2Code.HR,
|
|
22
|
+
CountryIso2Code.HU,
|
|
23
|
+
CountryIso2Code.IE,
|
|
24
|
+
CountryIso2Code.IT,
|
|
25
|
+
CountryIso2Code.LT,
|
|
26
|
+
CountryIso2Code.LU,
|
|
27
|
+
CountryIso2Code.LV,
|
|
28
|
+
CountryIso2Code.MT,
|
|
29
|
+
CountryIso2Code.NL,
|
|
30
|
+
CountryIso2Code.PL,
|
|
31
|
+
CountryIso2Code.PT,
|
|
32
|
+
CountryIso2Code.RO,
|
|
33
|
+
CountryIso2Code.SE,
|
|
34
|
+
CountryIso2Code.SI,
|
|
35
|
+
CountryIso2Code.SK,
|
|
36
|
+
])
|
|
37
|
+
|
|
38
|
+
/* @__PURE__ */
|
|
39
|
+
export const COUNTRIES: Record<string, Country> = {
|
|
40
|
+
AD: {
|
|
41
|
+
areaCodes: null,
|
|
42
|
+
currency: Currency.EUR,
|
|
43
|
+
dialCode: '376',
|
|
44
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AD.png',
|
|
45
|
+
iso2: 'AD',
|
|
46
|
+
name: 'Andorra',
|
|
47
|
+
priority: 0,
|
|
48
|
+
timezone: 'Europe/Andorra',
|
|
49
|
+
},
|
|
50
|
+
AE: {
|
|
51
|
+
areaCodes: null,
|
|
52
|
+
currency: Currency.AED,
|
|
53
|
+
dialCode: '971',
|
|
54
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AE.png',
|
|
55
|
+
iso2: 'AE',
|
|
56
|
+
name: 'United Arab Emirates (الإمارات العربية المتحدة)',
|
|
57
|
+
priority: 0,
|
|
58
|
+
timezone: 'Asia/Dubai',
|
|
59
|
+
},
|
|
60
|
+
AF: {
|
|
61
|
+
areaCodes: null,
|
|
62
|
+
currency: Currency.AFN,
|
|
63
|
+
dialCode: '93',
|
|
64
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AF.png',
|
|
65
|
+
iso2: 'AF',
|
|
66
|
+
name: 'Afghanistan (افغانستان)',
|
|
67
|
+
priority: 0,
|
|
68
|
+
timezone: 'Asia/Kabul',
|
|
69
|
+
},
|
|
70
|
+
AG: {
|
|
71
|
+
areaCodes: null,
|
|
72
|
+
currency: Currency.XCD,
|
|
73
|
+
dialCode: '1268',
|
|
74
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AG.png',
|
|
75
|
+
iso2: 'AG',
|
|
76
|
+
name: 'Antigua and Barbuda',
|
|
77
|
+
priority: 0,
|
|
78
|
+
timezone: 'America/Antigua',
|
|
79
|
+
},
|
|
80
|
+
AI: {
|
|
81
|
+
areaCodes: null,
|
|
82
|
+
currency: Currency.XCD,
|
|
83
|
+
dialCode: '1264',
|
|
84
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AI.png',
|
|
85
|
+
iso2: 'AI',
|
|
86
|
+
name: 'Anguilla',
|
|
87
|
+
priority: 0,
|
|
88
|
+
timezone: 'America/Anguilla',
|
|
89
|
+
},
|
|
90
|
+
AL: {
|
|
91
|
+
areaCodes: null,
|
|
92
|
+
currency: Currency.ALL,
|
|
93
|
+
dialCode: '355',
|
|
94
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AL.png',
|
|
95
|
+
iso2: 'AL',
|
|
96
|
+
name: 'Albania (Shqipëri)',
|
|
97
|
+
priority: 0,
|
|
98
|
+
timezone: 'Europe/Tirane',
|
|
99
|
+
},
|
|
100
|
+
AM: {
|
|
101
|
+
areaCodes: null,
|
|
102
|
+
currency: Currency.AMD,
|
|
103
|
+
dialCode: '374',
|
|
104
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AM.png',
|
|
105
|
+
iso2: 'AM',
|
|
106
|
+
name: 'Armenia (Հայաստան)',
|
|
107
|
+
priority: 0,
|
|
108
|
+
timezone: 'Asia/Yerevan',
|
|
109
|
+
},
|
|
110
|
+
AO: {
|
|
111
|
+
areaCodes: null,
|
|
112
|
+
currency: Currency.AOA,
|
|
113
|
+
dialCode: '244',
|
|
114
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AO.png',
|
|
115
|
+
iso2: 'AO',
|
|
116
|
+
name: 'Angola',
|
|
117
|
+
priority: 0,
|
|
118
|
+
timezone: 'Africa/Luanda',
|
|
119
|
+
},
|
|
120
|
+
AR: {
|
|
121
|
+
areaCodes: null,
|
|
122
|
+
currency: Currency.ARS,
|
|
123
|
+
dialCode: '54',
|
|
124
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AR.png',
|
|
125
|
+
iso2: 'AR',
|
|
126
|
+
name: 'Argentina',
|
|
127
|
+
priority: 0,
|
|
128
|
+
timezone: 'America/Argentina/Cordoba',
|
|
129
|
+
},
|
|
130
|
+
AS: {
|
|
131
|
+
areaCodes: null,
|
|
132
|
+
currency: Currency.USD,
|
|
133
|
+
dialCode: '1684',
|
|
134
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AS.png',
|
|
135
|
+
iso2: 'AS',
|
|
136
|
+
name: 'American Samoa',
|
|
137
|
+
priority: 0,
|
|
138
|
+
timezone: 'Etc/GMT+11',
|
|
139
|
+
},
|
|
140
|
+
AT: {
|
|
141
|
+
areaCodes: null,
|
|
142
|
+
currency: Currency.EUR,
|
|
143
|
+
dialCode: '43',
|
|
144
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AT.png',
|
|
145
|
+
iso2: 'AT',
|
|
146
|
+
name: 'Austria (Österreich)',
|
|
147
|
+
priority: 0,
|
|
148
|
+
timezone: 'Europe/Vienna',
|
|
149
|
+
},
|
|
150
|
+
AU: {
|
|
151
|
+
areaCodes: null,
|
|
152
|
+
currency: Currency.AUD,
|
|
153
|
+
dialCode: '61',
|
|
154
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AU.png',
|
|
155
|
+
iso2: 'AU',
|
|
156
|
+
name: 'Australia',
|
|
157
|
+
priority: 0,
|
|
158
|
+
timezone: 'Australia/Darwin',
|
|
159
|
+
},
|
|
160
|
+
AW: {
|
|
161
|
+
areaCodes: null,
|
|
162
|
+
currency: Currency.AWG,
|
|
163
|
+
dialCode: '297',
|
|
164
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AW.png',
|
|
165
|
+
iso2: 'AW',
|
|
166
|
+
name: 'Aruba',
|
|
167
|
+
priority: 0,
|
|
168
|
+
timezone: 'America/Aruba',
|
|
169
|
+
},
|
|
170
|
+
AX: {
|
|
171
|
+
areaCodes: null,
|
|
172
|
+
currency: Currency.EUR,
|
|
173
|
+
dialCode: '358',
|
|
174
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AX.png',
|
|
175
|
+
iso2: 'AX',
|
|
176
|
+
name: 'Åland Islands',
|
|
177
|
+
priority: 1,
|
|
178
|
+
timezone: 'Europe/Helsinki',
|
|
179
|
+
},
|
|
180
|
+
AZ: {
|
|
181
|
+
areaCodes: null,
|
|
182
|
+
currency: Currency.AZN,
|
|
183
|
+
dialCode: '994',
|
|
184
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/AZ.png',
|
|
185
|
+
iso2: 'AZ',
|
|
186
|
+
name: 'Azerbaijan (Azərbaycan)',
|
|
187
|
+
priority: 0,
|
|
188
|
+
timezone: 'Asia/Baku',
|
|
189
|
+
},
|
|
190
|
+
BA: {
|
|
191
|
+
areaCodes: null,
|
|
192
|
+
currency: Currency.BAM,
|
|
193
|
+
dialCode: '387',
|
|
194
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BA.png',
|
|
195
|
+
iso2: 'BA',
|
|
196
|
+
name: 'Bosnia and Herzegovina (Босна и Херцеговина)',
|
|
197
|
+
priority: 0,
|
|
198
|
+
timezone: 'Europe/Sarajevo',
|
|
199
|
+
},
|
|
200
|
+
BB: {
|
|
201
|
+
areaCodes: null,
|
|
202
|
+
currency: Currency.BBD,
|
|
203
|
+
dialCode: '1246',
|
|
204
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BB.png',
|
|
205
|
+
iso2: 'BB',
|
|
206
|
+
name: 'Barbados',
|
|
207
|
+
priority: 0,
|
|
208
|
+
timezone: 'America/Barbados',
|
|
209
|
+
},
|
|
210
|
+
BD: {
|
|
211
|
+
areaCodes: null,
|
|
212
|
+
currency: Currency.BDT,
|
|
213
|
+
dialCode: '880',
|
|
214
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BD.png',
|
|
215
|
+
iso2: 'BD',
|
|
216
|
+
name: 'Bangladesh (বাংলাদেশ)',
|
|
217
|
+
priority: 0,
|
|
218
|
+
timezone: 'Asia/Dhaka',
|
|
219
|
+
},
|
|
220
|
+
BE: {
|
|
221
|
+
areaCodes: null,
|
|
222
|
+
currency: Currency.EUR,
|
|
223
|
+
dialCode: '32',
|
|
224
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BE.png',
|
|
225
|
+
iso2: 'BE',
|
|
226
|
+
name: 'Belgium (België)',
|
|
227
|
+
priority: 0,
|
|
228
|
+
timezone: 'Europe/Brussels',
|
|
229
|
+
},
|
|
230
|
+
BF: {
|
|
231
|
+
areaCodes: null,
|
|
232
|
+
currency: Currency.XOF,
|
|
233
|
+
dialCode: '226',
|
|
234
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BF.png',
|
|
235
|
+
iso2: 'BF',
|
|
236
|
+
name: 'Burkina Faso',
|
|
237
|
+
priority: 0,
|
|
238
|
+
timezone: 'Africa/Ouagadougou',
|
|
239
|
+
},
|
|
240
|
+
BG: {
|
|
241
|
+
areaCodes: null,
|
|
242
|
+
currency: Currency.BGN,
|
|
243
|
+
dialCode: '359',
|
|
244
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BG.png',
|
|
245
|
+
iso2: 'BG',
|
|
246
|
+
name: 'Bulgaria (България)',
|
|
247
|
+
priority: 0,
|
|
248
|
+
timezone: 'Europe/Sofia',
|
|
249
|
+
},
|
|
250
|
+
BH: {
|
|
251
|
+
areaCodes: null,
|
|
252
|
+
currency: Currency.BHD,
|
|
253
|
+
dialCode: '973',
|
|
254
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BH.png',
|
|
255
|
+
iso2: 'BH',
|
|
256
|
+
name: 'Bahrain (البحرين)',
|
|
257
|
+
priority: 0,
|
|
258
|
+
timezone: 'Asia/Bahrain',
|
|
259
|
+
},
|
|
260
|
+
BI: {
|
|
261
|
+
areaCodes: null,
|
|
262
|
+
currency: Currency.BIF,
|
|
263
|
+
dialCode: '257',
|
|
264
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BI.png',
|
|
265
|
+
iso2: 'BI',
|
|
266
|
+
name: 'Burundi (Uburundi)',
|
|
267
|
+
priority: 0,
|
|
268
|
+
timezone: 'Africa/Bujumbura',
|
|
269
|
+
},
|
|
270
|
+
BJ: {
|
|
271
|
+
areaCodes: null,
|
|
272
|
+
currency: Currency.XOF,
|
|
273
|
+
dialCode: '229',
|
|
274
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BJ.png',
|
|
275
|
+
iso2: 'BJ',
|
|
276
|
+
name: 'Benin (Bénin)',
|
|
277
|
+
priority: 0,
|
|
278
|
+
timezone: 'Africa/Porto-Novo',
|
|
279
|
+
},
|
|
280
|
+
BL: {
|
|
281
|
+
areaCodes: null,
|
|
282
|
+
currency: Currency.EUR,
|
|
283
|
+
dialCode: '590',
|
|
284
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BL.png',
|
|
285
|
+
iso2: 'BL',
|
|
286
|
+
name: 'Saint Barthélemy',
|
|
287
|
+
priority: 1,
|
|
288
|
+
timezone: 'America/St_Barthelemy',
|
|
289
|
+
},
|
|
290
|
+
BM: {
|
|
291
|
+
areaCodes: null,
|
|
292
|
+
currency: Currency.BMD,
|
|
293
|
+
dialCode: '1441',
|
|
294
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BM.png',
|
|
295
|
+
iso2: 'BM',
|
|
296
|
+
name: 'Bermuda',
|
|
297
|
+
priority: 0,
|
|
298
|
+
timezone: 'Atlantic/Bermuda',
|
|
299
|
+
},
|
|
300
|
+
BN: {
|
|
301
|
+
areaCodes: null,
|
|
302
|
+
currency: Currency.BND,
|
|
303
|
+
dialCode: '673',
|
|
304
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BN.png',
|
|
305
|
+
iso2: 'BN',
|
|
306
|
+
name: 'Brunei',
|
|
307
|
+
priority: 0,
|
|
308
|
+
timezone: 'Asia/Brunei',
|
|
309
|
+
},
|
|
310
|
+
BO: {
|
|
311
|
+
areaCodes: null,
|
|
312
|
+
currency: Currency.BOB,
|
|
313
|
+
dialCode: '591',
|
|
314
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BO.png',
|
|
315
|
+
iso2: 'BO',
|
|
316
|
+
name: 'Bolivia',
|
|
317
|
+
priority: 0,
|
|
318
|
+
timezone: 'America/La_Paz',
|
|
319
|
+
},
|
|
320
|
+
BQ: {
|
|
321
|
+
areaCodes: null,
|
|
322
|
+
currency: Currency.USD,
|
|
323
|
+
dialCode: '599',
|
|
324
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BQ.png',
|
|
325
|
+
iso2: 'BQ',
|
|
326
|
+
name: 'Caribbean Netherlands',
|
|
327
|
+
priority: 1,
|
|
328
|
+
timezone: 'America/Kralendijk',
|
|
329
|
+
},
|
|
330
|
+
BR: {
|
|
331
|
+
areaCodes: null,
|
|
332
|
+
currency: Currency.BRL,
|
|
333
|
+
dialCode: '55',
|
|
334
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BR.png',
|
|
335
|
+
iso2: 'BR',
|
|
336
|
+
name: 'Brazil (Brasil)',
|
|
337
|
+
priority: 0,
|
|
338
|
+
timezone: 'America/Cuiaba',
|
|
339
|
+
},
|
|
340
|
+
BS: {
|
|
341
|
+
areaCodes: null,
|
|
342
|
+
currency: Currency.BSD,
|
|
343
|
+
dialCode: '1242',
|
|
344
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BS.png',
|
|
345
|
+
iso2: 'BS',
|
|
346
|
+
name: 'Bahamas',
|
|
347
|
+
priority: 0,
|
|
348
|
+
timezone: 'America/Nassau',
|
|
349
|
+
},
|
|
350
|
+
BT: {
|
|
351
|
+
areaCodes: null,
|
|
352
|
+
currency: Currency.BTN,
|
|
353
|
+
dialCode: '975',
|
|
354
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BT.png',
|
|
355
|
+
iso2: 'BT',
|
|
356
|
+
name: 'Bhutan (འབྲུག)',
|
|
357
|
+
priority: 0,
|
|
358
|
+
timezone: 'Asia/Thimphu',
|
|
359
|
+
},
|
|
360
|
+
BW: {
|
|
361
|
+
areaCodes: null,
|
|
362
|
+
currency: Currency.BWP,
|
|
363
|
+
dialCode: '267',
|
|
364
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BW.png',
|
|
365
|
+
iso2: 'BW',
|
|
366
|
+
name: 'Botswana',
|
|
367
|
+
priority: 0,
|
|
368
|
+
timezone: 'Africa/Gaborone',
|
|
369
|
+
},
|
|
370
|
+
BY: {
|
|
371
|
+
areaCodes: null,
|
|
372
|
+
currency: Currency.BYN,
|
|
373
|
+
dialCode: '375',
|
|
374
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BY.png',
|
|
375
|
+
iso2: 'BY',
|
|
376
|
+
name: 'Belarus (Беларусь)',
|
|
377
|
+
priority: 0,
|
|
378
|
+
timezone: 'Europe/Minsk',
|
|
379
|
+
},
|
|
380
|
+
BZ: {
|
|
381
|
+
areaCodes: null,
|
|
382
|
+
currency: Currency.BZD,
|
|
383
|
+
dialCode: '501',
|
|
384
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/BZ.png',
|
|
385
|
+
iso2: 'BZ',
|
|
386
|
+
name: 'Belize',
|
|
387
|
+
priority: 0,
|
|
388
|
+
timezone: 'America/Belize',
|
|
389
|
+
},
|
|
390
|
+
CA: {
|
|
391
|
+
areaCodes: [
|
|
392
|
+
'204',
|
|
393
|
+
'226',
|
|
394
|
+
'236',
|
|
395
|
+
'249',
|
|
396
|
+
'250',
|
|
397
|
+
'289',
|
|
398
|
+
'306',
|
|
399
|
+
'343',
|
|
400
|
+
'365',
|
|
401
|
+
'387',
|
|
402
|
+
'403',
|
|
403
|
+
'416',
|
|
404
|
+
'418',
|
|
405
|
+
'431',
|
|
406
|
+
'437',
|
|
407
|
+
'438',
|
|
408
|
+
'450',
|
|
409
|
+
'506',
|
|
410
|
+
'514',
|
|
411
|
+
'519',
|
|
412
|
+
'548',
|
|
413
|
+
'579',
|
|
414
|
+
'581',
|
|
415
|
+
'587',
|
|
416
|
+
'604',
|
|
417
|
+
'613',
|
|
418
|
+
'639',
|
|
419
|
+
'647',
|
|
420
|
+
'672',
|
|
421
|
+
'705',
|
|
422
|
+
'709',
|
|
423
|
+
'742',
|
|
424
|
+
'778',
|
|
425
|
+
'780',
|
|
426
|
+
'782',
|
|
427
|
+
'807',
|
|
428
|
+
'819',
|
|
429
|
+
'825',
|
|
430
|
+
'867',
|
|
431
|
+
'873',
|
|
432
|
+
'902',
|
|
433
|
+
'905',
|
|
434
|
+
],
|
|
435
|
+
currency: Currency.CAD,
|
|
436
|
+
dialCode: '1',
|
|
437
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CA.png',
|
|
438
|
+
iso2: 'CA',
|
|
439
|
+
name: 'Canada',
|
|
440
|
+
priority: 1,
|
|
441
|
+
timezone: 'America/Rankin_Inlet',
|
|
442
|
+
},
|
|
443
|
+
CC: {
|
|
444
|
+
areaCodes: null,
|
|
445
|
+
currency: Currency.AUD,
|
|
446
|
+
dialCode: '61',
|
|
447
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CC.png',
|
|
448
|
+
iso2: 'CC',
|
|
449
|
+
name: 'Cocos (Keeling) Islands',
|
|
450
|
+
priority: 1,
|
|
451
|
+
timezone: 'Indian/Cocos',
|
|
452
|
+
},
|
|
453
|
+
CD: {
|
|
454
|
+
areaCodes: null,
|
|
455
|
+
currency: Currency.CDF,
|
|
456
|
+
dialCode: '243',
|
|
457
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CD.png',
|
|
458
|
+
iso2: 'CD',
|
|
459
|
+
name: 'Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)',
|
|
460
|
+
priority: 0,
|
|
461
|
+
timezone: 'Africa/Lubumbashi',
|
|
462
|
+
},
|
|
463
|
+
CF: {
|
|
464
|
+
areaCodes: null,
|
|
465
|
+
currency: Currency.XAF,
|
|
466
|
+
dialCode: '236',
|
|
467
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CF.png',
|
|
468
|
+
iso2: 'CF',
|
|
469
|
+
name: 'Central African Republic (République centrafricaine)',
|
|
470
|
+
priority: 0,
|
|
471
|
+
timezone: 'Africa/Bangui',
|
|
472
|
+
},
|
|
473
|
+
CG: {
|
|
474
|
+
areaCodes: null,
|
|
475
|
+
currency: Currency.XAF,
|
|
476
|
+
dialCode: '242',
|
|
477
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CG.png',
|
|
478
|
+
iso2: 'CG',
|
|
479
|
+
name: 'Congo (Republic) (Congo-Brazzaville)',
|
|
480
|
+
priority: 0,
|
|
481
|
+
timezone: 'Africa/Brazzaville',
|
|
482
|
+
},
|
|
483
|
+
CH: {
|
|
484
|
+
areaCodes: null,
|
|
485
|
+
currency: Currency.CHF,
|
|
486
|
+
dialCode: '41',
|
|
487
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CH.png',
|
|
488
|
+
iso2: 'CH',
|
|
489
|
+
name: 'Switzerland (Schweiz)',
|
|
490
|
+
priority: 0,
|
|
491
|
+
timezone: 'Europe/Zurich',
|
|
492
|
+
},
|
|
493
|
+
CI: {
|
|
494
|
+
areaCodes: null,
|
|
495
|
+
currency: Currency.XOF,
|
|
496
|
+
dialCode: '225',
|
|
497
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CI.png',
|
|
498
|
+
iso2: 'CI',
|
|
499
|
+
name: 'Côte d’Ivoire',
|
|
500
|
+
priority: 0,
|
|
501
|
+
timezone: 'Africa/Abidjan',
|
|
502
|
+
},
|
|
503
|
+
CK: {
|
|
504
|
+
areaCodes: null,
|
|
505
|
+
currency: Currency.NZD,
|
|
506
|
+
dialCode: '682',
|
|
507
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CK.png',
|
|
508
|
+
iso2: 'CK',
|
|
509
|
+
name: 'Cook Islands',
|
|
510
|
+
priority: 0,
|
|
511
|
+
timezone: 'Etc/GMT+11',
|
|
512
|
+
},
|
|
513
|
+
CL: {
|
|
514
|
+
areaCodes: null,
|
|
515
|
+
currency: Currency.CLP,
|
|
516
|
+
dialCode: '56',
|
|
517
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CL.png',
|
|
518
|
+
iso2: 'CL',
|
|
519
|
+
name: 'Chile',
|
|
520
|
+
priority: 0,
|
|
521
|
+
timezone: 'America/Santiago',
|
|
522
|
+
},
|
|
523
|
+
CM: {
|
|
524
|
+
areaCodes: null,
|
|
525
|
+
currency: Currency.XAF,
|
|
526
|
+
dialCode: '237',
|
|
527
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CM.png',
|
|
528
|
+
iso2: 'CM',
|
|
529
|
+
name: 'Cameroon (Cameroun)',
|
|
530
|
+
priority: 0,
|
|
531
|
+
timezone: 'Africa/Douala',
|
|
532
|
+
},
|
|
533
|
+
CN: {
|
|
534
|
+
areaCodes: null,
|
|
535
|
+
currency: Currency.CNY,
|
|
536
|
+
dialCode: '86',
|
|
537
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CN.png',
|
|
538
|
+
iso2: 'CN',
|
|
539
|
+
name: 'China (中国)',
|
|
540
|
+
priority: 0,
|
|
541
|
+
timezone: 'Asia/Shanghai',
|
|
542
|
+
},
|
|
543
|
+
CO: {
|
|
544
|
+
areaCodes: null,
|
|
545
|
+
currency: Currency.COP,
|
|
546
|
+
dialCode: '57',
|
|
547
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CO.png',
|
|
548
|
+
iso2: 'CO',
|
|
549
|
+
name: 'Colombia',
|
|
550
|
+
priority: 0,
|
|
551
|
+
timezone: 'America/Bogota',
|
|
552
|
+
},
|
|
553
|
+
CR: {
|
|
554
|
+
areaCodes: null,
|
|
555
|
+
currency: Currency.CRC,
|
|
556
|
+
dialCode: '506',
|
|
557
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CR.png',
|
|
558
|
+
iso2: 'CR',
|
|
559
|
+
name: 'Costa Rica',
|
|
560
|
+
priority: 0,
|
|
561
|
+
timezone: 'America/Costa_Rica',
|
|
562
|
+
},
|
|
563
|
+
CU: {
|
|
564
|
+
areaCodes: null,
|
|
565
|
+
currency: Currency.CUP,
|
|
566
|
+
dialCode: '53',
|
|
567
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CU.png',
|
|
568
|
+
iso2: 'CU',
|
|
569
|
+
name: 'Cuba',
|
|
570
|
+
priority: 0,
|
|
571
|
+
timezone: 'America/Havana',
|
|
572
|
+
},
|
|
573
|
+
CV: {
|
|
574
|
+
areaCodes: null,
|
|
575
|
+
currency: Currency.CVE,
|
|
576
|
+
dialCode: '238',
|
|
577
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CV.png',
|
|
578
|
+
iso2: 'CV',
|
|
579
|
+
name: 'Cape Verde (Kabu Verdi)',
|
|
580
|
+
priority: 0,
|
|
581
|
+
timezone: 'Atlantic/Cape_Verde',
|
|
582
|
+
},
|
|
583
|
+
CW: {
|
|
584
|
+
areaCodes: null,
|
|
585
|
+
currency: Currency.ANG,
|
|
586
|
+
dialCode: '599',
|
|
587
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CW.png',
|
|
588
|
+
iso2: 'CW',
|
|
589
|
+
name: 'Curaçao',
|
|
590
|
+
priority: 0,
|
|
591
|
+
timezone: 'America/Curacao',
|
|
592
|
+
},
|
|
593
|
+
CX: {
|
|
594
|
+
areaCodes: null,
|
|
595
|
+
currency: Currency.AUD,
|
|
596
|
+
dialCode: '61',
|
|
597
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CX.png',
|
|
598
|
+
iso2: 'CX',
|
|
599
|
+
name: 'Christmas Island',
|
|
600
|
+
priority: 2,
|
|
601
|
+
timezone: 'Indian/Christmas',
|
|
602
|
+
},
|
|
603
|
+
CY: {
|
|
604
|
+
areaCodes: null,
|
|
605
|
+
currency: Currency.EUR,
|
|
606
|
+
dialCode: '357',
|
|
607
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CY.png',
|
|
608
|
+
iso2: 'CY',
|
|
609
|
+
name: 'Cyprus (Κύπρος)',
|
|
610
|
+
priority: 0,
|
|
611
|
+
timezone: 'Asia/Nicosia',
|
|
612
|
+
},
|
|
613
|
+
CZ: {
|
|
614
|
+
areaCodes: null,
|
|
615
|
+
currency: Currency.CZK,
|
|
616
|
+
dialCode: '420',
|
|
617
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/CZ.png',
|
|
618
|
+
iso2: 'CZ',
|
|
619
|
+
name: 'Czech Republic (Česká republika)',
|
|
620
|
+
priority: 0,
|
|
621
|
+
timezone: 'Europe/Prague',
|
|
622
|
+
},
|
|
623
|
+
DE: {
|
|
624
|
+
areaCodes: null,
|
|
625
|
+
currency: Currency.EUR,
|
|
626
|
+
dialCode: '49',
|
|
627
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DE.png',
|
|
628
|
+
iso2: 'DE',
|
|
629
|
+
name: 'Germany (Deutschland)',
|
|
630
|
+
priority: 0,
|
|
631
|
+
timezone: 'Europe/Berlin',
|
|
632
|
+
},
|
|
633
|
+
DJ: {
|
|
634
|
+
areaCodes: null,
|
|
635
|
+
currency: Currency.DJF,
|
|
636
|
+
dialCode: '253',
|
|
637
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DJ.png',
|
|
638
|
+
iso2: 'DJ',
|
|
639
|
+
name: 'Djibouti',
|
|
640
|
+
priority: 0,
|
|
641
|
+
timezone: 'Africa/Djibouti',
|
|
642
|
+
},
|
|
643
|
+
DK: {
|
|
644
|
+
areaCodes: null,
|
|
645
|
+
currency: Currency.DKK,
|
|
646
|
+
dialCode: '45',
|
|
647
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DK.png',
|
|
648
|
+
iso2: 'DK',
|
|
649
|
+
name: 'Denmark (Danmark)',
|
|
650
|
+
priority: 0,
|
|
651
|
+
timezone: 'Europe/Copenhagen',
|
|
652
|
+
},
|
|
653
|
+
DM: {
|
|
654
|
+
areaCodes: null,
|
|
655
|
+
currency: Currency.XCD,
|
|
656
|
+
dialCode: '1767',
|
|
657
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DM.png',
|
|
658
|
+
iso2: 'DM',
|
|
659
|
+
name: 'Dominica',
|
|
660
|
+
priority: 0,
|
|
661
|
+
timezone: 'America/Dominica',
|
|
662
|
+
},
|
|
663
|
+
DO: {
|
|
664
|
+
areaCodes: ['809', '829', '849'],
|
|
665
|
+
currency: Currency.DOP,
|
|
666
|
+
dialCode: '1',
|
|
667
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DO.png',
|
|
668
|
+
iso2: 'DO',
|
|
669
|
+
name: 'Dominican Republic (República Dominicana)',
|
|
670
|
+
priority: 2,
|
|
671
|
+
timezone: 'America/Santo_Domingo',
|
|
672
|
+
},
|
|
673
|
+
DZ: {
|
|
674
|
+
areaCodes: null,
|
|
675
|
+
currency: Currency.DZD,
|
|
676
|
+
dialCode: '213',
|
|
677
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/DZ.png',
|
|
678
|
+
iso2: 'DZ',
|
|
679
|
+
name: 'Algeria (الجزائر)',
|
|
680
|
+
priority: 0,
|
|
681
|
+
timezone: 'Africa/Algiers',
|
|
682
|
+
},
|
|
683
|
+
EC: {
|
|
684
|
+
areaCodes: null,
|
|
685
|
+
currency: Currency.USD,
|
|
686
|
+
dialCode: '593',
|
|
687
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EC.png',
|
|
688
|
+
iso2: 'EC',
|
|
689
|
+
name: 'Ecuador',
|
|
690
|
+
priority: 0,
|
|
691
|
+
timezone: 'America/Guayaquil',
|
|
692
|
+
},
|
|
693
|
+
EE: {
|
|
694
|
+
areaCodes: null,
|
|
695
|
+
currency: Currency.EUR,
|
|
696
|
+
dialCode: '372',
|
|
697
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EE.png',
|
|
698
|
+
iso2: 'EE',
|
|
699
|
+
name: 'Estonia (Eesti)',
|
|
700
|
+
priority: 0,
|
|
701
|
+
timezone: 'Europe/Tallinn',
|
|
702
|
+
},
|
|
703
|
+
EG: {
|
|
704
|
+
areaCodes: null,
|
|
705
|
+
currency: Currency.EGP,
|
|
706
|
+
dialCode: '20',
|
|
707
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EG.png',
|
|
708
|
+
iso2: 'EG',
|
|
709
|
+
name: 'Egypt (مصر)',
|
|
710
|
+
priority: 0,
|
|
711
|
+
timezone: 'Africa/Cairo',
|
|
712
|
+
},
|
|
713
|
+
EH: {
|
|
714
|
+
areaCodes: null,
|
|
715
|
+
currency: Currency.MAD,
|
|
716
|
+
dialCode: '212',
|
|
717
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/EH.png',
|
|
718
|
+
iso2: 'EH',
|
|
719
|
+
name: 'Western Sahara (الصحراء الغربية)',
|
|
720
|
+
priority: 1,
|
|
721
|
+
timezone: 'Africa/El_Aaiun',
|
|
722
|
+
},
|
|
723
|
+
ER: {
|
|
724
|
+
areaCodes: null,
|
|
725
|
+
currency: Currency.ERN,
|
|
726
|
+
dialCode: '291',
|
|
727
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ER.png',
|
|
728
|
+
iso2: 'ER',
|
|
729
|
+
name: 'Eritrea',
|
|
730
|
+
priority: 0,
|
|
731
|
+
timezone: 'Africa/Asmara',
|
|
732
|
+
},
|
|
733
|
+
ES: {
|
|
734
|
+
areaCodes: null,
|
|
735
|
+
currency: Currency.EUR,
|
|
736
|
+
dialCode: '34',
|
|
737
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ES.png',
|
|
738
|
+
iso2: 'ES',
|
|
739
|
+
name: 'Spain (España)',
|
|
740
|
+
priority: 0,
|
|
741
|
+
timezone: 'Europe/Madrid',
|
|
742
|
+
},
|
|
743
|
+
ET: {
|
|
744
|
+
areaCodes: null,
|
|
745
|
+
currency: Currency.ETB,
|
|
746
|
+
dialCode: '251',
|
|
747
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ET.png',
|
|
748
|
+
iso2: 'ET',
|
|
749
|
+
name: 'Ethiopia',
|
|
750
|
+
priority: 0,
|
|
751
|
+
timezone: 'Africa/Addis_Ababa',
|
|
752
|
+
},
|
|
753
|
+
FI: {
|
|
754
|
+
areaCodes: null,
|
|
755
|
+
currency: Currency.EUR,
|
|
756
|
+
dialCode: '358',
|
|
757
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FI.png',
|
|
758
|
+
iso2: 'FI',
|
|
759
|
+
name: 'Finland (Suomi)',
|
|
760
|
+
priority: 0,
|
|
761
|
+
timezone: 'Europe/Helsinki',
|
|
762
|
+
},
|
|
763
|
+
FJ: {
|
|
764
|
+
areaCodes: null,
|
|
765
|
+
currency: Currency.FJD,
|
|
766
|
+
dialCode: '679',
|
|
767
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FJ.png',
|
|
768
|
+
iso2: 'FJ',
|
|
769
|
+
name: 'Fiji',
|
|
770
|
+
priority: 0,
|
|
771
|
+
timezone: 'Pacific/Fiji',
|
|
772
|
+
},
|
|
773
|
+
FK: {
|
|
774
|
+
areaCodes: null,
|
|
775
|
+
currency: Currency.FKP,
|
|
776
|
+
dialCode: '500',
|
|
777
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FK.png',
|
|
778
|
+
iso2: 'FK',
|
|
779
|
+
name: 'Falkland Islands (Islas Malvinas)',
|
|
780
|
+
priority: 0,
|
|
781
|
+
timezone: 'Atlantic/Stanley',
|
|
782
|
+
},
|
|
783
|
+
FM: {
|
|
784
|
+
areaCodes: null,
|
|
785
|
+
currency: Currency.USD,
|
|
786
|
+
dialCode: '691',
|
|
787
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FM.png',
|
|
788
|
+
iso2: 'FM',
|
|
789
|
+
name: 'Micronesia',
|
|
790
|
+
priority: 0,
|
|
791
|
+
timezone: 'Etc/GMT-10',
|
|
792
|
+
},
|
|
793
|
+
FO: {
|
|
794
|
+
areaCodes: null,
|
|
795
|
+
currency: Currency.DKK,
|
|
796
|
+
dialCode: '298',
|
|
797
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FO.png',
|
|
798
|
+
iso2: 'FO',
|
|
799
|
+
name: 'Faroe Islands (Føroyar)',
|
|
800
|
+
priority: 0,
|
|
801
|
+
timezone: 'Atlantic/Faroe',
|
|
802
|
+
},
|
|
803
|
+
FR: {
|
|
804
|
+
areaCodes: null,
|
|
805
|
+
currency: Currency.EUR,
|
|
806
|
+
dialCode: '33',
|
|
807
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/FR.png',
|
|
808
|
+
iso2: 'FR',
|
|
809
|
+
name: 'France',
|
|
810
|
+
priority: 0,
|
|
811
|
+
timezone: 'Europe/Paris',
|
|
812
|
+
},
|
|
813
|
+
GA: {
|
|
814
|
+
areaCodes: null,
|
|
815
|
+
currency: Currency.XAF,
|
|
816
|
+
dialCode: '241',
|
|
817
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GA.png',
|
|
818
|
+
iso2: 'GA',
|
|
819
|
+
name: 'Gabon',
|
|
820
|
+
priority: 0,
|
|
821
|
+
timezone: 'Africa/Libreville',
|
|
822
|
+
},
|
|
823
|
+
GB: {
|
|
824
|
+
areaCodes: null,
|
|
825
|
+
currency: Currency.GBP,
|
|
826
|
+
dialCode: '44',
|
|
827
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GB.png',
|
|
828
|
+
iso2: 'GB',
|
|
829
|
+
name: 'United Kingdom',
|
|
830
|
+
priority: 0,
|
|
831
|
+
timezone: 'Etc/GMT',
|
|
832
|
+
},
|
|
833
|
+
GD: {
|
|
834
|
+
areaCodes: null,
|
|
835
|
+
currency: Currency.XCD,
|
|
836
|
+
dialCode: '1473',
|
|
837
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GD.png',
|
|
838
|
+
iso2: 'GD',
|
|
839
|
+
name: 'Grenada',
|
|
840
|
+
priority: 0,
|
|
841
|
+
timezone: 'America/Grenada',
|
|
842
|
+
},
|
|
843
|
+
GE: {
|
|
844
|
+
areaCodes: null,
|
|
845
|
+
currency: Currency.GEL,
|
|
846
|
+
dialCode: '995',
|
|
847
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GE.png',
|
|
848
|
+
iso2: 'GE',
|
|
849
|
+
name: 'Georgia (საქართველო)',
|
|
850
|
+
priority: 0,
|
|
851
|
+
timezone: 'Asia/Tbilisi',
|
|
852
|
+
},
|
|
853
|
+
GF: {
|
|
854
|
+
areaCodes: null,
|
|
855
|
+
currency: Currency.EUR,
|
|
856
|
+
dialCode: '594',
|
|
857
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GF.png',
|
|
858
|
+
iso2: 'GF',
|
|
859
|
+
name: 'French Guiana (Guyane française)',
|
|
860
|
+
priority: 0,
|
|
861
|
+
timezone: 'America/Cayenne',
|
|
862
|
+
},
|
|
863
|
+
GG: {
|
|
864
|
+
areaCodes: null,
|
|
865
|
+
currency: Currency.GBP,
|
|
866
|
+
dialCode: '44',
|
|
867
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GG.png',
|
|
868
|
+
iso2: 'GG',
|
|
869
|
+
name: 'Guernsey',
|
|
870
|
+
priority: 1,
|
|
871
|
+
timezone: 'Europe/Guernsey',
|
|
872
|
+
},
|
|
873
|
+
GH: {
|
|
874
|
+
areaCodes: null,
|
|
875
|
+
currency: Currency.GHS,
|
|
876
|
+
dialCode: '233',
|
|
877
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GH.png',
|
|
878
|
+
iso2: 'GH',
|
|
879
|
+
name: 'Ghana (Gaana)',
|
|
880
|
+
priority: 0,
|
|
881
|
+
timezone: 'Africa/Accra',
|
|
882
|
+
},
|
|
883
|
+
GI: {
|
|
884
|
+
areaCodes: null,
|
|
885
|
+
currency: Currency.GIP,
|
|
886
|
+
dialCode: '350',
|
|
887
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GI.png',
|
|
888
|
+
iso2: 'GI',
|
|
889
|
+
name: 'Gibraltar',
|
|
890
|
+
priority: 0,
|
|
891
|
+
timezone: 'Europe/Gibraltar',
|
|
892
|
+
},
|
|
893
|
+
GL: {
|
|
894
|
+
areaCodes: null,
|
|
895
|
+
currency: Currency.DKK,
|
|
896
|
+
dialCode: '299',
|
|
897
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GL.png',
|
|
898
|
+
iso2: 'GL',
|
|
899
|
+
name: 'Greenland (Kalaallit Nunaat)',
|
|
900
|
+
priority: 0,
|
|
901
|
+
timezone: 'America/Godthab',
|
|
902
|
+
},
|
|
903
|
+
GM: {
|
|
904
|
+
areaCodes: null,
|
|
905
|
+
currency: Currency.GMD,
|
|
906
|
+
dialCode: '220',
|
|
907
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GM.png',
|
|
908
|
+
iso2: 'GM',
|
|
909
|
+
name: 'Gambia',
|
|
910
|
+
priority: 0,
|
|
911
|
+
timezone: 'Africa/Banjul',
|
|
912
|
+
},
|
|
913
|
+
GN: {
|
|
914
|
+
areaCodes: null,
|
|
915
|
+
currency: Currency.GNF,
|
|
916
|
+
dialCode: '224',
|
|
917
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GN.png',
|
|
918
|
+
iso2: 'GN',
|
|
919
|
+
name: 'Guinea (Guinée)',
|
|
920
|
+
priority: 0,
|
|
921
|
+
timezone: 'Africa/Conakry',
|
|
922
|
+
},
|
|
923
|
+
GP: {
|
|
924
|
+
areaCodes: null,
|
|
925
|
+
currency: Currency.EUR,
|
|
926
|
+
dialCode: '590',
|
|
927
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GP.png',
|
|
928
|
+
iso2: 'GP',
|
|
929
|
+
name: 'Guadeloupe',
|
|
930
|
+
priority: 0,
|
|
931
|
+
timezone: 'America/Guadeloupe',
|
|
932
|
+
},
|
|
933
|
+
GQ: {
|
|
934
|
+
areaCodes: null,
|
|
935
|
+
currency: Currency.XAF,
|
|
936
|
+
dialCode: '240',
|
|
937
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GQ.png',
|
|
938
|
+
iso2: 'GQ',
|
|
939
|
+
name: 'Equatorial Guinea (Guinea Ecuatorial)',
|
|
940
|
+
priority: 0,
|
|
941
|
+
timezone: 'Africa/Malabo',
|
|
942
|
+
},
|
|
943
|
+
GR: {
|
|
944
|
+
areaCodes: null,
|
|
945
|
+
currency: Currency.EUR,
|
|
946
|
+
dialCode: '30',
|
|
947
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GR.png',
|
|
948
|
+
iso2: 'GR',
|
|
949
|
+
name: 'Greece (Ελλάδα)',
|
|
950
|
+
priority: 0,
|
|
951
|
+
timezone: 'Europe/Athens',
|
|
952
|
+
},
|
|
953
|
+
GT: {
|
|
954
|
+
areaCodes: null,
|
|
955
|
+
currency: Currency.GTQ,
|
|
956
|
+
dialCode: '502',
|
|
957
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GT.png',
|
|
958
|
+
iso2: 'GT',
|
|
959
|
+
name: 'Guatemala',
|
|
960
|
+
priority: 0,
|
|
961
|
+
timezone: 'America/Guatemala',
|
|
962
|
+
},
|
|
963
|
+
GU: {
|
|
964
|
+
areaCodes: null,
|
|
965
|
+
currency: Currency.USD,
|
|
966
|
+
dialCode: '1671',
|
|
967
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GU.png',
|
|
968
|
+
iso2: 'GU',
|
|
969
|
+
name: 'Guam',
|
|
970
|
+
priority: 0,
|
|
971
|
+
timezone: 'Pacific/Guam',
|
|
972
|
+
},
|
|
973
|
+
GW: {
|
|
974
|
+
areaCodes: null,
|
|
975
|
+
currency: Currency.XOF,
|
|
976
|
+
dialCode: '245',
|
|
977
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GW.png',
|
|
978
|
+
iso2: 'GW',
|
|
979
|
+
name: 'Guinea-Bissau (Guiné Bissau)',
|
|
980
|
+
priority: 0,
|
|
981
|
+
timezone: 'Africa/Bissau',
|
|
982
|
+
},
|
|
983
|
+
GY: {
|
|
984
|
+
areaCodes: null,
|
|
985
|
+
currency: Currency.GYD,
|
|
986
|
+
dialCode: '592',
|
|
987
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/GY.png',
|
|
988
|
+
iso2: 'GY',
|
|
989
|
+
name: 'Guyana',
|
|
990
|
+
priority: 0,
|
|
991
|
+
timezone: 'America/Guyana',
|
|
992
|
+
},
|
|
993
|
+
HK: {
|
|
994
|
+
areaCodes: null,
|
|
995
|
+
currency: Currency.HKD,
|
|
996
|
+
dialCode: '852',
|
|
997
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HK.png',
|
|
998
|
+
iso2: 'HK',
|
|
999
|
+
name: 'Hong Kong (香港)',
|
|
1000
|
+
priority: 0,
|
|
1001
|
+
timezone: 'Asia/Hong_Kong',
|
|
1002
|
+
},
|
|
1003
|
+
HN: {
|
|
1004
|
+
areaCodes: null,
|
|
1005
|
+
currency: Currency.HNL,
|
|
1006
|
+
dialCode: '504',
|
|
1007
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HN.png',
|
|
1008
|
+
iso2: 'HN',
|
|
1009
|
+
name: 'Honduras',
|
|
1010
|
+
priority: 0,
|
|
1011
|
+
timezone: 'America/Tegucigalpa',
|
|
1012
|
+
},
|
|
1013
|
+
HR: {
|
|
1014
|
+
areaCodes: null,
|
|
1015
|
+
currency: Currency.EUR,
|
|
1016
|
+
dialCode: '385',
|
|
1017
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HR.png',
|
|
1018
|
+
iso2: 'HR',
|
|
1019
|
+
name: 'Croatia (Hrvatska)',
|
|
1020
|
+
priority: 0,
|
|
1021
|
+
timezone: 'Europe/Zagreb',
|
|
1022
|
+
},
|
|
1023
|
+
HT: {
|
|
1024
|
+
areaCodes: null,
|
|
1025
|
+
currency: Currency.HTG,
|
|
1026
|
+
dialCode: '509',
|
|
1027
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HT.png',
|
|
1028
|
+
iso2: 'HT',
|
|
1029
|
+
name: 'Haiti',
|
|
1030
|
+
priority: 0,
|
|
1031
|
+
timezone: 'America/Port-au-Prince',
|
|
1032
|
+
},
|
|
1033
|
+
HU: {
|
|
1034
|
+
areaCodes: null,
|
|
1035
|
+
currency: Currency.HUF,
|
|
1036
|
+
dialCode: '36',
|
|
1037
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/HU.png',
|
|
1038
|
+
iso2: 'HU',
|
|
1039
|
+
name: 'Hungary (Magyarország)',
|
|
1040
|
+
priority: 0,
|
|
1041
|
+
timezone: 'Europe/Budapest',
|
|
1042
|
+
},
|
|
1043
|
+
ID: {
|
|
1044
|
+
areaCodes: null,
|
|
1045
|
+
currency: Currency.IDR,
|
|
1046
|
+
dialCode: '62',
|
|
1047
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ID.png',
|
|
1048
|
+
iso2: 'ID',
|
|
1049
|
+
name: 'Indonesia',
|
|
1050
|
+
priority: 0,
|
|
1051
|
+
timezone: 'Asia/Makassar',
|
|
1052
|
+
},
|
|
1053
|
+
IE: {
|
|
1054
|
+
areaCodes: null,
|
|
1055
|
+
currency: Currency.EUR,
|
|
1056
|
+
dialCode: '353',
|
|
1057
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IE.png',
|
|
1058
|
+
iso2: 'IE',
|
|
1059
|
+
name: 'Ireland',
|
|
1060
|
+
priority: 0,
|
|
1061
|
+
timezone: 'Europe/Dublin',
|
|
1062
|
+
},
|
|
1063
|
+
IL: {
|
|
1064
|
+
areaCodes: null,
|
|
1065
|
+
currency: Currency.ILS,
|
|
1066
|
+
dialCode: '972',
|
|
1067
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IL.png',
|
|
1068
|
+
iso2: 'IL',
|
|
1069
|
+
name: 'Israel (ישראל)',
|
|
1070
|
+
priority: 0,
|
|
1071
|
+
timezone: 'Asia/Jerusalem',
|
|
1072
|
+
},
|
|
1073
|
+
IM: {
|
|
1074
|
+
areaCodes: null,
|
|
1075
|
+
currency: Currency.GBP,
|
|
1076
|
+
dialCode: '44',
|
|
1077
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IM.png',
|
|
1078
|
+
iso2: 'IM',
|
|
1079
|
+
name: 'Isle of Man',
|
|
1080
|
+
priority: 2,
|
|
1081
|
+
timezone: 'Europe/Isle_of_Man',
|
|
1082
|
+
},
|
|
1083
|
+
IN: {
|
|
1084
|
+
areaCodes: null,
|
|
1085
|
+
currency: Currency.INR,
|
|
1086
|
+
dialCode: '91',
|
|
1087
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IN.png',
|
|
1088
|
+
iso2: 'IN',
|
|
1089
|
+
name: 'India (भारत)',
|
|
1090
|
+
priority: 0,
|
|
1091
|
+
timezone: 'Asia/Kolkata',
|
|
1092
|
+
},
|
|
1093
|
+
IO: {
|
|
1094
|
+
areaCodes: null,
|
|
1095
|
+
currency: Currency.USD,
|
|
1096
|
+
dialCode: '246',
|
|
1097
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IO.png',
|
|
1098
|
+
iso2: 'IO',
|
|
1099
|
+
name: 'British Indian Ocean Territory',
|
|
1100
|
+
priority: 0,
|
|
1101
|
+
timezone: 'Etc/GMT-5',
|
|
1102
|
+
},
|
|
1103
|
+
IQ: {
|
|
1104
|
+
areaCodes: null,
|
|
1105
|
+
currency: Currency.IQD,
|
|
1106
|
+
dialCode: '964',
|
|
1107
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IQ.png',
|
|
1108
|
+
iso2: 'IQ',
|
|
1109
|
+
name: 'Iraq (العراق)',
|
|
1110
|
+
priority: 0,
|
|
1111
|
+
timezone: 'Asia/Baghdad',
|
|
1112
|
+
},
|
|
1113
|
+
IR: {
|
|
1114
|
+
areaCodes: null,
|
|
1115
|
+
currency: Currency.IRR,
|
|
1116
|
+
dialCode: '98',
|
|
1117
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IR.png',
|
|
1118
|
+
iso2: 'IR',
|
|
1119
|
+
name: 'Iran (ایران)',
|
|
1120
|
+
priority: 0,
|
|
1121
|
+
timezone: 'Asia/Tehran',
|
|
1122
|
+
},
|
|
1123
|
+
IS: {
|
|
1124
|
+
areaCodes: null,
|
|
1125
|
+
currency: Currency.ISK,
|
|
1126
|
+
dialCode: '354',
|
|
1127
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IS.png',
|
|
1128
|
+
iso2: 'IS',
|
|
1129
|
+
name: 'Iceland (Ísland)',
|
|
1130
|
+
priority: 0,
|
|
1131
|
+
timezone: 'Atlantic/Reykjavik',
|
|
1132
|
+
},
|
|
1133
|
+
IT: {
|
|
1134
|
+
areaCodes: null,
|
|
1135
|
+
currency: Currency.EUR,
|
|
1136
|
+
dialCode: '39',
|
|
1137
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/IT.png',
|
|
1138
|
+
iso2: 'IT',
|
|
1139
|
+
name: 'Italy (Italia)',
|
|
1140
|
+
priority: 0,
|
|
1141
|
+
timezone: 'Europe/Rome',
|
|
1142
|
+
},
|
|
1143
|
+
JE: {
|
|
1144
|
+
areaCodes: null,
|
|
1145
|
+
currency: Currency.GBP,
|
|
1146
|
+
dialCode: '44',
|
|
1147
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JE.png',
|
|
1148
|
+
iso2: 'JE',
|
|
1149
|
+
name: 'Jersey',
|
|
1150
|
+
priority: 3,
|
|
1151
|
+
timezone: 'Europe/Jersey',
|
|
1152
|
+
},
|
|
1153
|
+
JM: {
|
|
1154
|
+
areaCodes: null,
|
|
1155
|
+
currency: Currency.JMD,
|
|
1156
|
+
dialCode: '1876',
|
|
1157
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JM.png',
|
|
1158
|
+
iso2: 'JM',
|
|
1159
|
+
name: 'Jamaica',
|
|
1160
|
+
priority: 0,
|
|
1161
|
+
timezone: 'America/Jamaica',
|
|
1162
|
+
},
|
|
1163
|
+
JO: {
|
|
1164
|
+
areaCodes: null,
|
|
1165
|
+
currency: Currency.JOD,
|
|
1166
|
+
dialCode: '962',
|
|
1167
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JO.png',
|
|
1168
|
+
iso2: 'JO',
|
|
1169
|
+
name: 'Jordan (الأردن)',
|
|
1170
|
+
priority: 0,
|
|
1171
|
+
timezone: 'Asia/Amman',
|
|
1172
|
+
},
|
|
1173
|
+
JP: {
|
|
1174
|
+
areaCodes: null,
|
|
1175
|
+
currency: Currency.JPY,
|
|
1176
|
+
dialCode: '81',
|
|
1177
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/JP.png',
|
|
1178
|
+
iso2: 'JP',
|
|
1179
|
+
name: 'Japan (日本)',
|
|
1180
|
+
priority: 0,
|
|
1181
|
+
timezone: 'Asia/Tokyo',
|
|
1182
|
+
},
|
|
1183
|
+
KE: {
|
|
1184
|
+
areaCodes: null,
|
|
1185
|
+
currency: Currency.KES,
|
|
1186
|
+
dialCode: '254',
|
|
1187
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KE.png',
|
|
1188
|
+
iso2: 'KE',
|
|
1189
|
+
name: 'Kenya',
|
|
1190
|
+
priority: 0,
|
|
1191
|
+
timezone: 'Africa/Nairobi',
|
|
1192
|
+
},
|
|
1193
|
+
KG: {
|
|
1194
|
+
areaCodes: null,
|
|
1195
|
+
currency: Currency.KGS,
|
|
1196
|
+
dialCode: '996',
|
|
1197
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KG.png',
|
|
1198
|
+
iso2: 'KG',
|
|
1199
|
+
name: 'Kyrgyzstan (Кыргызстан)',
|
|
1200
|
+
priority: 0,
|
|
1201
|
+
timezone: 'Asia/Bishkek',
|
|
1202
|
+
},
|
|
1203
|
+
KH: {
|
|
1204
|
+
areaCodes: null,
|
|
1205
|
+
currency: Currency.KHR,
|
|
1206
|
+
dialCode: '855',
|
|
1207
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KH.png',
|
|
1208
|
+
iso2: 'KH',
|
|
1209
|
+
name: 'Cambodia (កម្ពុជា)',
|
|
1210
|
+
priority: 0,
|
|
1211
|
+
timezone: 'Asia/Phnom_Penh',
|
|
1212
|
+
},
|
|
1213
|
+
KI: {
|
|
1214
|
+
areaCodes: null,
|
|
1215
|
+
currency: Currency.AUD,
|
|
1216
|
+
dialCode: '686',
|
|
1217
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KI.png',
|
|
1218
|
+
iso2: 'KI',
|
|
1219
|
+
name: 'Kiribati',
|
|
1220
|
+
priority: 0,
|
|
1221
|
+
timezone: 'Etc/GMT+11',
|
|
1222
|
+
},
|
|
1223
|
+
KM: {
|
|
1224
|
+
areaCodes: null,
|
|
1225
|
+
currency: Currency.KMF,
|
|
1226
|
+
dialCode: '269',
|
|
1227
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KM.png',
|
|
1228
|
+
iso2: 'KM',
|
|
1229
|
+
name: 'Comoros (جزر القمر)',
|
|
1230
|
+
priority: 0,
|
|
1231
|
+
timezone: 'Indian/Comoro',
|
|
1232
|
+
},
|
|
1233
|
+
KN: {
|
|
1234
|
+
areaCodes: null,
|
|
1235
|
+
currency: Currency.XCD,
|
|
1236
|
+
dialCode: '1869',
|
|
1237
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KN.png',
|
|
1238
|
+
iso2: 'KN',
|
|
1239
|
+
name: 'Saint Kitts and Nevis',
|
|
1240
|
+
priority: 0,
|
|
1241
|
+
timezone: 'America/St_Kitts',
|
|
1242
|
+
},
|
|
1243
|
+
KP: {
|
|
1244
|
+
areaCodes: null,
|
|
1245
|
+
currency: Currency.KPW,
|
|
1246
|
+
dialCode: '850',
|
|
1247
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KP.png',
|
|
1248
|
+
iso2: 'KP',
|
|
1249
|
+
name: 'North Korea (조선 민주주의 인민 공화국)',
|
|
1250
|
+
priority: 0,
|
|
1251
|
+
timezone: 'Asia/Pyongyang',
|
|
1252
|
+
},
|
|
1253
|
+
KR: {
|
|
1254
|
+
areaCodes: null,
|
|
1255
|
+
currency: Currency.KRW,
|
|
1256
|
+
dialCode: '82',
|
|
1257
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KR.png',
|
|
1258
|
+
iso2: 'KR',
|
|
1259
|
+
name: 'South Korea (대한민국)',
|
|
1260
|
+
priority: 0,
|
|
1261
|
+
timezone: 'Asia/Seoul',
|
|
1262
|
+
},
|
|
1263
|
+
KW: {
|
|
1264
|
+
areaCodes: null,
|
|
1265
|
+
currency: Currency.KWD,
|
|
1266
|
+
dialCode: '965',
|
|
1267
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KW.png',
|
|
1268
|
+
iso2: 'KW',
|
|
1269
|
+
name: 'Kuwait (الكويت)',
|
|
1270
|
+
priority: 0,
|
|
1271
|
+
timezone: 'Asia/Kuwait',
|
|
1272
|
+
},
|
|
1273
|
+
KY: {
|
|
1274
|
+
areaCodes: null,
|
|
1275
|
+
currency: Currency.KYD,
|
|
1276
|
+
dialCode: '1345',
|
|
1277
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KY.png',
|
|
1278
|
+
iso2: 'KY',
|
|
1279
|
+
name: 'Cayman Islands',
|
|
1280
|
+
priority: 0,
|
|
1281
|
+
timezone: 'Etc/GMT+5',
|
|
1282
|
+
},
|
|
1283
|
+
KZ: {
|
|
1284
|
+
areaCodes: null,
|
|
1285
|
+
currency: Currency.KZT,
|
|
1286
|
+
dialCode: '7',
|
|
1287
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/KZ.png',
|
|
1288
|
+
iso2: 'KZ',
|
|
1289
|
+
name: 'Kazakhstan (Казахстан)',
|
|
1290
|
+
priority: 1,
|
|
1291
|
+
timezone: 'Asia/Almaty',
|
|
1292
|
+
},
|
|
1293
|
+
LA: {
|
|
1294
|
+
areaCodes: null,
|
|
1295
|
+
currency: Currency.LAK,
|
|
1296
|
+
dialCode: '856',
|
|
1297
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LA.png',
|
|
1298
|
+
iso2: 'LA',
|
|
1299
|
+
name: 'Laos (ລາວ)',
|
|
1300
|
+
priority: 0,
|
|
1301
|
+
timezone: 'Asia/Vientiane',
|
|
1302
|
+
},
|
|
1303
|
+
LB: {
|
|
1304
|
+
areaCodes: null,
|
|
1305
|
+
currency: Currency.LBP,
|
|
1306
|
+
dialCode: '961',
|
|
1307
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LB.png',
|
|
1308
|
+
iso2: 'LB',
|
|
1309
|
+
name: 'Lebanon (لبنان)',
|
|
1310
|
+
priority: 0,
|
|
1311
|
+
timezone: 'Asia/Beirut',
|
|
1312
|
+
},
|
|
1313
|
+
LC: {
|
|
1314
|
+
areaCodes: null,
|
|
1315
|
+
currency: Currency.XCD,
|
|
1316
|
+
dialCode: '1758',
|
|
1317
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LC.png',
|
|
1318
|
+
iso2: 'LC',
|
|
1319
|
+
name: 'Saint Lucia',
|
|
1320
|
+
priority: 0,
|
|
1321
|
+
timezone: 'America/St_Lucia',
|
|
1322
|
+
},
|
|
1323
|
+
LI: {
|
|
1324
|
+
areaCodes: null,
|
|
1325
|
+
currency: Currency.CHF,
|
|
1326
|
+
dialCode: '423',
|
|
1327
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LI.png',
|
|
1328
|
+
iso2: 'LI',
|
|
1329
|
+
name: 'Liechtenstein',
|
|
1330
|
+
priority: 0,
|
|
1331
|
+
timezone: 'Europe/Vaduz',
|
|
1332
|
+
},
|
|
1333
|
+
LK: {
|
|
1334
|
+
areaCodes: null,
|
|
1335
|
+
currency: Currency.LKR,
|
|
1336
|
+
dialCode: '94',
|
|
1337
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LK.png',
|
|
1338
|
+
iso2: 'LK',
|
|
1339
|
+
name: 'Sri Lanka (ශ්රී ලංකාව)',
|
|
1340
|
+
priority: 0,
|
|
1341
|
+
timezone: 'Asia/Colombo',
|
|
1342
|
+
},
|
|
1343
|
+
LR: {
|
|
1344
|
+
areaCodes: null,
|
|
1345
|
+
currency: Currency.LRD,
|
|
1346
|
+
dialCode: '231',
|
|
1347
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LR.png',
|
|
1348
|
+
iso2: 'LR',
|
|
1349
|
+
name: 'Liberia',
|
|
1350
|
+
priority: 0,
|
|
1351
|
+
timezone: 'Africa/Monrovia',
|
|
1352
|
+
},
|
|
1353
|
+
LS: {
|
|
1354
|
+
areaCodes: null,
|
|
1355
|
+
currency: Currency.LSL,
|
|
1356
|
+
dialCode: '266',
|
|
1357
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LS.png',
|
|
1358
|
+
iso2: 'LS',
|
|
1359
|
+
name: 'Lesotho',
|
|
1360
|
+
priority: 0,
|
|
1361
|
+
timezone: 'Africa/Maseru',
|
|
1362
|
+
},
|
|
1363
|
+
LT: {
|
|
1364
|
+
areaCodes: null,
|
|
1365
|
+
currency: Currency.EUR,
|
|
1366
|
+
dialCode: '370',
|
|
1367
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LT.png',
|
|
1368
|
+
iso2: 'LT',
|
|
1369
|
+
name: 'Lithuania (Lietuva)',
|
|
1370
|
+
priority: 0,
|
|
1371
|
+
timezone: 'Europe/Vilnius',
|
|
1372
|
+
},
|
|
1373
|
+
LU: {
|
|
1374
|
+
areaCodes: null,
|
|
1375
|
+
currency: Currency.EUR,
|
|
1376
|
+
dialCode: '352',
|
|
1377
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LU.png',
|
|
1378
|
+
iso2: 'LU',
|
|
1379
|
+
name: 'Luxembourg',
|
|
1380
|
+
priority: 0,
|
|
1381
|
+
timezone: 'Europe/Luxembourg',
|
|
1382
|
+
},
|
|
1383
|
+
LV: {
|
|
1384
|
+
areaCodes: null,
|
|
1385
|
+
currency: Currency.EUR,
|
|
1386
|
+
dialCode: '371',
|
|
1387
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LV.png',
|
|
1388
|
+
iso2: 'LV',
|
|
1389
|
+
name: 'Latvia (Latvija)',
|
|
1390
|
+
priority: 0,
|
|
1391
|
+
timezone: 'Europe/Riga',
|
|
1392
|
+
},
|
|
1393
|
+
LY: {
|
|
1394
|
+
areaCodes: null,
|
|
1395
|
+
currency: Currency.LYD,
|
|
1396
|
+
dialCode: '218',
|
|
1397
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/LY.png',
|
|
1398
|
+
iso2: 'LY',
|
|
1399
|
+
name: 'Libya (ليبيا)',
|
|
1400
|
+
priority: 0,
|
|
1401
|
+
timezone: 'Africa/Tripoli',
|
|
1402
|
+
},
|
|
1403
|
+
MA: {
|
|
1404
|
+
areaCodes: null,
|
|
1405
|
+
currency: Currency.MAD,
|
|
1406
|
+
dialCode: '212',
|
|
1407
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MA.png',
|
|
1408
|
+
iso2: 'MA',
|
|
1409
|
+
name: 'Morocco (المغرب)',
|
|
1410
|
+
priority: 0,
|
|
1411
|
+
timezone: 'Africa/Casablanca',
|
|
1412
|
+
},
|
|
1413
|
+
MC: {
|
|
1414
|
+
areaCodes: null,
|
|
1415
|
+
currency: Currency.EUR,
|
|
1416
|
+
dialCode: '377',
|
|
1417
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MC.png',
|
|
1418
|
+
iso2: 'MC',
|
|
1419
|
+
name: 'Monaco',
|
|
1420
|
+
priority: 0,
|
|
1421
|
+
timezone: 'Europe/Paris',
|
|
1422
|
+
},
|
|
1423
|
+
MD: {
|
|
1424
|
+
areaCodes: null,
|
|
1425
|
+
currency: Currency.MDL,
|
|
1426
|
+
dialCode: '373',
|
|
1427
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MD.png',
|
|
1428
|
+
iso2: 'MD',
|
|
1429
|
+
name: 'Moldova (Republica Moldova)',
|
|
1430
|
+
priority: 0,
|
|
1431
|
+
timezone: 'Europe/Chisinau',
|
|
1432
|
+
},
|
|
1433
|
+
ME: {
|
|
1434
|
+
areaCodes: null,
|
|
1435
|
+
currency: Currency.EUR,
|
|
1436
|
+
dialCode: '382',
|
|
1437
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ME.png',
|
|
1438
|
+
iso2: 'ME',
|
|
1439
|
+
name: 'Montenegro (Crna Gora)',
|
|
1440
|
+
priority: 0,
|
|
1441
|
+
timezone: 'Europe/Podgorica',
|
|
1442
|
+
},
|
|
1443
|
+
MF: {
|
|
1444
|
+
areaCodes: null,
|
|
1445
|
+
currency: Currency.EUR,
|
|
1446
|
+
dialCode: '590',
|
|
1447
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MF.png',
|
|
1448
|
+
iso2: 'MF',
|
|
1449
|
+
name: 'Saint Martin (Saint-Martin (partie française))',
|
|
1450
|
+
priority: 2,
|
|
1451
|
+
timezone: 'America/Marigot',
|
|
1452
|
+
},
|
|
1453
|
+
MG: {
|
|
1454
|
+
areaCodes: null,
|
|
1455
|
+
currency: Currency.MGA,
|
|
1456
|
+
dialCode: '261',
|
|
1457
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MG.png',
|
|
1458
|
+
iso2: 'MG',
|
|
1459
|
+
name: 'Madagascar (Madagasikara)',
|
|
1460
|
+
priority: 0,
|
|
1461
|
+
timezone: 'Indian/Antananarivo',
|
|
1462
|
+
},
|
|
1463
|
+
MH: {
|
|
1464
|
+
areaCodes: null,
|
|
1465
|
+
currency: Currency.USD,
|
|
1466
|
+
dialCode: '692',
|
|
1467
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MH.png',
|
|
1468
|
+
iso2: 'MH',
|
|
1469
|
+
name: 'Marshall Islands',
|
|
1470
|
+
priority: 0,
|
|
1471
|
+
timezone: 'Etc/GMT-11',
|
|
1472
|
+
},
|
|
1473
|
+
MK: {
|
|
1474
|
+
areaCodes: null,
|
|
1475
|
+
currency: Currency.MKD,
|
|
1476
|
+
dialCode: '389',
|
|
1477
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MK.png',
|
|
1478
|
+
iso2: 'MK',
|
|
1479
|
+
name: 'Macedonia (FYROM) (Македонија)',
|
|
1480
|
+
priority: 0,
|
|
1481
|
+
timezone: 'Europe/Skopje',
|
|
1482
|
+
},
|
|
1483
|
+
ML: {
|
|
1484
|
+
areaCodes: null,
|
|
1485
|
+
currency: Currency.XOF,
|
|
1486
|
+
dialCode: '223',
|
|
1487
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ML.png',
|
|
1488
|
+
iso2: 'ML',
|
|
1489
|
+
name: 'Mali',
|
|
1490
|
+
priority: 0,
|
|
1491
|
+
timezone: 'Africa/Bamako',
|
|
1492
|
+
},
|
|
1493
|
+
MM: {
|
|
1494
|
+
areaCodes: null,
|
|
1495
|
+
currency: Currency.MMK,
|
|
1496
|
+
dialCode: '95',
|
|
1497
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MM.png',
|
|
1498
|
+
iso2: 'MM',
|
|
1499
|
+
name: 'Myanmar (Burma) (မြန်မာ)',
|
|
1500
|
+
priority: 0,
|
|
1501
|
+
timezone: 'Asia/Yangon',
|
|
1502
|
+
},
|
|
1503
|
+
MN: {
|
|
1504
|
+
areaCodes: null,
|
|
1505
|
+
currency: Currency.MNT,
|
|
1506
|
+
dialCode: '976',
|
|
1507
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MN.png',
|
|
1508
|
+
iso2: 'MN',
|
|
1509
|
+
name: 'Mongolia (Монгол)',
|
|
1510
|
+
priority: 0,
|
|
1511
|
+
timezone: 'Asia/Ulaanbaatar',
|
|
1512
|
+
},
|
|
1513
|
+
MO: {
|
|
1514
|
+
areaCodes: null,
|
|
1515
|
+
currency: Currency.MOP,
|
|
1516
|
+
dialCode: '853',
|
|
1517
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MO.png',
|
|
1518
|
+
iso2: 'MO',
|
|
1519
|
+
name: 'Macau (澳門)',
|
|
1520
|
+
priority: 0,
|
|
1521
|
+
timezone: 'Asia/Macau',
|
|
1522
|
+
},
|
|
1523
|
+
MP: {
|
|
1524
|
+
areaCodes: null,
|
|
1525
|
+
currency: Currency.USD,
|
|
1526
|
+
dialCode: '1670',
|
|
1527
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MP.png',
|
|
1528
|
+
iso2: 'MP',
|
|
1529
|
+
name: 'Northern Mariana Islands',
|
|
1530
|
+
priority: 0,
|
|
1531
|
+
timezone: 'Pacific/Saipan',
|
|
1532
|
+
},
|
|
1533
|
+
MQ: {
|
|
1534
|
+
areaCodes: null,
|
|
1535
|
+
currency: Currency.EUR,
|
|
1536
|
+
dialCode: '596',
|
|
1537
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MQ.png',
|
|
1538
|
+
iso2: 'MQ',
|
|
1539
|
+
name: 'Martinique',
|
|
1540
|
+
priority: 0,
|
|
1541
|
+
timezone: 'America/Martinique',
|
|
1542
|
+
},
|
|
1543
|
+
MR: {
|
|
1544
|
+
areaCodes: null,
|
|
1545
|
+
currency: Currency.MRU,
|
|
1546
|
+
dialCode: '222',
|
|
1547
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MR.png',
|
|
1548
|
+
iso2: 'MR',
|
|
1549
|
+
name: 'Mauritania (موريتانيا)',
|
|
1550
|
+
priority: 0,
|
|
1551
|
+
timezone: 'Africa/Nouakchott',
|
|
1552
|
+
},
|
|
1553
|
+
MS: {
|
|
1554
|
+
areaCodes: null,
|
|
1555
|
+
currency: Currency.XCD,
|
|
1556
|
+
dialCode: '1664',
|
|
1557
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MS.png',
|
|
1558
|
+
iso2: 'MS',
|
|
1559
|
+
name: 'Montserrat',
|
|
1560
|
+
priority: 0,
|
|
1561
|
+
timezone: 'America/Montserrat',
|
|
1562
|
+
},
|
|
1563
|
+
MT: {
|
|
1564
|
+
areaCodes: null,
|
|
1565
|
+
currency: Currency.EUR,
|
|
1566
|
+
dialCode: '356',
|
|
1567
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MT.png',
|
|
1568
|
+
iso2: 'MT',
|
|
1569
|
+
name: 'Malta',
|
|
1570
|
+
priority: 0,
|
|
1571
|
+
timezone: 'Europe/Malta',
|
|
1572
|
+
},
|
|
1573
|
+
MU: {
|
|
1574
|
+
areaCodes: null,
|
|
1575
|
+
currency: Currency.MUR,
|
|
1576
|
+
dialCode: '230',
|
|
1577
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MU.png',
|
|
1578
|
+
iso2: 'MU',
|
|
1579
|
+
name: 'Mauritius (Moris)',
|
|
1580
|
+
priority: 0,
|
|
1581
|
+
timezone: 'Indian/Mauritius',
|
|
1582
|
+
},
|
|
1583
|
+
MV: {
|
|
1584
|
+
areaCodes: null,
|
|
1585
|
+
currency: Currency.MVR,
|
|
1586
|
+
dialCode: '960',
|
|
1587
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MV.png',
|
|
1588
|
+
iso2: 'MV',
|
|
1589
|
+
name: 'Maldives',
|
|
1590
|
+
priority: 0,
|
|
1591
|
+
timezone: 'Indian/Maldives',
|
|
1592
|
+
},
|
|
1593
|
+
MW: {
|
|
1594
|
+
areaCodes: null,
|
|
1595
|
+
currency: Currency.MWK,
|
|
1596
|
+
dialCode: '265',
|
|
1597
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MW.png',
|
|
1598
|
+
iso2: 'MW',
|
|
1599
|
+
name: 'Malawi',
|
|
1600
|
+
priority: 0,
|
|
1601
|
+
timezone: 'Africa/Blantyre',
|
|
1602
|
+
},
|
|
1603
|
+
MX: {
|
|
1604
|
+
areaCodes: null,
|
|
1605
|
+
currency: Currency.MXN,
|
|
1606
|
+
dialCode: '52',
|
|
1607
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MX.png',
|
|
1608
|
+
iso2: 'MX',
|
|
1609
|
+
name: 'Mexico (México)',
|
|
1610
|
+
priority: 0,
|
|
1611
|
+
timezone: 'America/Mexico_City',
|
|
1612
|
+
},
|
|
1613
|
+
MY: {
|
|
1614
|
+
areaCodes: null,
|
|
1615
|
+
currency: Currency.MYR,
|
|
1616
|
+
dialCode: '60',
|
|
1617
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MY.png',
|
|
1618
|
+
iso2: 'MY',
|
|
1619
|
+
name: 'Malaysia',
|
|
1620
|
+
priority: 0,
|
|
1621
|
+
timezone: 'Asia/Kuching',
|
|
1622
|
+
},
|
|
1623
|
+
MZ: {
|
|
1624
|
+
areaCodes: null,
|
|
1625
|
+
currency: Currency.MZN,
|
|
1626
|
+
dialCode: '258',
|
|
1627
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/MZ.png',
|
|
1628
|
+
iso2: 'MZ',
|
|
1629
|
+
name: 'Mozambique (Moçambique)',
|
|
1630
|
+
priority: 0,
|
|
1631
|
+
timezone: 'Africa/Maputo',
|
|
1632
|
+
},
|
|
1633
|
+
NA: {
|
|
1634
|
+
areaCodes: null,
|
|
1635
|
+
currency: Currency.NAD,
|
|
1636
|
+
dialCode: '264',
|
|
1637
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NA.png',
|
|
1638
|
+
iso2: 'NA',
|
|
1639
|
+
name: 'Namibia (Namibië)',
|
|
1640
|
+
priority: 0,
|
|
1641
|
+
timezone: 'Africa/Windhoek',
|
|
1642
|
+
},
|
|
1643
|
+
NC: {
|
|
1644
|
+
areaCodes: null,
|
|
1645
|
+
currency: Currency.XPF,
|
|
1646
|
+
dialCode: '687',
|
|
1647
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NC.png',
|
|
1648
|
+
iso2: 'NC',
|
|
1649
|
+
name: 'New Caledonia (Nouvelle-Calédonie)',
|
|
1650
|
+
priority: 0,
|
|
1651
|
+
timezone: 'Pacific/Noumea',
|
|
1652
|
+
},
|
|
1653
|
+
NE: {
|
|
1654
|
+
areaCodes: null,
|
|
1655
|
+
currency: Currency.XOF,
|
|
1656
|
+
dialCode: '227',
|
|
1657
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NE.png',
|
|
1658
|
+
iso2: 'NE',
|
|
1659
|
+
name: 'Niger (Nijar)',
|
|
1660
|
+
priority: 0,
|
|
1661
|
+
timezone: 'Africa/Niamey',
|
|
1662
|
+
},
|
|
1663
|
+
NF: {
|
|
1664
|
+
areaCodes: null,
|
|
1665
|
+
currency: Currency.AUD,
|
|
1666
|
+
dialCode: '672',
|
|
1667
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NF.png',
|
|
1668
|
+
iso2: 'NF',
|
|
1669
|
+
name: 'Norfolk Island',
|
|
1670
|
+
priority: 0,
|
|
1671
|
+
timezone: 'Pacific/Norfolk',
|
|
1672
|
+
},
|
|
1673
|
+
NG: {
|
|
1674
|
+
areaCodes: null,
|
|
1675
|
+
currency: Currency.NGN,
|
|
1676
|
+
dialCode: '234',
|
|
1677
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NG.png',
|
|
1678
|
+
iso2: 'NG',
|
|
1679
|
+
name: 'Nigeria',
|
|
1680
|
+
priority: 0,
|
|
1681
|
+
timezone: 'Africa/Lagos',
|
|
1682
|
+
},
|
|
1683
|
+
NI: {
|
|
1684
|
+
areaCodes: null,
|
|
1685
|
+
currency: Currency.NIO,
|
|
1686
|
+
dialCode: '505',
|
|
1687
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NI.png',
|
|
1688
|
+
iso2: 'NI',
|
|
1689
|
+
name: 'Nicaragua',
|
|
1690
|
+
priority: 0,
|
|
1691
|
+
timezone: 'America/Managua',
|
|
1692
|
+
},
|
|
1693
|
+
NL: {
|
|
1694
|
+
areaCodes: null,
|
|
1695
|
+
currency: Currency.EUR,
|
|
1696
|
+
dialCode: '31',
|
|
1697
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NL.png',
|
|
1698
|
+
iso2: 'NL',
|
|
1699
|
+
name: 'Netherlands (Nederland)',
|
|
1700
|
+
priority: 0,
|
|
1701
|
+
timezone: 'Europe/Amsterdam',
|
|
1702
|
+
},
|
|
1703
|
+
NO: {
|
|
1704
|
+
areaCodes: null,
|
|
1705
|
+
currency: Currency.NOK,
|
|
1706
|
+
dialCode: '47',
|
|
1707
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NO.png',
|
|
1708
|
+
iso2: 'NO',
|
|
1709
|
+
name: 'Norway (Norge)',
|
|
1710
|
+
priority: 0,
|
|
1711
|
+
timezone: 'Europe/Oslo',
|
|
1712
|
+
},
|
|
1713
|
+
NP: {
|
|
1714
|
+
areaCodes: null,
|
|
1715
|
+
currency: Currency.NPR,
|
|
1716
|
+
dialCode: '977',
|
|
1717
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NP.png',
|
|
1718
|
+
iso2: 'NP',
|
|
1719
|
+
name: 'Nepal (नेपाल)',
|
|
1720
|
+
priority: 0,
|
|
1721
|
+
timezone: 'Asia/Kathmandu',
|
|
1722
|
+
},
|
|
1723
|
+
NR: {
|
|
1724
|
+
areaCodes: null,
|
|
1725
|
+
currency: Currency.AUD,
|
|
1726
|
+
dialCode: '674',
|
|
1727
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NR.png',
|
|
1728
|
+
iso2: 'NR',
|
|
1729
|
+
name: 'Nauru',
|
|
1730
|
+
priority: 0,
|
|
1731
|
+
timezone: 'Pacific/Nauru',
|
|
1732
|
+
},
|
|
1733
|
+
NU: {
|
|
1734
|
+
areaCodes: null,
|
|
1735
|
+
currency: Currency.NZD,
|
|
1736
|
+
dialCode: '683',
|
|
1737
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NU.png',
|
|
1738
|
+
iso2: 'NU',
|
|
1739
|
+
name: 'Niue',
|
|
1740
|
+
priority: 0,
|
|
1741
|
+
timezone: 'Pacific/Niue',
|
|
1742
|
+
},
|
|
1743
|
+
NZ: {
|
|
1744
|
+
areaCodes: null,
|
|
1745
|
+
currency: Currency.NZD,
|
|
1746
|
+
dialCode: '64',
|
|
1747
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/NZ.png',
|
|
1748
|
+
iso2: 'NZ',
|
|
1749
|
+
name: 'New Zealand',
|
|
1750
|
+
priority: 0,
|
|
1751
|
+
timezone: 'Pacific/Auckland',
|
|
1752
|
+
},
|
|
1753
|
+
OM: {
|
|
1754
|
+
areaCodes: null,
|
|
1755
|
+
currency: Currency.OMR,
|
|
1756
|
+
dialCode: '968',
|
|
1757
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/OM.png',
|
|
1758
|
+
iso2: 'OM',
|
|
1759
|
+
name: 'Oman (عُمان)',
|
|
1760
|
+
priority: 0,
|
|
1761
|
+
timezone: 'Asia/Muscat',
|
|
1762
|
+
},
|
|
1763
|
+
PA: {
|
|
1764
|
+
areaCodes: null,
|
|
1765
|
+
currency: Currency.PAB,
|
|
1766
|
+
dialCode: '507',
|
|
1767
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PA.png',
|
|
1768
|
+
iso2: 'PA',
|
|
1769
|
+
name: 'Panama (Panamá)',
|
|
1770
|
+
priority: 0,
|
|
1771
|
+
timezone: 'America/Panama',
|
|
1772
|
+
},
|
|
1773
|
+
PE: {
|
|
1774
|
+
areaCodes: null,
|
|
1775
|
+
currency: Currency.PEN,
|
|
1776
|
+
dialCode: '51',
|
|
1777
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PE.png',
|
|
1778
|
+
iso2: 'PE',
|
|
1779
|
+
name: 'Peru (Perú)',
|
|
1780
|
+
priority: 0,
|
|
1781
|
+
timezone: 'America/Lima',
|
|
1782
|
+
},
|
|
1783
|
+
PF: {
|
|
1784
|
+
areaCodes: null,
|
|
1785
|
+
currency: Currency.XPF,
|
|
1786
|
+
dialCode: '689',
|
|
1787
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PF.png',
|
|
1788
|
+
iso2: 'PF',
|
|
1789
|
+
name: 'French Polynesia (Polynésie française)',
|
|
1790
|
+
priority: 0,
|
|
1791
|
+
timezone: 'Etc/GMT+9',
|
|
1792
|
+
},
|
|
1793
|
+
PG: {
|
|
1794
|
+
areaCodes: null,
|
|
1795
|
+
currency: Currency.PGK,
|
|
1796
|
+
dialCode: '675',
|
|
1797
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PG.png',
|
|
1798
|
+
iso2: 'PG',
|
|
1799
|
+
name: 'Papua New Guinea',
|
|
1800
|
+
priority: 0,
|
|
1801
|
+
timezone: 'Pacific/Port_Moresby',
|
|
1802
|
+
},
|
|
1803
|
+
PH: {
|
|
1804
|
+
areaCodes: null,
|
|
1805
|
+
currency: Currency.PHP,
|
|
1806
|
+
dialCode: '63',
|
|
1807
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PH.png',
|
|
1808
|
+
iso2: 'PH',
|
|
1809
|
+
name: 'Philippines',
|
|
1810
|
+
priority: 0,
|
|
1811
|
+
timezone: 'Asia/Manila',
|
|
1812
|
+
},
|
|
1813
|
+
PK: {
|
|
1814
|
+
areaCodes: null,
|
|
1815
|
+
currency: Currency.PKR,
|
|
1816
|
+
dialCode: '92',
|
|
1817
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PK.png',
|
|
1818
|
+
iso2: 'PK',
|
|
1819
|
+
name: 'Pakistan (پاکستان)',
|
|
1820
|
+
priority: 0,
|
|
1821
|
+
timezone: 'Asia/Karachi',
|
|
1822
|
+
},
|
|
1823
|
+
PL: {
|
|
1824
|
+
areaCodes: null,
|
|
1825
|
+
currency: Currency.PLN,
|
|
1826
|
+
dialCode: '48',
|
|
1827
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PL.png',
|
|
1828
|
+
iso2: 'PL',
|
|
1829
|
+
name: 'Poland (Polska)',
|
|
1830
|
+
priority: 0,
|
|
1831
|
+
timezone: 'Europe/Warsaw',
|
|
1832
|
+
},
|
|
1833
|
+
PM: {
|
|
1834
|
+
areaCodes: null,
|
|
1835
|
+
currency: Currency.EUR,
|
|
1836
|
+
dialCode: '508',
|
|
1837
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PM.png',
|
|
1838
|
+
iso2: 'PM',
|
|
1839
|
+
name: 'Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)',
|
|
1840
|
+
priority: 0,
|
|
1841
|
+
timezone: 'America/Miquelon',
|
|
1842
|
+
},
|
|
1843
|
+
PR: {
|
|
1844
|
+
areaCodes: ['787', '939'],
|
|
1845
|
+
currency: Currency.USD,
|
|
1846
|
+
dialCode: '1',
|
|
1847
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PR.png',
|
|
1848
|
+
iso2: 'PR',
|
|
1849
|
+
name: 'Puerto Rico',
|
|
1850
|
+
priority: 3,
|
|
1851
|
+
timezone: 'America/Puerto_Rico',
|
|
1852
|
+
},
|
|
1853
|
+
PS: {
|
|
1854
|
+
areaCodes: null,
|
|
1855
|
+
currency: Currency.ILS,
|
|
1856
|
+
dialCode: '970',
|
|
1857
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PS.png',
|
|
1858
|
+
iso2: 'PS',
|
|
1859
|
+
name: 'Palestine (فلسطين)',
|
|
1860
|
+
priority: 0,
|
|
1861
|
+
timezone: 'Asia/Jerusalem',
|
|
1862
|
+
},
|
|
1863
|
+
PT: {
|
|
1864
|
+
areaCodes: null,
|
|
1865
|
+
currency: Currency.EUR,
|
|
1866
|
+
dialCode: '351',
|
|
1867
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PT.png',
|
|
1868
|
+
iso2: 'PT',
|
|
1869
|
+
name: 'Portugal',
|
|
1870
|
+
priority: 0,
|
|
1871
|
+
timezone: 'Europe/Lisbon',
|
|
1872
|
+
},
|
|
1873
|
+
PW: {
|
|
1874
|
+
areaCodes: null,
|
|
1875
|
+
currency: Currency.USD,
|
|
1876
|
+
dialCode: '680',
|
|
1877
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PW.png',
|
|
1878
|
+
iso2: 'PW',
|
|
1879
|
+
name: 'Palau',
|
|
1880
|
+
priority: 0,
|
|
1881
|
+
timezone: 'Etc/GMT-9',
|
|
1882
|
+
},
|
|
1883
|
+
PY: {
|
|
1884
|
+
areaCodes: null,
|
|
1885
|
+
currency: Currency.PYG,
|
|
1886
|
+
dialCode: '595',
|
|
1887
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/PY.png',
|
|
1888
|
+
iso2: 'PY',
|
|
1889
|
+
name: 'Paraguay',
|
|
1890
|
+
priority: 0,
|
|
1891
|
+
timezone: 'America/Asuncion',
|
|
1892
|
+
},
|
|
1893
|
+
QA: {
|
|
1894
|
+
areaCodes: null,
|
|
1895
|
+
currency: Currency.QAR,
|
|
1896
|
+
dialCode: '974',
|
|
1897
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/QA.png',
|
|
1898
|
+
iso2: 'QA',
|
|
1899
|
+
name: 'Qatar (قطر)',
|
|
1900
|
+
priority: 0,
|
|
1901
|
+
timezone: 'Asia/Qatar',
|
|
1902
|
+
},
|
|
1903
|
+
RE: {
|
|
1904
|
+
areaCodes: null,
|
|
1905
|
+
currency: Currency.EUR,
|
|
1906
|
+
dialCode: '262',
|
|
1907
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RE.png',
|
|
1908
|
+
iso2: 'RE',
|
|
1909
|
+
name: 'Réunion (La Réunion)',
|
|
1910
|
+
priority: 0,
|
|
1911
|
+
timezone: 'Indian/Reunion',
|
|
1912
|
+
},
|
|
1913
|
+
RO: {
|
|
1914
|
+
areaCodes: null,
|
|
1915
|
+
currency: Currency.RON,
|
|
1916
|
+
dialCode: '40',
|
|
1917
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RO.png',
|
|
1918
|
+
iso2: 'RO',
|
|
1919
|
+
name: 'Romania (România)',
|
|
1920
|
+
priority: 0,
|
|
1921
|
+
timezone: 'Europe/Bucharest',
|
|
1922
|
+
},
|
|
1923
|
+
RS: {
|
|
1924
|
+
areaCodes: null,
|
|
1925
|
+
currency: Currency.RSD,
|
|
1926
|
+
dialCode: '381',
|
|
1927
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RS.png',
|
|
1928
|
+
iso2: 'RS',
|
|
1929
|
+
name: 'Serbia (Србија)',
|
|
1930
|
+
priority: 0,
|
|
1931
|
+
timezone: 'Europe/Belgrade',
|
|
1932
|
+
},
|
|
1933
|
+
RU: {
|
|
1934
|
+
areaCodes: null,
|
|
1935
|
+
currency: Currency.RUB,
|
|
1936
|
+
dialCode: '7',
|
|
1937
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RU.png',
|
|
1938
|
+
iso2: 'RU',
|
|
1939
|
+
name: 'Russia (Россия)',
|
|
1940
|
+
priority: 0,
|
|
1941
|
+
timezone: 'Asia/Krasnoyarsk',
|
|
1942
|
+
},
|
|
1943
|
+
RW: {
|
|
1944
|
+
areaCodes: null,
|
|
1945
|
+
currency: Currency.RWF,
|
|
1946
|
+
dialCode: '250',
|
|
1947
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/RW.png',
|
|
1948
|
+
iso2: 'RW',
|
|
1949
|
+
name: 'Rwanda',
|
|
1950
|
+
priority: 0,
|
|
1951
|
+
timezone: 'Africa/Kigali',
|
|
1952
|
+
},
|
|
1953
|
+
SA: {
|
|
1954
|
+
areaCodes: null,
|
|
1955
|
+
currency: Currency.SAR,
|
|
1956
|
+
dialCode: '966',
|
|
1957
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SA.png',
|
|
1958
|
+
iso2: 'SA',
|
|
1959
|
+
name: 'Saudi Arabia (المملكة العربية السعودية)',
|
|
1960
|
+
priority: 0,
|
|
1961
|
+
timezone: 'Asia/Riyadh',
|
|
1962
|
+
},
|
|
1963
|
+
SB: {
|
|
1964
|
+
areaCodes: null,
|
|
1965
|
+
currency: Currency.SBD,
|
|
1966
|
+
dialCode: '677',
|
|
1967
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SB.png',
|
|
1968
|
+
iso2: 'SB',
|
|
1969
|
+
name: 'Solomon Islands',
|
|
1970
|
+
priority: 0,
|
|
1971
|
+
timezone: 'Pacific/Guadalcanal',
|
|
1972
|
+
},
|
|
1973
|
+
SC: {
|
|
1974
|
+
areaCodes: null,
|
|
1975
|
+
currency: Currency.SCR,
|
|
1976
|
+
dialCode: '248',
|
|
1977
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SC.png',
|
|
1978
|
+
iso2: 'SC',
|
|
1979
|
+
name: 'Seychelles',
|
|
1980
|
+
priority: 0,
|
|
1981
|
+
timezone: 'Indian/Mahe',
|
|
1982
|
+
},
|
|
1983
|
+
SD: {
|
|
1984
|
+
areaCodes: null,
|
|
1985
|
+
currency: Currency.SDG,
|
|
1986
|
+
dialCode: '249',
|
|
1987
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SD.png',
|
|
1988
|
+
iso2: 'SD',
|
|
1989
|
+
name: 'Sudan (السودان)',
|
|
1990
|
+
priority: 0,
|
|
1991
|
+
timezone: 'Africa/Khartoum',
|
|
1992
|
+
},
|
|
1993
|
+
SE: {
|
|
1994
|
+
areaCodes: null,
|
|
1995
|
+
currency: Currency.SEK,
|
|
1996
|
+
dialCode: '46',
|
|
1997
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SE.png',
|
|
1998
|
+
iso2: 'SE',
|
|
1999
|
+
name: 'Sweden (Sverige)',
|
|
2000
|
+
priority: 0,
|
|
2001
|
+
timezone: 'Europe/Stockholm',
|
|
2002
|
+
},
|
|
2003
|
+
SG: {
|
|
2004
|
+
areaCodes: null,
|
|
2005
|
+
currency: Currency.SGD,
|
|
2006
|
+
dialCode: '65',
|
|
2007
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SG.png',
|
|
2008
|
+
iso2: 'SG',
|
|
2009
|
+
name: 'Singapore',
|
|
2010
|
+
priority: 0,
|
|
2011
|
+
timezone: 'Asia/Singapore',
|
|
2012
|
+
},
|
|
2013
|
+
SH: {
|
|
2014
|
+
areaCodes: null,
|
|
2015
|
+
currency: Currency.SHP,
|
|
2016
|
+
dialCode: '290',
|
|
2017
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SH.png',
|
|
2018
|
+
iso2: 'SH',
|
|
2019
|
+
name: 'Saint Helena',
|
|
2020
|
+
priority: 0,
|
|
2021
|
+
timezone: 'Atlantic/St_Helena',
|
|
2022
|
+
},
|
|
2023
|
+
SI: {
|
|
2024
|
+
areaCodes: null,
|
|
2025
|
+
currency: Currency.EUR,
|
|
2026
|
+
dialCode: '386',
|
|
2027
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SI.png',
|
|
2028
|
+
iso2: 'SI',
|
|
2029
|
+
name: 'Slovenia (Slovenija)',
|
|
2030
|
+
priority: 0,
|
|
2031
|
+
timezone: 'Europe/Ljubljana',
|
|
2032
|
+
},
|
|
2033
|
+
SJ: {
|
|
2034
|
+
areaCodes: null,
|
|
2035
|
+
currency: Currency.NOK,
|
|
2036
|
+
dialCode: '47',
|
|
2037
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SJ.png',
|
|
2038
|
+
iso2: 'SJ',
|
|
2039
|
+
name: 'Svalbard and Jan Mayen',
|
|
2040
|
+
priority: 1,
|
|
2041
|
+
timezone: 'Arctic/Longyearbyen',
|
|
2042
|
+
},
|
|
2043
|
+
SK: {
|
|
2044
|
+
areaCodes: null,
|
|
2045
|
+
currency: Currency.EUR,
|
|
2046
|
+
dialCode: '421',
|
|
2047
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SK.png',
|
|
2048
|
+
iso2: 'SK',
|
|
2049
|
+
name: 'Slovakia (Slovensko)',
|
|
2050
|
+
priority: 0,
|
|
2051
|
+
timezone: 'Europe/Bratislava',
|
|
2052
|
+
},
|
|
2053
|
+
SL: {
|
|
2054
|
+
areaCodes: null,
|
|
2055
|
+
currency: Currency.SLL,
|
|
2056
|
+
dialCode: '232',
|
|
2057
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SL.png',
|
|
2058
|
+
iso2: 'SL',
|
|
2059
|
+
name: 'Sierra Leone',
|
|
2060
|
+
priority: 0,
|
|
2061
|
+
timezone: 'Africa/Freetown',
|
|
2062
|
+
},
|
|
2063
|
+
SM: {
|
|
2064
|
+
areaCodes: null,
|
|
2065
|
+
currency: Currency.EUR,
|
|
2066
|
+
dialCode: '378',
|
|
2067
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SM.png',
|
|
2068
|
+
iso2: 'SM',
|
|
2069
|
+
name: 'San Marino',
|
|
2070
|
+
priority: 0,
|
|
2071
|
+
timezone: 'Europe/San_Marino',
|
|
2072
|
+
},
|
|
2073
|
+
SN: {
|
|
2074
|
+
areaCodes: null,
|
|
2075
|
+
currency: Currency.XOF,
|
|
2076
|
+
dialCode: '221',
|
|
2077
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SN.png',
|
|
2078
|
+
iso2: 'SN',
|
|
2079
|
+
name: 'Senegal (Sénégal)',
|
|
2080
|
+
priority: 0,
|
|
2081
|
+
timezone: 'Africa/Dakar',
|
|
2082
|
+
},
|
|
2083
|
+
SO: {
|
|
2084
|
+
areaCodes: null,
|
|
2085
|
+
currency: Currency.SOS,
|
|
2086
|
+
dialCode: '252',
|
|
2087
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SO.png',
|
|
2088
|
+
iso2: 'SO',
|
|
2089
|
+
name: 'Somalia (Soomaaliya)',
|
|
2090
|
+
priority: 0,
|
|
2091
|
+
timezone: 'Africa/Mogadishu',
|
|
2092
|
+
},
|
|
2093
|
+
SR: {
|
|
2094
|
+
areaCodes: null,
|
|
2095
|
+
currency: Currency.SRD,
|
|
2096
|
+
dialCode: '597',
|
|
2097
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SR.png',
|
|
2098
|
+
iso2: 'SR',
|
|
2099
|
+
name: 'Suriname',
|
|
2100
|
+
priority: 0,
|
|
2101
|
+
timezone: 'America/Paramaribo',
|
|
2102
|
+
},
|
|
2103
|
+
SS: {
|
|
2104
|
+
areaCodes: null,
|
|
2105
|
+
currency: Currency.USD,
|
|
2106
|
+
dialCode: '211',
|
|
2107
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SS.png',
|
|
2108
|
+
iso2: 'SS',
|
|
2109
|
+
name: 'South Sudan (جنوب السودان)',
|
|
2110
|
+
priority: 0,
|
|
2111
|
+
timezone: 'Africa/Juba',
|
|
2112
|
+
},
|
|
2113
|
+
ST: {
|
|
2114
|
+
areaCodes: null,
|
|
2115
|
+
currency: Currency.STD,
|
|
2116
|
+
dialCode: '239',
|
|
2117
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ST.png',
|
|
2118
|
+
iso2: 'ST',
|
|
2119
|
+
name: 'São Tomé and Príncipe (São Tomé e Príncipe)',
|
|
2120
|
+
priority: 0,
|
|
2121
|
+
timezone: 'Africa/Sao_Tome',
|
|
2122
|
+
},
|
|
2123
|
+
SV: {
|
|
2124
|
+
areaCodes: null,
|
|
2125
|
+
currency: Currency.USD,
|
|
2126
|
+
dialCode: '503',
|
|
2127
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SV.png',
|
|
2128
|
+
iso2: 'SV',
|
|
2129
|
+
name: 'El Salvador',
|
|
2130
|
+
priority: 0,
|
|
2131
|
+
timezone: 'America/El_Salvador',
|
|
2132
|
+
},
|
|
2133
|
+
SX: {
|
|
2134
|
+
areaCodes: null,
|
|
2135
|
+
currency: Currency.ANG,
|
|
2136
|
+
dialCode: '1721',
|
|
2137
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SX.png',
|
|
2138
|
+
iso2: 'SX',
|
|
2139
|
+
name: 'Sint Maarten',
|
|
2140
|
+
priority: 0,
|
|
2141
|
+
timezone: 'America/Lower_Princes',
|
|
2142
|
+
},
|
|
2143
|
+
SY: {
|
|
2144
|
+
areaCodes: null,
|
|
2145
|
+
currency: Currency.SYP,
|
|
2146
|
+
dialCode: '963',
|
|
2147
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SY.png',
|
|
2148
|
+
iso2: 'SY',
|
|
2149
|
+
name: 'Syria (سوريا)',
|
|
2150
|
+
priority: 0,
|
|
2151
|
+
timezone: 'Asia/Damascus',
|
|
2152
|
+
},
|
|
2153
|
+
SZ: {
|
|
2154
|
+
areaCodes: null,
|
|
2155
|
+
currency: Currency.SZL,
|
|
2156
|
+
dialCode: '268',
|
|
2157
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/SZ.png',
|
|
2158
|
+
iso2: 'SZ',
|
|
2159
|
+
name: 'Swaziland',
|
|
2160
|
+
priority: 0,
|
|
2161
|
+
timezone: 'Africa/Mbabane',
|
|
2162
|
+
},
|
|
2163
|
+
TC: {
|
|
2164
|
+
areaCodes: null,
|
|
2165
|
+
currency: Currency.USD,
|
|
2166
|
+
dialCode: '1649',
|
|
2167
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TC.png',
|
|
2168
|
+
iso2: 'TC',
|
|
2169
|
+
name: 'Turks and Caicos Islands',
|
|
2170
|
+
priority: 0,
|
|
2171
|
+
timezone: 'America/Grand_Turk',
|
|
2172
|
+
},
|
|
2173
|
+
TD: {
|
|
2174
|
+
areaCodes: null,
|
|
2175
|
+
currency: Currency.XAF,
|
|
2176
|
+
dialCode: '235',
|
|
2177
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TD.png',
|
|
2178
|
+
iso2: 'TD',
|
|
2179
|
+
name: 'Chad (Tchad)',
|
|
2180
|
+
priority: 0,
|
|
2181
|
+
timezone: 'Africa/Ndjamena',
|
|
2182
|
+
},
|
|
2183
|
+
TG: {
|
|
2184
|
+
areaCodes: null,
|
|
2185
|
+
currency: Currency.XOF,
|
|
2186
|
+
dialCode: '228',
|
|
2187
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TG.png',
|
|
2188
|
+
iso2: 'TG',
|
|
2189
|
+
name: 'Togo',
|
|
2190
|
+
priority: 0,
|
|
2191
|
+
timezone: 'Africa/Lome',
|
|
2192
|
+
},
|
|
2193
|
+
TH: {
|
|
2194
|
+
areaCodes: null,
|
|
2195
|
+
currency: Currency.THB,
|
|
2196
|
+
dialCode: '66',
|
|
2197
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TH.png',
|
|
2198
|
+
iso2: 'TH',
|
|
2199
|
+
name: 'Thailand (ไทย)',
|
|
2200
|
+
priority: 0,
|
|
2201
|
+
timezone: 'Asia/Bangkok',
|
|
2202
|
+
},
|
|
2203
|
+
TJ: {
|
|
2204
|
+
areaCodes: null,
|
|
2205
|
+
currency: Currency.TJS,
|
|
2206
|
+
dialCode: '992',
|
|
2207
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TJ.png',
|
|
2208
|
+
iso2: 'TJ',
|
|
2209
|
+
name: 'Tajikistan',
|
|
2210
|
+
priority: 0,
|
|
2211
|
+
timezone: 'Asia/Dushanbe',
|
|
2212
|
+
},
|
|
2213
|
+
TK: {
|
|
2214
|
+
areaCodes: null,
|
|
2215
|
+
currency: Currency.NZD,
|
|
2216
|
+
dialCode: '690',
|
|
2217
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TK.png',
|
|
2218
|
+
iso2: 'TK',
|
|
2219
|
+
name: 'Tokelau',
|
|
2220
|
+
priority: 0,
|
|
2221
|
+
timezone: 'Pacific/Fakaofo',
|
|
2222
|
+
},
|
|
2223
|
+
TL: {
|
|
2224
|
+
areaCodes: null,
|
|
2225
|
+
currency: Currency.USD,
|
|
2226
|
+
dialCode: '670',
|
|
2227
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TL.png',
|
|
2228
|
+
iso2: 'TL',
|
|
2229
|
+
name: 'Timor-Leste',
|
|
2230
|
+
priority: 0,
|
|
2231
|
+
timezone: 'Asia/Dili',
|
|
2232
|
+
},
|
|
2233
|
+
TM: {
|
|
2234
|
+
areaCodes: null,
|
|
2235
|
+
currency: Currency.TMT,
|
|
2236
|
+
dialCode: '993',
|
|
2237
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TM.png',
|
|
2238
|
+
iso2: 'TM',
|
|
2239
|
+
name: 'Turkmenistan',
|
|
2240
|
+
priority: 0,
|
|
2241
|
+
timezone: 'Asia/Ashgabat',
|
|
2242
|
+
},
|
|
2243
|
+
TN: {
|
|
2244
|
+
areaCodes: null,
|
|
2245
|
+
currency: Currency.TND,
|
|
2246
|
+
dialCode: '216',
|
|
2247
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TN.png',
|
|
2248
|
+
iso2: 'TN',
|
|
2249
|
+
name: 'Tunisia (تونس)',
|
|
2250
|
+
priority: 0,
|
|
2251
|
+
timezone: 'Africa/Tunis',
|
|
2252
|
+
},
|
|
2253
|
+
TO: {
|
|
2254
|
+
areaCodes: null,
|
|
2255
|
+
currency: Currency.TOP,
|
|
2256
|
+
dialCode: '676',
|
|
2257
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TO.png',
|
|
2258
|
+
iso2: 'TO',
|
|
2259
|
+
name: 'Tonga',
|
|
2260
|
+
priority: 0,
|
|
2261
|
+
timezone: 'Pacific/Tongatapu',
|
|
2262
|
+
},
|
|
2263
|
+
TR: {
|
|
2264
|
+
areaCodes: null,
|
|
2265
|
+
currency: Currency.TRY,
|
|
2266
|
+
dialCode: '90',
|
|
2267
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TR.png',
|
|
2268
|
+
iso2: 'TR',
|
|
2269
|
+
name: 'Turkey (Türkiye)',
|
|
2270
|
+
priority: 0,
|
|
2271
|
+
timezone: 'Europe/Istanbul',
|
|
2272
|
+
},
|
|
2273
|
+
TT: {
|
|
2274
|
+
areaCodes: null,
|
|
2275
|
+
currency: Currency.TTD,
|
|
2276
|
+
dialCode: '1868',
|
|
2277
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TT.png',
|
|
2278
|
+
iso2: 'TT',
|
|
2279
|
+
name: 'Trinidad and Tobago',
|
|
2280
|
+
priority: 0,
|
|
2281
|
+
timezone: 'America/Port_of_Spain',
|
|
2282
|
+
},
|
|
2283
|
+
TV: {
|
|
2284
|
+
areaCodes: null,
|
|
2285
|
+
currency: Currency.AUD,
|
|
2286
|
+
dialCode: '688',
|
|
2287
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TV.png',
|
|
2288
|
+
iso2: 'TV',
|
|
2289
|
+
name: 'Tuvalu',
|
|
2290
|
+
priority: 0,
|
|
2291
|
+
timezone: 'Etc/GMT-12',
|
|
2292
|
+
},
|
|
2293
|
+
TW: {
|
|
2294
|
+
areaCodes: null,
|
|
2295
|
+
currency: Currency.TWD,
|
|
2296
|
+
dialCode: '886',
|
|
2297
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TW.png',
|
|
2298
|
+
iso2: 'TW',
|
|
2299
|
+
name: 'Taiwan (台灣)',
|
|
2300
|
+
priority: 0,
|
|
2301
|
+
timezone: 'Asia/Taipei',
|
|
2302
|
+
},
|
|
2303
|
+
TZ: {
|
|
2304
|
+
areaCodes: null,
|
|
2305
|
+
currency: Currency.TZS,
|
|
2306
|
+
dialCode: '255',
|
|
2307
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/TZ.png',
|
|
2308
|
+
iso2: 'TZ',
|
|
2309
|
+
name: 'Tanzania',
|
|
2310
|
+
priority: 0,
|
|
2311
|
+
timezone: 'Africa/Dar_es_Salaam',
|
|
2312
|
+
},
|
|
2313
|
+
UA: {
|
|
2314
|
+
areaCodes: null,
|
|
2315
|
+
currency: Currency.UAH,
|
|
2316
|
+
dialCode: '380',
|
|
2317
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UA.png',
|
|
2318
|
+
iso2: 'UA',
|
|
2319
|
+
name: 'Ukraine (Україна)',
|
|
2320
|
+
priority: 0,
|
|
2321
|
+
timezone: 'Europe/Kiev',
|
|
2322
|
+
},
|
|
2323
|
+
UG: {
|
|
2324
|
+
areaCodes: null,
|
|
2325
|
+
currency: Currency.UGX,
|
|
2326
|
+
dialCode: '256',
|
|
2327
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UG.png',
|
|
2328
|
+
iso2: 'UG',
|
|
2329
|
+
name: 'Uganda',
|
|
2330
|
+
priority: 0,
|
|
2331
|
+
timezone: 'Africa/Kampala',
|
|
2332
|
+
},
|
|
2333
|
+
US: {
|
|
2334
|
+
areaCodes: null,
|
|
2335
|
+
currency: Currency.USD,
|
|
2336
|
+
dialCode: '1',
|
|
2337
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/US.png',
|
|
2338
|
+
iso2: 'US',
|
|
2339
|
+
name: 'United States',
|
|
2340
|
+
priority: 0,
|
|
2341
|
+
timezone: 'America/Chicago',
|
|
2342
|
+
},
|
|
2343
|
+
UY: {
|
|
2344
|
+
areaCodes: null,
|
|
2345
|
+
currency: Currency.UYU,
|
|
2346
|
+
dialCode: '598',
|
|
2347
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UY.png',
|
|
2348
|
+
iso2: 'UY',
|
|
2349
|
+
name: 'Uruguay',
|
|
2350
|
+
priority: 0,
|
|
2351
|
+
timezone: 'America/Montevideo',
|
|
2352
|
+
},
|
|
2353
|
+
UZ: {
|
|
2354
|
+
areaCodes: null,
|
|
2355
|
+
currency: Currency.UZS,
|
|
2356
|
+
dialCode: '998',
|
|
2357
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/UZ.png',
|
|
2358
|
+
iso2: 'UZ',
|
|
2359
|
+
name: 'Uzbekistan (Oʻzbekiston)',
|
|
2360
|
+
priority: 0,
|
|
2361
|
+
timezone: 'Asia/Samarkand',
|
|
2362
|
+
},
|
|
2363
|
+
VA: {
|
|
2364
|
+
areaCodes: null,
|
|
2365
|
+
currency: Currency.EUR,
|
|
2366
|
+
dialCode: '39',
|
|
2367
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VA.png',
|
|
2368
|
+
iso2: 'VA',
|
|
2369
|
+
name: 'Vatican City (Città del Vaticano)',
|
|
2370
|
+
priority: 1,
|
|
2371
|
+
timezone: 'Europe/Rome',
|
|
2372
|
+
},
|
|
2373
|
+
VC: {
|
|
2374
|
+
areaCodes: null,
|
|
2375
|
+
currency: Currency.XCD,
|
|
2376
|
+
dialCode: '1784',
|
|
2377
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VC.png',
|
|
2378
|
+
iso2: 'VC',
|
|
2379
|
+
name: 'Saint Vincent and the Grenadines',
|
|
2380
|
+
priority: 0,
|
|
2381
|
+
timezone: 'America/St_Vincent',
|
|
2382
|
+
},
|
|
2383
|
+
VE: {
|
|
2384
|
+
areaCodes: null,
|
|
2385
|
+
currency: Currency.VES,
|
|
2386
|
+
dialCode: '58',
|
|
2387
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VE.png',
|
|
2388
|
+
iso2: 'VE',
|
|
2389
|
+
name: 'Venezuela',
|
|
2390
|
+
priority: 0,
|
|
2391
|
+
timezone: 'America/Caracas',
|
|
2392
|
+
},
|
|
2393
|
+
VG: {
|
|
2394
|
+
areaCodes: null,
|
|
2395
|
+
currency: Currency.USD,
|
|
2396
|
+
dialCode: '1284',
|
|
2397
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VG.png',
|
|
2398
|
+
iso2: 'VG',
|
|
2399
|
+
name: 'British Virgin Islands',
|
|
2400
|
+
priority: 0,
|
|
2401
|
+
timezone: 'America/Tortola',
|
|
2402
|
+
},
|
|
2403
|
+
VI: {
|
|
2404
|
+
areaCodes: null,
|
|
2405
|
+
currency: Currency.USD,
|
|
2406
|
+
dialCode: '1340',
|
|
2407
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VI.png',
|
|
2408
|
+
iso2: 'VI',
|
|
2409
|
+
name: 'U.S. Virgin Islands',
|
|
2410
|
+
priority: 0,
|
|
2411
|
+
timezone: 'America/St_Thomas',
|
|
2412
|
+
},
|
|
2413
|
+
VN: {
|
|
2414
|
+
areaCodes: null,
|
|
2415
|
+
currency: Currency.VND,
|
|
2416
|
+
dialCode: '84',
|
|
2417
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VN.png',
|
|
2418
|
+
iso2: 'VN',
|
|
2419
|
+
name: 'Vietnam (Việt Nam)',
|
|
2420
|
+
priority: 0,
|
|
2421
|
+
timezone: 'Asia/Ho_Chi_Minh',
|
|
2422
|
+
},
|
|
2423
|
+
VU: {
|
|
2424
|
+
areaCodes: null,
|
|
2425
|
+
currency: Currency.VUV,
|
|
2426
|
+
dialCode: '678',
|
|
2427
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/VU.png',
|
|
2428
|
+
iso2: 'VU',
|
|
2429
|
+
name: 'Vanuatu',
|
|
2430
|
+
priority: 0,
|
|
2431
|
+
timezone: 'Pacific/Efate',
|
|
2432
|
+
},
|
|
2433
|
+
WF: {
|
|
2434
|
+
areaCodes: null,
|
|
2435
|
+
currency: Currency.XPF,
|
|
2436
|
+
dialCode: '681',
|
|
2437
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/WF.png',
|
|
2438
|
+
iso2: 'WF',
|
|
2439
|
+
name: 'Wallis and Futuna (Wallis-et-Futuna)',
|
|
2440
|
+
priority: 0,
|
|
2441
|
+
timezone: 'Pacific/Wallis',
|
|
2442
|
+
},
|
|
2443
|
+
WS: {
|
|
2444
|
+
areaCodes: null,
|
|
2445
|
+
currency: Currency.WST,
|
|
2446
|
+
dialCode: '685',
|
|
2447
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/WS.png',
|
|
2448
|
+
iso2: 'WS',
|
|
2449
|
+
name: 'Samoa',
|
|
2450
|
+
priority: 0,
|
|
2451
|
+
timezone: 'Pacific/Apia',
|
|
2452
|
+
},
|
|
2453
|
+
XK: {
|
|
2454
|
+
areaCodes: null,
|
|
2455
|
+
currency: Currency.EUR,
|
|
2456
|
+
dialCode: '383',
|
|
2457
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/XK.png',
|
|
2458
|
+
iso2: 'XK',
|
|
2459
|
+
name: 'Kosovo',
|
|
2460
|
+
priority: 0,
|
|
2461
|
+
timezone: 'Europe/Rome',
|
|
2462
|
+
},
|
|
2463
|
+
YE: {
|
|
2464
|
+
areaCodes: null,
|
|
2465
|
+
currency: Currency.YER,
|
|
2466
|
+
dialCode: '967',
|
|
2467
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/YE.png',
|
|
2468
|
+
iso2: 'YE',
|
|
2469
|
+
name: 'Yemen (اليمن)',
|
|
2470
|
+
priority: 0,
|
|
2471
|
+
timezone: 'Asia/Aden',
|
|
2472
|
+
},
|
|
2473
|
+
YT: {
|
|
2474
|
+
areaCodes: null,
|
|
2475
|
+
currency: Currency.EUR,
|
|
2476
|
+
dialCode: '262',
|
|
2477
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/YT.png',
|
|
2478
|
+
iso2: 'YT',
|
|
2479
|
+
name: 'Mayotte',
|
|
2480
|
+
priority: 1,
|
|
2481
|
+
timezone: 'Indian/Mayotte',
|
|
2482
|
+
},
|
|
2483
|
+
ZA: {
|
|
2484
|
+
areaCodes: null,
|
|
2485
|
+
currency: Currency.ZAR,
|
|
2486
|
+
dialCode: '27',
|
|
2487
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ZA.png',
|
|
2488
|
+
iso2: 'ZA',
|
|
2489
|
+
name: 'South Africa',
|
|
2490
|
+
priority: 0,
|
|
2491
|
+
timezone: 'Africa/Johannesburg',
|
|
2492
|
+
},
|
|
2493
|
+
ZM: {
|
|
2494
|
+
areaCodes: null,
|
|
2495
|
+
currency: Currency.ZMK,
|
|
2496
|
+
dialCode: '260',
|
|
2497
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ZM.png',
|
|
2498
|
+
iso2: 'ZM',
|
|
2499
|
+
name: 'Zambia',
|
|
2500
|
+
priority: 0,
|
|
2501
|
+
timezone: 'Africa/Lusaka',
|
|
2502
|
+
},
|
|
2503
|
+
ZW: {
|
|
2504
|
+
areaCodes: null,
|
|
2505
|
+
currency: Currency.ZWL,
|
|
2506
|
+
dialCode: '263',
|
|
2507
|
+
icon: 'https://raw.githubusercontent.com/behdad/region-flags/gh-pages/png/ZW.png',
|
|
2508
|
+
iso2: 'ZW',
|
|
2509
|
+
name: 'Zimbabwe',
|
|
2510
|
+
priority: 0,
|
|
2511
|
+
timezone: 'Africa/Harare',
|
|
2512
|
+
},
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
/* @__PURE__ */
|
|
2516
|
+
export const ISO_COUNTRIES = Object.values(COUNTRIES).map(
|
|
2517
|
+
country => country.iso2,
|
|
2518
|
+
)
|