@formatjs/intl-locale 5.2.2 → 5.3.2

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/polyfill-force.js CHANGED
@@ -1,7 +1,4675 @@
1
- import { Locale } from "./index.js";
1
+ import { supportedValuesOf } from "@formatjs/intl-supportedvaluesof";
2
+ import { emitUnicodeLanguageId, emitUnicodeLocaleId, isStructurallyValidLanguageTag, isUnicodeLanguageSubtag, isUnicodeRegionSubtag, isUnicodeScriptSubtag, likelySubtags, parseUnicodeLanguageId, parseUnicodeLocaleId } from "@formatjs/intl-getcanonicallocales";
3
+ //#region packages/ecma262-abstract/HasOwnProperty.js
4
+ /**
5
+ * https://www.ecma-international.org/ecma-262/11.0/index.html#sec-hasownproperty
6
+ */
7
+ function HasOwnProperty(o, prop) {
8
+ return Object.prototype.hasOwnProperty.call(o, prop);
9
+ }
10
+ //#endregion
11
+ //#region packages/ecma262-abstract/SameValue.js
12
+ /**
13
+ * https://www.ecma-international.org/ecma-262/11.0/index.html#sec-samevalue
14
+ */
15
+ function SameValue(x, y) {
16
+ if (Object.is) return Object.is(x, y);
17
+ if (x === y) return x !== 0 || 1 / x === 1 / y;
18
+ return x !== x && y !== y;
19
+ }
20
+ //#endregion
21
+ //#region packages/ecma262-abstract/ToObject.js
22
+ /**
23
+ * https://tc39.es/ecma262/#sec-toobject
24
+ */
25
+ function ToObject(arg) {
26
+ if (arg == null) throw new TypeError("undefined/null cannot be converted to object");
27
+ return Object(arg);
28
+ }
29
+ //#endregion
30
+ //#region packages/ecma402-abstract/CoerceOptionsToObject.js
31
+ /**
32
+ * https://tc39.es/ecma402/#sec-coerceoptionstoobject
33
+ * @param options
34
+ * @returns
35
+ */
36
+ function CoerceOptionsToObject(options) {
37
+ if (typeof options === "undefined") return Object.create(null);
38
+ return ToObject(options);
39
+ }
40
+ //#endregion
41
+ //#region packages/ecma262-abstract/ToString.js
42
+ /**
43
+ * https://tc39.es/ecma262/#sec-tostring
44
+ */
45
+ function ToString(o) {
46
+ if (typeof o === "symbol") throw TypeError("Cannot convert a Symbol value to a string");
47
+ return String(o);
48
+ }
49
+ //#endregion
50
+ //#region packages/ecma402-abstract/GetOption.js
51
+ /**
52
+ * https://tc39.es/ecma402/#sec-getoption
53
+ * @param opts
54
+ * @param prop
55
+ * @param type
56
+ * @param values
57
+ * @param fallback
58
+ */
59
+ function GetOption(opts, prop, type, values, fallback) {
60
+ if (typeof opts !== "object") throw new TypeError("Options must be an object");
61
+ let value = opts[prop];
62
+ if (value !== void 0) {
63
+ if (type !== "boolean" && type !== "string") throw new TypeError("invalid type");
64
+ if (type === "boolean") value = Boolean(value);
65
+ if (type === "string") value = ToString(value);
66
+ if (values !== void 0 && !values.filter((val) => val == value).length) throw new RangeError(`${value} is not within ${values.join(", ")}`);
67
+ return value;
68
+ }
69
+ return fallback;
70
+ }
71
+ //#endregion
72
+ //#region node_modules/.aspect_rules_js/@formatjs+fast-memoize@0.0.0/node_modules/@formatjs/fast-memoize/index.js
73
+ function memoize(fn, options) {
74
+ const cache = options && options.cache ? options.cache : cacheDefault;
75
+ const serializer = options && options.serializer ? options.serializer : serializerDefault;
76
+ return (options && options.strategy ? options.strategy : strategyDefault)(fn, {
77
+ cache,
78
+ serializer
79
+ });
80
+ }
81
+ function isPrimitive(value) {
82
+ return value == null || typeof value === "number" || typeof value === "boolean";
83
+ }
84
+ function monadic(fn, cache, serializer, arg) {
85
+ const cacheKey = isPrimitive(arg) ? arg : serializer(arg);
86
+ let computedValue = cache.get(cacheKey);
87
+ if (typeof computedValue === "undefined") {
88
+ computedValue = fn.call(this, arg);
89
+ cache.set(cacheKey, computedValue);
90
+ }
91
+ return computedValue;
92
+ }
93
+ function variadic(fn, cache, serializer) {
94
+ const args = Array.prototype.slice.call(arguments, 3);
95
+ const cacheKey = serializer(args);
96
+ let computedValue = cache.get(cacheKey);
97
+ if (typeof computedValue === "undefined") {
98
+ computedValue = fn.apply(this, args);
99
+ cache.set(cacheKey, computedValue);
100
+ }
101
+ return computedValue;
102
+ }
103
+ function assemble(fn, context, strategy, cache, serialize) {
104
+ return strategy.bind(context, fn, cache, serialize);
105
+ }
106
+ function strategyDefault(fn, options) {
107
+ const strategy = fn.length === 1 ? monadic : variadic;
108
+ return assemble(fn, this, strategy, options.cache.create(), options.serializer);
109
+ }
110
+ function strategyVariadic(fn, options) {
111
+ return assemble(fn, this, variadic, options.cache.create(), options.serializer);
112
+ }
113
+ function strategyMonadic(fn, options) {
114
+ return assemble(fn, this, monadic, options.cache.create(), options.serializer);
115
+ }
116
+ const serializerDefault = function() {
117
+ return JSON.stringify(arguments);
118
+ };
119
+ var ObjectWithoutPrototypeCache = class {
120
+ constructor() {
121
+ this.cache = Object.create(null);
122
+ }
123
+ get(key) {
124
+ return this.cache[key];
125
+ }
126
+ set(key, value) {
127
+ this.cache[key] = value;
128
+ }
129
+ };
130
+ const cacheDefault = { create: function create() {
131
+ return new ObjectWithoutPrototypeCache();
132
+ } };
133
+ const strategies = {
134
+ variadic: strategyVariadic,
135
+ monadic: strategyMonadic
136
+ };
137
+ //#endregion
138
+ //#region packages/ecma402-abstract/utils.js
139
+ /**
140
+ * 7.3.5 CreateDataProperty
141
+ * @param target
142
+ * @param name
143
+ * @param value
144
+ */
145
+ function createDataProperty(target, name, value) {
146
+ Object.defineProperty(target, name, {
147
+ configurable: true,
148
+ enumerable: true,
149
+ writable: true,
150
+ value
151
+ });
152
+ }
153
+ function invariant(condition, message, Err = Error) {
154
+ if (!condition) throw new Err(message);
155
+ }
156
+ memoize((...args) => new Intl.NumberFormat(...args), { strategy: strategies.variadic });
157
+ memoize((...args) => new Intl.PluralRules(...args), { strategy: strategies.variadic });
158
+ memoize((...args) => new Intl.Locale(...args), { strategy: strategies.variadic });
159
+ memoize((...args) => new Intl.ListFormat(...args), { strategy: strategies.variadic });
160
+ //#endregion
161
+ //#region packages/intl-locale/character-orders.generated.ts
162
+ const characterOrders = {
163
+ "aa": "left-to-right",
164
+ "aa-DJ": "left-to-right",
165
+ "aa-ER": "left-to-right",
166
+ "ab": "left-to-right",
167
+ "af": "left-to-right",
168
+ "af-NA": "left-to-right",
169
+ "agq": "left-to-right",
170
+ "ak": "left-to-right",
171
+ "am": "left-to-right",
172
+ "an": "left-to-right",
173
+ "ann": "left-to-right",
174
+ "apc": "right-to-left",
175
+ "ar": "right-to-left",
176
+ "ar-AE": "right-to-left",
177
+ "ar-BH": "right-to-left",
178
+ "ar-DJ": "right-to-left",
179
+ "ar-DZ": "right-to-left",
180
+ "ar-EG": "right-to-left",
181
+ "ar-EH": "right-to-left",
182
+ "ar-ER": "right-to-left",
183
+ "ar-IL": "right-to-left",
184
+ "ar-IQ": "right-to-left",
185
+ "ar-JO": "right-to-left",
186
+ "ar-KM": "right-to-left",
187
+ "ar-KW": "right-to-left",
188
+ "ar-LB": "right-to-left",
189
+ "ar-LY": "right-to-left",
190
+ "ar-MA": "right-to-left",
191
+ "ar-MR": "right-to-left",
192
+ "ar-OM": "right-to-left",
193
+ "ar-PS": "right-to-left",
194
+ "ar-QA": "right-to-left",
195
+ "ar-SA": "right-to-left",
196
+ "ar-SD": "right-to-left",
197
+ "ar-SO": "right-to-left",
198
+ "ar-SS": "right-to-left",
199
+ "ar-SY": "right-to-left",
200
+ "ar-TD": "right-to-left",
201
+ "ar-TN": "right-to-left",
202
+ "ar-YE": "right-to-left",
203
+ "arn": "left-to-right",
204
+ "as": "left-to-right",
205
+ "asa": "left-to-right",
206
+ "ast": "left-to-right",
207
+ "az": "left-to-right",
208
+ "az-Arab": "right-to-left",
209
+ "az-Arab-IQ": "right-to-left",
210
+ "az-Arab-TR": "right-to-left",
211
+ "az-Cyrl": "left-to-right",
212
+ "az-Latn": "left-to-right",
213
+ "ba": "left-to-right",
214
+ "bal": "right-to-left",
215
+ "bal-Arab": "right-to-left",
216
+ "bal-Latn": "left-to-right",
217
+ "bas": "left-to-right",
218
+ "be": "left-to-right",
219
+ "be-tarask": "left-to-right",
220
+ "bem": "left-to-right",
221
+ "bew": "left-to-right",
222
+ "bez": "left-to-right",
223
+ "bg": "left-to-right",
224
+ "bgc": "left-to-right",
225
+ "bgn": "right-to-left",
226
+ "bgn-AE": "right-to-left",
227
+ "bgn-AF": "right-to-left",
228
+ "bgn-IR": "right-to-left",
229
+ "bgn-OM": "right-to-left",
230
+ "bho": "left-to-right",
231
+ "blo": "left-to-right",
232
+ "blt": "left-to-right",
233
+ "bm": "left-to-right",
234
+ "bm-Nkoo": "right-to-left",
235
+ "bn": "left-to-right",
236
+ "bn-IN": "left-to-right",
237
+ "bo": "left-to-right",
238
+ "bo-IN": "left-to-right",
239
+ "bqi": "right-to-left",
240
+ "br": "left-to-right",
241
+ "brx": "left-to-right",
242
+ "bs": "left-to-right",
243
+ "bs-Cyrl": "left-to-right",
244
+ "bs-Latn": "left-to-right",
245
+ "bss": "left-to-right",
246
+ "bua": "left-to-right",
247
+ "byn": "left-to-right",
248
+ "ca": "left-to-right",
249
+ "ca-AD": "left-to-right",
250
+ "ca-ES-valencia": "left-to-right",
251
+ "ca-FR": "left-to-right",
252
+ "ca-IT": "left-to-right",
253
+ "cad": "left-to-right",
254
+ "cch": "left-to-right",
255
+ "ccp": "left-to-right",
256
+ "ccp-IN": "left-to-right",
257
+ "ce": "left-to-right",
258
+ "ceb": "left-to-right",
259
+ "cgg": "left-to-right",
260
+ "cho": "left-to-right",
261
+ "chr": "left-to-right",
262
+ "cic": "left-to-right",
263
+ "ckb": "right-to-left",
264
+ "ckb-IR": "right-to-left",
265
+ "co": "left-to-right",
266
+ "cop": "left-to-right",
267
+ "cs": "left-to-right",
268
+ "csw": "left-to-right",
269
+ "cu": "left-to-right",
270
+ "cv": "left-to-right",
271
+ "cy": "left-to-right",
272
+ "da": "left-to-right",
273
+ "da-GL": "left-to-right",
274
+ "dav": "left-to-right",
275
+ "de": "left-to-right",
276
+ "de-AT": "left-to-right",
277
+ "de-BE": "left-to-right",
278
+ "de-CH": "left-to-right",
279
+ "de-IT": "left-to-right",
280
+ "de-LI": "left-to-right",
281
+ "de-LU": "left-to-right",
282
+ "dje": "left-to-right",
283
+ "doi": "left-to-right",
284
+ "dsb": "left-to-right",
285
+ "dua": "left-to-right",
286
+ "dv": "right-to-left",
287
+ "dyo": "left-to-right",
288
+ "dz": "left-to-right",
289
+ "ebu": "left-to-right",
290
+ "ee": "left-to-right",
291
+ "ee-TG": "left-to-right",
292
+ "el": "left-to-right",
293
+ "el-CY": "left-to-right",
294
+ "el-polyton": "left-to-right",
295
+ "en": "left-to-right",
296
+ "en-001": "left-to-right",
297
+ "en-150": "left-to-right",
298
+ "en-AE": "left-to-right",
299
+ "en-AG": "left-to-right",
300
+ "en-AI": "left-to-right",
301
+ "en-AS": "left-to-right",
302
+ "en-AT": "left-to-right",
303
+ "en-AU": "left-to-right",
304
+ "en-BB": "left-to-right",
305
+ "en-BE": "left-to-right",
306
+ "en-BI": "left-to-right",
307
+ "en-BM": "left-to-right",
308
+ "en-BS": "left-to-right",
309
+ "en-BW": "left-to-right",
310
+ "en-BZ": "left-to-right",
311
+ "en-CA": "left-to-right",
312
+ "en-CC": "left-to-right",
313
+ "en-CH": "left-to-right",
314
+ "en-CK": "left-to-right",
315
+ "en-CM": "left-to-right",
316
+ "en-CX": "left-to-right",
317
+ "en-CY": "left-to-right",
318
+ "en-CZ": "left-to-right",
319
+ "en-DE": "left-to-right",
320
+ "en-DG": "left-to-right",
321
+ "en-DK": "left-to-right",
322
+ "en-DM": "left-to-right",
323
+ "en-Dsrt": "left-to-right",
324
+ "en-EE": "left-to-right",
325
+ "en-ER": "left-to-right",
326
+ "en-ES": "left-to-right",
327
+ "en-FI": "left-to-right",
328
+ "en-FJ": "left-to-right",
329
+ "en-FK": "left-to-right",
330
+ "en-FM": "left-to-right",
331
+ "en-FR": "left-to-right",
332
+ "en-GB": "left-to-right",
333
+ "en-GD": "left-to-right",
334
+ "en-GE": "left-to-right",
335
+ "en-GG": "left-to-right",
336
+ "en-GH": "left-to-right",
337
+ "en-GI": "left-to-right",
338
+ "en-GM": "left-to-right",
339
+ "en-GS": "left-to-right",
340
+ "en-GU": "left-to-right",
341
+ "en-GY": "left-to-right",
342
+ "en-HK": "left-to-right",
343
+ "en-HU": "left-to-right",
344
+ "en-ID": "left-to-right",
345
+ "en-IE": "left-to-right",
346
+ "en-IL": "left-to-right",
347
+ "en-IM": "left-to-right",
348
+ "en-IN": "left-to-right",
349
+ "en-IO": "left-to-right",
350
+ "en-IT": "left-to-right",
351
+ "en-JE": "left-to-right",
352
+ "en-JM": "left-to-right",
353
+ "en-JP": "left-to-right",
354
+ "en-KE": "left-to-right",
355
+ "en-KI": "left-to-right",
356
+ "en-KN": "left-to-right",
357
+ "en-KY": "left-to-right",
358
+ "en-LC": "left-to-right",
359
+ "en-LR": "left-to-right",
360
+ "en-LS": "left-to-right",
361
+ "en-LT": "left-to-right",
362
+ "en-LV": "left-to-right",
363
+ "en-MG": "left-to-right",
364
+ "en-MH": "left-to-right",
365
+ "en-MO": "left-to-right",
366
+ "en-MP": "left-to-right",
367
+ "en-MS": "left-to-right",
368
+ "en-MT": "left-to-right",
369
+ "en-MU": "left-to-right",
370
+ "en-MV": "left-to-right",
371
+ "en-MW": "left-to-right",
372
+ "en-MY": "left-to-right",
373
+ "en-NA": "left-to-right",
374
+ "en-NF": "left-to-right",
375
+ "en-NG": "left-to-right",
376
+ "en-NL": "left-to-right",
377
+ "en-NO": "left-to-right",
378
+ "en-NR": "left-to-right",
379
+ "en-NU": "left-to-right",
380
+ "en-NZ": "left-to-right",
381
+ "en-PG": "left-to-right",
382
+ "en-PH": "left-to-right",
383
+ "en-PK": "left-to-right",
384
+ "en-PL": "left-to-right",
385
+ "en-PN": "left-to-right",
386
+ "en-PR": "left-to-right",
387
+ "en-PT": "left-to-right",
388
+ "en-PW": "left-to-right",
389
+ "en-RO": "left-to-right",
390
+ "en-RW": "left-to-right",
391
+ "en-SB": "left-to-right",
392
+ "en-SC": "left-to-right",
393
+ "en-SD": "left-to-right",
394
+ "en-SE": "left-to-right",
395
+ "en-SG": "left-to-right",
396
+ "en-SH": "left-to-right",
397
+ "en-Shaw": "left-to-right",
398
+ "en-SI": "left-to-right",
399
+ "en-SK": "left-to-right",
400
+ "en-SL": "left-to-right",
401
+ "en-SS": "left-to-right",
402
+ "en-SX": "left-to-right",
403
+ "en-SZ": "left-to-right",
404
+ "en-TC": "left-to-right",
405
+ "en-TK": "left-to-right",
406
+ "en-TO": "left-to-right",
407
+ "en-TT": "left-to-right",
408
+ "en-TV": "left-to-right",
409
+ "en-TZ": "left-to-right",
410
+ "en-UA": "left-to-right",
411
+ "en-UG": "left-to-right",
412
+ "en-UM": "left-to-right",
413
+ "en-VC": "left-to-right",
414
+ "en-VG": "left-to-right",
415
+ "en-VI": "left-to-right",
416
+ "en-VU": "left-to-right",
417
+ "en-WS": "left-to-right",
418
+ "en-ZA": "left-to-right",
419
+ "en-ZM": "left-to-right",
420
+ "en-ZW": "left-to-right",
421
+ "eo": "left-to-right",
422
+ "es": "left-to-right",
423
+ "es-419": "left-to-right",
424
+ "es-AR": "left-to-right",
425
+ "es-BO": "left-to-right",
426
+ "es-BR": "left-to-right",
427
+ "es-BZ": "left-to-right",
428
+ "es-CL": "left-to-right",
429
+ "es-CO": "left-to-right",
430
+ "es-CR": "left-to-right",
431
+ "es-CU": "left-to-right",
432
+ "es-DO": "left-to-right",
433
+ "es-EA": "left-to-right",
434
+ "es-EC": "left-to-right",
435
+ "es-GQ": "left-to-right",
436
+ "es-GT": "left-to-right",
437
+ "es-HN": "left-to-right",
438
+ "es-IC": "left-to-right",
439
+ "es-MX": "left-to-right",
440
+ "es-NI": "left-to-right",
441
+ "es-PA": "left-to-right",
442
+ "es-PE": "left-to-right",
443
+ "es-PH": "left-to-right",
444
+ "es-PR": "left-to-right",
445
+ "es-PY": "left-to-right",
446
+ "es-SV": "left-to-right",
447
+ "es-US": "left-to-right",
448
+ "es-UY": "left-to-right",
449
+ "es-VE": "left-to-right",
450
+ "et": "left-to-right",
451
+ "eu": "left-to-right",
452
+ "ewo": "left-to-right",
453
+ "fa": "right-to-left",
454
+ "fa-AF": "right-to-left",
455
+ "ff": "left-to-right",
456
+ "ff-Adlm": "right-to-left",
457
+ "ff-Adlm-BF": "right-to-left",
458
+ "ff-Adlm-CM": "right-to-left",
459
+ "ff-Adlm-GH": "right-to-left",
460
+ "ff-Adlm-GM": "right-to-left",
461
+ "ff-Adlm-GW": "right-to-left",
462
+ "ff-Adlm-LR": "right-to-left",
463
+ "ff-Adlm-MR": "right-to-left",
464
+ "ff-Adlm-NE": "right-to-left",
465
+ "ff-Adlm-NG": "right-to-left",
466
+ "ff-Adlm-SL": "right-to-left",
467
+ "ff-Adlm-SN": "right-to-left",
468
+ "ff-Latn": "left-to-right",
469
+ "ff-Latn-BF": "left-to-right",
470
+ "ff-Latn-CM": "left-to-right",
471
+ "ff-Latn-GH": "left-to-right",
472
+ "ff-Latn-GM": "left-to-right",
473
+ "ff-Latn-GN": "left-to-right",
474
+ "ff-Latn-GW": "left-to-right",
475
+ "ff-Latn-LR": "left-to-right",
476
+ "ff-Latn-MR": "left-to-right",
477
+ "ff-Latn-NE": "left-to-right",
478
+ "ff-Latn-NG": "left-to-right",
479
+ "ff-Latn-SL": "left-to-right",
480
+ "fi": "left-to-right",
481
+ "fil": "left-to-right",
482
+ "fo": "left-to-right",
483
+ "fo-DK": "left-to-right",
484
+ "fr": "left-to-right",
485
+ "fr-BE": "left-to-right",
486
+ "fr-BF": "left-to-right",
487
+ "fr-BI": "left-to-right",
488
+ "fr-BJ": "left-to-right",
489
+ "fr-BL": "left-to-right",
490
+ "fr-CA": "left-to-right",
491
+ "fr-CD": "left-to-right",
492
+ "fr-CF": "left-to-right",
493
+ "fr-CG": "left-to-right",
494
+ "fr-CH": "left-to-right",
495
+ "fr-CI": "left-to-right",
496
+ "fr-CM": "left-to-right",
497
+ "fr-DJ": "left-to-right",
498
+ "fr-DZ": "left-to-right",
499
+ "fr-GA": "left-to-right",
500
+ "fr-GF": "left-to-right",
501
+ "fr-GN": "left-to-right",
502
+ "fr-GP": "left-to-right",
503
+ "fr-GQ": "left-to-right",
504
+ "fr-HT": "left-to-right",
505
+ "fr-KM": "left-to-right",
506
+ "fr-LU": "left-to-right",
507
+ "fr-MA": "left-to-right",
508
+ "fr-MC": "left-to-right",
509
+ "fr-MF": "left-to-right",
510
+ "fr-MG": "left-to-right",
511
+ "fr-ML": "left-to-right",
512
+ "fr-MQ": "left-to-right",
513
+ "fr-MR": "left-to-right",
514
+ "fr-MU": "left-to-right",
515
+ "fr-NC": "left-to-right",
516
+ "fr-NE": "left-to-right",
517
+ "fr-PF": "left-to-right",
518
+ "fr-PM": "left-to-right",
519
+ "fr-RE": "left-to-right",
520
+ "fr-RW": "left-to-right",
521
+ "fr-SC": "left-to-right",
522
+ "fr-SN": "left-to-right",
523
+ "fr-SY": "left-to-right",
524
+ "fr-TD": "left-to-right",
525
+ "fr-TG": "left-to-right",
526
+ "fr-TN": "left-to-right",
527
+ "fr-VU": "left-to-right",
528
+ "fr-WF": "left-to-right",
529
+ "fr-YT": "left-to-right",
530
+ "frr": "left-to-right",
531
+ "fur": "left-to-right",
532
+ "fy": "left-to-right",
533
+ "ga": "left-to-right",
534
+ "ga-GB": "left-to-right",
535
+ "gaa": "left-to-right",
536
+ "gd": "left-to-right",
537
+ "gez": "left-to-right",
538
+ "gez-ER": "left-to-right",
539
+ "gl": "left-to-right",
540
+ "gn": "left-to-right",
541
+ "gsw": "left-to-right",
542
+ "gsw-FR": "left-to-right",
543
+ "gsw-LI": "left-to-right",
544
+ "gu": "left-to-right",
545
+ "guz": "left-to-right",
546
+ "gv": "left-to-right",
547
+ "ha": "left-to-right",
548
+ "ha-Arab": "right-to-left",
549
+ "ha-Arab-SD": "right-to-left",
550
+ "ha-GH": "left-to-right",
551
+ "ha-NE": "left-to-right",
552
+ "haw": "left-to-right",
553
+ "he": "right-to-left",
554
+ "hi": "left-to-right",
555
+ "hi-Latn": "left-to-right",
556
+ "hnj": "left-to-right",
557
+ "hnj-Hmnp": "left-to-right",
558
+ "hr": "left-to-right",
559
+ "hr-BA": "left-to-right",
560
+ "hsb": "left-to-right",
561
+ "ht": "left-to-right",
562
+ "hu": "left-to-right",
563
+ "hy": "left-to-right",
564
+ "ia": "left-to-right",
565
+ "id": "left-to-right",
566
+ "ie": "left-to-right",
567
+ "ig": "left-to-right",
568
+ "ii": "left-to-right",
569
+ "io": "left-to-right",
570
+ "is": "left-to-right",
571
+ "it": "left-to-right",
572
+ "it-CH": "left-to-right",
573
+ "it-SM": "left-to-right",
574
+ "it-VA": "left-to-right",
575
+ "iu": "left-to-right",
576
+ "iu-Latn": "left-to-right",
577
+ "ja": "left-to-right",
578
+ "jbo": "left-to-right",
579
+ "jgo": "left-to-right",
580
+ "jmc": "left-to-right",
581
+ "jv": "left-to-right",
582
+ "ka": "left-to-right",
583
+ "kaa": "left-to-right",
584
+ "kaa-Cyrl": "left-to-right",
585
+ "kaa-Latn": "left-to-right",
586
+ "kab": "left-to-right",
587
+ "kaj": "left-to-right",
588
+ "kam": "left-to-right",
589
+ "kcg": "left-to-right",
590
+ "kde": "left-to-right",
591
+ "kea": "left-to-right",
592
+ "kek": "left-to-right",
593
+ "ken": "left-to-right",
594
+ "kgp": "left-to-right",
595
+ "khq": "left-to-right",
596
+ "ki": "left-to-right",
597
+ "kk": "left-to-right",
598
+ "kk-Arab": "right-to-left",
599
+ "kk-Cyrl": "left-to-right",
600
+ "kk-KZ": "left-to-right",
601
+ "kkj": "left-to-right",
602
+ "kl": "left-to-right",
603
+ "kln": "left-to-right",
604
+ "km": "left-to-right",
605
+ "kn": "left-to-right",
606
+ "ko": "left-to-right",
607
+ "ko-CN": "left-to-right",
608
+ "ko-KP": "left-to-right",
609
+ "kok": "left-to-right",
610
+ "kok-Deva": "left-to-right",
611
+ "kok-Latn": "left-to-right",
612
+ "kpe": "left-to-right",
613
+ "kpe-GN": "left-to-right",
614
+ "ks": "right-to-left",
615
+ "ks-Arab": "right-to-left",
616
+ "ks-Deva": "left-to-right",
617
+ "ksb": "left-to-right",
618
+ "ksf": "left-to-right",
619
+ "ksh": "left-to-right",
620
+ "ku": "left-to-right",
621
+ "ku-Arab": "right-to-left",
622
+ "ku-Arab-IR": "right-to-left",
623
+ "ku-Latn": "left-to-right",
624
+ "ku-Latn-IQ": "left-to-right",
625
+ "ku-Latn-SY": "left-to-right",
626
+ "ku-TR": "left-to-right",
627
+ "kw": "left-to-right",
628
+ "kxv": "left-to-right",
629
+ "kxv-Deva": "left-to-right",
630
+ "kxv-Latn": "left-to-right",
631
+ "kxv-Orya": "left-to-right",
632
+ "kxv-Telu": "left-to-right",
633
+ "ky": "left-to-right",
634
+ "la": "left-to-right",
635
+ "lag": "left-to-right",
636
+ "lb": "left-to-right",
637
+ "lg": "left-to-right",
638
+ "lij": "left-to-right",
639
+ "lkt": "left-to-right",
640
+ "lld": "left-to-right",
641
+ "lmo": "left-to-right",
642
+ "ln": "left-to-right",
643
+ "ln-AO": "left-to-right",
644
+ "ln-CF": "left-to-right",
645
+ "ln-CG": "left-to-right",
646
+ "lo": "left-to-right",
647
+ "lrc": "right-to-left",
648
+ "lrc-IQ": "right-to-left",
649
+ "lt": "left-to-right",
650
+ "ltg": "left-to-right",
651
+ "lu": "left-to-right",
652
+ "luo": "left-to-right",
653
+ "luy": "left-to-right",
654
+ "lv": "left-to-right",
655
+ "lzz": "left-to-right",
656
+ "mai": "left-to-right",
657
+ "mas": "left-to-right",
658
+ "mas-TZ": "left-to-right",
659
+ "mdf": "left-to-right",
660
+ "mer": "left-to-right",
661
+ "mfe": "left-to-right",
662
+ "mg": "left-to-right",
663
+ "mgh": "left-to-right",
664
+ "mgo": "left-to-right",
665
+ "mhn": "left-to-right",
666
+ "mi": "left-to-right",
667
+ "mic": "left-to-right",
668
+ "mk": "left-to-right",
669
+ "ml": "left-to-right",
670
+ "mn": "left-to-right",
671
+ "mn-Mong": "top-to-bottom",
672
+ "mn-Mong-MN": "top-to-bottom",
673
+ "mni": "left-to-right",
674
+ "mni-Beng": "left-to-right",
675
+ "mni-Mtei": "left-to-right",
676
+ "moh": "left-to-right",
677
+ "mr": "left-to-right",
678
+ "ms": "left-to-right",
679
+ "ms-Arab": "right-to-left",
680
+ "ms-Arab-BN": "right-to-left",
681
+ "ms-BN": "left-to-right",
682
+ "ms-ID": "left-to-right",
683
+ "ms-SG": "left-to-right",
684
+ "mt": "left-to-right",
685
+ "mua": "left-to-right",
686
+ "mus": "left-to-right",
687
+ "mww": "left-to-right",
688
+ "mww-Hmnp": "left-to-right",
689
+ "my": "left-to-right",
690
+ "myv": "left-to-right",
691
+ "mzn": "right-to-left",
692
+ "naq": "left-to-right",
693
+ "nb": "left-to-right",
694
+ "nb-SJ": "left-to-right",
695
+ "nd": "left-to-right",
696
+ "nds": "left-to-right",
697
+ "nds-NL": "left-to-right",
698
+ "ne": "left-to-right",
699
+ "ne-IN": "left-to-right",
700
+ "nl": "left-to-right",
701
+ "nl-AW": "left-to-right",
702
+ "nl-BE": "left-to-right",
703
+ "nl-BQ": "left-to-right",
704
+ "nl-CW": "left-to-right",
705
+ "nl-SR": "left-to-right",
706
+ "nl-SX": "left-to-right",
707
+ "nmg": "left-to-right",
708
+ "nn": "left-to-right",
709
+ "nnh": "left-to-right",
710
+ "no": "left-to-right",
711
+ "nqo": "right-to-left",
712
+ "nr": "left-to-right",
713
+ "nso": "left-to-right",
714
+ "nus": "left-to-right",
715
+ "nv": "left-to-right",
716
+ "ny": "left-to-right",
717
+ "nyn": "left-to-right",
718
+ "oc": "left-to-right",
719
+ "oc-ES": "left-to-right",
720
+ "oka": "left-to-right",
721
+ "oka-US": "left-to-right",
722
+ "om": "left-to-right",
723
+ "om-KE": "left-to-right",
724
+ "or": "left-to-right",
725
+ "os": "left-to-right",
726
+ "os-RU": "left-to-right",
727
+ "osa": "left-to-right",
728
+ "pa": "left-to-right",
729
+ "pa-Arab": "right-to-left",
730
+ "pa-Guru": "left-to-right",
731
+ "pap": "left-to-right",
732
+ "pap-AW": "left-to-right",
733
+ "pcm": "left-to-right",
734
+ "pi": "left-to-right",
735
+ "pi-Latn": "left-to-right",
736
+ "pis": "left-to-right",
737
+ "pl": "left-to-right",
738
+ "pms": "left-to-right",
739
+ "prg": "left-to-right",
740
+ "ps": "right-to-left",
741
+ "ps-PK": "right-to-left",
742
+ "pt": "left-to-right",
743
+ "pt-AO": "left-to-right",
744
+ "pt-CH": "left-to-right",
745
+ "pt-CV": "left-to-right",
746
+ "pt-GQ": "left-to-right",
747
+ "pt-GW": "left-to-right",
748
+ "pt-LU": "left-to-right",
749
+ "pt-MO": "left-to-right",
750
+ "pt-MZ": "left-to-right",
751
+ "pt-PT": "left-to-right",
752
+ "pt-ST": "left-to-right",
753
+ "pt-TL": "left-to-right",
754
+ "qu": "left-to-right",
755
+ "qu-BO": "left-to-right",
756
+ "qu-EC": "left-to-right",
757
+ "quc": "left-to-right",
758
+ "raj": "left-to-right",
759
+ "rhg": "right-to-left",
760
+ "rhg-Rohg": "right-to-left",
761
+ "rhg-Rohg-BD": "right-to-left",
762
+ "rif": "left-to-right",
763
+ "rm": "left-to-right",
764
+ "rn": "left-to-right",
765
+ "ro": "left-to-right",
766
+ "ro-MD": "left-to-right",
767
+ "rof": "left-to-right",
768
+ "ru": "left-to-right",
769
+ "ru-BY": "left-to-right",
770
+ "ru-KG": "left-to-right",
771
+ "ru-KZ": "left-to-right",
772
+ "ru-MD": "left-to-right",
773
+ "ru-UA": "left-to-right",
774
+ "rw": "left-to-right",
775
+ "rwk": "left-to-right",
776
+ "sa": "left-to-right",
777
+ "sah": "left-to-right",
778
+ "saq": "left-to-right",
779
+ "sat": "left-to-right",
780
+ "sat-Deva": "left-to-right",
781
+ "sat-Olck": "left-to-right",
782
+ "sbp": "left-to-right",
783
+ "sc": "left-to-right",
784
+ "scn": "left-to-right",
785
+ "sd": "right-to-left",
786
+ "sd-Arab": "right-to-left",
787
+ "sd-Deva": "left-to-right",
788
+ "sdh": "right-to-left",
789
+ "sdh-IQ": "right-to-left",
790
+ "se": "left-to-right",
791
+ "se-FI": "left-to-right",
792
+ "se-SE": "left-to-right",
793
+ "seh": "left-to-right",
794
+ "ses": "left-to-right",
795
+ "sg": "left-to-right",
796
+ "sgs": "left-to-right",
797
+ "shi": "left-to-right",
798
+ "shi-Latn": "left-to-right",
799
+ "shi-Tfng": "left-to-right",
800
+ "shn": "left-to-right",
801
+ "shn-TH": "left-to-right",
802
+ "si": "left-to-right",
803
+ "sid": "left-to-right",
804
+ "sk": "left-to-right",
805
+ "skr": "right-to-left",
806
+ "sl": "left-to-right",
807
+ "sma": "left-to-right",
808
+ "sma-NO": "left-to-right",
809
+ "smj": "left-to-right",
810
+ "smj-NO": "left-to-right",
811
+ "smn": "left-to-right",
812
+ "sms": "left-to-right",
813
+ "sn": "left-to-right",
814
+ "so": "left-to-right",
815
+ "so-DJ": "left-to-right",
816
+ "so-ET": "left-to-right",
817
+ "so-KE": "left-to-right",
818
+ "sq": "left-to-right",
819
+ "sq-MK": "left-to-right",
820
+ "sq-XK": "left-to-right",
821
+ "sr": "left-to-right",
822
+ "sr-Cyrl": "left-to-right",
823
+ "sr-Cyrl-BA": "left-to-right",
824
+ "sr-Cyrl-ME": "left-to-right",
825
+ "sr-Cyrl-XK": "left-to-right",
826
+ "sr-Latn": "left-to-right",
827
+ "sr-Latn-BA": "left-to-right",
828
+ "sr-Latn-ME": "left-to-right",
829
+ "sr-Latn-XK": "left-to-right",
830
+ "ss": "left-to-right",
831
+ "ss-SZ": "left-to-right",
832
+ "ssy": "left-to-right",
833
+ "st": "left-to-right",
834
+ "st-LS": "left-to-right",
835
+ "su": "left-to-right",
836
+ "su-Latn": "left-to-right",
837
+ "suz": "left-to-right",
838
+ "suz-Deva": "left-to-right",
839
+ "suz-Sunu": "left-to-right",
840
+ "sv": "left-to-right",
841
+ "sv-AX": "left-to-right",
842
+ "sv-FI": "left-to-right",
843
+ "sw": "left-to-right",
844
+ "sw-CD": "left-to-right",
845
+ "sw-KE": "left-to-right",
846
+ "sw-UG": "left-to-right",
847
+ "syr": "right-to-left",
848
+ "syr-SY": "right-to-left",
849
+ "szl": "left-to-right",
850
+ "ta": "left-to-right",
851
+ "ta-LK": "left-to-right",
852
+ "ta-MY": "left-to-right",
853
+ "ta-SG": "left-to-right",
854
+ "te": "left-to-right",
855
+ "teo": "left-to-right",
856
+ "teo-KE": "left-to-right",
857
+ "tg": "left-to-right",
858
+ "th": "left-to-right",
859
+ "ti": "left-to-right",
860
+ "ti-ER": "left-to-right",
861
+ "tig": "left-to-right",
862
+ "tk": "left-to-right",
863
+ "tn": "left-to-right",
864
+ "tn-BW": "left-to-right",
865
+ "to": "left-to-right",
866
+ "tok": "left-to-right",
867
+ "tpi": "left-to-right",
868
+ "tr": "left-to-right",
869
+ "tr-CY": "left-to-right",
870
+ "trv": "left-to-right",
871
+ "trw": "right-to-left",
872
+ "ts": "left-to-right",
873
+ "tt": "left-to-right",
874
+ "twq": "left-to-right",
875
+ "tyv": "left-to-right",
876
+ "tzm": "left-to-right",
877
+ "ug": "right-to-left",
878
+ "uk": "left-to-right",
879
+ "und": "left-to-right",
880
+ "ur": "right-to-left",
881
+ "ur-IN": "right-to-left",
882
+ "uz": "left-to-right",
883
+ "uz-Arab": "right-to-left",
884
+ "uz-Cyrl": "left-to-right",
885
+ "uz-Latn": "left-to-right",
886
+ "vai": "left-to-right",
887
+ "vai-Latn": "left-to-right",
888
+ "vai-Vaii": "left-to-right",
889
+ "ve": "left-to-right",
890
+ "vec": "left-to-right",
891
+ "vi": "left-to-right",
892
+ "vmw": "left-to-right",
893
+ "vo": "left-to-right",
894
+ "vun": "left-to-right",
895
+ "wa": "left-to-right",
896
+ "wae": "left-to-right",
897
+ "wal": "left-to-right",
898
+ "wbp": "left-to-right",
899
+ "wo": "left-to-right",
900
+ "xh": "left-to-right",
901
+ "xnr": "left-to-right",
902
+ "xog": "left-to-right",
903
+ "yav": "left-to-right",
904
+ "yi": "right-to-left",
905
+ "yo": "left-to-right",
906
+ "yo-BJ": "left-to-right",
907
+ "yrl": "left-to-right",
908
+ "yrl-CO": "left-to-right",
909
+ "yrl-VE": "left-to-right",
910
+ "yue": "left-to-right",
911
+ "yue-Hans": "left-to-right",
912
+ "yue-Hant": "left-to-right",
913
+ "yue-Hant-CN": "left-to-right",
914
+ "yue-Hant-MO": "left-to-right",
915
+ "za": "left-to-right",
916
+ "zgh": "left-to-right",
917
+ "zh": "left-to-right",
918
+ "zh-Hans": "left-to-right",
919
+ "zh-Hans-HK": "left-to-right",
920
+ "zh-Hans-MO": "left-to-right",
921
+ "zh-Hans-MY": "left-to-right",
922
+ "zh-Hans-SG": "left-to-right",
923
+ "zh-Hant": "left-to-right",
924
+ "zh-Hant-HK": "left-to-right",
925
+ "zh-Hant-MO": "left-to-right",
926
+ "zh-Hant-MY": "left-to-right",
927
+ "zh-Latn": "left-to-right",
928
+ "zu": "left-to-right"
929
+ };
930
+ //#endregion
931
+ //#region packages/intl-locale/get_internal_slots.ts
932
+ const internalSlotMap = /* @__PURE__ */ new WeakMap();
933
+ function getInternalSlots(x, internalSlotsList = []) {
934
+ let internalSlots = internalSlotMap.get(x);
935
+ if (!internalSlots) {
936
+ internalSlots = Object.create(null, internalSlotsList.reduce((all, prop) => {
937
+ all[prop] = {
938
+ enumerable: false,
939
+ writable: true,
940
+ configurable: true
941
+ };
942
+ return all;
943
+ }, {}));
944
+ internalSlotMap.set(x, internalSlots);
945
+ }
946
+ return internalSlots;
947
+ }
948
+ //#endregion
949
+ //#region packages/intl-locale/numbering-systems.generated.ts
950
+ const numberingSystems = {
951
+ "aa": ["latn"],
952
+ "aa-DJ": ["latn"],
953
+ "aa-ER": ["latn"],
954
+ "ab": ["latn"],
955
+ "af": ["latn"],
956
+ "af-NA": ["latn"],
957
+ "agq": ["latn"],
958
+ "ak": ["latn"],
959
+ "am": ["latn", "ethi"],
960
+ "an": ["latn"],
961
+ "ann": ["latn"],
962
+ "apc": ["latn"],
963
+ "ar": ["latn", "arab"],
964
+ "ar-AE": ["latn", "arab"],
965
+ "ar-BH": ["arab"],
966
+ "ar-DJ": ["arab"],
967
+ "ar-DZ": ["latn", "arab"],
968
+ "ar-EG": ["arab"],
969
+ "ar-EH": ["latn", "arab"],
970
+ "ar-ER": ["arab"],
971
+ "ar-IL": ["arab"],
972
+ "ar-IQ": ["arab"],
973
+ "ar-JO": ["arab"],
974
+ "ar-KM": ["arab"],
975
+ "ar-KW": ["arab"],
976
+ "ar-LB": ["arab"],
977
+ "ar-LY": ["latn", "arab"],
978
+ "ar-MA": ["latn", "arab"],
979
+ "ar-MR": ["arab"],
980
+ "ar-OM": ["arab"],
981
+ "ar-PS": ["arab"],
982
+ "ar-QA": ["arab"],
983
+ "ar-SA": ["arab"],
984
+ "ar-SD": ["arab"],
985
+ "ar-SO": ["arab"],
986
+ "ar-SS": ["arab"],
987
+ "ar-SY": ["arab"],
988
+ "ar-TD": ["arab"],
989
+ "ar-TN": ["latn", "arab"],
990
+ "ar-YE": ["arab"],
991
+ "arn": ["latn"],
992
+ "as": ["beng"],
993
+ "asa": ["latn"],
994
+ "ast": ["latn"],
995
+ "az": ["latn"],
996
+ "az-Arab": ["arabext"],
997
+ "az-Arab-IQ": ["arabext"],
998
+ "az-Arab-TR": ["arabext"],
999
+ "az-Cyrl": ["latn"],
1000
+ "az-Latn": ["latn"],
1001
+ "ba": ["latn"],
1002
+ "bal": ["latn"],
1003
+ "bal-Arab": ["latn"],
1004
+ "bal-Latn": ["latn"],
1005
+ "bas": ["latn"],
1006
+ "be": ["latn"],
1007
+ "be-tarask": ["latn"],
1008
+ "bem": ["latn"],
1009
+ "bew": ["latn"],
1010
+ "bez": ["latn"],
1011
+ "bg": ["latn"],
1012
+ "bgc": ["deva", "latn"],
1013
+ "bgn": ["arabext"],
1014
+ "bgn-AE": ["arabext"],
1015
+ "bgn-AF": ["arabext"],
1016
+ "bgn-IR": ["arabext"],
1017
+ "bgn-OM": ["arabext"],
1018
+ "bho": ["deva", "latn"],
1019
+ "blo": ["latn"],
1020
+ "blt": ["latn"],
1021
+ "bm": ["latn"],
1022
+ "bm-Nkoo": ["latn", "nkoo"],
1023
+ "bn": ["beng"],
1024
+ "bn-IN": ["beng"],
1025
+ "bo": ["latn", "tibt"],
1026
+ "bo-IN": ["latn", "tibt"],
1027
+ "bqi": ["latn"],
1028
+ "br": ["latn"],
1029
+ "brx": ["latn", "deva"],
1030
+ "bs": ["latn"],
1031
+ "bs-Cyrl": ["latn"],
1032
+ "bs-Latn": ["latn"],
1033
+ "bss": ["latn"],
1034
+ "bua": ["latn"],
1035
+ "byn": ["latn", "ethi"],
1036
+ "ca": ["latn"],
1037
+ "ca-AD": ["latn"],
1038
+ "ca-ES-valencia": ["latn"],
1039
+ "ca-FR": ["latn"],
1040
+ "ca-IT": ["latn"],
1041
+ "cad": ["latn"],
1042
+ "cch": ["latn"],
1043
+ "ccp": ["cakm"],
1044
+ "ccp-IN": ["cakm"],
1045
+ "ce": ["latn"],
1046
+ "ceb": ["latn"],
1047
+ "cgg": ["latn"],
1048
+ "cho": ["latn"],
1049
+ "chr": ["latn"],
1050
+ "cic": ["latn"],
1051
+ "ckb": ["arab"],
1052
+ "ckb-IR": ["arab"],
1053
+ "co": ["latn"],
1054
+ "cop": ["latn"],
1055
+ "cs": ["latn"],
1056
+ "csw": ["latn"],
1057
+ "cu": ["latn", "cyrl"],
1058
+ "cv": ["latn"],
1059
+ "cy": ["latn"],
1060
+ "da": ["latn"],
1061
+ "da-GL": ["latn"],
1062
+ "dav": ["latn"],
1063
+ "de": ["latn"],
1064
+ "de-AT": ["latn"],
1065
+ "de-BE": ["latn"],
1066
+ "de-CH": ["latn"],
1067
+ "de-IT": ["latn"],
1068
+ "de-LI": ["latn"],
1069
+ "de-LU": ["latn"],
1070
+ "dje": ["latn"],
1071
+ "doi": ["latn", "deva"],
1072
+ "dsb": ["latn"],
1073
+ "dua": ["latn"],
1074
+ "dv": ["latn", "arab"],
1075
+ "dyo": ["latn"],
1076
+ "dz": ["tibt"],
1077
+ "ebu": ["latn"],
1078
+ "ee": ["latn"],
1079
+ "ee-TG": ["latn"],
1080
+ "el": ["latn", "grek"],
1081
+ "el-CY": ["latn", "grek"],
1082
+ "el-polyton": ["latn", "grek"],
1083
+ "en": ["latn"],
1084
+ "en-001": ["latn"],
1085
+ "en-150": ["latn"],
1086
+ "en-AE": ["latn"],
1087
+ "en-AG": ["latn"],
1088
+ "en-AI": ["latn"],
1089
+ "en-AS": ["latn"],
1090
+ "en-AT": ["latn"],
1091
+ "en-AU": ["latn"],
1092
+ "en-BB": ["latn"],
1093
+ "en-BE": ["latn"],
1094
+ "en-BI": ["latn"],
1095
+ "en-BM": ["latn"],
1096
+ "en-BS": ["latn"],
1097
+ "en-BW": ["latn"],
1098
+ "en-BZ": ["latn"],
1099
+ "en-CA": ["latn"],
1100
+ "en-CC": ["latn"],
1101
+ "en-CH": ["latn"],
1102
+ "en-CK": ["latn"],
1103
+ "en-CM": ["latn"],
1104
+ "en-CX": ["latn"],
1105
+ "en-CY": ["latn"],
1106
+ "en-CZ": ["latn"],
1107
+ "en-DE": ["latn"],
1108
+ "en-DG": ["latn"],
1109
+ "en-DK": ["latn"],
1110
+ "en-DM": ["latn"],
1111
+ "en-Dsrt": ["latn"],
1112
+ "en-EE": ["latn"],
1113
+ "en-ER": ["latn"],
1114
+ "en-ES": ["latn"],
1115
+ "en-FI": ["latn"],
1116
+ "en-FJ": ["latn"],
1117
+ "en-FK": ["latn"],
1118
+ "en-FM": ["latn"],
1119
+ "en-FR": ["latn"],
1120
+ "en-GB": ["latn"],
1121
+ "en-GD": ["latn"],
1122
+ "en-GE": ["latn"],
1123
+ "en-GG": ["latn"],
1124
+ "en-GH": ["latn"],
1125
+ "en-GI": ["latn"],
1126
+ "en-GM": ["latn"],
1127
+ "en-GS": ["latn"],
1128
+ "en-GU": ["latn"],
1129
+ "en-GY": ["latn"],
1130
+ "en-HK": ["latn"],
1131
+ "en-HU": ["latn"],
1132
+ "en-ID": ["latn"],
1133
+ "en-IE": ["latn"],
1134
+ "en-IL": ["latn"],
1135
+ "en-IM": ["latn"],
1136
+ "en-IN": ["latn"],
1137
+ "en-IO": ["latn"],
1138
+ "en-IT": ["latn"],
1139
+ "en-JE": ["latn"],
1140
+ "en-JM": ["latn"],
1141
+ "en-JP": ["latn"],
1142
+ "en-KE": ["latn"],
1143
+ "en-KI": ["latn"],
1144
+ "en-KN": ["latn"],
1145
+ "en-KY": ["latn"],
1146
+ "en-LC": ["latn"],
1147
+ "en-LR": ["latn"],
1148
+ "en-LS": ["latn"],
1149
+ "en-LT": ["latn"],
1150
+ "en-LV": ["latn"],
1151
+ "en-MG": ["latn"],
1152
+ "en-MH": ["latn"],
1153
+ "en-MO": ["latn"],
1154
+ "en-MP": ["latn"],
1155
+ "en-MS": ["latn"],
1156
+ "en-MT": ["latn"],
1157
+ "en-MU": ["latn"],
1158
+ "en-MV": ["latn"],
1159
+ "en-MW": ["latn"],
1160
+ "en-MY": ["latn"],
1161
+ "en-NA": ["latn"],
1162
+ "en-NF": ["latn"],
1163
+ "en-NG": ["latn"],
1164
+ "en-NL": ["latn"],
1165
+ "en-NO": ["latn"],
1166
+ "en-NR": ["latn"],
1167
+ "en-NU": ["latn"],
1168
+ "en-NZ": ["latn"],
1169
+ "en-PG": ["latn"],
1170
+ "en-PH": ["latn"],
1171
+ "en-PK": ["latn"],
1172
+ "en-PL": ["latn"],
1173
+ "en-PN": ["latn"],
1174
+ "en-PR": ["latn"],
1175
+ "en-PT": ["latn"],
1176
+ "en-PW": ["latn"],
1177
+ "en-RO": ["latn"],
1178
+ "en-RW": ["latn"],
1179
+ "en-SB": ["latn"],
1180
+ "en-SC": ["latn"],
1181
+ "en-SD": ["latn"],
1182
+ "en-SE": ["latn"],
1183
+ "en-SG": ["latn"],
1184
+ "en-SH": ["latn"],
1185
+ "en-SI": ["latn"],
1186
+ "en-SK": ["latn"],
1187
+ "en-SL": ["latn"],
1188
+ "en-SS": ["latn"],
1189
+ "en-SX": ["latn"],
1190
+ "en-SZ": ["latn"],
1191
+ "en-Shaw": ["latn"],
1192
+ "en-TC": ["latn"],
1193
+ "en-TK": ["latn"],
1194
+ "en-TO": ["latn"],
1195
+ "en-TT": ["latn"],
1196
+ "en-TV": ["latn"],
1197
+ "en-TZ": ["latn"],
1198
+ "en-UA": ["latn"],
1199
+ "en-UG": ["latn"],
1200
+ "en-UM": ["latn"],
1201
+ "en-VC": ["latn"],
1202
+ "en-VG": ["latn"],
1203
+ "en-VI": ["latn"],
1204
+ "en-VU": ["latn"],
1205
+ "en-WS": ["latn"],
1206
+ "en-ZA": ["latn"],
1207
+ "en-ZM": ["latn"],
1208
+ "en-ZW": ["latn"],
1209
+ "eo": ["latn"],
1210
+ "es": ["latn"],
1211
+ "es-419": ["latn"],
1212
+ "es-AR": ["latn"],
1213
+ "es-BO": ["latn"],
1214
+ "es-BR": ["latn"],
1215
+ "es-BZ": ["latn"],
1216
+ "es-CL": ["latn"],
1217
+ "es-CO": ["latn"],
1218
+ "es-CR": ["latn"],
1219
+ "es-CU": ["latn"],
1220
+ "es-DO": ["latn"],
1221
+ "es-EA": ["latn"],
1222
+ "es-EC": ["latn"],
1223
+ "es-GQ": ["latn"],
1224
+ "es-GT": ["latn"],
1225
+ "es-HN": ["latn"],
1226
+ "es-IC": ["latn"],
1227
+ "es-MX": ["latn"],
1228
+ "es-NI": ["latn"],
1229
+ "es-PA": ["latn"],
1230
+ "es-PE": ["latn"],
1231
+ "es-PH": ["latn"],
1232
+ "es-PR": ["latn"],
1233
+ "es-PY": ["latn"],
1234
+ "es-SV": ["latn"],
1235
+ "es-US": ["latn"],
1236
+ "es-UY": ["latn"],
1237
+ "es-VE": ["latn"],
1238
+ "et": ["latn"],
1239
+ "eu": ["latn"],
1240
+ "ewo": ["latn"],
1241
+ "fa": ["arabext"],
1242
+ "fa-AF": ["arabext"],
1243
+ "ff": ["latn"],
1244
+ "ff-Adlm": ["adlm"],
1245
+ "ff-Adlm-BF": ["adlm"],
1246
+ "ff-Adlm-CM": ["adlm"],
1247
+ "ff-Adlm-GH": ["adlm"],
1248
+ "ff-Adlm-GM": ["adlm"],
1249
+ "ff-Adlm-GW": ["adlm"],
1250
+ "ff-Adlm-LR": ["adlm"],
1251
+ "ff-Adlm-MR": ["adlm"],
1252
+ "ff-Adlm-NE": ["adlm"],
1253
+ "ff-Adlm-NG": ["adlm"],
1254
+ "ff-Adlm-SL": ["adlm"],
1255
+ "ff-Adlm-SN": ["adlm"],
1256
+ "ff-Latn": ["latn"],
1257
+ "ff-Latn-BF": ["latn"],
1258
+ "ff-Latn-CM": ["latn"],
1259
+ "ff-Latn-GH": ["latn"],
1260
+ "ff-Latn-GM": ["latn"],
1261
+ "ff-Latn-GN": ["latn"],
1262
+ "ff-Latn-GW": ["latn"],
1263
+ "ff-Latn-LR": ["latn"],
1264
+ "ff-Latn-MR": ["latn"],
1265
+ "ff-Latn-NE": ["latn"],
1266
+ "ff-Latn-NG": ["latn"],
1267
+ "ff-Latn-SL": ["latn"],
1268
+ "fi": ["latn"],
1269
+ "fil": ["latn"],
1270
+ "fo": ["latn"],
1271
+ "fo-DK": ["latn"],
1272
+ "fr": ["latn"],
1273
+ "fr-BE": ["latn"],
1274
+ "fr-BF": ["latn"],
1275
+ "fr-BI": ["latn"],
1276
+ "fr-BJ": ["latn"],
1277
+ "fr-BL": ["latn"],
1278
+ "fr-CA": ["latn"],
1279
+ "fr-CD": ["latn"],
1280
+ "fr-CF": ["latn"],
1281
+ "fr-CG": ["latn"],
1282
+ "fr-CH": ["latn"],
1283
+ "fr-CI": ["latn"],
1284
+ "fr-CM": ["latn"],
1285
+ "fr-DJ": ["latn"],
1286
+ "fr-DZ": ["latn"],
1287
+ "fr-GA": ["latn"],
1288
+ "fr-GF": ["latn"],
1289
+ "fr-GN": ["latn"],
1290
+ "fr-GP": ["latn"],
1291
+ "fr-GQ": ["latn"],
1292
+ "fr-HT": ["latn"],
1293
+ "fr-KM": ["latn"],
1294
+ "fr-LU": ["latn"],
1295
+ "fr-MA": ["latn"],
1296
+ "fr-MC": ["latn"],
1297
+ "fr-MF": ["latn"],
1298
+ "fr-MG": ["latn"],
1299
+ "fr-ML": ["latn"],
1300
+ "fr-MQ": ["latn"],
1301
+ "fr-MR": ["latn"],
1302
+ "fr-MU": ["latn"],
1303
+ "fr-NC": ["latn"],
1304
+ "fr-NE": ["latn"],
1305
+ "fr-PF": ["latn"],
1306
+ "fr-PM": ["latn"],
1307
+ "fr-RE": ["latn"],
1308
+ "fr-RW": ["latn"],
1309
+ "fr-SC": ["latn"],
1310
+ "fr-SN": ["latn"],
1311
+ "fr-SY": ["latn"],
1312
+ "fr-TD": ["latn"],
1313
+ "fr-TG": ["latn"],
1314
+ "fr-TN": ["latn"],
1315
+ "fr-VU": ["latn"],
1316
+ "fr-WF": ["latn"],
1317
+ "fr-YT": ["latn"],
1318
+ "frr": ["latn"],
1319
+ "fur": ["latn"],
1320
+ "fy": ["latn"],
1321
+ "ga": ["latn"],
1322
+ "ga-GB": ["latn"],
1323
+ "gaa": ["latn"],
1324
+ "gd": ["latn"],
1325
+ "gez": ["latn"],
1326
+ "gez-ER": ["latn"],
1327
+ "gl": ["latn"],
1328
+ "gn": ["latn"],
1329
+ "gsw": ["latn"],
1330
+ "gsw-FR": ["latn"],
1331
+ "gsw-LI": ["latn"],
1332
+ "gu": ["latn", "gujr"],
1333
+ "guz": ["latn"],
1334
+ "gv": ["latn"],
1335
+ "ha": ["latn"],
1336
+ "ha-Arab": ["latn", "arab"],
1337
+ "ha-Arab-SD": ["latn", "arab"],
1338
+ "ha-GH": ["latn"],
1339
+ "ha-NE": ["latn"],
1340
+ "haw": ["latn"],
1341
+ "he": ["latn", "hebr"],
1342
+ "hi": ["latn", "deva"],
1343
+ "hi-Latn": ["latn"],
1344
+ "hnj": ["hmnp", "latn"],
1345
+ "hnj-Hmnp": ["hmnp", "latn"],
1346
+ "hr": ["latn"],
1347
+ "hr-BA": ["latn"],
1348
+ "hsb": ["latn"],
1349
+ "ht": ["latn"],
1350
+ "hu": ["latn"],
1351
+ "hy": ["latn", "armn"],
1352
+ "ia": ["latn"],
1353
+ "id": ["latn"],
1354
+ "ie": ["latn"],
1355
+ "ig": ["latn"],
1356
+ "ii": ["latn"],
1357
+ "io": ["latn"],
1358
+ "is": ["latn"],
1359
+ "it": ["latn"],
1360
+ "it-CH": ["latn"],
1361
+ "it-SM": ["latn"],
1362
+ "it-VA": ["latn"],
1363
+ "iu": ["latn"],
1364
+ "iu-Latn": ["latn"],
1365
+ "ja": [
1366
+ "latn",
1367
+ "jpan",
1368
+ "jpanfin"
1369
+ ],
1370
+ "jbo": ["latn"],
1371
+ "jgo": ["latn"],
1372
+ "jmc": ["latn"],
1373
+ "jv": ["latn", "java"],
1374
+ "ka": ["latn", "geor"],
1375
+ "kaa": ["latn"],
1376
+ "kaa-Cyrl": ["latn"],
1377
+ "kaa-Latn": ["latn"],
1378
+ "kab": ["latn"],
1379
+ "kaj": ["latn"],
1380
+ "kam": ["latn"],
1381
+ "kcg": ["latn"],
1382
+ "kde": ["latn"],
1383
+ "kea": ["latn"],
1384
+ "kek": ["latn"],
1385
+ "ken": ["latn"],
1386
+ "kgp": ["latn"],
1387
+ "khq": ["latn"],
1388
+ "ki": ["latn"],
1389
+ "kk": ["latn"],
1390
+ "kk-Arab": ["latn"],
1391
+ "kk-Cyrl": ["latn"],
1392
+ "kk-KZ": ["latn"],
1393
+ "kkj": ["latn"],
1394
+ "kl": ["latn"],
1395
+ "kln": ["latn"],
1396
+ "km": ["latn", "khmr"],
1397
+ "kn": ["latn", "knda"],
1398
+ "ko": ["latn"],
1399
+ "ko-CN": ["latn"],
1400
+ "ko-KP": ["latn"],
1401
+ "kok": ["latn", "deva"],
1402
+ "kok-Deva": ["latn", "deva"],
1403
+ "kok-Latn": ["latn"],
1404
+ "kpe": ["latn"],
1405
+ "kpe-GN": ["latn"],
1406
+ "ks": ["arabext"],
1407
+ "ks-Arab": ["arabext"],
1408
+ "ks-Deva": ["latn"],
1409
+ "ksb": ["latn"],
1410
+ "ksf": ["latn"],
1411
+ "ksh": ["latn"],
1412
+ "ku": ["latn"],
1413
+ "ku-Arab": ["latn"],
1414
+ "ku-Arab-IR": ["latn"],
1415
+ "ku-Latn": ["latn"],
1416
+ "ku-Latn-IQ": ["latn"],
1417
+ "ku-Latn-SY": ["latn"],
1418
+ "ku-TR": ["latn"],
1419
+ "kw": ["latn"],
1420
+ "kxv": ["latn"],
1421
+ "kxv-Deva": ["latn", "deva"],
1422
+ "kxv-Latn": ["latn"],
1423
+ "kxv-Orya": ["latn", "orya"],
1424
+ "kxv-Telu": ["latn", "telu"],
1425
+ "ky": ["latn"],
1426
+ "la": ["latn"],
1427
+ "lag": ["latn"],
1428
+ "lb": ["latn"],
1429
+ "lg": ["latn"],
1430
+ "lij": ["latn"],
1431
+ "lkt": ["latn"],
1432
+ "lld": ["latn"],
1433
+ "lmo": ["latn"],
1434
+ "ln": ["latn"],
1435
+ "ln-AO": ["latn"],
1436
+ "ln-CF": ["latn"],
1437
+ "ln-CG": ["latn"],
1438
+ "lo": ["latn", "laoo"],
1439
+ "lrc": ["arabext"],
1440
+ "lrc-IQ": ["arabext"],
1441
+ "lt": ["latn"],
1442
+ "ltg": ["latn"],
1443
+ "lu": ["latn"],
1444
+ "luo": ["latn"],
1445
+ "luy": ["latn"],
1446
+ "lv": ["latn"],
1447
+ "lzz": ["latn"],
1448
+ "mai": ["latn", "deva"],
1449
+ "mas": ["latn"],
1450
+ "mas-TZ": ["latn"],
1451
+ "mdf": ["latn"],
1452
+ "mer": ["latn"],
1453
+ "mfe": ["latn"],
1454
+ "mg": ["latn"],
1455
+ "mgh": ["latn"],
1456
+ "mgo": ["latn"],
1457
+ "mhn": ["latn"],
1458
+ "mi": ["latn"],
1459
+ "mic": ["latn"],
1460
+ "mk": ["latn"],
1461
+ "ml": ["latn", "mlym"],
1462
+ "mn": ["latn"],
1463
+ "mn-Mong": ["latn", "mong"],
1464
+ "mn-Mong-MN": ["latn", "mong"],
1465
+ "mni": ["beng", "latn"],
1466
+ "mni-Beng": ["beng", "latn"],
1467
+ "mni-Mtei": ["mtei", "latn"],
1468
+ "moh": ["latn"],
1469
+ "mr": ["deva"],
1470
+ "ms": ["latn"],
1471
+ "ms-Arab": ["latn"],
1472
+ "ms-Arab-BN": ["latn"],
1473
+ "ms-BN": ["latn"],
1474
+ "ms-ID": ["latn"],
1475
+ "ms-SG": ["latn"],
1476
+ "mt": ["latn"],
1477
+ "mua": ["latn"],
1478
+ "mus": ["latn"],
1479
+ "mww": ["hmnp", "latn"],
1480
+ "mww-Hmnp": ["hmnp", "latn"],
1481
+ "my": ["mymr"],
1482
+ "myv": ["latn"],
1483
+ "mzn": ["arabext"],
1484
+ "naq": ["latn"],
1485
+ "nb": ["latn"],
1486
+ "nb-SJ": ["latn"],
1487
+ "nd": ["latn"],
1488
+ "nds": ["latn"],
1489
+ "nds-NL": ["latn"],
1490
+ "ne": ["deva"],
1491
+ "ne-IN": ["deva"],
1492
+ "nl": ["latn"],
1493
+ "nl-AW": ["latn"],
1494
+ "nl-BE": ["latn"],
1495
+ "nl-BQ": ["latn"],
1496
+ "nl-CW": ["latn"],
1497
+ "nl-SR": ["latn"],
1498
+ "nl-SX": ["latn"],
1499
+ "nmg": ["latn"],
1500
+ "nn": ["latn"],
1501
+ "nnh": ["latn"],
1502
+ "no": ["latn"],
1503
+ "nqo": ["nkoo"],
1504
+ "nr": ["latn"],
1505
+ "nso": ["latn"],
1506
+ "nus": ["latn"],
1507
+ "nv": ["latn"],
1508
+ "ny": ["latn"],
1509
+ "nyn": ["latn"],
1510
+ "oc": ["latn"],
1511
+ "oc-ES": ["latn"],
1512
+ "oka": ["latn"],
1513
+ "oka-US": ["latn"],
1514
+ "om": ["latn", "ethi"],
1515
+ "om-KE": ["latn", "ethi"],
1516
+ "or": ["latn", "orya"],
1517
+ "os": ["latn"],
1518
+ "os-RU": ["latn"],
1519
+ "osa": ["latn"],
1520
+ "pa": ["latn", "guru"],
1521
+ "pa-Arab": ["arabext"],
1522
+ "pa-Guru": ["latn", "guru"],
1523
+ "pap": ["latn"],
1524
+ "pap-AW": ["latn"],
1525
+ "pcm": ["latn"],
1526
+ "pi": ["latn"],
1527
+ "pi-Latn": ["latn"],
1528
+ "pis": ["latn"],
1529
+ "pl": ["latn"],
1530
+ "pms": ["latn"],
1531
+ "prg": ["latn"],
1532
+ "ps": ["arabext"],
1533
+ "ps-PK": ["arabext"],
1534
+ "pt": ["latn"],
1535
+ "pt-AO": ["latn"],
1536
+ "pt-CH": ["latn"],
1537
+ "pt-CV": ["latn"],
1538
+ "pt-GQ": ["latn"],
1539
+ "pt-GW": ["latn"],
1540
+ "pt-LU": ["latn"],
1541
+ "pt-MO": ["latn"],
1542
+ "pt-MZ": ["latn"],
1543
+ "pt-PT": ["latn"],
1544
+ "pt-ST": ["latn"],
1545
+ "pt-TL": ["latn"],
1546
+ "qu": ["latn"],
1547
+ "qu-BO": ["latn"],
1548
+ "qu-EC": ["latn"],
1549
+ "quc": ["latn"],
1550
+ "raj": ["deva", "latn"],
1551
+ "rhg": ["latn"],
1552
+ "rhg-Rohg": ["latn"],
1553
+ "rhg-Rohg-BD": ["latn"],
1554
+ "rif": ["latn"],
1555
+ "rm": ["latn"],
1556
+ "rn": ["latn"],
1557
+ "ro": ["latn"],
1558
+ "ro-MD": ["latn"],
1559
+ "rof": ["latn"],
1560
+ "ru": ["latn"],
1561
+ "ru-BY": ["latn"],
1562
+ "ru-KG": ["latn"],
1563
+ "ru-KZ": ["latn"],
1564
+ "ru-MD": ["latn"],
1565
+ "ru-UA": ["latn"],
1566
+ "rw": ["latn"],
1567
+ "rwk": ["latn"],
1568
+ "sa": ["deva"],
1569
+ "sah": ["latn"],
1570
+ "saq": ["latn"],
1571
+ "sat": ["olck", "latn"],
1572
+ "sat-Deva": ["deva", "latn"],
1573
+ "sat-Olck": ["olck", "latn"],
1574
+ "sbp": ["latn"],
1575
+ "sc": ["latn"],
1576
+ "scn": ["latn"],
1577
+ "sd": ["arab"],
1578
+ "sd-Arab": ["arab"],
1579
+ "sd-Deva": ["latn"],
1580
+ "sdh": ["arab"],
1581
+ "sdh-IQ": ["arab"],
1582
+ "se": ["latn"],
1583
+ "se-FI": ["latn"],
1584
+ "se-SE": ["latn"],
1585
+ "seh": ["latn"],
1586
+ "ses": ["latn"],
1587
+ "sg": ["latn"],
1588
+ "sgs": ["latn"],
1589
+ "shi": ["latn"],
1590
+ "shi-Latn": ["latn"],
1591
+ "shi-Tfng": ["latn"],
1592
+ "shn": ["latn"],
1593
+ "shn-TH": ["latn"],
1594
+ "si": ["latn"],
1595
+ "sid": ["latn"],
1596
+ "sk": ["latn"],
1597
+ "skr": ["latn"],
1598
+ "sl": ["latn"],
1599
+ "sma": ["latn"],
1600
+ "sma-NO": ["latn"],
1601
+ "smj": ["latn"],
1602
+ "smj-NO": ["latn"],
1603
+ "smn": ["latn"],
1604
+ "sms": ["latn"],
1605
+ "sn": ["latn"],
1606
+ "so": ["latn"],
1607
+ "so-DJ": ["latn"],
1608
+ "so-ET": ["latn"],
1609
+ "so-KE": ["latn"],
1610
+ "sq": ["latn"],
1611
+ "sq-MK": ["latn"],
1612
+ "sq-XK": ["latn"],
1613
+ "sr": ["latn"],
1614
+ "sr-Cyrl": ["latn"],
1615
+ "sr-Cyrl-BA": ["latn"],
1616
+ "sr-Cyrl-ME": ["latn"],
1617
+ "sr-Cyrl-XK": ["latn"],
1618
+ "sr-Latn": ["latn"],
1619
+ "sr-Latn-BA": ["latn"],
1620
+ "sr-Latn-ME": ["latn"],
1621
+ "sr-Latn-XK": ["latn"],
1622
+ "ss": ["latn"],
1623
+ "ss-SZ": ["latn"],
1624
+ "ssy": ["latn"],
1625
+ "st": ["latn"],
1626
+ "st-LS": ["latn"],
1627
+ "su": ["latn"],
1628
+ "su-Latn": ["latn"],
1629
+ "suz": ["latn"],
1630
+ "suz-Deva": ["latn"],
1631
+ "suz-Sunu": ["latn"],
1632
+ "sv": ["latn"],
1633
+ "sv-AX": ["latn"],
1634
+ "sv-FI": ["latn"],
1635
+ "sw": ["latn"],
1636
+ "sw-CD": ["latn"],
1637
+ "sw-KE": ["latn"],
1638
+ "sw-UG": ["latn"],
1639
+ "syr": ["latn"],
1640
+ "syr-SY": ["latn"],
1641
+ "szl": ["latn"],
1642
+ "ta": [
1643
+ "latn",
1644
+ "tamldec",
1645
+ "taml"
1646
+ ],
1647
+ "ta-LK": [
1648
+ "latn",
1649
+ "tamldec",
1650
+ "taml"
1651
+ ],
1652
+ "ta-MY": [
1653
+ "latn",
1654
+ "tamldec",
1655
+ "taml"
1656
+ ],
1657
+ "ta-SG": [
1658
+ "latn",
1659
+ "tamldec",
1660
+ "taml"
1661
+ ],
1662
+ "te": ["latn", "telu"],
1663
+ "teo": ["latn"],
1664
+ "teo-KE": ["latn"],
1665
+ "tg": ["latn"],
1666
+ "th": ["latn", "thai"],
1667
+ "ti": ["latn", "ethi"],
1668
+ "ti-ER": ["latn", "ethi"],
1669
+ "tig": ["latn", "ethi"],
1670
+ "tk": ["latn"],
1671
+ "tn": ["latn"],
1672
+ "tn-BW": ["latn"],
1673
+ "to": ["latn"],
1674
+ "tok": ["latn"],
1675
+ "tpi": ["latn"],
1676
+ "tr": ["latn"],
1677
+ "tr-CY": ["latn"],
1678
+ "trv": ["latn"],
1679
+ "trw": ["latn"],
1680
+ "ts": ["latn"],
1681
+ "tt": ["latn"],
1682
+ "twq": ["latn"],
1683
+ "tyv": ["latn"],
1684
+ "tzm": ["latn"],
1685
+ "ug": ["latn", "arabext"],
1686
+ "uk": ["latn"],
1687
+ "und": ["latn"],
1688
+ "ur": ["latn", "arabext"],
1689
+ "ur-IN": ["arabext"],
1690
+ "uz": ["latn"],
1691
+ "uz-Arab": ["arabext"],
1692
+ "uz-Cyrl": ["latn"],
1693
+ "uz-Latn": ["latn"],
1694
+ "vai": ["latn", "vaii"],
1695
+ "vai-Latn": ["latn", "vaii"],
1696
+ "vai-Vaii": ["latn", "vaii"],
1697
+ "ve": ["latn"],
1698
+ "vec": ["latn"],
1699
+ "vi": ["latn"],
1700
+ "vmw": ["latn"],
1701
+ "vo": ["latn"],
1702
+ "vun": ["latn"],
1703
+ "wa": ["latn"],
1704
+ "wae": ["latn"],
1705
+ "wal": ["latn", "ethi"],
1706
+ "wbp": ["latn"],
1707
+ "wo": ["latn"],
1708
+ "xh": ["latn"],
1709
+ "xnr": ["latn", "deva"],
1710
+ "xog": ["latn"],
1711
+ "yav": ["latn"],
1712
+ "yi": ["latn", "hebr"],
1713
+ "yo": ["latn"],
1714
+ "yo-BJ": ["latn"],
1715
+ "yrl": ["latn"],
1716
+ "yrl-CO": ["latn"],
1717
+ "yrl-VE": ["latn"],
1718
+ "yue": [
1719
+ "latn",
1720
+ "hanidec",
1721
+ "hant",
1722
+ "hantfin"
1723
+ ],
1724
+ "yue-Hans": [
1725
+ "latn",
1726
+ "hanidec",
1727
+ "hant",
1728
+ "hantfin"
1729
+ ],
1730
+ "yue-Hant": [
1731
+ "latn",
1732
+ "hanidec",
1733
+ "hant",
1734
+ "hantfin"
1735
+ ],
1736
+ "yue-Hant-CN": [
1737
+ "latn",
1738
+ "hanidec",
1739
+ "hant",
1740
+ "hantfin"
1741
+ ],
1742
+ "yue-Hant-MO": [
1743
+ "latn",
1744
+ "hanidec",
1745
+ "hant",
1746
+ "hantfin"
1747
+ ],
1748
+ "za": ["latn"],
1749
+ "zgh": ["latn"],
1750
+ "zh": [
1751
+ "latn",
1752
+ "hanidec",
1753
+ "hans",
1754
+ "hansfin"
1755
+ ],
1756
+ "zh-Hans": [
1757
+ "latn",
1758
+ "hanidec",
1759
+ "hans",
1760
+ "hansfin"
1761
+ ],
1762
+ "zh-Hans-HK": [
1763
+ "latn",
1764
+ "hanidec",
1765
+ "hans",
1766
+ "hansfin"
1767
+ ],
1768
+ "zh-Hans-MO": [
1769
+ "latn",
1770
+ "hanidec",
1771
+ "hans",
1772
+ "hansfin"
1773
+ ],
1774
+ "zh-Hans-MY": [
1775
+ "latn",
1776
+ "hanidec",
1777
+ "hans",
1778
+ "hansfin"
1779
+ ],
1780
+ "zh-Hans-SG": [
1781
+ "latn",
1782
+ "hanidec",
1783
+ "hans",
1784
+ "hansfin"
1785
+ ],
1786
+ "zh-Hant": [
1787
+ "latn",
1788
+ "hanidec",
1789
+ "hant",
1790
+ "hantfin"
1791
+ ],
1792
+ "zh-Hant-HK": [
1793
+ "latn",
1794
+ "hanidec",
1795
+ "hant",
1796
+ "hantfin"
1797
+ ],
1798
+ "zh-Hant-MO": [
1799
+ "latn",
1800
+ "hanidec",
1801
+ "hant",
1802
+ "hantfin"
1803
+ ],
1804
+ "zh-Hant-MY": [
1805
+ "latn",
1806
+ "hanidec",
1807
+ "hant",
1808
+ "hantfin"
1809
+ ],
1810
+ "zh-Latn": ["latn"],
1811
+ "zu": ["latn"]
1812
+ };
1813
+ //#endregion
1814
+ //#region packages/intl-locale/timezones.generated.ts
1815
+ const timezones = {
1816
+ "ad": ["Europe/Andorra"],
1817
+ "ae": ["Asia/Dubai"],
1818
+ "af": ["Asia/Kabul"],
1819
+ "ag": ["America/Antigua"],
1820
+ "ai": ["America/Anguilla"],
1821
+ "al": ["Europe/Tirane"],
1822
+ "am": ["Asia/Yerevan"],
1823
+ "an": ["America/Curacao"],
1824
+ "ao": ["Africa/Luanda"],
1825
+ "aq": [
1826
+ "Antarctica/McMurdo",
1827
+ "Antarctica/Casey",
1828
+ "Antarctica/Davis",
1829
+ "Antarctica/DumontDUrville",
1830
+ "Antarctica/Mawson",
1831
+ "Antarctica/McMurdo",
1832
+ "Antarctica/Palmer",
1833
+ "Antarctica/Rothera",
1834
+ "Antarctica/Syowa",
1835
+ "Antarctica/Troll",
1836
+ "Antarctica/Vostok"
1837
+ ],
1838
+ "ar": [
1839
+ "America/Buenos_Aires",
1840
+ "America/Cordoba",
1841
+ "America/Catamarca",
1842
+ "America/Argentina/La_Rioja",
1843
+ "America/Jujuy",
1844
+ "America/Argentina/San_Luis",
1845
+ "America/Mendoza",
1846
+ "America/Argentina/Rio_Gallegos",
1847
+ "America/Argentina/Salta",
1848
+ "America/Argentina/Tucuman",
1849
+ "America/Argentina/San_Juan",
1850
+ "America/Argentina/Ushuaia"
1851
+ ],
1852
+ "as": ["Pacific/Pago_Pago"],
1853
+ "at": ["Europe/Vienna"],
1854
+ "au": [
1855
+ "Australia/Adelaide",
1856
+ "Australia/Broken_Hill",
1857
+ "Australia/Brisbane",
1858
+ "Australia/Darwin",
1859
+ "Australia/Eucla",
1860
+ "Australia/Hobart",
1861
+ "Australia/Hobart",
1862
+ "Australia/Lindeman",
1863
+ "Australia/Lord_Howe",
1864
+ "Australia/Melbourne",
1865
+ "Antarctica/Macquarie",
1866
+ "Australia/Perth",
1867
+ "Australia/Sydney"
1868
+ ],
1869
+ "aw": ["America/Aruba"],
1870
+ "az": ["Asia/Baku"],
1871
+ "ba": ["Europe/Sarajevo"],
1872
+ "bb": ["America/Barbados"],
1873
+ "bd": ["Asia/Dhaka"],
1874
+ "be": ["Europe/Brussels"],
1875
+ "bf": ["Africa/Ouagadougou"],
1876
+ "bg": ["Europe/Sofia"],
1877
+ "bh": ["Asia/Bahrain"],
1878
+ "bi": ["Africa/Bujumbura"],
1879
+ "bj": ["Africa/Porto-Novo"],
1880
+ "bm": ["Atlantic/Bermuda"],
1881
+ "bn": ["Asia/Brunei"],
1882
+ "bo": ["America/La_Paz"],
1883
+ "bq": ["America/Kralendijk"],
1884
+ "br": [
1885
+ "America/Araguaina",
1886
+ "America/Belem",
1887
+ "America/Boa_Vista",
1888
+ "America/Cuiaba",
1889
+ "America/Campo_Grande",
1890
+ "America/Eirunepe",
1891
+ "America/Noronha",
1892
+ "America/Fortaleza",
1893
+ "America/Manaus",
1894
+ "America/Maceio",
1895
+ "America/Porto_Velho",
1896
+ "America/Rio_Branco",
1897
+ "America/Recife",
1898
+ "America/Sao_Paulo",
1899
+ "America/Bahia",
1900
+ "America/Santarem"
1901
+ ],
1902
+ "bs": ["America/Nassau"],
1903
+ "bt": ["Asia/Thimphu"],
1904
+ "bw": ["Africa/Gaborone"],
1905
+ "by": ["Europe/Minsk"],
1906
+ "bz": ["America/Belize"],
1907
+ "ca": [
1908
+ "America/Creston",
1909
+ "America/Edmonton",
1910
+ "America/Winnipeg",
1911
+ "America/Fort_Nelson",
1912
+ "America/Glace_Bay",
1913
+ "America/Goose_Bay",
1914
+ "America/Halifax",
1915
+ "America/Iqaluit",
1916
+ "America/Moncton",
1917
+ "America/Toronto",
1918
+ "America/Toronto",
1919
+ "America/Iqaluit",
1920
+ "America/Resolute",
1921
+ "America/Regina",
1922
+ "America/St_Johns",
1923
+ "America/Toronto",
1924
+ "America/Toronto",
1925
+ "America/Vancouver",
1926
+ "America/Winnipeg",
1927
+ "America/Blanc-Sablon",
1928
+ "America/Cambridge_Bay",
1929
+ "America/Dawson",
1930
+ "America/Dawson_Creek",
1931
+ "America/Rankin_Inlet",
1932
+ "America/Inuvik",
1933
+ "America/Whitehorse",
1934
+ "America/Swift_Current",
1935
+ "America/Edmonton",
1936
+ "America/Coral_Harbour"
1937
+ ],
1938
+ "cc": ["Indian/Cocos"],
1939
+ "cd": ["Africa/Lubumbashi", "Africa/Kinshasa"],
1940
+ "cf": ["Africa/Bangui"],
1941
+ "cg": ["Africa/Brazzaville"],
1942
+ "ch": ["Europe/Zurich"],
1943
+ "ci": ["Africa/Abidjan"],
1944
+ "ck": ["Pacific/Rarotonga"],
1945
+ "cl": [
1946
+ "America/Coyhaique",
1947
+ "Pacific/Easter",
1948
+ "America/Punta_Arenas",
1949
+ "America/Santiago"
1950
+ ],
1951
+ "cm": ["Africa/Douala"],
1952
+ "cn": [
1953
+ "Asia/Shanghai",
1954
+ "Asia/Shanghai",
1955
+ "Asia/Urumqi",
1956
+ "Asia/Shanghai",
1957
+ "Asia/Urumqi"
1958
+ ],
1959
+ "co": ["America/Bogota"],
1960
+ "cr": ["America/Costa_Rica"],
1961
+ "cs": ["America/Chicago"],
1962
+ "cu": ["America/Havana"],
1963
+ "cv": ["Atlantic/Cape_Verde"],
1964
+ "cx": ["Indian/Christmas"],
1965
+ "cy": ["Asia/Famagusta", "Asia/Nicosia"],
1966
+ "cz": ["Europe/Prague"],
1967
+ "de": ["Europe/Berlin", "Europe/Busingen"],
1968
+ "dj": ["Africa/Djibouti"],
1969
+ "dk": ["Europe/Copenhagen"],
1970
+ "dm": ["America/Dominica"],
1971
+ "do": ["America/Santo_Domingo"],
1972
+ "dz": ["Africa/Algiers"],
1973
+ "ec": ["Pacific/Galapagos", "America/Guayaquil"],
1974
+ "ee": ["Europe/Tallinn"],
1975
+ "eg": ["Africa/Cairo"],
1976
+ "eh": ["Africa/El_Aaiun"],
1977
+ "er": ["Africa/Asmera"],
1978
+ "es": [
1979
+ "Africa/Ceuta",
1980
+ "Atlantic/Canary",
1981
+ "Europe/Madrid",
1982
+ "America/New_York"
1983
+ ],
1984
+ "et": ["Africa/Addis_Ababa"],
1985
+ "fi": ["Europe/Helsinki", "Europe/Mariehamn"],
1986
+ "fj": ["Pacific/Fiji"],
1987
+ "fk": ["Atlantic/Stanley"],
1988
+ "fm": [
1989
+ "Pacific/Kosrae",
1990
+ "Pacific/Ponape",
1991
+ "Pacific/Truk"
1992
+ ],
1993
+ "fo": ["Atlantic/Faeroe"],
1994
+ "fr": ["Europe/Paris"],
1995
+ "ga": [
1996
+ "Africa/Libreville",
1997
+ "Asia/Gaza",
1998
+ "Asia/Gaza"
1999
+ ],
2000
+ "gb": ["Europe/London"],
2001
+ "gd": ["America/Grenada"],
2002
+ "ge": ["Asia/Tbilisi"],
2003
+ "gf": ["America/Cayenne"],
2004
+ "gg": ["Europe/Guernsey"],
2005
+ "gh": ["Africa/Accra"],
2006
+ "gi": ["Europe/Gibraltar"],
2007
+ "gl": [
2008
+ "America/Danmarkshavn",
2009
+ "America/Godthab",
2010
+ "America/Scoresbysund",
2011
+ "America/Thule"
2012
+ ],
2013
+ "gm": ["Africa/Banjul", "Etc/GMT"],
2014
+ "gn": ["Africa/Conakry"],
2015
+ "gp": [
2016
+ "America/Guadeloupe",
2017
+ "America/Marigot",
2018
+ "America/St_Barthelemy"
2019
+ ],
2020
+ "gq": ["Africa/Malabo"],
2021
+ "gr": ["Europe/Athens"],
2022
+ "gs": ["Atlantic/South_Georgia"],
2023
+ "gt": ["America/Guatemala"],
2024
+ "gu": ["Pacific/Guam"],
2025
+ "gw": ["Africa/Bissau"],
2026
+ "gy": ["America/Guyana"],
2027
+ "he": ["Asia/Hebron"],
2028
+ "hk": ["Asia/Hong_Kong"],
2029
+ "hn": ["America/Tegucigalpa"],
2030
+ "hr": ["Europe/Zagreb"],
2031
+ "ht": ["America/Port-au-Prince"],
2032
+ "hu": ["Europe/Budapest"],
2033
+ "id": [
2034
+ "Asia/Jayapura",
2035
+ "Asia/Jakarta",
2036
+ "Asia/Makassar",
2037
+ "Asia/Pontianak"
2038
+ ],
2039
+ "ie": ["Europe/Dublin"],
2040
+ "im": ["Europe/Isle_of_Man"],
2041
+ "in": ["Asia/Calcutta"],
2042
+ "io": ["Indian/Chagos"],
2043
+ "iq": ["Asia/Baghdad"],
2044
+ "ir": ["Asia/Tehran"],
2045
+ "is": ["Atlantic/Reykjavik"],
2046
+ "it": ["Europe/Rome"],
2047
+ "je": ["Asia/Jerusalem", "Europe/Jersey"],
2048
+ "jm": ["America/Jamaica"],
2049
+ "jo": ["Asia/Amman"],
2050
+ "jp": ["Asia/Tokyo"],
2051
+ "ke": ["Africa/Nairobi"],
2052
+ "kg": ["Asia/Bishkek"],
2053
+ "kh": ["Asia/Phnom_Penh"],
2054
+ "ki": [
2055
+ "Pacific/Kiritimati",
2056
+ "Pacific/Enderbury",
2057
+ "Pacific/Tarawa"
2058
+ ],
2059
+ "km": ["Indian/Comoro"],
2060
+ "kn": ["America/St_Kitts"],
2061
+ "kp": ["Asia/Pyongyang"],
2062
+ "kr": ["Asia/Seoul"],
2063
+ "kw": ["Asia/Kuwait"],
2064
+ "ky": ["America/Cayman"],
2065
+ "kz": [
2066
+ "Asia/Aqtau",
2067
+ "Asia/Aqtobe",
2068
+ "Asia/Almaty",
2069
+ "Asia/Atyrau",
2070
+ "Asia/Qostanay",
2071
+ "Asia/Qyzylorda",
2072
+ "Asia/Oral"
2073
+ ],
2074
+ "la": ["Asia/Vientiane"],
2075
+ "lb": ["Asia/Beirut"],
2076
+ "lc": ["America/St_Lucia"],
2077
+ "li": ["Europe/Vaduz"],
2078
+ "lk": ["Asia/Colombo"],
2079
+ "lr": ["Africa/Monrovia"],
2080
+ "ls": ["Africa/Maseru"],
2081
+ "lt": ["Europe/Vilnius"],
2082
+ "lu": ["Europe/Luxembourg"],
2083
+ "lv": ["Europe/Riga"],
2084
+ "ly": ["Africa/Tripoli"],
2085
+ "ma": ["Africa/Casablanca"],
2086
+ "mc": ["Europe/Monaco"],
2087
+ "md": ["Europe/Chisinau"],
2088
+ "me": ["Europe/Podgorica"],
2089
+ "mg": ["Indian/Antananarivo"],
2090
+ "mh": ["Pacific/Kwajalein", "Pacific/Majuro"],
2091
+ "mk": ["Europe/Skopje"],
2092
+ "ml": ["Africa/Bamako"],
2093
+ "mm": ["Asia/Rangoon"],
2094
+ "mn": [
2095
+ "Asia/Ulaanbaatar",
2096
+ "Asia/Hovd",
2097
+ "Asia/Ulaanbaatar"
2098
+ ],
2099
+ "mo": ["Asia/Macau"],
2100
+ "mp": ["Pacific/Saipan"],
2101
+ "mq": ["America/Martinique"],
2102
+ "mr": ["Africa/Nouakchott"],
2103
+ "ms": ["America/Montserrat", "America/Denver"],
2104
+ "mt": ["Europe/Malta"],
2105
+ "mu": ["Indian/Mauritius"],
2106
+ "mv": ["Indian/Maldives"],
2107
+ "mw": ["Africa/Blantyre"],
2108
+ "mx": [
2109
+ "America/Chihuahua",
2110
+ "America/Ciudad_Juarez",
2111
+ "America/Cancun",
2112
+ "America/Hermosillo",
2113
+ "America/Matamoros",
2114
+ "America/Mexico_City",
2115
+ "America/Merida",
2116
+ "America/Monterrey",
2117
+ "America/Mazatlan",
2118
+ "America/Ojinaga",
2119
+ "America/Bahia_Banderas",
2120
+ "America/Tijuana",
2121
+ "America/Tijuana"
2122
+ ],
2123
+ "my": ["Asia/Kuching", "Asia/Kuala_Lumpur"],
2124
+ "mz": ["Africa/Maputo"],
2125
+ "na": ["Africa/Windhoek"],
2126
+ "nc": ["Pacific/Noumea"],
2127
+ "ne": ["Africa/Niamey"],
2128
+ "nf": ["Pacific/Norfolk"],
2129
+ "ng": ["Africa/Lagos"],
2130
+ "ni": ["America/Managua"],
2131
+ "nl": ["Europe/Amsterdam"],
2132
+ "no": ["Europe/Oslo"],
2133
+ "np": ["Asia/Katmandu"],
2134
+ "nr": ["Pacific/Nauru"],
2135
+ "nu": ["Pacific/Niue"],
2136
+ "nz": ["Pacific/Auckland", "Pacific/Chatham"],
2137
+ "om": ["Asia/Muscat"],
2138
+ "pa": ["America/Panama"],
2139
+ "pe": ["America/Lima"],
2140
+ "pf": [
2141
+ "Pacific/Gambier",
2142
+ "Pacific/Marquesas",
2143
+ "Pacific/Tahiti"
2144
+ ],
2145
+ "pg": ["Pacific/Port_Moresby", "Pacific/Bougainville"],
2146
+ "ph": ["Asia/Manila"],
2147
+ "pk": ["Asia/Karachi"],
2148
+ "pl": ["Europe/Warsaw"],
2149
+ "pm": ["America/Miquelon"],
2150
+ "pn": ["Pacific/Pitcairn"],
2151
+ "pr": ["America/Puerto_Rico"],
2152
+ "ps": ["America/Los_Angeles"],
2153
+ "pt": [
2154
+ "Atlantic/Madeira",
2155
+ "Europe/Lisbon",
2156
+ "Atlantic/Azores"
2157
+ ],
2158
+ "pw": ["Pacific/Palau"],
2159
+ "py": ["America/Asuncion"],
2160
+ "qa": ["Asia/Qatar"],
2161
+ "re": ["Indian/Reunion"],
2162
+ "ro": ["Europe/Bucharest"],
2163
+ "rs": ["Europe/Belgrade"],
2164
+ "ru": [
2165
+ "Europe/Astrakhan",
2166
+ "Asia/Barnaul",
2167
+ "Asia/Chita",
2168
+ "Asia/Anadyr",
2169
+ "Asia/Magadan",
2170
+ "Asia/Irkutsk",
2171
+ "Europe/Kaliningrad",
2172
+ "Asia/Khandyga",
2173
+ "Asia/Krasnoyarsk",
2174
+ "Europe/Samara",
2175
+ "Europe/Kirov",
2176
+ "Europe/Moscow",
2177
+ "Asia/Novokuznetsk",
2178
+ "Asia/Omsk",
2179
+ "Asia/Novosibirsk",
2180
+ "Asia/Kamchatka",
2181
+ "Europe/Saratov",
2182
+ "Asia/Srednekolymsk",
2183
+ "Asia/Tomsk",
2184
+ "Europe/Ulyanovsk",
2185
+ "Asia/Ust-Nera",
2186
+ "Asia/Sakhalin",
2187
+ "Europe/Volgograd",
2188
+ "Asia/Vladivostok",
2189
+ "Asia/Yekaterinburg",
2190
+ "Asia/Yakutsk"
2191
+ ],
2192
+ "rw": ["Africa/Kigali"],
2193
+ "sa": ["Asia/Riyadh"],
2194
+ "sb": ["Pacific/Guadalcanal"],
2195
+ "sc": ["Indian/Mahe"],
2196
+ "sd": ["Africa/Khartoum"],
2197
+ "se": ["Europe/Stockholm"],
2198
+ "sg": ["Asia/Singapore"],
2199
+ "sh": ["Atlantic/St_Helena"],
2200
+ "si": ["Europe/Ljubljana"],
2201
+ "sj": ["Arctic/Longyearbyen"],
2202
+ "sk": ["Europe/Bratislava"],
2203
+ "sl": ["Africa/Freetown"],
2204
+ "sm": ["Europe/San_Marino"],
2205
+ "sn": ["Africa/Dakar"],
2206
+ "so": ["Africa/Mogadishu"],
2207
+ "sr": ["America/Paramaribo"],
2208
+ "ss": ["Africa/Juba"],
2209
+ "st": ["Africa/Sao_Tome"],
2210
+ "sv": ["America/El_Salvador"],
2211
+ "sx": ["America/Lower_Princes"],
2212
+ "sy": ["Asia/Damascus"],
2213
+ "sz": ["Africa/Mbabane"],
2214
+ "tc": ["America/Grand_Turk"],
2215
+ "td": ["Africa/Ndjamena"],
2216
+ "tf": ["Indian/Kerguelen"],
2217
+ "tg": ["Africa/Lome"],
2218
+ "th": ["Asia/Bangkok"],
2219
+ "tj": ["Asia/Dushanbe"],
2220
+ "tk": ["Pacific/Fakaofo"],
2221
+ "tl": ["Asia/Dili"],
2222
+ "tm": ["Asia/Ashgabat"],
2223
+ "tn": ["Africa/Tunis"],
2224
+ "to": ["Pacific/Tongatapu"],
2225
+ "tr": ["Europe/Istanbul"],
2226
+ "tt": ["America/Port_of_Spain"],
2227
+ "tv": ["Pacific/Funafuti"],
2228
+ "tw": ["Asia/Taipei"],
2229
+ "tz": ["Africa/Dar_es_Salaam"],
2230
+ "ua": [
2231
+ "Europe/Kiev",
2232
+ "Europe/Kiev",
2233
+ "Europe/Simferopol",
2234
+ "Europe/Kiev"
2235
+ ],
2236
+ "ug": ["Africa/Kampala"],
2237
+ "um": [
2238
+ "Pacific/Wake",
2239
+ "Pacific/Honolulu",
2240
+ "Pacific/Midway"
2241
+ ],
2242
+ "un": ["Etc/Unknown"],
2243
+ "us": [
2244
+ "America/Adak",
2245
+ "America/Indiana/Marengo",
2246
+ "America/Anchorage",
2247
+ "America/Boise",
2248
+ "America/Chicago",
2249
+ "America/Denver",
2250
+ "America/Detroit",
2251
+ "Pacific/Honolulu",
2252
+ "America/Indianapolis",
2253
+ "America/Indiana/Vevay",
2254
+ "America/Juneau",
2255
+ "America/Indiana/Knox",
2256
+ "America/Los_Angeles",
2257
+ "America/Louisville",
2258
+ "America/Menominee",
2259
+ "America/Kentucky/Monticello",
2260
+ "America/Metlakatla",
2261
+ "America/Denver",
2262
+ "America/North_Dakota/Center",
2263
+ "America/North_Dakota/New_Salem",
2264
+ "America/New_York",
2265
+ "America/Indiana/Vincennes",
2266
+ "America/Nome",
2267
+ "America/Phoenix",
2268
+ "America/Sitka",
2269
+ "America/Indiana/Tell_City",
2270
+ "America/Indiana/Winamac",
2271
+ "America/Indiana/Petersburg",
2272
+ "America/North_Dakota/Beulah",
2273
+ "America/Yakutat"
2274
+ ],
2275
+ "ut": [
2276
+ "Etc/UTC",
2277
+ "Etc/GMT-1",
2278
+ "Etc/GMT-2",
2279
+ "Etc/GMT-3",
2280
+ "Etc/GMT-4",
2281
+ "Etc/GMT-5",
2282
+ "Etc/GMT-6",
2283
+ "Etc/GMT-7",
2284
+ "Etc/GMT-8",
2285
+ "Etc/GMT-9",
2286
+ "Etc/GMT-10",
2287
+ "Etc/GMT-11",
2288
+ "Etc/GMT-12",
2289
+ "Etc/GMT-13",
2290
+ "Etc/GMT-14",
2291
+ "Etc/GMT+1",
2292
+ "Etc/GMT+2",
2293
+ "Etc/GMT+3",
2294
+ "Etc/GMT+4",
2295
+ "Etc/GMT+5",
2296
+ "Etc/GMT+6",
2297
+ "Etc/GMT+7",
2298
+ "Etc/GMT+8",
2299
+ "Etc/GMT+9",
2300
+ "Etc/GMT+10",
2301
+ "Etc/GMT+11",
2302
+ "Etc/GMT+12"
2303
+ ],
2304
+ "uy": ["America/Montevideo"],
2305
+ "uz": ["Asia/Samarkand", "Asia/Tashkent"],
2306
+ "va": ["Europe/Vatican"],
2307
+ "vc": ["America/St_Vincent"],
2308
+ "ve": ["America/Caracas"],
2309
+ "vg": ["America/Tortola"],
2310
+ "vi": ["America/St_Thomas"],
2311
+ "vn": ["Asia/Saigon"],
2312
+ "vu": ["Pacific/Efate"],
2313
+ "wf": ["Pacific/Wallis"],
2314
+ "ws": ["Pacific/Apia"],
2315
+ "ye": ["Asia/Aden"],
2316
+ "yt": ["Indian/Mayotte"],
2317
+ "za": ["Africa/Johannesburg"],
2318
+ "zm": ["Africa/Lusaka"],
2319
+ "zw": ["Africa/Harare"]
2320
+ };
2321
+ //#endregion
2322
+ //#region packages/intl-locale/hour-cycles.generated.ts
2323
+ const hourCycles = {
2324
+ "001": ["h23", "h12"],
2325
+ "419": ["h12", "h23"],
2326
+ "AC": ["h23", "h12"],
2327
+ "AD": ["h23"],
2328
+ "AE": ["h12", "h23"],
2329
+ "AF": ["h23", "h12"],
2330
+ "AG": ["h12", "h23"],
2331
+ "AI": ["h23", "h12"],
2332
+ "AL": ["h12", "h23"],
2333
+ "AM": ["h23"],
2334
+ "AO": ["h23"],
2335
+ "AR": ["h12", "h23"],
2336
+ "AS": ["h12", "h23"],
2337
+ "AT": ["h23"],
2338
+ "AU": ["h12", "h23"],
2339
+ "AW": ["h23"],
2340
+ "AX": ["h23"],
2341
+ "AZ": ["h23", "h12"],
2342
+ "BA": ["h23", "h12"],
2343
+ "BB": ["h12", "h23"],
2344
+ "BD": ["h12", "h23"],
2345
+ "BE": ["h23"],
2346
+ "BF": ["h23"],
2347
+ "BG": ["h23", "h12"],
2348
+ "BH": ["h12", "h23"],
2349
+ "BI": ["h23", "h12"],
2350
+ "BJ": ["h23"],
2351
+ "BL": ["h23"],
2352
+ "BM": ["h12", "h23"],
2353
+ "BN": ["h12", "h23"],
2354
+ "BO": ["h12", "h23"],
2355
+ "BQ": ["h23"],
2356
+ "BR": ["h23"],
2357
+ "BS": ["h12", "h23"],
2358
+ "BT": ["h12", "h23"],
2359
+ "BW": ["h23", "h12"],
2360
+ "BY": ["h23", "h12"],
2361
+ "BZ": ["h23", "h12"],
2362
+ "CA": ["h12", "h23"],
2363
+ "CC": ["h23", "h12"],
2364
+ "CD": ["h23"],
2365
+ "CF": ["h23", "h12"],
2366
+ "CG": ["h23"],
2367
+ "CH": ["h23", "h12"],
2368
+ "CI": ["h23"],
2369
+ "CK": ["h23", "h12"],
2370
+ "CL": ["h12", "h23"],
2371
+ "CM": ["h23", "h12"],
2372
+ "CN": ["h23", "h12"],
2373
+ "CO": ["h12", "h23"],
2374
+ "CP": ["h23"],
2375
+ "CR": ["h12", "h23"],
2376
+ "CU": ["h12", "h23"],
2377
+ "CV": ["h23"],
2378
+ "CW": ["h23"],
2379
+ "CX": ["h23", "h12"],
2380
+ "CY": ["h12", "h23"],
2381
+ "CZ": ["h23"],
2382
+ "DE": ["h23"],
2383
+ "DG": ["h23", "h12"],
2384
+ "DJ": ["h12", "h23"],
2385
+ "DK": ["h23"],
2386
+ "DM": ["h12", "h23"],
2387
+ "DO": ["h12", "h23"],
2388
+ "DZ": ["h12", "h23"],
2389
+ "EA": ["h23", "h12"],
2390
+ "EC": ["h12", "h23"],
2391
+ "EE": ["h23"],
2392
+ "EG": ["h12", "h23"],
2393
+ "EH": ["h12", "h23"],
2394
+ "ER": ["h12", "h23"],
2395
+ "ES": ["h23", "h12"],
2396
+ "ET": ["h12", "h23"],
2397
+ "FI": ["h23"],
2398
+ "FJ": ["h12", "h23"],
2399
+ "FK": ["h23", "h12"],
2400
+ "FM": ["h12", "h23"],
2401
+ "FO": ["h23", "h12"],
2402
+ "FR": ["h23"],
2403
+ "GA": ["h23"],
2404
+ "GB": ["h23", "h12"],
2405
+ "GD": ["h12", "h23"],
2406
+ "GE": ["h23", "h12"],
2407
+ "GF": ["h23"],
2408
+ "GG": ["h23", "h12"],
2409
+ "GH": ["h12", "h23"],
2410
+ "GI": ["h23", "h12"],
2411
+ "GL": ["h23", "h12"],
2412
+ "GM": ["h12", "h23"],
2413
+ "GN": ["h23"],
2414
+ "GP": ["h23"],
2415
+ "GQ": ["h23", "h12"],
2416
+ "GR": ["h12", "h23"],
2417
+ "GS": ["h23", "h12"],
2418
+ "GT": ["h12", "h23"],
2419
+ "GU": ["h12", "h23"],
2420
+ "GW": ["h23"],
2421
+ "GY": ["h12", "h23"],
2422
+ "HK": ["h12", "h23"],
2423
+ "HN": ["h12", "h23"],
2424
+ "HR": ["h23"],
2425
+ "HU": ["h23", "h12"],
2426
+ "IC": ["h23", "h12"],
2427
+ "ID": ["h23"],
2428
+ "IE": ["h23", "h12"],
2429
+ "IL": ["h23"],
2430
+ "IM": ["h23", "h12"],
2431
+ "IN": ["h12", "h23"],
2432
+ "IO": ["h23", "h12"],
2433
+ "IQ": ["h12", "h23"],
2434
+ "IR": ["h23"],
2435
+ "IS": ["h23"],
2436
+ "IT": ["h23"],
2437
+ "JE": ["h23", "h12"],
2438
+ "JM": ["h12", "h23"],
2439
+ "JO": ["h12", "h23"],
2440
+ "JP": [
2441
+ "h23",
2442
+ "h11",
2443
+ "h12"
2444
+ ],
2445
+ "KE": ["h23", "h12"],
2446
+ "KG": ["h23", "h12"],
2447
+ "KH": ["h12", "h23"],
2448
+ "KI": ["h12", "h23"],
2449
+ "KM": ["h23", "h12"],
2450
+ "KN": ["h12", "h23"],
2451
+ "KP": ["h12", "h23"],
2452
+ "KR": ["h12", "h23"],
2453
+ "KW": ["h12", "h23"],
2454
+ "KY": ["h12", "h23"],
2455
+ "KZ": ["h23"],
2456
+ "LA": ["h23", "h12"],
2457
+ "LB": ["h12", "h23"],
2458
+ "LC": ["h12", "h23"],
2459
+ "LI": ["h23", "h12"],
2460
+ "LK": ["h23", "h12"],
2461
+ "LR": ["h12", "h23"],
2462
+ "LS": ["h12", "h23"],
2463
+ "LT": ["h23", "h12"],
2464
+ "LU": ["h23", "h12"],
2465
+ "LV": ["h23", "h12"],
2466
+ "LY": ["h12", "h23"],
2467
+ "MA": ["h23", "h12"],
2468
+ "MC": ["h23"],
2469
+ "MD": ["h23"],
2470
+ "ME": ["h23", "h12"],
2471
+ "MF": ["h23"],
2472
+ "MG": ["h23", "h12"],
2473
+ "MH": ["h12", "h23"],
2474
+ "MK": ["h23", "h12"],
2475
+ "ML": ["h23"],
2476
+ "MM": ["h23", "h12"],
2477
+ "MN": ["h23", "h12"],
2478
+ "MO": ["h12", "h23"],
2479
+ "MP": ["h12", "h23"],
2480
+ "MQ": ["h23"],
2481
+ "MR": ["h12", "h23"],
2482
+ "MS": ["h23", "h12"],
2483
+ "MT": ["h23", "h12"],
2484
+ "MU": ["h23", "h12"],
2485
+ "MV": ["h23", "h12"],
2486
+ "MW": ["h12", "h23"],
2487
+ "MX": ["h12", "h23"],
2488
+ "MY": ["h12", "h23"],
2489
+ "MZ": ["h23"],
2490
+ "NA": ["h12", "h23"],
2491
+ "NC": ["h23"],
2492
+ "NE": ["h23"],
2493
+ "NF": ["h23", "h12"],
2494
+ "NG": ["h23", "h12"],
2495
+ "NI": ["h12", "h23"],
2496
+ "NL": ["h23"],
2497
+ "NO": ["h23", "h12"],
2498
+ "NP": ["h23", "h12"],
2499
+ "NR": ["h23", "h12"],
2500
+ "NU": ["h23", "h12"],
2501
+ "NZ": ["h12", "h23"],
2502
+ "OM": ["h12", "h23"],
2503
+ "PA": ["h12", "h23"],
2504
+ "PE": ["h12", "h23"],
2505
+ "PF": ["h23", "h12"],
2506
+ "PG": ["h12", "h23"],
2507
+ "PH": ["h12", "h23"],
2508
+ "PK": ["h12", "h23"],
2509
+ "PL": ["h23", "h12"],
2510
+ "PM": ["h23"],
2511
+ "PN": ["h23", "h12"],
2512
+ "PR": ["h12", "h23"],
2513
+ "PS": ["h12", "h23"],
2514
+ "PT": ["h23"],
2515
+ "PW": ["h12", "h23"],
2516
+ "PY": ["h12", "h23"],
2517
+ "QA": ["h12", "h23"],
2518
+ "RE": ["h23"],
2519
+ "RO": ["h23"],
2520
+ "RS": ["h23", "h12"],
2521
+ "RU": ["h23"],
2522
+ "RW": ["h23", "h12"],
2523
+ "SA": ["h12", "h23"],
2524
+ "SB": ["h12", "h23"],
2525
+ "SC": ["h23", "h12"],
2526
+ "SD": ["h12", "h23"],
2527
+ "SE": ["h23"],
2528
+ "SG": ["h12", "h23"],
2529
+ "SH": ["h23", "h12"],
2530
+ "SI": ["h23"],
2531
+ "SJ": ["h23"],
2532
+ "SK": ["h23"],
2533
+ "SL": ["h12", "h23"],
2534
+ "SM": ["h23", "h12"],
2535
+ "SN": ["h23", "h12"],
2536
+ "SO": ["h12", "h23"],
2537
+ "SR": ["h23"],
2538
+ "SS": ["h12", "h23"],
2539
+ "ST": ["h23"],
2540
+ "SV": ["h12", "h23"],
2541
+ "SX": ["h23", "h12"],
2542
+ "SY": ["h12", "h23"],
2543
+ "SZ": ["h12", "h23"],
2544
+ "TA": ["h23", "h12"],
2545
+ "TC": ["h12", "h23"],
2546
+ "TD": ["h12", "h23"],
2547
+ "TF": ["h23", "h12"],
2548
+ "TG": ["h23"],
2549
+ "TH": ["h23", "h12"],
2550
+ "TJ": ["h23", "h12"],
2551
+ "TL": ["h23", "h12"],
2552
+ "TM": ["h23", "h12"],
2553
+ "TN": ["h12", "h23"],
2554
+ "TO": ["h12", "h23"],
2555
+ "TR": ["h23"],
2556
+ "TT": ["h12", "h23"],
2557
+ "TW": ["h12", "h23"],
2558
+ "TZ": ["h23", "h12"],
2559
+ "UA": ["h23", "h12"],
2560
+ "UG": ["h23", "h12"],
2561
+ "UM": ["h12", "h23"],
2562
+ "US": ["h12", "h23"],
2563
+ "UY": ["h12", "h23"],
2564
+ "UZ": ["h23", "h12"],
2565
+ "VA": ["h23", "h12"],
2566
+ "VC": ["h12", "h23"],
2567
+ "VE": ["h12", "h23"],
2568
+ "VG": ["h12", "h23"],
2569
+ "VI": ["h12", "h23"],
2570
+ "VN": ["h23", "h12"],
2571
+ "VU": ["h12", "h23"],
2572
+ "WF": ["h23"],
2573
+ "WS": ["h12", "h23"],
2574
+ "XK": ["h23", "h12"],
2575
+ "YE": ["h12", "h23"],
2576
+ "YT": ["h23"],
2577
+ "ZA": ["h23", "h12"],
2578
+ "ZM": ["h12", "h23"],
2579
+ "ZW": ["h23", "h12"],
2580
+ "af-ZA": ["h23", "h12"],
2581
+ "ar-001": ["h12", "h23"],
2582
+ "ca-ES": ["h23", "h12"],
2583
+ "en-001": ["h12", "h23"],
2584
+ "en-HK": ["h12", "h23"],
2585
+ "en-IL": ["h23", "h12"],
2586
+ "en-MY": ["h12", "h23"],
2587
+ "es-BR": ["h23", "h12"],
2588
+ "es-ES": ["h23", "h12"],
2589
+ "es-GQ": ["h23", "h12"],
2590
+ "fr-CA": ["h23", "h12"],
2591
+ "gl-ES": ["h23", "h12"],
2592
+ "gu-IN": ["h12", "h23"],
2593
+ "hi-IN": ["h12", "h23"],
2594
+ "it-CH": ["h23", "h12"],
2595
+ "it-IT": ["h23", "h12"],
2596
+ "kn-IN": ["h12", "h23"],
2597
+ "ku-SY": ["h23"],
2598
+ "ml-IN": ["h12", "h23"],
2599
+ "mr-IN": ["h12", "h23"],
2600
+ "pa-IN": ["h12", "h23"],
2601
+ "ta-IN": ["h12", "h23"],
2602
+ "te-IN": ["h12", "h23"],
2603
+ "zu-ZA": ["h23", "h12"]
2604
+ };
2605
+ //#endregion
2606
+ //#region packages/intl-locale/calendars.generated.ts
2607
+ const calendars = {
2608
+ "001": ["gregorian"],
2609
+ "AE": [
2610
+ "gregorian",
2611
+ "islamic-umalqura",
2612
+ "islamic",
2613
+ "islamic-civil",
2614
+ "islamic-tbla"
2615
+ ],
2616
+ "AF": [
2617
+ "persian",
2618
+ "gregorian",
2619
+ "islamic",
2620
+ "islamic-civil",
2621
+ "islamic-tbla"
2622
+ ],
2623
+ "AL": [
2624
+ "gregorian",
2625
+ "islamic-civil",
2626
+ "islamic-tbla"
2627
+ ],
2628
+ "AZ": [
2629
+ "gregorian",
2630
+ "islamic-civil",
2631
+ "islamic-tbla"
2632
+ ],
2633
+ "BD": [
2634
+ "gregorian",
2635
+ "islamic",
2636
+ "islamic-civil",
2637
+ "islamic-tbla"
2638
+ ],
2639
+ "BH": [
2640
+ "gregorian",
2641
+ "islamic-umalqura",
2642
+ "islamic",
2643
+ "islamic-civil",
2644
+ "islamic-tbla"
2645
+ ],
2646
+ "CN": ["gregorian", "chinese"],
2647
+ "CX": ["gregorian", "chinese"],
2648
+ "DJ": [
2649
+ "gregorian",
2650
+ "islamic",
2651
+ "islamic-civil",
2652
+ "islamic-tbla"
2653
+ ],
2654
+ "DZ": [
2655
+ "gregorian",
2656
+ "islamic",
2657
+ "islamic-civil",
2658
+ "islamic-tbla"
2659
+ ],
2660
+ "EG": [
2661
+ "gregorian",
2662
+ "coptic",
2663
+ "islamic",
2664
+ "islamic-civil",
2665
+ "islamic-tbla"
2666
+ ],
2667
+ "EH": [
2668
+ "gregorian",
2669
+ "islamic",
2670
+ "islamic-civil",
2671
+ "islamic-tbla"
2672
+ ],
2673
+ "ER": [
2674
+ "gregorian",
2675
+ "islamic",
2676
+ "islamic-civil",
2677
+ "islamic-tbla"
2678
+ ],
2679
+ "ET": ["gregorian", "ethiopic"],
2680
+ "HK": ["gregorian", "chinese"],
2681
+ "ID": [
2682
+ "gregorian",
2683
+ "islamic",
2684
+ "islamic-civil",
2685
+ "islamic-tbla"
2686
+ ],
2687
+ "IL": [
2688
+ "gregorian",
2689
+ "hebrew",
2690
+ "islamic",
2691
+ "islamic-civil",
2692
+ "islamic-tbla"
2693
+ ],
2694
+ "IN": ["gregorian", "indian"],
2695
+ "IQ": [
2696
+ "gregorian",
2697
+ "islamic",
2698
+ "islamic-civil",
2699
+ "islamic-tbla"
2700
+ ],
2701
+ "IR": [
2702
+ "persian",
2703
+ "gregorian",
2704
+ "islamic",
2705
+ "islamic-civil",
2706
+ "islamic-tbla"
2707
+ ],
2708
+ "JO": [
2709
+ "gregorian",
2710
+ "islamic",
2711
+ "islamic-civil",
2712
+ "islamic-tbla"
2713
+ ],
2714
+ "JP": ["gregorian", "japanese"],
2715
+ "KM": [
2716
+ "gregorian",
2717
+ "islamic",
2718
+ "islamic-civil",
2719
+ "islamic-tbla"
2720
+ ],
2721
+ "KR": ["gregorian", "dangi"],
2722
+ "KW": [
2723
+ "gregorian",
2724
+ "islamic-umalqura",
2725
+ "islamic",
2726
+ "islamic-civil",
2727
+ "islamic-tbla"
2728
+ ],
2729
+ "LB": [
2730
+ "gregorian",
2731
+ "islamic",
2732
+ "islamic-civil",
2733
+ "islamic-tbla"
2734
+ ],
2735
+ "LY": [
2736
+ "gregorian",
2737
+ "islamic",
2738
+ "islamic-civil",
2739
+ "islamic-tbla"
2740
+ ],
2741
+ "MA": [
2742
+ "gregorian",
2743
+ "islamic",
2744
+ "islamic-civil",
2745
+ "islamic-tbla"
2746
+ ],
2747
+ "MO": ["gregorian", "chinese"],
2748
+ "MR": [
2749
+ "gregorian",
2750
+ "islamic",
2751
+ "islamic-civil",
2752
+ "islamic-tbla"
2753
+ ],
2754
+ "MV": [
2755
+ "gregorian",
2756
+ "islamic-civil",
2757
+ "islamic-tbla"
2758
+ ],
2759
+ "MY": [
2760
+ "gregorian",
2761
+ "islamic",
2762
+ "islamic-civil",
2763
+ "islamic-tbla"
2764
+ ],
2765
+ "NE": [
2766
+ "gregorian",
2767
+ "islamic",
2768
+ "islamic-civil",
2769
+ "islamic-tbla"
2770
+ ],
2771
+ "OM": [
2772
+ "gregorian",
2773
+ "islamic",
2774
+ "islamic-civil",
2775
+ "islamic-tbla"
2776
+ ],
2777
+ "PK": [
2778
+ "gregorian",
2779
+ "islamic",
2780
+ "islamic-civil",
2781
+ "islamic-tbla"
2782
+ ],
2783
+ "PS": [
2784
+ "gregorian",
2785
+ "islamic",
2786
+ "islamic-civil",
2787
+ "islamic-tbla"
2788
+ ],
2789
+ "QA": [
2790
+ "gregorian",
2791
+ "islamic-umalqura",
2792
+ "islamic",
2793
+ "islamic-civil",
2794
+ "islamic-tbla"
2795
+ ],
2796
+ "SA": [
2797
+ "gregorian",
2798
+ "islamic-umalqura",
2799
+ "islamic",
2800
+ "islamic-rgsa"
2801
+ ],
2802
+ "SD": [
2803
+ "gregorian",
2804
+ "islamic",
2805
+ "islamic-civil",
2806
+ "islamic-tbla"
2807
+ ],
2808
+ "SG": ["gregorian", "chinese"],
2809
+ "SY": [
2810
+ "gregorian",
2811
+ "islamic",
2812
+ "islamic-civil",
2813
+ "islamic-tbla"
2814
+ ],
2815
+ "TD": [
2816
+ "gregorian",
2817
+ "islamic",
2818
+ "islamic-civil",
2819
+ "islamic-tbla"
2820
+ ],
2821
+ "TH": ["buddhist", "gregorian"],
2822
+ "TJ": [
2823
+ "gregorian",
2824
+ "islamic-civil",
2825
+ "islamic-tbla"
2826
+ ],
2827
+ "TM": [
2828
+ "gregorian",
2829
+ "islamic-civil",
2830
+ "islamic-tbla"
2831
+ ],
2832
+ "TN": [
2833
+ "gregorian",
2834
+ "islamic",
2835
+ "islamic-civil",
2836
+ "islamic-tbla"
2837
+ ],
2838
+ "TR": [
2839
+ "gregorian",
2840
+ "islamic-civil",
2841
+ "islamic-tbla"
2842
+ ],
2843
+ "TW": [
2844
+ "gregorian",
2845
+ "roc",
2846
+ "chinese"
2847
+ ],
2848
+ "UZ": [
2849
+ "gregorian",
2850
+ "islamic-civil",
2851
+ "islamic-tbla"
2852
+ ],
2853
+ "XK": [
2854
+ "gregorian",
2855
+ "islamic-civil",
2856
+ "islamic-tbla"
2857
+ ],
2858
+ "YE": [
2859
+ "gregorian",
2860
+ "islamic",
2861
+ "islamic-civil",
2862
+ "islamic-tbla"
2863
+ ]
2864
+ };
2865
+ //#endregion
2866
+ //#region packages/intl-locale/week-data.generated.ts
2867
+ const weekData = {
2868
+ "001": {
2869
+ "firstDay": 1,
2870
+ "minimalDays": 1,
2871
+ "weekend": [6, 7]
2872
+ },
2873
+ "AC": {
2874
+ "firstDay": 1,
2875
+ "minimalDays": 1,
2876
+ "weekend": [6, 7]
2877
+ },
2878
+ "AD": {
2879
+ "firstDay": 1,
2880
+ "minimalDays": 4,
2881
+ "weekend": [6, 7]
2882
+ },
2883
+ "AE": {
2884
+ "firstDay": 1,
2885
+ "minimalDays": 1,
2886
+ "weekend": [6, 7]
2887
+ },
2888
+ "AF": {
2889
+ "firstDay": 6,
2890
+ "minimalDays": 1,
2891
+ "weekend": [4, 5]
2892
+ },
2893
+ "AG": {
2894
+ "firstDay": 7,
2895
+ "minimalDays": 1,
2896
+ "weekend": [6, 7]
2897
+ },
2898
+ "AI": {
2899
+ "firstDay": 1,
2900
+ "minimalDays": 1,
2901
+ "weekend": [6, 7]
2902
+ },
2903
+ "AL": {
2904
+ "firstDay": 1,
2905
+ "minimalDays": 1,
2906
+ "weekend": [6, 7]
2907
+ },
2908
+ "AM": {
2909
+ "firstDay": 1,
2910
+ "minimalDays": 1,
2911
+ "weekend": [6, 7]
2912
+ },
2913
+ "AO": {
2914
+ "firstDay": 1,
2915
+ "minimalDays": 1,
2916
+ "weekend": [6, 7]
2917
+ },
2918
+ "AQ": {
2919
+ "firstDay": 1,
2920
+ "minimalDays": 1,
2921
+ "weekend": [6, 7]
2922
+ },
2923
+ "AR": {
2924
+ "firstDay": 1,
2925
+ "minimalDays": 1,
2926
+ "weekend": [6, 7]
2927
+ },
2928
+ "AS": {
2929
+ "firstDay": 7,
2930
+ "minimalDays": 1,
2931
+ "weekend": [6, 7]
2932
+ },
2933
+ "AT": {
2934
+ "firstDay": 1,
2935
+ "minimalDays": 4,
2936
+ "weekend": [6, 7]
2937
+ },
2938
+ "AU": {
2939
+ "firstDay": 1,
2940
+ "minimalDays": 1,
2941
+ "weekend": [6, 7]
2942
+ },
2943
+ "AW": {
2944
+ "firstDay": 1,
2945
+ "minimalDays": 1,
2946
+ "weekend": [6, 7]
2947
+ },
2948
+ "AX": {
2949
+ "firstDay": 1,
2950
+ "minimalDays": 4,
2951
+ "weekend": [6, 7]
2952
+ },
2953
+ "AZ": {
2954
+ "firstDay": 1,
2955
+ "minimalDays": 1,
2956
+ "weekend": [6, 7]
2957
+ },
2958
+ "BA": {
2959
+ "firstDay": 1,
2960
+ "minimalDays": 1,
2961
+ "weekend": [6, 7]
2962
+ },
2963
+ "BB": {
2964
+ "firstDay": 1,
2965
+ "minimalDays": 1,
2966
+ "weekend": [6, 7]
2967
+ },
2968
+ "BD": {
2969
+ "firstDay": 7,
2970
+ "minimalDays": 1,
2971
+ "weekend": [6, 7]
2972
+ },
2973
+ "BE": {
2974
+ "firstDay": 1,
2975
+ "minimalDays": 4,
2976
+ "weekend": [6, 7]
2977
+ },
2978
+ "BF": {
2979
+ "firstDay": 1,
2980
+ "minimalDays": 1,
2981
+ "weekend": [6, 7]
2982
+ },
2983
+ "BG": {
2984
+ "firstDay": 1,
2985
+ "minimalDays": 4,
2986
+ "weekend": [6, 7]
2987
+ },
2988
+ "BH": {
2989
+ "firstDay": 6,
2990
+ "minimalDays": 1,
2991
+ "weekend": [5, 6]
2992
+ },
2993
+ "BI": {
2994
+ "firstDay": 1,
2995
+ "minimalDays": 1,
2996
+ "weekend": [6, 7]
2997
+ },
2998
+ "BJ": {
2999
+ "firstDay": 1,
3000
+ "minimalDays": 1,
3001
+ "weekend": [6, 7]
3002
+ },
3003
+ "BL": {
3004
+ "firstDay": 1,
3005
+ "minimalDays": 1,
3006
+ "weekend": [6, 7]
3007
+ },
3008
+ "BM": {
3009
+ "firstDay": 1,
3010
+ "minimalDays": 1,
3011
+ "weekend": [6, 7]
3012
+ },
3013
+ "BN": {
3014
+ "firstDay": 1,
3015
+ "minimalDays": 1,
3016
+ "weekend": [6, 7]
3017
+ },
3018
+ "BO": {
3019
+ "firstDay": 1,
3020
+ "minimalDays": 1,
3021
+ "weekend": [6, 7]
3022
+ },
3023
+ "BQ": {
3024
+ "firstDay": 1,
3025
+ "minimalDays": 1,
3026
+ "weekend": [6, 7]
3027
+ },
3028
+ "BR": {
3029
+ "firstDay": 7,
3030
+ "minimalDays": 1,
3031
+ "weekend": [6, 7]
3032
+ },
3033
+ "BS": {
3034
+ "firstDay": 7,
3035
+ "minimalDays": 1,
3036
+ "weekend": [6, 7]
3037
+ },
3038
+ "BT": {
3039
+ "firstDay": 7,
3040
+ "minimalDays": 1,
3041
+ "weekend": [6, 7]
3042
+ },
3043
+ "BV": {
3044
+ "firstDay": 1,
3045
+ "minimalDays": 1,
3046
+ "weekend": [6, 7]
3047
+ },
3048
+ "BW": {
3049
+ "firstDay": 7,
3050
+ "minimalDays": 1,
3051
+ "weekend": [6, 7]
3052
+ },
3053
+ "BY": {
3054
+ "firstDay": 1,
3055
+ "minimalDays": 1,
3056
+ "weekend": [6, 7]
3057
+ },
3058
+ "BZ": {
3059
+ "firstDay": 7,
3060
+ "minimalDays": 1,
3061
+ "weekend": [6, 7]
3062
+ },
3063
+ "CA": {
3064
+ "firstDay": 7,
3065
+ "minimalDays": 1,
3066
+ "weekend": [6, 7]
3067
+ },
3068
+ "CC": {
3069
+ "firstDay": 1,
3070
+ "minimalDays": 1,
3071
+ "weekend": [6, 7]
3072
+ },
3073
+ "CD": {
3074
+ "firstDay": 1,
3075
+ "minimalDays": 1,
3076
+ "weekend": [6, 7]
3077
+ },
3078
+ "CF": {
3079
+ "firstDay": 1,
3080
+ "minimalDays": 1,
3081
+ "weekend": [6, 7]
3082
+ },
3083
+ "CG": {
3084
+ "firstDay": 1,
3085
+ "minimalDays": 1,
3086
+ "weekend": [6, 7]
3087
+ },
3088
+ "CH": {
3089
+ "firstDay": 1,
3090
+ "minimalDays": 4,
3091
+ "weekend": [6, 7]
3092
+ },
3093
+ "CI": {
3094
+ "firstDay": 1,
3095
+ "minimalDays": 1,
3096
+ "weekend": [6, 7]
3097
+ },
3098
+ "CK": {
3099
+ "firstDay": 1,
3100
+ "minimalDays": 1,
3101
+ "weekend": [6, 7]
3102
+ },
3103
+ "CL": {
3104
+ "firstDay": 1,
3105
+ "minimalDays": 1,
3106
+ "weekend": [6, 7]
3107
+ },
3108
+ "CM": {
3109
+ "firstDay": 1,
3110
+ "minimalDays": 1,
3111
+ "weekend": [6, 7]
3112
+ },
3113
+ "CN": {
3114
+ "firstDay": 1,
3115
+ "minimalDays": 1,
3116
+ "weekend": [6, 7]
3117
+ },
3118
+ "CO": {
3119
+ "firstDay": 7,
3120
+ "minimalDays": 1,
3121
+ "weekend": [6, 7]
3122
+ },
3123
+ "CP": {
3124
+ "firstDay": 1,
3125
+ "minimalDays": 1,
3126
+ "weekend": [6, 7]
3127
+ },
3128
+ "CQ": {
3129
+ "firstDay": 1,
3130
+ "minimalDays": 1,
3131
+ "weekend": [6, 7]
3132
+ },
3133
+ "CR": {
3134
+ "firstDay": 1,
3135
+ "minimalDays": 1,
3136
+ "weekend": [6, 7]
3137
+ },
3138
+ "CU": {
3139
+ "firstDay": 1,
3140
+ "minimalDays": 1,
3141
+ "weekend": [6, 7]
3142
+ },
3143
+ "CV": {
3144
+ "firstDay": 1,
3145
+ "minimalDays": 1,
3146
+ "weekend": [6, 7]
3147
+ },
3148
+ "CW": {
3149
+ "firstDay": 1,
3150
+ "minimalDays": 1,
3151
+ "weekend": [6, 7]
3152
+ },
3153
+ "CX": {
3154
+ "firstDay": 1,
3155
+ "minimalDays": 1,
3156
+ "weekend": [6, 7]
3157
+ },
3158
+ "CY": {
3159
+ "firstDay": 1,
3160
+ "minimalDays": 1,
3161
+ "weekend": [6, 7]
3162
+ },
3163
+ "CZ": {
3164
+ "firstDay": 1,
3165
+ "minimalDays": 4,
3166
+ "weekend": [6, 7]
3167
+ },
3168
+ "DE": {
3169
+ "firstDay": 1,
3170
+ "minimalDays": 4,
3171
+ "weekend": [6, 7]
3172
+ },
3173
+ "DG": {
3174
+ "firstDay": 1,
3175
+ "minimalDays": 1,
3176
+ "weekend": [6, 7]
3177
+ },
3178
+ "DJ": {
3179
+ "firstDay": 6,
3180
+ "minimalDays": 1,
3181
+ "weekend": [6, 7]
3182
+ },
3183
+ "DK": {
3184
+ "firstDay": 1,
3185
+ "minimalDays": 4,
3186
+ "weekend": [6, 7]
3187
+ },
3188
+ "DM": {
3189
+ "firstDay": 7,
3190
+ "minimalDays": 1,
3191
+ "weekend": [6, 7]
3192
+ },
3193
+ "DO": {
3194
+ "firstDay": 7,
3195
+ "minimalDays": 1,
3196
+ "weekend": [6, 7]
3197
+ },
3198
+ "DZ": {
3199
+ "firstDay": 6,
3200
+ "minimalDays": 1,
3201
+ "weekend": [5, 6]
3202
+ },
3203
+ "EA": {
3204
+ "firstDay": 1,
3205
+ "minimalDays": 1,
3206
+ "weekend": [6, 7]
3207
+ },
3208
+ "EC": {
3209
+ "firstDay": 1,
3210
+ "minimalDays": 1,
3211
+ "weekend": [6, 7]
3212
+ },
3213
+ "EE": {
3214
+ "firstDay": 1,
3215
+ "minimalDays": 4,
3216
+ "weekend": [6, 7]
3217
+ },
3218
+ "EG": {
3219
+ "firstDay": 6,
3220
+ "minimalDays": 1,
3221
+ "weekend": [5, 6]
3222
+ },
3223
+ "EH": {
3224
+ "firstDay": 1,
3225
+ "minimalDays": 1,
3226
+ "weekend": [6, 7]
3227
+ },
3228
+ "ER": {
3229
+ "firstDay": 1,
3230
+ "minimalDays": 1,
3231
+ "weekend": [6, 7]
3232
+ },
3233
+ "ES": {
3234
+ "firstDay": 1,
3235
+ "minimalDays": 4,
3236
+ "weekend": [6, 7]
3237
+ },
3238
+ "ET": {
3239
+ "firstDay": 7,
3240
+ "minimalDays": 1,
3241
+ "weekend": [6, 7]
3242
+ },
3243
+ "FI": {
3244
+ "firstDay": 1,
3245
+ "minimalDays": 4,
3246
+ "weekend": [6, 7]
3247
+ },
3248
+ "FJ": {
3249
+ "firstDay": 1,
3250
+ "minimalDays": 4,
3251
+ "weekend": [6, 7]
3252
+ },
3253
+ "FK": {
3254
+ "firstDay": 1,
3255
+ "minimalDays": 1,
3256
+ "weekend": [6, 7]
3257
+ },
3258
+ "FM": {
3259
+ "firstDay": 1,
3260
+ "minimalDays": 1,
3261
+ "weekend": [6, 7]
3262
+ },
3263
+ "FO": {
3264
+ "firstDay": 1,
3265
+ "minimalDays": 4,
3266
+ "weekend": [6, 7]
3267
+ },
3268
+ "FR": {
3269
+ "firstDay": 1,
3270
+ "minimalDays": 4,
3271
+ "weekend": [6, 7]
3272
+ },
3273
+ "GA": {
3274
+ "firstDay": 1,
3275
+ "minimalDays": 1,
3276
+ "weekend": [6, 7]
3277
+ },
3278
+ "GB": {
3279
+ "firstDay": 1,
3280
+ "minimalDays": 4,
3281
+ "weekend": [6, 7]
3282
+ },
3283
+ "GD": {
3284
+ "firstDay": 1,
3285
+ "minimalDays": 1,
3286
+ "weekend": [6, 7]
3287
+ },
3288
+ "GE": {
3289
+ "firstDay": 1,
3290
+ "minimalDays": 1,
3291
+ "weekend": [6, 7]
3292
+ },
3293
+ "GF": {
3294
+ "firstDay": 1,
3295
+ "minimalDays": 4,
3296
+ "weekend": [6, 7]
3297
+ },
3298
+ "GG": {
3299
+ "firstDay": 1,
3300
+ "minimalDays": 4,
3301
+ "weekend": [6, 7]
3302
+ },
3303
+ "GH": {
3304
+ "firstDay": 1,
3305
+ "minimalDays": 1,
3306
+ "weekend": [6, 7]
3307
+ },
3308
+ "GI": {
3309
+ "firstDay": 1,
3310
+ "minimalDays": 4,
3311
+ "weekend": [6, 7]
3312
+ },
3313
+ "GL": {
3314
+ "firstDay": 1,
3315
+ "minimalDays": 1,
3316
+ "weekend": [6, 7]
3317
+ },
3318
+ "GM": {
3319
+ "firstDay": 1,
3320
+ "minimalDays": 1,
3321
+ "weekend": [6, 7]
3322
+ },
3323
+ "GN": {
3324
+ "firstDay": 1,
3325
+ "minimalDays": 1,
3326
+ "weekend": [6, 7]
3327
+ },
3328
+ "GP": {
3329
+ "firstDay": 1,
3330
+ "minimalDays": 4,
3331
+ "weekend": [6, 7]
3332
+ },
3333
+ "GQ": {
3334
+ "firstDay": 1,
3335
+ "minimalDays": 1,
3336
+ "weekend": [6, 7]
3337
+ },
3338
+ "GR": {
3339
+ "firstDay": 1,
3340
+ "minimalDays": 4,
3341
+ "weekend": [6, 7]
3342
+ },
3343
+ "GS": {
3344
+ "firstDay": 1,
3345
+ "minimalDays": 1,
3346
+ "weekend": [6, 7]
3347
+ },
3348
+ "GT": {
3349
+ "firstDay": 7,
3350
+ "minimalDays": 1,
3351
+ "weekend": [6, 7]
3352
+ },
3353
+ "GU": {
3354
+ "firstDay": 7,
3355
+ "minimalDays": 1,
3356
+ "weekend": [6, 7]
3357
+ },
3358
+ "GW": {
3359
+ "firstDay": 1,
3360
+ "minimalDays": 1,
3361
+ "weekend": [6, 7]
3362
+ },
3363
+ "GY": {
3364
+ "firstDay": 1,
3365
+ "minimalDays": 1,
3366
+ "weekend": [6, 7]
3367
+ },
3368
+ "HK": {
3369
+ "firstDay": 7,
3370
+ "minimalDays": 1,
3371
+ "weekend": [6, 7]
3372
+ },
3373
+ "HM": {
3374
+ "firstDay": 1,
3375
+ "minimalDays": 1,
3376
+ "weekend": [6, 7]
3377
+ },
3378
+ "HN": {
3379
+ "firstDay": 7,
3380
+ "minimalDays": 1,
3381
+ "weekend": [6, 7]
3382
+ },
3383
+ "HR": {
3384
+ "firstDay": 1,
3385
+ "minimalDays": 1,
3386
+ "weekend": [6, 7]
3387
+ },
3388
+ "HT": {
3389
+ "firstDay": 1,
3390
+ "minimalDays": 1,
3391
+ "weekend": [6, 7]
3392
+ },
3393
+ "HU": {
3394
+ "firstDay": 1,
3395
+ "minimalDays": 4,
3396
+ "weekend": [6, 7]
3397
+ },
3398
+ "IC": {
3399
+ "firstDay": 1,
3400
+ "minimalDays": 1,
3401
+ "weekend": [6, 7]
3402
+ },
3403
+ "ID": {
3404
+ "firstDay": 7,
3405
+ "minimalDays": 1,
3406
+ "weekend": [6, 7]
3407
+ },
3408
+ "IE": {
3409
+ "firstDay": 1,
3410
+ "minimalDays": 4,
3411
+ "weekend": [6, 7]
3412
+ },
3413
+ "IL": {
3414
+ "firstDay": 7,
3415
+ "minimalDays": 1,
3416
+ "weekend": [5, 6]
3417
+ },
3418
+ "IM": {
3419
+ "firstDay": 1,
3420
+ "minimalDays": 4,
3421
+ "weekend": [6, 7]
3422
+ },
3423
+ "IN": {
3424
+ "firstDay": 7,
3425
+ "minimalDays": 1,
3426
+ "weekend": [7]
3427
+ },
3428
+ "IO": {
3429
+ "firstDay": 1,
3430
+ "minimalDays": 1,
3431
+ "weekend": [6, 7]
3432
+ },
3433
+ "IQ": {
3434
+ "firstDay": 6,
3435
+ "minimalDays": 1,
3436
+ "weekend": [5, 6]
3437
+ },
3438
+ "IR": {
3439
+ "firstDay": 6,
3440
+ "minimalDays": 1,
3441
+ "weekend": [5]
3442
+ },
3443
+ "IS": {
3444
+ "firstDay": 7,
3445
+ "minimalDays": 4,
3446
+ "weekend": [6, 7]
3447
+ },
3448
+ "IT": {
3449
+ "firstDay": 1,
3450
+ "minimalDays": 4,
3451
+ "weekend": [6, 7]
3452
+ },
3453
+ "JE": {
3454
+ "firstDay": 1,
3455
+ "minimalDays": 4,
3456
+ "weekend": [6, 7]
3457
+ },
3458
+ "JM": {
3459
+ "firstDay": 7,
3460
+ "minimalDays": 1,
3461
+ "weekend": [6, 7]
3462
+ },
3463
+ "JO": {
3464
+ "firstDay": 6,
3465
+ "minimalDays": 1,
3466
+ "weekend": [5, 6]
3467
+ },
3468
+ "JP": {
3469
+ "firstDay": 7,
3470
+ "minimalDays": 1,
3471
+ "weekend": [6, 7]
3472
+ },
3473
+ "KE": {
3474
+ "firstDay": 7,
3475
+ "minimalDays": 1,
3476
+ "weekend": [6, 7]
3477
+ },
3478
+ "KG": {
3479
+ "firstDay": 1,
3480
+ "minimalDays": 1,
3481
+ "weekend": [6, 7]
3482
+ },
3483
+ "KH": {
3484
+ "firstDay": 7,
3485
+ "minimalDays": 1,
3486
+ "weekend": [6, 7]
3487
+ },
3488
+ "KI": {
3489
+ "firstDay": 1,
3490
+ "minimalDays": 1,
3491
+ "weekend": [6, 7]
3492
+ },
3493
+ "KM": {
3494
+ "firstDay": 1,
3495
+ "minimalDays": 1,
3496
+ "weekend": [6, 7]
3497
+ },
3498
+ "KN": {
3499
+ "firstDay": 1,
3500
+ "minimalDays": 1,
3501
+ "weekend": [6, 7]
3502
+ },
3503
+ "KP": {
3504
+ "firstDay": 1,
3505
+ "minimalDays": 1,
3506
+ "weekend": [6, 7]
3507
+ },
3508
+ "KR": {
3509
+ "firstDay": 7,
3510
+ "minimalDays": 1,
3511
+ "weekend": [6, 7]
3512
+ },
3513
+ "KW": {
3514
+ "firstDay": 6,
3515
+ "minimalDays": 1,
3516
+ "weekend": [5, 6]
3517
+ },
3518
+ "KY": {
3519
+ "firstDay": 1,
3520
+ "minimalDays": 1,
3521
+ "weekend": [6, 7]
3522
+ },
3523
+ "KZ": {
3524
+ "firstDay": 1,
3525
+ "minimalDays": 1,
3526
+ "weekend": [6, 7]
3527
+ },
3528
+ "LA": {
3529
+ "firstDay": 7,
3530
+ "minimalDays": 1,
3531
+ "weekend": [6, 7]
3532
+ },
3533
+ "LB": {
3534
+ "firstDay": 1,
3535
+ "minimalDays": 1,
3536
+ "weekend": [6, 7]
3537
+ },
3538
+ "LC": {
3539
+ "firstDay": 1,
3540
+ "minimalDays": 1,
3541
+ "weekend": [6, 7]
3542
+ },
3543
+ "LI": {
3544
+ "firstDay": 1,
3545
+ "minimalDays": 4,
3546
+ "weekend": [6, 7]
3547
+ },
3548
+ "LK": {
3549
+ "firstDay": 1,
3550
+ "minimalDays": 1,
3551
+ "weekend": [6, 7]
3552
+ },
3553
+ "LR": {
3554
+ "firstDay": 1,
3555
+ "minimalDays": 1,
3556
+ "weekend": [6, 7]
3557
+ },
3558
+ "LS": {
3559
+ "firstDay": 1,
3560
+ "minimalDays": 1,
3561
+ "weekend": [6, 7]
3562
+ },
3563
+ "LT": {
3564
+ "firstDay": 1,
3565
+ "minimalDays": 4,
3566
+ "weekend": [6, 7]
3567
+ },
3568
+ "LU": {
3569
+ "firstDay": 1,
3570
+ "minimalDays": 4,
3571
+ "weekend": [6, 7]
3572
+ },
3573
+ "LV": {
3574
+ "firstDay": 1,
3575
+ "minimalDays": 1,
3576
+ "weekend": [6, 7]
3577
+ },
3578
+ "LY": {
3579
+ "firstDay": 6,
3580
+ "minimalDays": 1,
3581
+ "weekend": [5, 6]
3582
+ },
3583
+ "MA": {
3584
+ "firstDay": 1,
3585
+ "minimalDays": 1,
3586
+ "weekend": [6, 7]
3587
+ },
3588
+ "MC": {
3589
+ "firstDay": 1,
3590
+ "minimalDays": 4,
3591
+ "weekend": [6, 7]
3592
+ },
3593
+ "MD": {
3594
+ "firstDay": 1,
3595
+ "minimalDays": 1,
3596
+ "weekend": [6, 7]
3597
+ },
3598
+ "ME": {
3599
+ "firstDay": 1,
3600
+ "minimalDays": 1,
3601
+ "weekend": [6, 7]
3602
+ },
3603
+ "MF": {
3604
+ "firstDay": 1,
3605
+ "minimalDays": 1,
3606
+ "weekend": [6, 7]
3607
+ },
3608
+ "MG": {
3609
+ "firstDay": 1,
3610
+ "minimalDays": 1,
3611
+ "weekend": [6, 7]
3612
+ },
3613
+ "MH": {
3614
+ "firstDay": 7,
3615
+ "minimalDays": 1,
3616
+ "weekend": [6, 7]
3617
+ },
3618
+ "MK": {
3619
+ "firstDay": 1,
3620
+ "minimalDays": 1,
3621
+ "weekend": [6, 7]
3622
+ },
3623
+ "ML": {
3624
+ "firstDay": 1,
3625
+ "minimalDays": 1,
3626
+ "weekend": [6, 7]
3627
+ },
3628
+ "MM": {
3629
+ "firstDay": 7,
3630
+ "minimalDays": 1,
3631
+ "weekend": [6, 7]
3632
+ },
3633
+ "MN": {
3634
+ "firstDay": 1,
3635
+ "minimalDays": 1,
3636
+ "weekend": [6, 7]
3637
+ },
3638
+ "MO": {
3639
+ "firstDay": 7,
3640
+ "minimalDays": 1,
3641
+ "weekend": [6, 7]
3642
+ },
3643
+ "MP": {
3644
+ "firstDay": 1,
3645
+ "minimalDays": 1,
3646
+ "weekend": [6, 7]
3647
+ },
3648
+ "MQ": {
3649
+ "firstDay": 1,
3650
+ "minimalDays": 4,
3651
+ "weekend": [6, 7]
3652
+ },
3653
+ "MR": {
3654
+ "firstDay": 1,
3655
+ "minimalDays": 1,
3656
+ "weekend": [6, 7]
3657
+ },
3658
+ "MS": {
3659
+ "firstDay": 1,
3660
+ "minimalDays": 1,
3661
+ "weekend": [6, 7]
3662
+ },
3663
+ "MT": {
3664
+ "firstDay": 7,
3665
+ "minimalDays": 1,
3666
+ "weekend": [6, 7]
3667
+ },
3668
+ "MU": {
3669
+ "firstDay": 1,
3670
+ "minimalDays": 1,
3671
+ "weekend": [6, 7]
3672
+ },
3673
+ "MV": {
3674
+ "firstDay": 5,
3675
+ "minimalDays": 1,
3676
+ "weekend": [6, 7]
3677
+ },
3678
+ "MW": {
3679
+ "firstDay": 1,
3680
+ "minimalDays": 1,
3681
+ "weekend": [6, 7]
3682
+ },
3683
+ "MX": {
3684
+ "firstDay": 7,
3685
+ "minimalDays": 1,
3686
+ "weekend": [6, 7]
3687
+ },
3688
+ "MY": {
3689
+ "firstDay": 1,
3690
+ "minimalDays": 1,
3691
+ "weekend": [6, 7]
3692
+ },
3693
+ "MZ": {
3694
+ "firstDay": 7,
3695
+ "minimalDays": 1,
3696
+ "weekend": [6, 7]
3697
+ },
3698
+ "NA": {
3699
+ "firstDay": 1,
3700
+ "minimalDays": 1,
3701
+ "weekend": [6, 7]
3702
+ },
3703
+ "NC": {
3704
+ "firstDay": 1,
3705
+ "minimalDays": 1,
3706
+ "weekend": [6, 7]
3707
+ },
3708
+ "NE": {
3709
+ "firstDay": 1,
3710
+ "minimalDays": 1,
3711
+ "weekend": [6, 7]
3712
+ },
3713
+ "NF": {
3714
+ "firstDay": 1,
3715
+ "minimalDays": 1,
3716
+ "weekend": [6, 7]
3717
+ },
3718
+ "NG": {
3719
+ "firstDay": 1,
3720
+ "minimalDays": 1,
3721
+ "weekend": [6, 7]
3722
+ },
3723
+ "NI": {
3724
+ "firstDay": 7,
3725
+ "minimalDays": 1,
3726
+ "weekend": [6, 7]
3727
+ },
3728
+ "NL": {
3729
+ "firstDay": 1,
3730
+ "minimalDays": 4,
3731
+ "weekend": [6, 7]
3732
+ },
3733
+ "NO": {
3734
+ "firstDay": 1,
3735
+ "minimalDays": 4,
3736
+ "weekend": [6, 7]
3737
+ },
3738
+ "NP": {
3739
+ "firstDay": 7,
3740
+ "minimalDays": 1,
3741
+ "weekend": [6, 7]
3742
+ },
3743
+ "NR": {
3744
+ "firstDay": 1,
3745
+ "minimalDays": 1,
3746
+ "weekend": [6, 7]
3747
+ },
3748
+ "NU": {
3749
+ "firstDay": 1,
3750
+ "minimalDays": 1,
3751
+ "weekend": [6, 7]
3752
+ },
3753
+ "NZ": {
3754
+ "firstDay": 1,
3755
+ "minimalDays": 1,
3756
+ "weekend": [6, 7]
3757
+ },
3758
+ "OM": {
3759
+ "firstDay": 6,
3760
+ "minimalDays": 1,
3761
+ "weekend": [5, 6]
3762
+ },
3763
+ "PA": {
3764
+ "firstDay": 7,
3765
+ "minimalDays": 1,
3766
+ "weekend": [6, 7]
3767
+ },
3768
+ "PE": {
3769
+ "firstDay": 7,
3770
+ "minimalDays": 1,
3771
+ "weekend": [6, 7]
3772
+ },
3773
+ "PF": {
3774
+ "firstDay": 1,
3775
+ "minimalDays": 1,
3776
+ "weekend": [6, 7]
3777
+ },
3778
+ "PG": {
3779
+ "firstDay": 1,
3780
+ "minimalDays": 1,
3781
+ "weekend": [6, 7]
3782
+ },
3783
+ "PH": {
3784
+ "firstDay": 7,
3785
+ "minimalDays": 1,
3786
+ "weekend": [6, 7]
3787
+ },
3788
+ "PK": {
3789
+ "firstDay": 7,
3790
+ "minimalDays": 1,
3791
+ "weekend": [6, 7]
3792
+ },
3793
+ "PL": {
3794
+ "firstDay": 1,
3795
+ "minimalDays": 4,
3796
+ "weekend": [6, 7]
3797
+ },
3798
+ "PM": {
3799
+ "firstDay": 1,
3800
+ "minimalDays": 1,
3801
+ "weekend": [6, 7]
3802
+ },
3803
+ "PN": {
3804
+ "firstDay": 1,
3805
+ "minimalDays": 1,
3806
+ "weekend": [6, 7]
3807
+ },
3808
+ "PR": {
3809
+ "firstDay": 7,
3810
+ "minimalDays": 1,
3811
+ "weekend": [6, 7]
3812
+ },
3813
+ "PS": {
3814
+ "firstDay": 1,
3815
+ "minimalDays": 1,
3816
+ "weekend": [6, 7]
3817
+ },
3818
+ "PT": {
3819
+ "firstDay": 7,
3820
+ "minimalDays": 4,
3821
+ "weekend": [6, 7]
3822
+ },
3823
+ "PW": {
3824
+ "firstDay": 1,
3825
+ "minimalDays": 1,
3826
+ "weekend": [6, 7]
3827
+ },
3828
+ "PY": {
3829
+ "firstDay": 7,
3830
+ "minimalDays": 1,
3831
+ "weekend": [6, 7]
3832
+ },
3833
+ "QA": {
3834
+ "firstDay": 6,
3835
+ "minimalDays": 1,
3836
+ "weekend": [5, 6]
3837
+ },
3838
+ "RE": {
3839
+ "firstDay": 1,
3840
+ "minimalDays": 4,
3841
+ "weekend": [6, 7]
3842
+ },
3843
+ "RO": {
3844
+ "firstDay": 1,
3845
+ "minimalDays": 1,
3846
+ "weekend": [6, 7]
3847
+ },
3848
+ "RS": {
3849
+ "firstDay": 1,
3850
+ "minimalDays": 1,
3851
+ "weekend": [6, 7]
3852
+ },
3853
+ "RU": {
3854
+ "firstDay": 1,
3855
+ "minimalDays": 4,
3856
+ "weekend": [6, 7]
3857
+ },
3858
+ "RW": {
3859
+ "firstDay": 1,
3860
+ "minimalDays": 1,
3861
+ "weekend": [6, 7]
3862
+ },
3863
+ "SA": {
3864
+ "firstDay": 7,
3865
+ "minimalDays": 1,
3866
+ "weekend": [5, 6]
3867
+ },
3868
+ "SB": {
3869
+ "firstDay": 1,
3870
+ "minimalDays": 1,
3871
+ "weekend": [6, 7]
3872
+ },
3873
+ "SC": {
3874
+ "firstDay": 1,
3875
+ "minimalDays": 1,
3876
+ "weekend": [6, 7]
3877
+ },
3878
+ "SD": {
3879
+ "firstDay": 6,
3880
+ "minimalDays": 1,
3881
+ "weekend": [5, 6]
3882
+ },
3883
+ "SE": {
3884
+ "firstDay": 1,
3885
+ "minimalDays": 4,
3886
+ "weekend": [6, 7]
3887
+ },
3888
+ "SG": {
3889
+ "firstDay": 7,
3890
+ "minimalDays": 1,
3891
+ "weekend": [6, 7]
3892
+ },
3893
+ "SH": {
3894
+ "firstDay": 1,
3895
+ "minimalDays": 1,
3896
+ "weekend": [6, 7]
3897
+ },
3898
+ "SI": {
3899
+ "firstDay": 1,
3900
+ "minimalDays": 1,
3901
+ "weekend": [6, 7]
3902
+ },
3903
+ "SJ": {
3904
+ "firstDay": 1,
3905
+ "minimalDays": 4,
3906
+ "weekend": [6, 7]
3907
+ },
3908
+ "SK": {
3909
+ "firstDay": 1,
3910
+ "minimalDays": 4,
3911
+ "weekend": [6, 7]
3912
+ },
3913
+ "SL": {
3914
+ "firstDay": 1,
3915
+ "minimalDays": 1,
3916
+ "weekend": [6, 7]
3917
+ },
3918
+ "SM": {
3919
+ "firstDay": 1,
3920
+ "minimalDays": 4,
3921
+ "weekend": [6, 7]
3922
+ },
3923
+ "SN": {
3924
+ "firstDay": 1,
3925
+ "minimalDays": 1,
3926
+ "weekend": [6, 7]
3927
+ },
3928
+ "SO": {
3929
+ "firstDay": 1,
3930
+ "minimalDays": 1,
3931
+ "weekend": [6, 7]
3932
+ },
3933
+ "SR": {
3934
+ "firstDay": 1,
3935
+ "minimalDays": 1,
3936
+ "weekend": [6, 7]
3937
+ },
3938
+ "SS": {
3939
+ "firstDay": 1,
3940
+ "minimalDays": 1,
3941
+ "weekend": [6, 7]
3942
+ },
3943
+ "ST": {
3944
+ "firstDay": 1,
3945
+ "minimalDays": 1,
3946
+ "weekend": [6, 7]
3947
+ },
3948
+ "SV": {
3949
+ "firstDay": 7,
3950
+ "minimalDays": 1,
3951
+ "weekend": [6, 7]
3952
+ },
3953
+ "SX": {
3954
+ "firstDay": 1,
3955
+ "minimalDays": 1,
3956
+ "weekend": [6, 7]
3957
+ },
3958
+ "SY": {
3959
+ "firstDay": 6,
3960
+ "minimalDays": 1,
3961
+ "weekend": [5, 6]
3962
+ },
3963
+ "SZ": {
3964
+ "firstDay": 1,
3965
+ "minimalDays": 1,
3966
+ "weekend": [6, 7]
3967
+ },
3968
+ "TA": {
3969
+ "firstDay": 1,
3970
+ "minimalDays": 1,
3971
+ "weekend": [6, 7]
3972
+ },
3973
+ "TC": {
3974
+ "firstDay": 1,
3975
+ "minimalDays": 1,
3976
+ "weekend": [6, 7]
3977
+ },
3978
+ "TD": {
3979
+ "firstDay": 1,
3980
+ "minimalDays": 1,
3981
+ "weekend": [6, 7]
3982
+ },
3983
+ "TF": {
3984
+ "firstDay": 1,
3985
+ "minimalDays": 1,
3986
+ "weekend": [6, 7]
3987
+ },
3988
+ "TG": {
3989
+ "firstDay": 1,
3990
+ "minimalDays": 1,
3991
+ "weekend": [6, 7]
3992
+ },
3993
+ "TH": {
3994
+ "firstDay": 7,
3995
+ "minimalDays": 1,
3996
+ "weekend": [6, 7]
3997
+ },
3998
+ "TJ": {
3999
+ "firstDay": 1,
4000
+ "minimalDays": 1,
4001
+ "weekend": [6, 7]
4002
+ },
4003
+ "TK": {
4004
+ "firstDay": 1,
4005
+ "minimalDays": 1,
4006
+ "weekend": [6, 7]
4007
+ },
4008
+ "TL": {
4009
+ "firstDay": 1,
4010
+ "minimalDays": 1,
4011
+ "weekend": [6, 7]
4012
+ },
4013
+ "TM": {
4014
+ "firstDay": 1,
4015
+ "minimalDays": 1,
4016
+ "weekend": [6, 7]
4017
+ },
4018
+ "TN": {
4019
+ "firstDay": 1,
4020
+ "minimalDays": 1,
4021
+ "weekend": [6, 7]
4022
+ },
4023
+ "TO": {
4024
+ "firstDay": 1,
4025
+ "minimalDays": 1,
4026
+ "weekend": [6, 7]
4027
+ },
4028
+ "TR": {
4029
+ "firstDay": 1,
4030
+ "minimalDays": 1,
4031
+ "weekend": [6, 7]
4032
+ },
4033
+ "TT": {
4034
+ "firstDay": 7,
4035
+ "minimalDays": 1,
4036
+ "weekend": [6, 7]
4037
+ },
4038
+ "TV": {
4039
+ "firstDay": 1,
4040
+ "minimalDays": 1,
4041
+ "weekend": [6, 7]
4042
+ },
4043
+ "TW": {
4044
+ "firstDay": 7,
4045
+ "minimalDays": 1,
4046
+ "weekend": [6, 7]
4047
+ },
4048
+ "TZ": {
4049
+ "firstDay": 1,
4050
+ "minimalDays": 1,
4051
+ "weekend": [6, 7]
4052
+ },
4053
+ "UA": {
4054
+ "firstDay": 1,
4055
+ "minimalDays": 1,
4056
+ "weekend": [6, 7]
4057
+ },
4058
+ "UG": {
4059
+ "firstDay": 1,
4060
+ "minimalDays": 1,
4061
+ "weekend": [7]
4062
+ },
4063
+ "UM": {
4064
+ "firstDay": 7,
4065
+ "minimalDays": 1,
4066
+ "weekend": [6, 7]
4067
+ },
4068
+ "US": {
4069
+ "firstDay": 7,
4070
+ "minimalDays": 1,
4071
+ "weekend": [6, 7]
4072
+ },
4073
+ "UY": {
4074
+ "firstDay": 1,
4075
+ "minimalDays": 1,
4076
+ "weekend": [6, 7]
4077
+ },
4078
+ "UZ": {
4079
+ "firstDay": 1,
4080
+ "minimalDays": 1,
4081
+ "weekend": [6, 7]
4082
+ },
4083
+ "VA": {
4084
+ "firstDay": 1,
4085
+ "minimalDays": 4,
4086
+ "weekend": [6, 7]
4087
+ },
4088
+ "VC": {
4089
+ "firstDay": 1,
4090
+ "minimalDays": 1,
4091
+ "weekend": [6, 7]
4092
+ },
4093
+ "VE": {
4094
+ "firstDay": 7,
4095
+ "minimalDays": 1,
4096
+ "weekend": [6, 7]
4097
+ },
4098
+ "VG": {
4099
+ "firstDay": 1,
4100
+ "minimalDays": 1,
4101
+ "weekend": [6, 7]
4102
+ },
4103
+ "VI": {
4104
+ "firstDay": 7,
4105
+ "minimalDays": 1,
4106
+ "weekend": [6, 7]
4107
+ },
4108
+ "VN": {
4109
+ "firstDay": 1,
4110
+ "minimalDays": 1,
4111
+ "weekend": [6, 7]
4112
+ },
4113
+ "VU": {
4114
+ "firstDay": 1,
4115
+ "minimalDays": 1,
4116
+ "weekend": [6, 7]
4117
+ },
4118
+ "WF": {
4119
+ "firstDay": 1,
4120
+ "minimalDays": 1,
4121
+ "weekend": [6, 7]
4122
+ },
4123
+ "WS": {
4124
+ "firstDay": 7,
4125
+ "minimalDays": 1,
4126
+ "weekend": [6, 7]
4127
+ },
4128
+ "XK": {
4129
+ "firstDay": 1,
4130
+ "minimalDays": 1,
4131
+ "weekend": [6, 7]
4132
+ },
4133
+ "YE": {
4134
+ "firstDay": 7,
4135
+ "minimalDays": 1,
4136
+ "weekend": [5, 6]
4137
+ },
4138
+ "YT": {
4139
+ "firstDay": 1,
4140
+ "minimalDays": 1,
4141
+ "weekend": [6, 7]
4142
+ },
4143
+ "ZA": {
4144
+ "firstDay": 7,
4145
+ "minimalDays": 1,
4146
+ "weekend": [6, 7]
4147
+ },
4148
+ "ZM": {
4149
+ "firstDay": 1,
4150
+ "minimalDays": 1,
4151
+ "weekend": [6, 7]
4152
+ },
4153
+ "ZW": {
4154
+ "firstDay": 7,
4155
+ "minimalDays": 1,
4156
+ "weekend": [6, 7]
4157
+ },
4158
+ "ZZ": {
4159
+ "firstDay": 1,
4160
+ "minimalDays": 1,
4161
+ "weekend": [6, 7]
4162
+ }
4163
+ };
4164
+ //#endregion
4165
+ //#region packages/intl-locale/preference-data.ts
4166
+ function getCalendarPreferenceDataForRegion(region) {
4167
+ return (calendars[(region ? region.toUpperCase() : null) || ""] || calendars["001"]).map((c) => {
4168
+ if (c === "gregorian") return "gregory";
4169
+ if (c === "islamic-civil") return "islamicc";
4170
+ return c;
4171
+ });
4172
+ }
4173
+ function getHourCyclesPreferenceDataForLocaleOrRegion(locale, region) {
4174
+ const _locale = locale.toLowerCase();
4175
+ const _region = region ? region.toUpperCase() : "";
4176
+ return [...hourCycles[_locale] || hourCycles[_region] || hourCycles[`${_locale}-001`] || hourCycles["001"]];
4177
+ }
4178
+ function getTimeZonePreferenceForRegion(region) {
4179
+ const territory = region.toLowerCase();
4180
+ if (timezones[territory]) return [...timezones[territory]];
4181
+ return [];
4182
+ }
4183
+ function getWeekDataForRegion(region) {
4184
+ return weekData[(region ? region.toUpperCase() : "") || "001"] || weekData["001"];
4185
+ }
4186
+ //#endregion
4187
+ //#region packages/intl-locale/index.ts
4188
+ const ALPHANUM_3_8 = /^[a-z0-9]{3,8}$/i;
4189
+ const RELEVANT_EXTENSION_KEYS = [
4190
+ "ca",
4191
+ "co",
4192
+ "hc",
4193
+ "kf",
4194
+ "kn",
4195
+ "nu",
4196
+ "fw"
4197
+ ];
4198
+ const UNICODE_TYPE_REGEX = /^[a-z0-9]{3,8}(-[a-z0-9]{3,8})*$/i;
4199
+ function applyOptionsToTag(tag, options) {
4200
+ invariant(typeof tag === "string", "language tag must be a string");
4201
+ invariant(isStructurallyValidLanguageTag(tag), "malformed language tag", RangeError);
4202
+ const language = GetOption(options, "language", "string", void 0, void 0);
4203
+ if (language !== void 0) invariant(isUnicodeLanguageSubtag(language), "Malformed unicode_language_subtag", RangeError);
4204
+ const script = GetOption(options, "script", "string", void 0, void 0);
4205
+ if (script !== void 0) invariant(isUnicodeScriptSubtag(script), "Malformed unicode_script_subtag", RangeError);
4206
+ const region = GetOption(options, "region", "string", void 0, void 0);
4207
+ if (region !== void 0) invariant(isUnicodeRegionSubtag(region), "Malformed unicode_region_subtag", RangeError);
4208
+ const languageId = parseUnicodeLanguageId(tag);
4209
+ if (language !== void 0) languageId.lang = language;
4210
+ if (script !== void 0) languageId.script = script;
4211
+ if (region !== void 0) languageId.region = region;
4212
+ return Intl.getCanonicalLocales(emitUnicodeLocaleId({
4213
+ ...parseUnicodeLocaleId(tag),
4214
+ lang: languageId
4215
+ }))[0];
4216
+ }
4217
+ function applyUnicodeExtensionToTag(tag, options, relevantExtensionKeys) {
4218
+ let unicodeExtension;
4219
+ let keywords = [];
4220
+ const ast = parseUnicodeLocaleId(tag);
4221
+ for (const ext of ast.extensions) if (ext.type === "u") {
4222
+ unicodeExtension = ext;
4223
+ if (Array.isArray(ext.keywords)) keywords = ext.keywords;
4224
+ }
4225
+ const result = Object.create(null);
4226
+ for (const key of relevantExtensionKeys) {
4227
+ let value, entry;
4228
+ for (const keyword of keywords) if (keyword[0] === key) {
4229
+ entry = keyword;
4230
+ value = entry[1];
4231
+ }
4232
+ invariant(key in options, `${key} must be in options`);
4233
+ const optionsValue = options[key];
4234
+ if (optionsValue !== void 0) {
4235
+ invariant(typeof optionsValue === "string", `Value for ${key} must be a string`);
4236
+ value = optionsValue;
4237
+ if (entry) entry[1] = value;
4238
+ else keywords.push([key, value]);
4239
+ }
4240
+ result[key] = value;
4241
+ }
4242
+ if (!unicodeExtension) {
4243
+ if (keywords.length) ast.extensions.push({
4244
+ type: "u",
4245
+ keywords,
4246
+ attributes: []
4247
+ });
4248
+ } else unicodeExtension.keywords = keywords;
4249
+ result.locale = Intl.getCanonicalLocales(emitUnicodeLocaleId(ast))[0];
4250
+ return result;
4251
+ }
4252
+ function mergeUnicodeLanguageId(lang, script, region, variants = [], replacement) {
4253
+ if (!replacement) return {
4254
+ lang: lang || "und",
4255
+ script,
4256
+ region,
4257
+ variants
4258
+ };
4259
+ return {
4260
+ lang: !lang || lang === "und" ? replacement.lang : lang,
4261
+ script: script || replacement.script,
4262
+ region: region || replacement.region,
4263
+ variants: [...variants, ...replacement.variants]
4264
+ };
4265
+ }
4266
+ function addLikelySubtags(tag) {
4267
+ const ast = parseUnicodeLocaleId(tag);
4268
+ const { lang, script, region, variants } = ast.lang;
4269
+ if (script && region) {
4270
+ const match = likelySubtags[emitUnicodeLanguageId({
4271
+ lang,
4272
+ script,
4273
+ region,
4274
+ variants: []
4275
+ })];
4276
+ if (match) {
4277
+ ast.lang = mergeUnicodeLanguageId(void 0, void 0, void 0, variants, parseUnicodeLanguageId(match));
4278
+ return emitUnicodeLocaleId(ast);
4279
+ }
4280
+ }
4281
+ if (script) {
4282
+ const match = likelySubtags[emitUnicodeLanguageId({
4283
+ lang,
4284
+ script,
4285
+ variants: []
4286
+ })];
4287
+ if (match) {
4288
+ ast.lang = mergeUnicodeLanguageId(void 0, void 0, region, variants, parseUnicodeLanguageId(match));
4289
+ return emitUnicodeLocaleId(ast);
4290
+ }
4291
+ }
4292
+ if (region) {
4293
+ const match = likelySubtags[emitUnicodeLanguageId({
4294
+ lang,
4295
+ region,
4296
+ variants: []
4297
+ })];
4298
+ if (match) {
4299
+ ast.lang = mergeUnicodeLanguageId(void 0, script, void 0, variants, parseUnicodeLanguageId(match));
4300
+ return emitUnicodeLocaleId(ast);
4301
+ }
4302
+ }
4303
+ const match = likelySubtags[lang] || likelySubtags[emitUnicodeLanguageId({
4304
+ lang: "und",
4305
+ script,
4306
+ variants: []
4307
+ })];
4308
+ if (!match) throw new Error(`No match for addLikelySubtags`);
4309
+ ast.lang = mergeUnicodeLanguageId(void 0, script, region, variants, parseUnicodeLanguageId(match));
4310
+ return emitUnicodeLocaleId(ast);
4311
+ }
4312
+ /**
4313
+ * From: https://github.com/unicode-org/icu/blob/4231ca5be053a22a1be24eb891817458c97db709/icu4j/main/classes/core/src/com/ibm/icu/util/ULocale.java#L2395
4314
+ * @param tag
4315
+ */
4316
+ function removeLikelySubtags(tag) {
4317
+ let maxLocale = addLikelySubtags(tag);
4318
+ if (!maxLocale) return tag;
4319
+ maxLocale = emitUnicodeLanguageId({
4320
+ ...parseUnicodeLanguageId(maxLocale),
4321
+ variants: []
4322
+ });
4323
+ const ast = parseUnicodeLocaleId(tag);
4324
+ const { lang: { lang, script, region, variants } } = ast;
4325
+ if (addLikelySubtags(emitUnicodeLanguageId({
4326
+ lang,
4327
+ variants: []
4328
+ })) === maxLocale) return emitUnicodeLocaleId({
4329
+ ...ast,
4330
+ lang: mergeUnicodeLanguageId(lang, void 0, void 0, variants)
4331
+ });
4332
+ if (region) {
4333
+ if (addLikelySubtags(emitUnicodeLanguageId({
4334
+ lang,
4335
+ region,
4336
+ variants: []
4337
+ })) === maxLocale) return emitUnicodeLocaleId({
4338
+ ...ast,
4339
+ lang: mergeUnicodeLanguageId(lang, void 0, region, variants)
4340
+ });
4341
+ }
4342
+ if (script) {
4343
+ if (addLikelySubtags(emitUnicodeLanguageId({
4344
+ lang,
4345
+ script,
4346
+ variants: []
4347
+ })) === maxLocale) return emitUnicodeLocaleId({
4348
+ ...ast,
4349
+ lang: mergeUnicodeLanguageId(lang, script, void 0, variants)
4350
+ });
4351
+ }
4352
+ return tag;
4353
+ }
4354
+ function createArrayFromListOrRestricted(list, restricted) {
4355
+ let result = list;
4356
+ if (restricted !== void 0) result = [restricted];
4357
+ return Array.from(result);
4358
+ }
4359
+ function calendarsOfLocale(loc) {
4360
+ const locInternalSlots = getInternalSlots(loc);
4361
+ const restricted = locInternalSlots.calendar;
4362
+ const locale = locInternalSlots.locale;
4363
+ let region;
4364
+ if (locale !== "root") region = loc.maximize().region;
4365
+ return createArrayFromListOrRestricted(getCalendarPreferenceDataForRegion(region), restricted);
4366
+ }
4367
+ function collationsOfLocale(loc) {
4368
+ const restricted = getInternalSlots(loc).collation;
4369
+ const supportedCollations = supportedValuesOf("collation").filter((co) => co !== "standard" && co !== "search");
4370
+ supportedCollations.sort();
4371
+ return createArrayFromListOrRestricted(supportedCollations, restricted);
4372
+ }
4373
+ function hourCyclesOfLocale(loc) {
4374
+ const locInternalSlots = getInternalSlots(loc);
4375
+ const restricted = locInternalSlots.hourCycle;
4376
+ const locale = locInternalSlots.locale;
4377
+ let region;
4378
+ if (locale !== "root") region = loc.maximize().region;
4379
+ return createArrayFromListOrRestricted(getHourCyclesPreferenceDataForLocaleOrRegion(locale, region), restricted);
4380
+ }
4381
+ function numberingSystemsOfLocale(loc) {
4382
+ const locInternalSlots = getInternalSlots(loc);
4383
+ const restricted = locInternalSlots.numberingSystem;
4384
+ const locale = locInternalSlots.locale;
4385
+ const language = loc.language;
4386
+ const localeNumberingSystems = numberingSystems[locale] ?? numberingSystems[language];
4387
+ if (localeNumberingSystems) return createArrayFromListOrRestricted([...localeNumberingSystems], restricted);
4388
+ return createArrayFromListOrRestricted([], restricted);
4389
+ }
4390
+ function timeZonesOfLocale(loc) {
4391
+ const locale = getInternalSlots(loc).locale;
4392
+ const region = parseUnicodeLanguageId(locale).region;
4393
+ if (!region) return;
4394
+ const preferredTimeZones = getTimeZonePreferenceForRegion(region);
4395
+ preferredTimeZones.sort();
4396
+ return Array.from(preferredTimeZones);
4397
+ }
4398
+ function translateCharacterOrder(order) {
4399
+ if (order === "right-to-left") return "rtl";
4400
+ return "ltr";
4401
+ }
4402
+ function characterDirectionOfLocale(loc) {
4403
+ return translateCharacterOrder(characterOrders[loc.minimize().toString()]);
4404
+ }
4405
+ function weekInfoOfLocale(loc) {
4406
+ const locale = getInternalSlots(loc).locale;
4407
+ let region;
4408
+ if (locale !== "root") region = loc.maximize().region;
4409
+ return getWeekDataForRegion(region);
4410
+ }
4411
+ const TABLE_1 = [
4412
+ "sun",
4413
+ "mon",
4414
+ "tue",
4415
+ "wed",
4416
+ "thu",
4417
+ "fri",
4418
+ "sat"
4419
+ ];
4420
+ function weekdayToString(fw) {
4421
+ return TABLE_1[+fw];
4422
+ }
4423
+ var Locale = class Locale {
4424
+ constructor(tag, opts) {
4425
+ if (!(this && this instanceof Locale ? this.constructor : void 0)) throw new TypeError("Intl.Locale must be called with 'new'");
4426
+ const { relevantExtensionKeys } = Locale;
4427
+ const internalSlotsList = [
4428
+ "initializedLocale",
4429
+ "locale",
4430
+ "calendar",
4431
+ "collation",
4432
+ "hourCycle",
4433
+ "numberingSystem"
4434
+ ];
4435
+ if (relevantExtensionKeys.indexOf("kf") > -1) internalSlotsList.push("caseFirst");
4436
+ if (relevantExtensionKeys.indexOf("kn") > -1) internalSlotsList.push("numeric");
4437
+ if (tag === void 0) throw new TypeError("First argument to Intl.Locale constructor can't be empty or missing");
4438
+ if (typeof tag !== "string" && typeof tag !== "object") throw new TypeError("tag must be a string or object");
4439
+ let tagInternalSlots;
4440
+ if (typeof tag === "object" && (tagInternalSlots = getInternalSlots(tag)) && HasOwnProperty(tagInternalSlots, "initializedLocale")) tag = tagInternalSlots.locale;
4441
+ else tag = tag.toString();
4442
+ let internalSlots = getInternalSlots(this, internalSlotsList);
4443
+ let options = CoerceOptionsToObject(opts);
4444
+ tag = applyOptionsToTag(tag, options);
4445
+ const opt = Object.create(null);
4446
+ const calendar = GetOption(options, "calendar", "string", void 0, void 0);
4447
+ if (calendar !== void 0) {
4448
+ if (!UNICODE_TYPE_REGEX.test(calendar)) throw new RangeError("invalid calendar");
4449
+ }
4450
+ opt.ca = calendar;
4451
+ const collation = GetOption(options, "collation", "string", void 0, void 0);
4452
+ if (collation !== void 0) {
4453
+ if (!UNICODE_TYPE_REGEX.test(collation)) throw new RangeError("invalid collation");
4454
+ }
4455
+ opt.co = collation;
4456
+ let fw = GetOption(options, "firstDayOfWeek", "string", void 0, void 0);
4457
+ if (fw !== void 0) {
4458
+ fw = weekdayToString(fw);
4459
+ if (!ALPHANUM_3_8.test(fw)) throw new RangeError("Invalid firstDayOfWeek");
4460
+ }
4461
+ opt.fw = fw;
4462
+ opt.hc = GetOption(options, "hourCycle", "string", [
4463
+ "h11",
4464
+ "h12",
4465
+ "h23",
4466
+ "h24"
4467
+ ], void 0);
4468
+ opt.kf = GetOption(options, "caseFirst", "string", [
4469
+ "upper",
4470
+ "lower",
4471
+ "false"
4472
+ ], void 0);
4473
+ const _kn = GetOption(options, "numeric", "boolean", void 0, void 0);
4474
+ let kn;
4475
+ if (_kn !== void 0) kn = String(_kn);
4476
+ opt.kn = kn;
4477
+ const numberingSystem = GetOption(options, "numberingSystem", "string", void 0, void 0);
4478
+ if (numberingSystem !== void 0) {
4479
+ if (!UNICODE_TYPE_REGEX.test(numberingSystem)) throw new RangeError("Invalid numberingSystem");
4480
+ }
4481
+ opt.nu = numberingSystem;
4482
+ const r = applyUnicodeExtensionToTag(tag, opt, relevantExtensionKeys);
4483
+ internalSlots.locale = r.locale;
4484
+ internalSlots.calendar = r.ca;
4485
+ internalSlots.collation = r.co;
4486
+ internalSlots.firstDayOfWeek = r.fw;
4487
+ internalSlots.hourCycle = r.hc;
4488
+ if (relevantExtensionKeys.indexOf("kf") > -1) internalSlots.caseFirst = r.kf;
4489
+ if (relevantExtensionKeys.indexOf("kn") > -1) internalSlots.numeric = SameValue(r.kn, "true");
4490
+ internalSlots.numberingSystem = r.nu;
4491
+ }
4492
+ /**
4493
+ * https://www.unicode.org/reports/tr35/#Likely_Subtags
4494
+ */
4495
+ maximize() {
4496
+ const locale = getInternalSlots(this).locale;
4497
+ try {
4498
+ return new Locale(addLikelySubtags(locale));
4499
+ } catch {
4500
+ return new Locale(locale);
4501
+ }
4502
+ }
4503
+ /**
4504
+ * https://www.unicode.org/reports/tr35/#Likely_Subtags
4505
+ */
4506
+ minimize() {
4507
+ const locale = getInternalSlots(this).locale;
4508
+ try {
4509
+ return new Locale(removeLikelySubtags(locale));
4510
+ } catch {
4511
+ return new Locale(locale);
4512
+ }
4513
+ }
4514
+ toString() {
4515
+ return getInternalSlots(this).locale;
4516
+ }
4517
+ get baseName() {
4518
+ const locale = getInternalSlots(this).locale;
4519
+ return emitUnicodeLanguageId(parseUnicodeLanguageId(locale));
4520
+ }
4521
+ get calendar() {
4522
+ return getInternalSlots(this).calendar;
4523
+ }
4524
+ get collation() {
4525
+ return getInternalSlots(this).collation;
4526
+ }
4527
+ get caseFirst() {
4528
+ return getInternalSlots(this).caseFirst;
4529
+ }
4530
+ get numeric() {
4531
+ return getInternalSlots(this).numeric;
4532
+ }
4533
+ get numberingSystem() {
4534
+ return getInternalSlots(this).numberingSystem;
4535
+ }
4536
+ /**
4537
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.language
4538
+ */
4539
+ get language() {
4540
+ const locale = getInternalSlots(this).locale;
4541
+ return parseUnicodeLanguageId(locale).lang;
4542
+ }
4543
+ /**
4544
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.script
4545
+ */
4546
+ get script() {
4547
+ const locale = getInternalSlots(this).locale;
4548
+ return parseUnicodeLanguageId(locale).script;
4549
+ }
4550
+ /**
4551
+ * https://tc39.es/proposal-intl-locale/#sec-Intl.Locale.prototype.region
4552
+ */
4553
+ get region() {
4554
+ const locale = getInternalSlots(this).locale;
4555
+ return parseUnicodeLanguageId(locale).region;
4556
+ }
4557
+ /**
4558
+ * Returns the variant subtags of the locale, or undefined if none exist.
4559
+ * Multiple variants are joined with hyphens in alphabetical order.
4560
+ *
4561
+ * Added in ECMA-402 via PR #960 to align with other subtag accessors.
4562
+ * @see https://tc39.es/ecma402/#sec-Intl.Locale.prototype.variants
4563
+ * @see https://github.com/tc39/ecma402/pull/960
4564
+ * @see https://github.com/tc39/ecma402/issues/900
4565
+ */
4566
+ get variants() {
4567
+ const locale = getInternalSlots(this).locale;
4568
+ const variants = parseUnicodeLanguageId(locale).variants;
4569
+ if (!variants || variants.length === 0) return;
4570
+ return variants.join("-");
4571
+ }
4572
+ get firstDayOfWeek() {
4573
+ const internalSlots = getInternalSlots(this);
4574
+ if (!HasOwnProperty(internalSlots, "initializedLocale")) throw new TypeError("Error uninitialized locale");
4575
+ return internalSlots.firstDayOfWeek;
4576
+ }
4577
+ get hourCycle() {
4578
+ const internalSlots = getInternalSlots(this);
4579
+ if (!HasOwnProperty(internalSlots, "initializedLocale")) throw new TypeError("Error uninitialized locale");
4580
+ return internalSlots.hourCycle;
4581
+ }
4582
+ /**
4583
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCalendars
4584
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getCalendars
4585
+ */
4586
+ getCalendars() {
4587
+ return calendarsOfLocale(this);
4588
+ }
4589
+ /**
4590
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getCollations
4591
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getCollations
4592
+ */
4593
+ getCollations() {
4594
+ return collationsOfLocale(this);
4595
+ }
4596
+ /**
4597
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getHourCycles
4598
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getHourCycles
4599
+ */
4600
+ getHourCycles() {
4601
+ if (!HasOwnProperty(getInternalSlots(this), "initializedLocale")) throw new TypeError("Error uninitialized locale");
4602
+ return hourCyclesOfLocale(this);
4603
+ }
4604
+ /**
4605
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getNumberingSystems
4606
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getNumberingSystems
4607
+ */
4608
+ getNumberingSystems() {
4609
+ return numberingSystemsOfLocale(this);
4610
+ }
4611
+ /**
4612
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getTimeZones
4613
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getTimeZones
4614
+ */
4615
+ getTimeZones() {
4616
+ return timeZonesOfLocale(this);
4617
+ }
4618
+ /**
4619
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getTextInfo
4620
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getTextInfo
4621
+ */
4622
+ getTextInfo() {
4623
+ const info = Object.create(Object.prototype);
4624
+ createDataProperty(info, "direction", characterDirectionOfLocale(this));
4625
+ return info;
4626
+ }
4627
+ /**
4628
+ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/getWeekInfo
4629
+ * https://tc39.es/proposal-intl-locale-info/#sec-Intl.Locale.prototype.getWeekInfo
4630
+ */
4631
+ getWeekInfo() {
4632
+ const info = Object.create(Object.prototype);
4633
+ const internalSlots = getInternalSlots(this);
4634
+ if (!HasOwnProperty(internalSlots, "initializedLocale")) throw new TypeError("Error uninitialized locale");
4635
+ const wi = weekInfoOfLocale(this);
4636
+ const we = wi.weekend;
4637
+ createDataProperty(info, "firstDay", wi.firstDay);
4638
+ createDataProperty(info, "weekend", we);
4639
+ createDataProperty(info, "minimalDays", wi.minimalDays);
4640
+ const fw = internalSlots.firstDayOfWeek;
4641
+ if (fw !== void 0) info.firstDay = fw;
4642
+ return info;
4643
+ }
4644
+ static {
4645
+ this.relevantExtensionKeys = RELEVANT_EXTENSION_KEYS;
4646
+ }
4647
+ static {
4648
+ this.polyfilled = true;
4649
+ }
4650
+ };
4651
+ try {
4652
+ if (typeof Symbol !== "undefined") Object.defineProperty(Locale.prototype, Symbol.toStringTag, {
4653
+ value: "Intl.Locale",
4654
+ writable: false,
4655
+ enumerable: false,
4656
+ configurable: true
4657
+ });
4658
+ Object.defineProperty(Locale.prototype.constructor, "length", {
4659
+ value: 1,
4660
+ writable: false,
4661
+ enumerable: false,
4662
+ configurable: true
4663
+ });
4664
+ } catch {}
4665
+ //#endregion
4666
+ //#region packages/intl-locale/polyfill-force.ts
2
4667
  Object.defineProperty(Intl, "Locale", {
3
4668
  value: Locale,
4
4669
  writable: true,
5
4670
  enumerable: false,
6
4671
  configurable: true
7
4672
  });
4673
+ //#endregion
4674
+
4675
+ //# sourceMappingURL=polyfill-force.js.map