intl-tel-input 24.8.1 → 25.0.0

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.
@@ -1,5 +1,5 @@
1
1
  /*
2
- * International Telephone Input v24.8.1
2
+ * International Telephone Input v25.0.0
3
3
  * https://github.com/jackocnr/intl-tel-input.git
4
4
  * Licensed under the MIT license
5
5
  */
@@ -1663,8 +1663,8 @@ var factoryOutput = (() => {
1663
1663
  i18n: {},
1664
1664
  //* Initial country.
1665
1665
  initialCountry: "",
1666
- //* Specify the path to the libphonenumber script to enable validation/formatting.
1667
- loadUtilsOnInit: "",
1666
+ //* A function to load the utils script.
1667
+ loadUtils: null,
1668
1668
  //* National vs international formatting for numbers e.g. placeholders and displaying existing numbers.
1669
1669
  nationalMode: true,
1670
1670
  //* Display only these countries.
@@ -1685,10 +1685,8 @@ var factoryOutput = (() => {
1685
1685
  navigator.userAgent
1686
1686
  ) || window.innerWidth <= 500
1687
1687
  ) : false,
1688
- //* Deprecated! Use `loadUtilsOnInit` instead.
1689
- utilsScript: "",
1690
1688
  //* The number type to enforce during validation.
1691
- validationNumberType: "MOBILE"
1689
+ validationNumberTypes: ["MOBILE"]
1692
1690
  };
1693
1691
  var regionlessNanpNumbers = [
1694
1692
  "800",
@@ -2197,15 +2195,11 @@ var factoryOutput = (() => {
2197
2195
  }
2198
2196
  //* Init many requests: utils script / geo ip lookup.
2199
2197
  _initRequests() {
2200
- let { loadUtilsOnInit, utilsScript, initialCountry, geoIpLookup } = this.options;
2201
- if (!loadUtilsOnInit && utilsScript) {
2202
- console.warn("intl-tel-input: The `utilsScript` option is deprecated and will be removed in a future release! Please use the `loadUtilsOnInit` option instead.");
2203
- loadUtilsOnInit = utilsScript;
2204
- }
2205
- if (loadUtilsOnInit && !intlTelInput.utils) {
2198
+ let { loadUtils, initialCountry, geoIpLookup } = this.options;
2199
+ if (loadUtils && !intlTelInput.utils) {
2206
2200
  this._handlePageLoad = () => {
2207
2201
  window.removeEventListener("load", this._handlePageLoad);
2208
- intlTelInput.loadUtils(loadUtilsOnInit)?.catch(() => {
2202
+ intlTelInput.attachUtils(loadUtils)?.catch(() => {
2209
2203
  });
2210
2204
  };
2211
2205
  if (intlTelInput.documentReady()) {
@@ -2669,7 +2663,7 @@ var factoryOutput = (() => {
2669
2663
  }
2670
2664
  //* Update the maximum valid number length for the currently selected country.
2671
2665
  _updateMaxLength() {
2672
- const { strictMode, placeholderNumberType, validationNumberType } = this.options;
2666
+ const { strictMode, placeholderNumberType, validationNumberTypes } = this.options;
2673
2667
  const { iso2 } = this.selectedCountryData;
2674
2668
  if (strictMode && intlTelInput.utils) {
2675
2669
  if (iso2) {
@@ -2681,7 +2675,7 @@ var factoryOutput = (() => {
2681
2675
  true
2682
2676
  );
2683
2677
  let validNumber = exampleNumber;
2684
- while (intlTelInput.utils.isPossibleNumber(exampleNumber, iso2, validationNumberType)) {
2678
+ while (intlTelInput.utils.isPossibleNumber(exampleNumber, iso2, validationNumberTypes)) {
2685
2679
  validNumber = exampleNumber;
2686
2680
  exampleNumber += "0";
2687
2681
  }
@@ -3033,7 +3027,7 @@ var factoryOutput = (() => {
3033
3027
  return this._utilsIsPossibleNumber(val);
3034
3028
  }
3035
3029
  _utilsIsPossibleNumber(val) {
3036
- return intlTelInput.utils ? intlTelInput.utils.isPossibleNumber(val, this.selectedCountryData.iso2, this.options.validationNumberType) : null;
3030
+ return intlTelInput.utils ? intlTelInput.utils.isPossibleNumber(val, this.selectedCountryData.iso2, this.options.validationNumberTypes) : null;
3037
3031
  }
3038
3032
  //* Validate the input val (precise)
3039
3033
  isValidNumberPrecise() {
@@ -3051,7 +3045,7 @@ var factoryOutput = (() => {
3051
3045
  return this._utilsIsValidNumber(val);
3052
3046
  }
3053
3047
  _utilsIsValidNumber(val) {
3054
- return intlTelInput.utils ? intlTelInput.utils.isValidNumber(val, this.selectedCountryData.iso2) : null;
3048
+ return intlTelInput.utils ? intlTelInput.utils.isValidNumber(val, this.selectedCountryData.iso2, this.options.validationNumberTypes) : null;
3055
3049
  }
3056
3050
  //* Update the selected country, and update the input val accordingly.
3057
3051
  setCountry(iso2) {
@@ -3087,29 +3081,23 @@ var factoryOutput = (() => {
3087
3081
  }
3088
3082
  }
3089
3083
  };
3090
- var loadUtils = (source) => {
3084
+ var attachUtils = (source) => {
3091
3085
  if (!intlTelInput.utils && !intlTelInput.startedLoadingUtilsScript) {
3092
3086
  let loadCall;
3093
- if (typeof source === "string") {
3094
- loadCall = Promise.reject(new Error("INTENTIONALLY BROKEN: this build of intl-tel-input includes the utilities module inline, but it has incorrectly attempted to load the utilities separately. If you are seeing this message, something is broken!"));
3095
- } else if (typeof source === "function") {
3087
+ if (typeof source === "function") {
3096
3088
  try {
3097
3089
  loadCall = Promise.resolve(source());
3098
3090
  } catch (error) {
3099
3091
  return Promise.reject(error);
3100
3092
  }
3101
3093
  } else {
3102
- return Promise.reject(new TypeError(`The argument passed to loadUtils must be a URL string or a function that returns a promise for the utilities module, not ${typeof source}`));
3094
+ return Promise.reject(new TypeError(`The argument passed to attachUtils must be a function that returns a promise for the utilities module, not ${typeof source}`));
3103
3095
  }
3104
3096
  intlTelInput.startedLoadingUtilsScript = true;
3105
3097
  return loadCall.then((module) => {
3106
3098
  const utils2 = module?.default;
3107
3099
  if (!utils2 || typeof utils2 !== "object") {
3108
- if (typeof source === "string") {
3109
- throw new TypeError(`The module loaded from ${source} did not set utils as its default export.`);
3110
- } else {
3111
- throw new TypeError("The loader function passed to loadUtils did not resolve to a module object with utils as its default export.");
3112
- }
3100
+ throw new TypeError("The loader function passed to attachUtils did not resolve to a module object with utils as its default export.");
3113
3101
  }
3114
3102
  intlTelInput.utils = utils2;
3115
3103
  forEachInstance("handleUtils");
@@ -3142,10 +3130,10 @@ var factoryOutput = (() => {
3142
3130
  },
3143
3131
  //* A map from instance ID to instance object.
3144
3132
  instances: {},
3145
- loadUtils,
3133
+ attachUtils,
3146
3134
  startedLoadingUtilsScript: false,
3147
3135
  startedLoadingAutoCountry: false,
3148
- version: "24.8.1"
3136
+ version: "25.0.0"
3149
3137
  }
3150
3138
  );
3151
3139
  var intl_tel_input_default = intlTelInput;
@@ -3179,7 +3167,7 @@ var factoryOutput = (() => {
3179
3167
  return b;
3180
3168
  }
3181
3169
  ;
3182
- var ca = class {
3170
+ var da = class {
3183
3171
  constructor(a) {
3184
3172
  if (ba !== ba) throw Error("SafeUrl is not meant to be built directly");
3185
3173
  this.g = a;
@@ -3188,8 +3176,8 @@ var factoryOutput = (() => {
3188
3176
  return this.g.toString();
3189
3177
  }
3190
3178
  }, ba = {};
3191
- new ca("about:invalid#zClosurez");
3192
- new ca("about:blank");
3179
+ new da("about:invalid#zClosurez");
3180
+ new da("about:blank");
3193
3181
  const ea = {};
3194
3182
  class fa {
3195
3183
  constructor() {
@@ -3368,91 +3356,91 @@ var factoryOutput = (() => {
3368
3356
  return b;
3369
3357
  };
3370
3358
  var xa = /^-?[0-9]+$/;
3371
- function ya() {
3359
+ function B() {
3372
3360
  }
3373
- n(ya, z);
3374
- ya.prototype.g = function(a, b) {
3361
+ n(B, z);
3362
+ B.prototype.g = function(a, b) {
3375
3363
  a = new a.h();
3376
3364
  a.l = this;
3377
3365
  a.h = b;
3378
3366
  a.g = {};
3379
3367
  return a;
3380
3368
  };
3381
- function B() {
3369
+ function C() {
3382
3370
  }
3383
- n(B, ya);
3384
- B.prototype.h = function(a, b) {
3371
+ n(C, B);
3372
+ C.prototype.h = function(a, b) {
3385
3373
  return 8 == a.h ? !!b : z.prototype.h.apply(this, arguments);
3386
3374
  };
3387
- B.prototype.g = function(a, b) {
3388
- return B.ma.g.call(this, a, b);
3375
+ C.prototype.g = function(a, b) {
3376
+ return C.ma.g.call(this, a, b);
3389
3377
  };
3390
- function C(a, b) {
3378
+ function D(a, b) {
3391
3379
  null != a && this.g.apply(this, arguments);
3392
3380
  }
3393
- C.prototype.h = "";
3394
- C.prototype.set = function(a) {
3381
+ D.prototype.h = "";
3382
+ D.prototype.set = function(a) {
3395
3383
  this.h = "" + a;
3396
3384
  };
3397
- C.prototype.g = function(a, b, c) {
3385
+ D.prototype.g = function(a, b, c) {
3398
3386
  this.h += String(a);
3399
3387
  if (null != b) for (let d = 1; d < arguments.length; d++) this.h += arguments[d];
3400
3388
  return this;
3401
3389
  };
3402
- function D(a) {
3390
+ function E(a) {
3403
3391
  a.h = "";
3404
3392
  }
3405
- C.prototype.toString = function() {
3393
+ D.prototype.toString = function() {
3406
3394
  return this.h;
3407
3395
  };
3408
- function E() {
3409
- p.call(this);
3410
- }
3411
- n(E, p);
3412
- var za = null;
3413
3396
  function F() {
3414
3397
  p.call(this);
3415
3398
  }
3416
3399
  n(F, p);
3417
- var Aa = null;
3400
+ var ya = null;
3418
3401
  function G() {
3419
3402
  p.call(this);
3420
3403
  }
3421
3404
  n(G, p);
3422
- var Ba = null;
3423
- E.prototype.m = function() {
3424
- var a = za;
3425
- a || (za = a = y(E, { 0: { name: "NumberFormat", ia: "i18n.phonenumbers.NumberFormat" }, 1: { name: "pattern", required: true, i: 9, type: String }, 2: { name: "format", required: true, i: 9, type: String }, 3: { name: "leading_digits_pattern", aa: true, i: 9, type: String }, 4: { name: "national_prefix_formatting_rule", i: 9, type: String }, 6: { name: "national_prefix_optional_when_formatting", i: 8, defaultValue: false, type: Boolean }, 5: { name: "domestic_carrier_code_formatting_rule", i: 9, type: String } }));
3426
- return a;
3427
- };
3428
- E.m = E.prototype.m;
3405
+ var za = null;
3406
+ function H() {
3407
+ p.call(this);
3408
+ }
3409
+ n(H, p);
3410
+ var Aa = null;
3429
3411
  F.prototype.m = function() {
3430
- var a = Aa;
3431
- a || (Aa = a = y(F, { 0: { name: "PhoneNumberDesc", ia: "i18n.phonenumbers.PhoneNumberDesc" }, 2: { name: "national_number_pattern", i: 9, type: String }, 9: { name: "possible_length", aa: true, i: 5, type: Number }, 10: { name: "possible_length_local_only", aa: true, i: 5, type: Number }, 6: { name: "example_number", i: 9, type: String } }));
3412
+ var a = ya;
3413
+ a || (ya = a = y(F, { 0: { name: "NumberFormat", ia: "i18n.phonenumbers.NumberFormat" }, 1: { name: "pattern", required: true, i: 9, type: String }, 2: { name: "format", required: true, i: 9, type: String }, 3: { name: "leading_digits_pattern", aa: true, i: 9, type: String }, 4: { name: "national_prefix_formatting_rule", i: 9, type: String }, 6: { name: "national_prefix_optional_when_formatting", i: 8, defaultValue: false, type: Boolean }, 5: { name: "domestic_carrier_code_formatting_rule", i: 9, type: String } }));
3432
3414
  return a;
3433
3415
  };
3434
3416
  F.m = F.prototype.m;
3435
3417
  G.prototype.m = function() {
3436
- var a = Ba;
3437
- a || (Ba = a = y(G, {
3418
+ var a = za;
3419
+ a || (za = a = y(G, { 0: { name: "PhoneNumberDesc", ia: "i18n.phonenumbers.PhoneNumberDesc" }, 2: { name: "national_number_pattern", i: 9, type: String }, 9: { name: "possible_length", aa: true, i: 5, type: Number }, 10: { name: "possible_length_local_only", aa: true, i: 5, type: Number }, 6: { name: "example_number", i: 9, type: String } }));
3420
+ return a;
3421
+ };
3422
+ G.m = G.prototype.m;
3423
+ H.prototype.m = function() {
3424
+ var a = Aa;
3425
+ a || (Aa = a = y(H, {
3438
3426
  0: { name: "PhoneMetadata", ia: "i18n.phonenumbers.PhoneMetadata" },
3439
- 1: { name: "general_desc", i: 11, type: F },
3440
- 2: { name: "fixed_line", i: 11, type: F },
3441
- 3: { name: "mobile", i: 11, type: F },
3442
- 4: { name: "toll_free", i: 11, type: F },
3443
- 5: { name: "premium_rate", i: 11, type: F },
3444
- 6: { name: "shared_cost", i: 11, type: F },
3445
- 7: { name: "personal_number", i: 11, type: F },
3446
- 8: { name: "voip", i: 11, type: F },
3447
- 21: { name: "pager", i: 11, type: F },
3448
- 25: { name: "uan", i: 11, type: F },
3449
- 27: { name: "emergency", i: 11, type: F },
3450
- 28: { name: "voicemail", i: 11, type: F },
3451
- 29: { name: "short_code", i: 11, type: F },
3452
- 30: { name: "standard_rate", i: 11, type: F },
3453
- 31: { name: "carrier_specific", i: 11, type: F },
3454
- 33: { name: "sms_services", i: 11, type: F },
3455
- 24: { name: "no_international_dialling", i: 11, type: F },
3427
+ 1: { name: "general_desc", i: 11, type: G },
3428
+ 2: { name: "fixed_line", i: 11, type: G },
3429
+ 3: { name: "mobile", i: 11, type: G },
3430
+ 4: { name: "toll_free", i: 11, type: G },
3431
+ 5: { name: "premium_rate", i: 11, type: G },
3432
+ 6: { name: "shared_cost", i: 11, type: G },
3433
+ 7: { name: "personal_number", i: 11, type: G },
3434
+ 8: { name: "voip", i: 11, type: G },
3435
+ 21: { name: "pager", i: 11, type: G },
3436
+ 25: { name: "uan", i: 11, type: G },
3437
+ 27: { name: "emergency", i: 11, type: G },
3438
+ 28: { name: "voicemail", i: 11, type: G },
3439
+ 29: { name: "short_code", i: 11, type: G },
3440
+ 30: { name: "standard_rate", i: 11, type: G },
3441
+ 31: { name: "carrier_specific", i: 11, type: G },
3442
+ 33: { name: "sms_services", i: 11, type: G },
3443
+ 24: { name: "no_international_dialling", i: 11, type: G },
3456
3444
  9: { name: "id", required: true, i: 9, type: String },
3457
3445
  10: { name: "country_code", i: 5, type: Number },
3458
3446
  11: { name: "international_prefix", i: 9, type: String },
@@ -3466,31 +3454,31 @@ var factoryOutput = (() => {
3466
3454
  },
3467
3455
  16: { name: "national_prefix_transform_rule", i: 9, type: String },
3468
3456
  18: { name: "same_mobile_and_fixed_line_pattern", i: 8, defaultValue: false, type: Boolean },
3469
- 19: { name: "number_format", aa: true, i: 11, type: E },
3470
- 20: { name: "intl_number_format", aa: true, i: 11, type: E },
3457
+ 19: { name: "number_format", aa: true, i: 11, type: F },
3458
+ 20: { name: "intl_number_format", aa: true, i: 11, type: F },
3471
3459
  22: { name: "main_country_for_code", i: 8, defaultValue: false, type: Boolean },
3472
3460
  23: { name: "leading_digits", i: 9, type: String }
3473
3461
  }));
3474
3462
  return a;
3475
3463
  };
3476
- G.m = G.prototype.m;
3477
- function H() {
3464
+ H.m = H.prototype.m;
3465
+ function I() {
3478
3466
  p.call(this);
3479
3467
  }
3480
- n(H, p);
3481
- var Ca = null, Da = { ra: 0, qa: 1, pa: 5, oa: 10, na: 20 };
3482
- H.prototype.m = function() {
3483
- var a = Ca;
3484
- a || (Ca = a = y(H, { 0: { name: "PhoneNumber", ia: "i18n.phonenumbers.PhoneNumber" }, 1: { name: "country_code", required: true, i: 5, type: Number }, 2: { name: "national_number", required: true, i: 4, type: Number }, 3: { name: "extension", i: 9, type: String }, 4: { name: "italian_leading_zero", i: 8, type: Boolean }, 8: { name: "number_of_leading_zeros", i: 5, defaultValue: 1, type: Number }, 5: { name: "raw_input", i: 9, type: String }, 6: { name: "country_code_source", i: 14, defaultValue: 0, type: Da }, 7: {
3468
+ n(I, p);
3469
+ var Ba = null, Ca = { ra: 0, qa: 1, pa: 5, oa: 10, na: 20 };
3470
+ I.prototype.m = function() {
3471
+ var a = Ba;
3472
+ a || (Ba = a = y(I, { 0: { name: "PhoneNumber", ia: "i18n.phonenumbers.PhoneNumber" }, 1: { name: "country_code", required: true, i: 5, type: Number }, 2: { name: "national_number", required: true, i: 4, type: Number }, 3: { name: "extension", i: 9, type: String }, 4: { name: "italian_leading_zero", i: 8, type: Boolean }, 8: { name: "number_of_leading_zeros", i: 5, defaultValue: 1, type: Number }, 5: { name: "raw_input", i: 9, type: String }, 6: { name: "country_code_source", i: 14, defaultValue: 0, type: Ca }, 7: {
3485
3473
  name: "preferred_domestic_carrier_code",
3486
3474
  i: 9,
3487
3475
  type: String
3488
3476
  } }));
3489
3477
  return a;
3490
3478
  };
3491
- H.ctor = H;
3492
- H.ctor.m = H.prototype.m;
3493
- var I = {
3479
+ I.ctor = I;
3480
+ I.ctor.m = I.prototype.m;
3481
+ var J = {
3494
3482
  1: "US AG AI AS BB BM BS CA DM DO GD GU JM KN KY LC MP MS PR SX TC TT VC VG VI".split(" "),
3495
3483
  7: ["RU", "KZ"],
3496
3484
  20: ["EG"],
@@ -3706,7 +3694,7 @@ var factoryOutput = (() => {
3706
3694
  995: ["GE"],
3707
3695
  996: ["KG"],
3708
3696
  998: ["UZ"]
3709
- }, Ea = {
3697
+ }, Da = {
3710
3698
  AC: [, [
3711
3699
  ,
3712
3700
  ,
@@ -4494,10 +4482,10 @@ var factoryOutput = (() => {
4494
4482
  ,
4495
4483
  [7]
4496
4484
  ], [, , "0800\\d{7}", , , , "08001234123", , , [11]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "BZ", 501, "00", , , , , , , , [[, "(\\d{3})(\\d{4})", "$1-$2", ["[2-8]"]], [, "(\\d)(\\d{3})(\\d{4})(\\d{3})", "$1-$2-$3-$4", ["0"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
4497
- CA: [, [, , "(?:[2-8]\\d|90)\\d{8}|3\\d{6}", , , , , , , [7, 10]], [
4485
+ CA: [, [, , "[2-9]\\d{9}|3\\d{6}", , , , , , , [7, 10]], [
4498
4486
  ,
4499
4487
  ,
4500
- "(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|90[25])[2-9]\\d{6}",
4488
+ "(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}",
4501
4489
  ,
4502
4490
  ,
4503
4491
  ,
@@ -4506,10 +4494,10 @@ var factoryOutput = (() => {
4506
4494
  ,
4507
4495
  [10],
4508
4496
  [7]
4509
- ], [, , "(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|90[25])[2-9]\\d{6}", , , , "5062345678", , , [10], [7]], [, , "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", , , , "8002123456", , , [10]], [, , "900[2-9]\\d{6}", , , , "9002123456", , , [10]], [, , , , , , , , , [-1]], [
4497
+ ], [, , "(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", , , , "5062345678", , , [10], [7]], [, , "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", , , , "8002123456", , , [10]], [, , "900[2-9]\\d{6}", , , , "9002123456", , , [10]], [, , , , , , , , , [-1]], [
4510
4498
  ,
4511
4499
  ,
4512
- "52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:00|2[125-9]|33|44|66|77|88)|622)[2-9]\\d{6}",
4500
+ "52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:00|2[125-9]|33|44|66|77|88)|6(?:22|33))[2-9]\\d{6}",
4513
4501
  ,
4514
4502
  ,
4515
4503
  ,
@@ -5314,7 +5302,7 @@ var factoryOutput = (() => {
5314
5302
  GE: [, [, , "(?:[3-57]\\d\\d|800)\\d{6}", , , , , , , [9], [6, 7]], [, , "(?:3(?:[256]\\d|4[124-9]|7[0-4])|4(?:1\\d|2[2-7]|3[1-79]|4[2-8]|7[239]|9[1-7]))\\d{6}", , , , "322123456", , , , [6, 7]], [
5315
5303
  ,
5316
5304
  ,
5317
- "5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0[17]0|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|(?:40[04]|900)0|5222)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|11|22|3[0-6]|44|5[05]|77|88|9[09])|111|22[02]|77\\d)|1(?:1(?:[03][01]|[124]\\d|5[2-6]|7[0-4])|4\\d\\d)|[23]555|4(?:4\\d\\d|555)|5(?:[0157-9]\\d\\d|200|333|444)|6[89]\\d\\d|7(?:[0147-9]\\d\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}",
5305
+ "5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0[17]0|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|(?:40[04]|900)0|5222)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|11|22|3[0-6]|44|5[05]|77|88|9[09])|(?:[14]\\d|77)\\d|22[02])|1(?:1(?:[03][01]|[124]\\d|5[2-6]|7[0-4])|4\\d\\d)|[23]555|4(?:4\\d\\d|555)|5(?:[0157-9]\\d\\d|200|333|444)|6[89]\\d\\d|7(?:[0147-9]\\d\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}",
5318
5306
  ,
5319
5307
  ,
5320
5308
  ,
@@ -5323,7 +5311,7 @@ var factoryOutput = (() => {
5323
5311
  GF: [, [
5324
5312
  ,
5325
5313
  ,
5326
- "[56]94\\d{6}|(?:80|9\\d)\\d{7}",
5314
+ "(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}",
5327
5315
  ,
5328
5316
  ,
5329
5317
  ,
@@ -5331,7 +5319,7 @@ var factoryOutput = (() => {
5331
5319
  ,
5332
5320
  ,
5333
5321
  [9]
5334
- ], [, , "594(?:[02-49]\\d|1[0-5]|5[6-9]|6[0-3]|80)\\d{4}", , , , "594101234"], [, , "694(?:[0-249]\\d|3[0-8])\\d{4}", , , , "694201234"], [, , "80[0-5]\\d{6}", , , , "800012345"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "9(?:(?:396|76\\d)\\d|476[0-5])\\d{4}", , , , "976012345"], "GF", 594, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[56]|9[47]"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [
5322
+ ], [, , "594(?:[02-49]\\d|1[0-5]|5[6-9]|6[0-3]|80)\\d{4}", , , , "594101234"], [, , "(?:694(?:[0-249]\\d|3[0-8])|7093[0-3])\\d{4}", , , , "694201234"], [, , "80[0-5]\\d{6}", , , , "800012345"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "9(?:(?:396|76\\d)\\d|476[0-5])\\d{4}", , , , "976012345"], "GF", 594, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]|9[47]"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [
5335
5323
  ,
5336
5324
  ,
5337
5325
  ,
@@ -5342,71 +5330,71 @@ var factoryOutput = (() => {
5342
5330
  ,
5343
5331
  ,
5344
5332
  [-1]
5345
- ]],
5346
- GG: [, [, , "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", , , , , , , [7, 9, 10], [6]], [, , "1481[25-9]\\d{5}", , , , "1481256789", , , [10], [6]], [, , "7(?:(?:781|839)\\d|911[17])\\d{5}", , , , "7781123456", , , [10]], [, , "80[08]\\d{7}|800\\d{6}|8001111", , , , "8001234567"], [, , "(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", , , , "9012345678", , , [7, 10]], [, , , , , , , , , [-1]], [, , "70\\d{8}", , , , "7012345678", , , [10]], [, , "56\\d{8}", , , , "5612345678", , , [10]], "GG", 44, "00", "0", , , "([25-9]\\d{5})$|0", "1481$1", , , , , [
5333
+ ], , , [, , , , , , , , , [-1]]],
5334
+ GG: [
5347
5335
  ,
5336
+ [, , "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", , , , , , , [7, 9, 10], [6]],
5337
+ [, , "1481[25-9]\\d{5}", , , , "1481256789", , , [10], [6]],
5338
+ [, , "7(?:(?:781|839)\\d|911[17])\\d{5}", , , , "7781123456", , , [10]],
5339
+ [, , "80[08]\\d{7}|800\\d{6}|8001111", , , , "8001234567"],
5340
+ [, , "(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", , , , "9012345678", , , [7, 10]],
5341
+ [, , , , , , , , , [-1]],
5342
+ [, , "70\\d{8}", , , , "7012345678", , , [10]],
5343
+ [, , "56\\d{8}", , , , "5612345678", , , [10]],
5344
+ "GG",
5345
+ 44,
5346
+ "00",
5347
+ "0",
5348
5348
  ,
5349
- "76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",
5350
5349
  ,
5350
+ "([25-9]\\d{5})$|0",
5351
+ "1481$1",
5351
5352
  ,
5352
5353
  ,
5353
- "7640123456",
5354
5354
  ,
5355
5355
  ,
5356
- [10]
5357
- ], , , [, , , , , , , , , [-1]], [, , "(?:3[0347]|55)\\d{8}", , , , "5512345678", , , [10]], , , [, , , , , , , , , [-1]]],
5358
- GH: [, [, , "(?:[235]\\d{3}|800)\\d{5}", , , , , , , [8, 9], [7]], [, , "3082[0-5]\\d{4}|3(?:0(?:[237]\\d|8[01])|[167](?:2[0-6]|7\\d|80)|2(?:2[0-5]|7\\d|80)|3(?:2[0-3]|7\\d|80)|4(?:2[013-9]|3[01]|7\\d|80)|5(?:2[0-7]|7\\d|80)|8(?:2[0-2]|7\\d|80)|9(?:[28]0|7\\d))\\d{5}", , , , "302345678", , , [9], [7]], [, , "(?:2(?:[0346-9]\\d|5[67])|5(?:[03-7]\\d|9[1-9]))\\d{6}", , , , "231234567", , , [9]], [
5356
+ [, , "76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", , , , "7640123456", , , [10]],
5359
5357
  ,
5360
5358
  ,
5361
- "800\\d{5}",
5359
+ [, , , , , , , , , [-1]],
5360
+ [, , "(?:3[0347]|55)\\d{8}", , , , "5512345678", , , [10]],
5362
5361
  ,
5363
5362
  ,
5363
+ [, , , , , , , , , [-1]]
5364
+ ],
5365
+ GH: [, [, , "(?:[235]\\d{3}|800)\\d{5}", , , , , , , [8, 9], [7]], [, , "3082[0-5]\\d{4}|3(?:0(?:[237]\\d|8[01])|[167](?:2[0-6]|7\\d|80)|2(?:2[0-5]|7\\d|80)|3(?:2[0-3]|7\\d|80)|4(?:2[013-9]|3[01]|7\\d|80)|5(?:2[0-7]|7\\d|80)|8(?:2[0-2]|7\\d|80)|9(?:[28]0|7\\d))\\d{5}", , , , "302345678", , , [9], [7]], [
5364
5366
  ,
5365
- "80012345",
5366
5367
  ,
5368
+ "(?:2(?:[0346-9]\\d|5[67])|5(?:[03-7]\\d|9[1-9]))\\d{6}",
5367
5369
  ,
5368
- [8]
5369
- ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "GH", 233, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{4})", "$1 $2", ["[237]|8[0-2]"]], [, "(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], [[, "(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], [, , , , , , , , , [-1]], , , [, , "800\\d{5}", , , , , , , [8]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5370
- GI: [, [, , "(?:[25]\\d|60)\\d{6}", , , , , , , [8]], [
5371
5370
  ,
5372
5371
  ,
5373
- "2190[0-2]\\d{3}|2(?:0(?:[02]\\d|3[01])|16[24-9]|2[2-5]\\d)\\d{4}",
5372
+ "231234567",
5374
5373
  ,
5375
5374
  ,
5375
+ [9]
5376
+ ], [, , "800\\d{5}", , , , "80012345", , , [8]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "GH", 233, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{4})", "$1 $2", ["[237]|8[0-2]"]], [, "(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], [[, "(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], [, , , , , , , , , [-1]], , , [, , "800\\d{5}", , , , , , , [8]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5377
+ GI: [, [
5376
5378
  ,
5377
- "20012345"
5378
- ], [, , "5251[0-4]\\d{3}|(?:5(?:[146-8]\\d\\d|250)|60(?:1[01]|6\\d))\\d{4}", , , , "57123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "GI", 350, "00", , , , , , , , [[, "(\\d{3})(\\d{5})", "$1 $2", ["2"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5379
- GL: [
5380
5379
  ,
5381
- [, , "(?:19|[2-689]\\d|70)\\d{4}", , , , , , , [6]],
5382
- [, , "(?:19|3[1-7]|[68][1-9]|70|9\\d)\\d{4}", , , , "321000"],
5383
- [, , "[245]\\d{5}", , , , "221234"],
5384
- [, , "80\\d{4}", , , , "801234"],
5385
- [, , , , , , , , , [-1]],
5386
- [, , , , , , , , , [-1]],
5387
- [, , , , , , , , , [-1]],
5388
- [, , "3[89]\\d{4}", , , , "381234"],
5389
- "GL",
5390
- 299,
5391
- "00",
5380
+ "(?:[25]\\d|60)\\d{6}",
5392
5381
  ,
5393
5382
  ,
5394
5383
  ,
5395
5384
  ,
5396
5385
  ,
5397
5386
  ,
5387
+ [8]
5388
+ ], [, , "2190[0-2]\\d{3}|2(?:0(?:[02]\\d|3[01])|16[24-9]|2[2-5]\\d)\\d{4}", , , , "20012345"], [, , "5251[0-4]\\d{3}|(?:5(?:[146-8]\\d\\d|250)|60(?:1[01]|6\\d))\\d{4}", , , , "57123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "GI", 350, "00", , , , , , , , [[, "(\\d{3})(\\d{5})", "$1 $2", ["2"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5389
+ GL: [, [, , "(?:19|[2-689]\\d|70)\\d{4}", , , , , , , [6]], [, , "(?:19|3[1-7]|[68][1-9]|70|9\\d)\\d{4}", , , , "321000"], [
5398
5390
  ,
5399
- [[, "(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]],
5400
- ,
5401
- [, , , , , , , , , [-1]],
5402
5391
  ,
5392
+ "[245]\\d{5}",
5403
5393
  ,
5404
- [, , , , , , , , , [-1]],
5405
- [, , , , , , , , , [-1]],
5406
5394
  ,
5407
5395
  ,
5408
- [, , , , , , , , , [-1]]
5409
- ],
5396
+ "221234"
5397
+ ], [, , "80\\d{4}", , , , "801234"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "3[89]\\d{4}", , , , "381234"], "GL", 299, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5410
5398
  GM: [
5411
5399
  ,
5412
5400
  [, , "[2-9]\\d{6}", , , , , , , [7]],
@@ -5438,33 +5426,55 @@ var factoryOutput = (() => {
5438
5426
  ,
5439
5427
  [, , , , , , , , , [-1]]
5440
5428
  ],
5441
- GN: [, [, , "722\\d{6}|(?:3|6\\d)\\d{7}", , , , , , , [8, 9]], [, , "3(?:0(?:24|3[12]|4[1-35-7]|5[13]|6[189]|[78]1|9[1478])|1\\d\\d)\\d{4}", , , , "30241234", , , [8]], [, , "6[0-356]\\d{7}", , , , "601123456", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "722\\d{6}", , , , "722123456", , , [9]], "GN", 224, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], [
5429
+ GN: [
5430
+ ,
5431
+ [, , "722\\d{6}|(?:3|6\\d)\\d{7}", , , , , , , [8, 9]],
5432
+ [, , "3(?:0(?:24|3[12]|4[1-35-7]|5[13]|6[189]|[78]1|9[1478])|1\\d\\d)\\d{4}", , , , "30241234", , , [8]],
5433
+ [, , "6[0-356]\\d{7}", , , , "601123456", , , [9]],
5434
+ [, , , , , , , , , [-1]],
5435
+ [, , , , , , , , , [-1]],
5436
+ [, , , , , , , , , [-1]],
5437
+ [, , , , , , , , , [-1]],
5438
+ [, , "722\\d{6}", , , , "722123456", , , [9]],
5439
+ "GN",
5440
+ 224,
5441
+ "00",
5442
+ ,
5443
+ ,
5442
5444
  ,
5443
- "(\\d{3})(\\d{2})(\\d{2})(\\d{2})",
5444
- "$1 $2 $3 $4",
5445
- ["[67]"]
5446
- ]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5447
- GP: [, [, , "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", , , , , , , [9]], [, , "590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}", , , , "590201234"], [, , "(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}", , , , "690001234"], [, , "80[0-5]\\d{6}", , , , "800012345"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [
5448
5445
  ,
5449
5446
  ,
5450
- "9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\d{4}",
5451
5447
  ,
5452
5448
  ,
5449
+ [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[67]"]]],
5453
5450
  ,
5454
- "976012345"
5455
- ], "GP", 590, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], , [, , , , , , , , , [-1]], 1, , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5456
- GQ: [, [, , "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", , , , , , , [9]], [, , "33[0-24-9]\\d[46]\\d{4}|3(?:33|5\\d)\\d[7-9]\\d{4}", , , , "333091234"], [, , "(?:222|55\\d)\\d{6}", , , , "222123456"], [, , "80\\d[1-9]\\d{5}", , , , "800123456"], [, , "90\\d[1-9]\\d{5}", , , , "900123456"], [
5451
+ [, , , , , , , , , [-1]],
5457
5452
  ,
5458
5453
  ,
5454
+ [, , , , , , , , , [-1]],
5455
+ [, , , , , , , , , [-1]],
5459
5456
  ,
5460
5457
  ,
5458
+ [, , , , , , , , , [-1]]
5459
+ ],
5460
+ GP: [, [, , "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", , , , , , , [9]], [, , "590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}", , , , "590201234"], [, , "(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}", , , , "690001234"], [
5461
5461
  ,
5462
5462
  ,
5463
+ "80[0-5]\\d{6}",
5463
5464
  ,
5464
5465
  ,
5465
5466
  ,
5466
- [-1]
5467
- ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "GQ", 240, "00", , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], [, "(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5467
+ "800012345"
5468
+ ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\d{4}", , , , "976012345"], "GP", 590, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], , [, , , , , , , , , [-1]], 1, , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5469
+ GQ: [, [, , "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", , , , , , , [9]], [, , "33[0-24-9]\\d[46]\\d{4}|3(?:33|5\\d)\\d[7-9]\\d{4}", , , , "333091234"], [
5470
+ ,
5471
+ ,
5472
+ "(?:222|55\\d)\\d{6}",
5473
+ ,
5474
+ ,
5475
+ ,
5476
+ "222123456"
5477
+ ], [, , "80\\d[1-9]\\d{5}", , , , "800123456"], [, , "90\\d[1-9]\\d{5}", , , , "900123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "GQ", 240, "00", , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], [, "(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5468
5478
  GR: [, [, , "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", , , , , , , [10, 11, 12]], [
5469
5479
  ,
5470
5480
  ,
@@ -5488,10 +5498,10 @@ var factoryOutput = (() => {
5488
5498
  "$1 $2 $3",
5489
5499
  ["1"]
5490
5500
  ]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5491
- GU: [, [, , "(?:[58]\\d\\d|671|900)\\d{7}", , , , , , , [10], [7]], [, , "671(?:2\\d\\d|3(?:00|3[39]|4[349]|55|6[26])|4(?:00|56|7[1-9]|8[02-46-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[235-9])|7(?:[0479]7|2[0167]|3[45]|8[7-9])|8(?:[2-57-9]8|6[48])|9(?:2[29]|6[79]|7[1279]|8[7-9]|9[78]))\\d{4}", , , , "6713001234", , , , [7]], [
5501
+ GU: [, [, , "(?:[58]\\d\\d|671|900)\\d{7}", , , , , , , [10], [7]], [, , "671(?:2\\d\\d|3(?:00|3[39]|4[349]|55|6[26])|4(?:00|56|7[1-9]|8[02-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[235-9])|7(?:[0479]7|2[0167]|3[45]|8[7-9])|8(?:[2-57-9]8|6[478])|9(?:2[29]|6[79]|7[1279]|8[7-9]|9[78]))\\d{4}", , , , "6713001234", , , , [7]], [
5492
5502
  ,
5493
5503
  ,
5494
- "671(?:2\\d\\d|3(?:00|3[39]|4[349]|55|6[26])|4(?:00|56|7[1-9]|8[02-46-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[235-9])|7(?:[0479]7|2[0167]|3[45]|8[7-9])|8(?:[2-57-9]8|6[48])|9(?:2[29]|6[79]|7[1279]|8[7-9]|9[78]))\\d{4}",
5504
+ "671(?:2\\d\\d|3(?:00|3[39]|4[349]|55|6[26])|4(?:00|56|7[1-9]|8[02-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[235-9])|7(?:[0479]7|2[0167]|3[45]|8[7-9])|8(?:[2-57-9]8|6[478])|9(?:2[29]|6[79]|7[1279]|8[7-9]|9[78]))\\d{4}",
5495
5505
  ,
5496
5506
  ,
5497
5507
  ,
@@ -5533,7 +5543,7 @@ var factoryOutput = (() => {
5533
5543
  ,
5534
5544
  ,
5535
5545
  [8]
5536
- ], [, , "(?:4(?:44[0-25-9]|6(?:1[0-7]|4[0-57-9]|6[0-4])|74[0-2])|5(?:73[0-6]|95[0-8])|6(?:26[013-8]|66[0-3])|70(?:7[1-8]|8[0-4])|84(?:4[0-2]|8[0-35-9])|9(?:29[013-9]|39[01]|59[0-4]|899))\\d{4}|(?:4(?:4[0-35-9]|6[02357-9]|7[05])|5(?:[1-59][0-46-9]|6[0-4689]|7[0-246-9])|6(?:0[1-9]|[13-59]\\d|[268][0-57-9]|7[0-79])|70[1-49]|84[0-39]|9(?:0[1-9]|1[02-9]|[2358][0-8]|[467]\\d))\\d{5}", , , , "51234567", , , [8]], [, , "800\\d{6}", , , , "800123456", , , [9]], [
5546
+ ], [, , "(?:4(?:44[0-25-9]|6(?:1[0-7]|4[0-57-9]|6[0-4])|7(?:4[0-2]|6[0-5]))|5(?:73[0-6]|95[0-8])|6(?:26[013-8]|66[0-3])|70(?:7[1-8]|8[0-4])|84(?:4[0-2]|8[0-35-9])|9(?:29[013-9]|39[014-9]|59[0-4]|899))\\d{4}|(?:4(?:4[0-35-9]|6[02357-9]|7[05])|5(?:[1-59][0-46-9]|6[0-4689]|7[0-246-9])|6(?:0[1-9]|[13-59]\\d|[268][0-57-9]|7[0-79])|70[1-49]|84[0-39]|9(?:0[1-9]|1[02-9]|[2358][0-8]|[467]\\d))\\d{5}", , , , "51234567", , , [8]], [, , "800\\d{6}", , , , "800123456", , , [9]], [
5537
5547
  ,
5538
5548
  ,
5539
5549
  "900(?:[0-24-9]\\d{7}|3\\d{1,4})",
@@ -5559,7 +5569,7 @@ var factoryOutput = (() => {
5559
5569
  HN: [, [, , "8\\d{10}|[237-9]\\d{7}", , , , , , , [8, 11]], [
5560
5570
  ,
5561
5571
  ,
5562
- "2(?:2(?:0[0-59]|1[1-9]|[23]\\d|4[02-6]|5[57]|6[245]|7[0135689]|8[01346-9]|9[0-2])|4(?:0[578]|2[3-59]|3[13-9]|4[0-68]|5[1-3589])|5(?:0[2357-9]|1[1-356]|4[03-5]|5\\d|6[014-69]|7[04]|80)|6(?:[056]\\d|17|2[067]|3[047]|4[0-378]|[78][0-8]|9[01])|7(?:0[5-79]|6[46-9]|7[02-9]|8[034]|91)|8(?:79|8[0-357-9]|9[1-57-9]))\\d{4}",
5572
+ "2(?:2(?:0[0-59]|1[1-9]|[23]\\d|4[02-7]|5[57]|6[245]|7[0135689]|8[01346-9]|9[0-2])|4(?:0[578]|2[3-59]|3[13-9]|4[0-68]|5[1-3589])|5(?:0[2357-9]|1[1-356]|4[03-5]|5\\d|6[014-69]|7[04]|80)|6(?:[056]\\d|17|2[067]|3[047]|4[0-378]|[78][0-8]|9[01])|7(?:0[5-79]|6[46-9]|7[02-9]|8[034]|91)|8(?:79|8[0-357-9]|9[1-57-9]))\\d{4}",
5563
5573
  ,
5564
5574
  ,
5565
5575
  ,
@@ -6664,7 +6674,7 @@ var factoryOutput = (() => {
6664
6674
  ,
6665
6675
  "5002345678"
6666
6676
  ], [, , , , , , , , , [-1]], "MP", 1, "011", "1", , , "([2-9]\\d{6})$|1", "670$1", , 1, , , [, , , , , , , , , [-1]], , "670", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
6667
- MQ: [, [, , "596\\d{6}|(?:69|[89]\\d)\\d{7}", , , , , , , [9]], [, , "(?:596(?:[03-7]\\d|1[05]|2[7-9]|8[0-39]|9[04-9])|80[6-9]\\d\\d|9(?:477[6-9]|767[4589]))\\d{4}", , , , "596301234"], [, , "69[67]\\d{6}", , , , "696201234"], [, , "80[0-5]\\d{6}", , , , "800012345"], [, , "8[129]\\d{7}", , , , "810123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [
6677
+ MQ: [, [, , "(?:596\\d|7091)\\d{5}|(?:69|[89]\\d)\\d{7}", , , , , , , [9]], [, , "(?:596(?:[03-7]\\d|1[05]|2[7-9]|8[0-39]|9[04-9])|80[6-9]\\d\\d|9(?:477[6-9]|767[4589]))\\d{4}", , , , "596301234"], [, , "(?:69[67]\\d\\d|7091[0-3])\\d{4}", , , , "696201234"], [, , "80[0-5]\\d{6}", , , , "800012345"], [, , "8[129]\\d{7}", , , , "810123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [
6668
6678
  ,
6669
6679
  ,
6670
6680
  "9(?:397[0-3]|477[0-5]|76(?:6\\d|7[0-367]))\\d{4}",
@@ -6672,7 +6682,7 @@ var factoryOutput = (() => {
6672
6682
  ,
6673
6683
  ,
6674
6684
  "976612345"
6675
- ], "MQ", 596, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[569]|8(?:0[6-9]|[36])"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
6685
+ ], "MQ", 596, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|8(?:0[6-9]|[36])"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
6676
6686
  MR: [
6677
6687
  ,
6678
6688
  [, , "(?:[2-4]\\d\\d|800)\\d{5}", , , , , , , [8]],
@@ -7228,7 +7238,7 @@ var factoryOutput = (() => {
7228
7238
  [, "(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]],
7229
7239
  [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]
7230
7240
  ], , [, , "64\\d{4,7}", , , , "641234567", , , [6, 7, 8, 9]], , , [, , , , , , , , , [-1]], [, , "804\\d{6}", , , , "804123456", , , [9]], , , [, , , , , , , , , [-1]]],
7231
- PM: [, [, , "[45]\\d{5}|(?:708|8\\d\\d)\\d{6}", , , , , , , [6, 9]], [, , "(?:4[1-35-9]|5[0-47-9]|80[6-9]\\d\\d)\\d{4}", , , , "430123"], [, , "(?:4[02-489]|5[02-9]|708[45][0-5])\\d{4}", , , , "551234"], [, , "80[0-5]\\d{6}", , , , "800012345", , , [9]], [
7241
+ PM: [, [, , "[45]\\d{5}|(?:708|8\\d\\d)\\d{6}", , , , , , , [6, 9]], [, , "(?:4[1-35-9]|5[0-47-9]|80[6-9]\\d\\d)\\d{4}", , , , "430123"], [, , "(?:4[02-489]|5[02-9]|708(?:4[0-5]|5[0-6]))\\d{4}", , , , "551234"], [, , "80[0-5]\\d{6}", , , , "800012345", , , [9]], [
7232
7242
  ,
7233
7243
  ,
7234
7244
  "8[129]\\d{7}",
@@ -7333,15 +7343,15 @@ var factoryOutput = (() => {
7333
7343
  ,
7334
7344
  [8]
7335
7345
  ], [, , "[35-7]\\d{7}", , , , "33123456", , , [8]], [, , "800\\d{4}|(?:0080[01]|800)\\d{6}", , , , "8001234", , , [7, 9, 11]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "QA", 974, "00", , , , , , , , [[, "(\\d{3})(\\d{4})", "$1 $2", ["2[16]|8"]], [, "(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]], , [, , "2[16]\\d{5}", , , , "2123456", , , [7]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7336
- RE: [, [, , "(?:26|[689]\\d)\\d{7}", , , , , , , [9]], [, , "26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}", , , , "262161234"], [
7346
+ RE: [, [, , "709\\d{6}|(?:26|[689]\\d)\\d{7}", , , , , , , [9]], [, , "26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}", , , , "262161234"], [
7337
7347
  ,
7338
7348
  ,
7339
- "69(?:2\\d\\d|3(?:[06][0-6]|1[013]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))\\d{4}",
7349
+ "(?:69(?:2\\d\\d|3(?:[06][0-6]|1[013]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))|7092[0-3])\\d{4}",
7340
7350
  ,
7341
7351
  ,
7342
7352
  ,
7343
7353
  "692123456"
7344
- ], [, , "80\\d{7}", , , , "801234567"], [, , "89[1-37-9]\\d{6}", , , , "891123456"], [, , "8(?:1[019]|2[0156]|84|90)\\d{6}", , , , "810123456"], [, , , , , , , , , [-1]], [, , "9(?:399[0-3]|479[0-5]|76(?:2[278]|3[0-37]))\\d{4}", , , , "939901234"], "RE", 262, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2689]"], "0$1"]], , [, , , , , , , , , [-1]], 1, , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7354
+ ], [, , "80\\d{7}", , , , "801234567"], [, , "89[1-37-9]\\d{6}", , , , "891123456"], [, , "8(?:1[019]|2[0156]|84|90)\\d{6}", , , , "810123456"], [, , , , , , , , , [-1]], [, , "9(?:399[0-3]|479[0-5]|76(?:2[278]|3[0-37]))\\d{4}", , , , "939901234"], "RE", 262, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"], "0$1"]], , [, , , , , , , , , [-1]], 1, , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7345
7355
  RO: [, [, , "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", , , , , , , [6, 9]], [
7346
7356
  ,
7347
7357
  ,
@@ -7655,7 +7665,7 @@ var factoryOutput = (() => {
7655
7665
  SN: [, [, , "(?:[378]\\d|93)\\d{7}", , , , , , , [9]], [, , "3(?:0(?:1[0-2]|80)|282|3(?:8[1-9]|9[3-9])|611)\\d{5}", , , , "301012345"], [
7656
7666
  ,
7657
7667
  ,
7658
- "7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|[38]3|[4-7]\\d))\\d{5}",
7668
+ "7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|3[36]|[4-7]\\d|8[35]))\\d{5}",
7659
7669
  ,
7660
7670
  ,
7661
7671
  ,
@@ -7752,11 +7762,11 @@ var factoryOutput = (() => {
7752
7762
  ,
7753
7763
  [, , , , , , , , , [-1]]
7754
7764
  ],
7755
- SY: [, [, , "[1-39]\\d{8}|[1-5]\\d{7}", , , , , , , [8, 9], [6, 7]], [, , "21\\d{6,7}|(?:1(?:[14]\\d|[2356])|2[235]|3(?:[13]\\d|4)|4[134]|5[1-3])\\d{6}", , , , "112345678", , , , [6, 7]], [, , "9[1-689]\\d{7}", , , , "944567890", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "SY", 963, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-5]"], "0$1", , 1], [
7765
+ SY: [, [, , "[1-359]\\d{8}|[1-5]\\d{7}", , , , , , , [8, 9], [6, 7]], [, , "21\\d{6,7}|(?:1(?:[14]\\d|[2356])|2[235]|3(?:[13]\\d|4)|4[134]|5[1-3])\\d{6}", , , , "112345678", , , , [6, 7]], [, , "(?:50|9[1-689])\\d{7}", , , , "944567890", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "SY", 963, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-4]|5[1-3]"], "0$1", , 1], [
7756
7766
  ,
7757
7767
  "(\\d{3})(\\d{3})(\\d{3})",
7758
7768
  "$1 $2 $3",
7759
- ["9"],
7769
+ ["[59]"],
7760
7770
  "0$1",
7761
7771
  ,
7762
7772
  1
@@ -7774,37 +7784,70 @@ var factoryOutput = (() => {
7774
7784
  [8]
7775
7785
  ], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7776
7786
  TA: [, [, , "8\\d{3}", , , , , , , [4]], [, , "8\\d{3}", , , , "8999"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TA", 290, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "8", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7777
- TC: [, [, , "(?:[58]\\d\\d|649|900)\\d{7}", , , , , , , [10], [7]], [, , "649(?:266|712|9(?:4\\d|50))\\d{4}", , , , "6497121234", , , , [7]], [, , "649(?:2(?:3[129]|4[1-79])|3\\d\\d|4[34][1-3])\\d{4}", , , , "6492311234", , , , [7]], [
7787
+ TC: [
7788
+ ,
7789
+ [, , "(?:[58]\\d\\d|649|900)\\d{7}", , , , , , , [10], [7]],
7790
+ [, , "649(?:266|712|9(?:4\\d|50))\\d{4}", , , , "6497121234", , , , [7]],
7791
+ [, , "649(?:2(?:3[129]|4[1-79])|3\\d\\d|4[34][1-3])\\d{4}", , , , "6492311234", , , , [7]],
7792
+ [, , "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", , , , "8002345678"],
7793
+ [, , "900[2-9]\\d{6}", , , , "9002345678"],
7794
+ [, , , , , , , , , [-1]],
7795
+ [, , "52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}", , , , "5002345678"],
7796
+ [, , "649(?:71[01]|966)\\d{4}", , , , "6497101234", , , , [7]],
7797
+ "TC",
7798
+ 1,
7799
+ "011",
7800
+ "1",
7778
7801
  ,
7779
7802
  ,
7780
- "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",
7803
+ "([2-479]\\d{6})$|1",
7804
+ "649$1",
7781
7805
  ,
7782
7806
  ,
7783
7807
  ,
7784
- "8002345678"
7785
- ], [, , "900[2-9]\\d{6}", , , , "9002345678"], [, , , , , , , , , [-1]], [, , "52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}", , , , "5002345678"], [, , "649(?:71[01]|966)\\d{4}", , , , "6497101234", , , , [7]], "TC", 1, "011", "1", , , "([2-479]\\d{6})$|1", "649$1", , , , , [, , , , , , , , , [-1]], , "649", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7808
+ ,
7809
+ [, , , , , , , , , [-1]],
7810
+ ,
7811
+ "649",
7812
+ [
7813
+ ,
7814
+ ,
7815
+ ,
7816
+ ,
7817
+ ,
7818
+ ,
7819
+ ,
7820
+ ,
7821
+ ,
7822
+ [-1]
7823
+ ],
7824
+ [, , , , , , , , , [-1]],
7825
+ ,
7826
+ ,
7827
+ [, , , , , , , , , [-1]]
7828
+ ],
7786
7829
  TD: [, [, , "(?:22|[689]\\d|77)\\d{6}", , , , , , , [8]], [, , "22(?:[37-9]0|5[0-5]|6[89])\\d{4}", , , , "22501234"], [, , "(?:[69]\\d|77|8[56])\\d{6}", , , , "63012345"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TD", 235, "00|16", , , , , , "00", , [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7787
- TG: [, [, , "[279]\\d{7}", , , , , , , [8]], [, , "2(?:2[2-7]|3[23]|4[45]|55|6[67]|77)\\d{5}", , , , "22212345"], [
7830
+ TG: [, [, , "[279]\\d{7}", , , , , , , [8]], [
7788
7831
  ,
7789
7832
  ,
7790
- "(?:7[019]|9[0-36-9])\\d{6}",
7833
+ "2(?:2[2-7]|3[23]|4[45]|55|6[67]|77)\\d{5}",
7791
7834
  ,
7792
7835
  ,
7793
7836
  ,
7794
- "90112345"
7795
- ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TG", 228, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7796
- TH: [, [, , "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", , , , , , , [8, 9, 10, 13]], [, , "(?:1[0689]|2\\d|3[2-9]|4[2-5]|5[2-6]|7[3-7])\\d{6}", , , , "21234567", , , [8]], [, , "67(?:1[0-8]|2[4-7])\\d{5}|(?:14|6[1-6]|[89]\\d)\\d{7}", , , , "812345678", , , [9]], [
7837
+ "22212345"
7838
+ ], [, , "(?:7[0-29]|9[0-36-9])\\d{6}", , , , "90112345"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TG", 228, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7839
+ TH: [, [, , "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", , , , , , , [8, 9, 10, 13]], [, , "(?:1[0689]|2\\d|3[2-9]|4[2-5]|5[2-6]|7[3-7])\\d{6}", , , , "21234567", , , [8]], [
7797
7840
  ,
7798
7841
  ,
7799
- "(?:001800\\d|1800)\\d{6}",
7842
+ "67(?:1[0-8]|2[4-7])\\d{5}|(?:14|6[1-6]|[89]\\d)\\d{7}",
7800
7843
  ,
7801
7844
  ,
7802
7845
  ,
7803
- "1800123456",
7846
+ "812345678",
7804
7847
  ,
7805
7848
  ,
7806
- [10, 13]
7807
- ], [, , "1900\\d{6}", , , , "1900123456", , , [10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "6[08]\\d{7}", , , , "601234567", , , [9]], "TH", 66, "00[1-9]", "0", , , "0", , , , [[, "(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[13-9]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7849
+ [9]
7850
+ ], [, , "(?:001800\\d|1800)\\d{6}", , , , "1800123456", , , [10, 13]], [, , "1900\\d{6}", , , , "1900123456", , , [10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "6[08]\\d{7}", , , , "601234567", , , [9]], "TH", 66, "00[1-9]", "0", , , "0", , , , [[, "(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[13-9]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7808
7851
  TJ: [, [, , "[0-57-9]\\d{8}", , , , , , , [9], [3, 5, 6, 7]], [
7809
7852
  ,
7810
7853
  ,
@@ -8030,7 +8073,7 @@ var factoryOutput = (() => {
8030
8073
  ], [
8031
8074
  ,
8032
8075
  ,
8033
- "(?:3052(?:0[0-8]|[1-9]\\d)|5056(?:[0-35-9]\\d|4[468])|7302[0-4]\\d)\\d{4}|(?:305[3-9]|472[24]|505[2-57-9]|7306|983[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[013569]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}",
8076
+ "(?:3052(?:0[0-8]|[1-9]\\d)|5056(?:[0-35-9]\\d|4[468])|7302[0-4]\\d)\\d{4}|(?:305[3-9]|472[24]|505[2-57-9]|7306|983[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[0135-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}",
8034
8077
  ,
8035
8078
  ,
8036
8079
  ,
@@ -8042,7 +8085,7 @@ var factoryOutput = (() => {
8042
8085
  ], [
8043
8086
  ,
8044
8087
  ,
8045
- "(?:3052(?:0[0-8]|[1-9]\\d)|5056(?:[0-35-9]\\d|4[468])|7302[0-4]\\d)\\d{4}|(?:305[3-9]|472[24]|505[2-57-9]|7306|983[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[013569]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}",
8088
+ "(?:3052(?:0[0-8]|[1-9]\\d)|5056(?:[0-35-9]\\d|4[468])|7302[0-4]\\d)\\d{4}|(?:305[3-9]|472[24]|505[2-57-9]|7306|983[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[0135-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}",
8046
8089
  ,
8047
8090
  ,
8048
8091
  ,
@@ -8335,18 +8378,37 @@ var factoryOutput = (() => {
8335
8378
  ["7"],
8336
8379
  "0$1"
8337
8380
  ]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8338
- YT: [, [, , "(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", , , , , , , [9]], [, , "269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}", , , , "269601234"], [, , "639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])\\d{4}", , , , "639012345"], [, , "80\\d{7}", , , , "801234567"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "9(?:(?:39|47)8[01]|769\\d)\\d{4}", , , , "939801234"], "YT", 262, "00", "0", , , "0", , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [
8381
+ YT: [
8382
+ ,
8383
+ [, , "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", , , , , , , [9]],
8384
+ [, , "269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}", , , , "269601234"],
8385
+ [, , "(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}", , , , "639012345"],
8386
+ [, , "80\\d{7}", , , , "801234567"],
8387
+ [, , , , , , , , , [-1]],
8388
+ [, , , , , , , , , [-1]],
8389
+ [, , , , , , , , , [-1]],
8390
+ [, , "9(?:(?:39|47)8[01]|769\\d)\\d{4}", , , , "939801234"],
8391
+ "YT",
8392
+ 262,
8393
+ "00",
8394
+ "0",
8339
8395
  ,
8340
8396
  ,
8397
+ "0",
8341
8398
  ,
8342
8399
  ,
8343
8400
  ,
8344
8401
  ,
8345
8402
  ,
8403
+ [, , , , , , , , , [-1]],
8346
8404
  ,
8347
8405
  ,
8348
- [-1]
8349
- ], , , [, , , , , , , , , [-1]]],
8406
+ [, , , , , , , , , [-1]],
8407
+ [, , , , , , , , , [-1]],
8408
+ ,
8409
+ ,
8410
+ [, , , , , , , , , [-1]]
8411
+ ],
8350
8412
  ZA: [, [, , "[1-79]\\d{8}|8\\d{4,9}", , , , , , , [5, 6, 7, 8, 9, 10]], [, , "(?:2(?:0330|4302)|52087)0\\d{3}|(?:1[0-8]|2[1-378]|3[1-69]|4\\d|5[1346-8])\\d{7}", , , , "101234567", , , [9]], [
8351
8413
  ,
8352
8414
  ,
@@ -8432,50 +8494,31 @@ var factoryOutput = (() => {
8432
8494
  [, , , , , , , , , [-1]]
8433
8495
  ],
8434
8496
  808: [, [, , "[1-9]\\d{7}", , , , , , , [8]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "[1-9]\\d{7}", , , , "12345678"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "001", 808, , , , , , , , 1, [[, "(\\d{4})(\\d{4})", "$1 $2", ["[1-9]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8435
- 870: [, [, , "7\\d{11}|[35-7]\\d{8}", , , , , , , [9, 12]], [, , , , , , , , , [-1]], [, , "(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}", , , , "301234567"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [
8497
+ 870: [, [, , "7\\d{11}|[235-7]\\d{8}", , , , , , , [9, 12]], [, , , , , , , , , [-1]], [, , "(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}", , , , "301234567"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [
8436
8498
  ,
8437
8499
  ,
8500
+ "2\\d{8}",
8438
8501
  ,
8439
8502
  ,
8440
8503
  ,
8504
+ "201234567",
8441
8505
  ,
8442
8506
  ,
8443
- ,
8444
- ,
8445
- [-1]
8446
- ], "001", 870, , , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[35-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8507
+ [9]
8508
+ ], "001", 870, , , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8447
8509
  878: [, [, , "10\\d{10}", , , , , , , [12]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "10\\d{10}", , , , "101234567890"], "001", 878, , , , , , , , 1, [[, "(\\d{2})(\\d{5})(\\d{5})", "$1 $2 $3", ["1"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8448
- 881: [
8449
- ,
8450
- [, , "6\\d{9}|[0-36-9]\\d{8}", , , , , , , [9, 10]],
8451
- [, , , , , , , , , [-1]],
8452
- [, , "6\\d{9}|[0-36-9]\\d{8}", , , , "612345678"],
8453
- [, , , , , , , , , [-1]],
8454
- [, , , , , , , , , [-1]],
8455
- [, , , , , , , , , [-1]],
8456
- [, , , , , , , , , [-1]],
8457
- [, , , , , , , , , [-1]],
8458
- "001",
8459
- 881,
8510
+ 881: [, [
8460
8511
  ,
8461
8512
  ,
8513
+ "6\\d{9}|[0-36-9]\\d{8}",
8462
8514
  ,
8463
8515
  ,
8464
8516
  ,
8465
8517
  ,
8466
8518
  ,
8467
8519
  ,
8468
- [[, "(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], [, "(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]],
8469
- ,
8470
- [, , , , , , , , , [-1]],
8471
- ,
8472
- ,
8473
- [, , , , , , , , , [-1]],
8474
- [, , , , , , , , , [-1]],
8475
- ,
8476
- ,
8477
- [, , , , , , , , , [-1]]
8478
- ],
8520
+ [9, 10]
8521
+ ], [, , , , , , , , , [-1]], [, , "6\\d{9}|[0-36-9]\\d{8}", , , , "612345678"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "001", 881, , , , , , , , , [[, "(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], [, "(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8479
8522
  882: [, [, , "[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?", , , , , , , [7, 8, 9, 10, 11, 12]], [, , , , , , , , , [-1]], [
8480
8523
  ,
8481
8524
  ,
@@ -8516,14 +8559,14 @@ var factoryOutput = (() => {
8516
8559
  ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "001", 888, , , , , , , , 1, [[, "(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "\\d{11}", , , , "12345678901"], , , [, , , , , , , , , [-1]]],
8517
8560
  979: [, [, , "[1359]\\d{8}", , , , , , , [9], [8]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "[1359]\\d{8}", , , , "123456789", , , , [8]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "001", 979, , , , , , , , 1, [[, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[1359]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]]
8518
8561
  };
8519
- function J() {
8562
+ function K() {
8520
8563
  this.g = {};
8521
8564
  }
8522
- J.h = void 0;
8523
- J.g = function() {
8524
- return J.h ? J.h : J.h = new J();
8565
+ K.h = void 0;
8566
+ K.g = function() {
8567
+ return K.h ? K.h : K.h = new K();
8525
8568
  };
8526
- var Fa = { 0: "0", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", "\uFF10": "0", "\uFF11": "1", "\uFF12": "2", "\uFF13": "3", "\uFF14": "4", "\uFF15": "5", "\uFF16": "6", "\uFF17": "7", "\uFF18": "8", "\uFF19": "9", "\u0660": "0", "\u0661": "1", "\u0662": "2", "\u0663": "3", "\u0664": "4", "\u0665": "5", "\u0666": "6", "\u0667": "7", "\u0668": "8", "\u0669": "9", "\u06F0": "0", "\u06F1": "1", "\u06F2": "2", "\u06F3": "3", "\u06F4": "4", "\u06F5": "5", "\u06F6": "6", "\u06F7": "7", "\u06F8": "8", "\u06F9": "9" }, Ga = {
8569
+ var Ea = { 0: "0", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", "\uFF10": "0", "\uFF11": "1", "\uFF12": "2", "\uFF13": "3", "\uFF14": "4", "\uFF15": "5", "\uFF16": "6", "\uFF17": "7", "\uFF18": "8", "\uFF19": "9", "\u0660": "0", "\u0661": "1", "\u0662": "2", "\u0663": "3", "\u0664": "4", "\u0665": "5", "\u0666": "6", "\u0667": "7", "\u0668": "8", "\u0669": "9", "\u06F0": "0", "\u06F1": "1", "\u06F2": "2", "\u06F3": "3", "\u06F4": "4", "\u06F5": "5", "\u06F6": "6", "\u06F7": "7", "\u06F8": "8", "\u06F9": "9" }, Fa = {
8527
8570
  0: "0",
8528
8571
  1: "1",
8529
8572
  2: "2",
@@ -8537,7 +8580,7 @@ var factoryOutput = (() => {
8537
8580
  "+": "+",
8538
8581
  "*": "*",
8539
8582
  "#": "#"
8540
- }, Ha = {
8583
+ }, Ga = {
8541
8584
  0: "0",
8542
8585
  1: "1",
8543
8586
  2: "2",
@@ -8604,48 +8647,48 @@ var factoryOutput = (() => {
8604
8647
  X: "9",
8605
8648
  Y: "9",
8606
8649
  Z: "9"
8607
- }, Ia = RegExp("[+\uFF0B]+"), K = RegExp("^[+\uFF0B]+"), Ja = RegExp("([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9])"), Ka = RegExp("[+\uFF0B0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]"), La = /[\\\/] *x/, Ma = RegExp("[^0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9A-Za-z#]+$"), Na = /(?:.*?[A-Za-z]){3}.*/, Oa = RegExp("^\\+([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]|[\\-\\.\\(\\)]?)*[0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]|[\\-\\.\\(\\)]?)*$"), Pa = RegExp("^([A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]+((\\-)*[A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9])*\\.)*[A-Za-z]+((\\-)*[A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9])*\\.?$");
8608
- function L(a) {
8650
+ }, Ha = RegExp("[+\uFF0B]+"), L = RegExp("^[+\uFF0B]+"), Ia = RegExp("([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9])"), Ja = RegExp("[+\uFF0B0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]"), Ka = /[\\\/] *x/, La = RegExp("[^0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9A-Za-z#]+$"), Ma = /(?:.*?[A-Za-z]){3}.*/, Na = RegExp("^\\+([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]|[\\-\\.\\(\\)]?)*[0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]|[\\-\\.\\(\\)]?)*$"), Oa = RegExp("^([A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]+((\\-)*[A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9])*\\.)*[A-Za-z]+((\\-)*[A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9])*\\.?$");
8651
+ function M(a) {
8609
8652
  return "([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]{1," + a + "})";
8610
8653
  }
8611
- function Qa() {
8612
- return ";ext=" + L("20") + "|[ \xA0\\t,]*(?:e?xt(?:ensi(?:o\u0301?|\xF3))?n?|\uFF45?\uFF58\uFF54\uFF4E?|\u0434\u043E\u0431|anexo)[:\\.\uFF0E]?[ \xA0\\t,-]*" + (L("20") + "#?|[ \xA0\\t,]*(?:[x\uFF58#\uFF03~\uFF5E]|int|\uFF49\uFF4E\uFF54)[:\\.\uFF0E]?[ \xA0\\t,-]*") + (L("9") + "#?|[- ]+") + (L("6") + "#|[ \xA0\\t]*(?:,{2}|;)[:\\.\uFF0E]?[ \xA0\\t,-]*") + (L("15") + "#?|[ \xA0\\t]*(?:,)+[:\\.\uFF0E]?[ \xA0\\t,-]*") + (L("9") + "#?");
8654
+ function Pa() {
8655
+ return ";ext=" + M("20") + "|[ \xA0\\t,]*(?:e?xt(?:ensi(?:o\u0301?|\xF3))?n?|\uFF45?\uFF58\uFF54\uFF4E?|\u0434\u043E\u0431|anexo)[:\\.\uFF0E]?[ \xA0\\t,-]*" + (M("20") + "#?|[ \xA0\\t,]*(?:[x\uFF58#\uFF03~\uFF5E]|int|\uFF49\uFF4E\uFF54)[:\\.\uFF0E]?[ \xA0\\t,-]*") + (M("9") + "#?|[- ]+") + (M("6") + "#|[ \xA0\\t]*(?:,{2}|;)[:\\.\uFF0E]?[ \xA0\\t,-]*") + (M("15") + "#?|[ \xA0\\t]*(?:,)+[:\\.\uFF0E]?[ \xA0\\t,-]*") + (M("9") + "#?");
8656
+ }
8657
+ var Qa = new RegExp("(?:" + Pa() + ")$", "i"), Ra = new RegExp("^[0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]{2}$|^[+\uFF0B]*(?:[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E*]*[0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]){3,}[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E*A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]*(?:" + Pa() + ")?$", "i"), Sa = /(\$\d)/, Ta = /^\(?\$1\)?$/;
8658
+ function Ua(a) {
8659
+ return 2 > a.length ? false : N(Ra, a);
8613
8660
  }
8614
- var Ra = new RegExp("(?:" + Qa() + ")$", "i"), Sa = new RegExp("^[0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]{2}$|^[+\uFF0B]*(?:[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E*]*[0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]){3,}[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E*A-Za-z0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]*(?:" + Qa() + ")?$", "i"), Ta = /(\$\d)/, Ua = /^\(?\$1\)?$/;
8615
8661
  function Va(a) {
8616
- return 2 > a.length ? false : M(Sa, a);
8662
+ return N(Ma, a) ? O(a, Ga) : O(a, Ea);
8617
8663
  }
8618
8664
  function Wa(a) {
8619
- return M(Na, a) ? N(a, Ha) : N(a, Fa);
8620
- }
8621
- function Xa(a) {
8622
- var b = Wa(a.toString());
8623
- D(a);
8665
+ var b = Va(a.toString());
8666
+ E(a);
8624
8667
  a.g(b);
8625
8668
  }
8626
- function Ya(a) {
8669
+ function Xa(a) {
8627
8670
  return null != a && (1 != x(a, 9) || -1 != u(a, 9)[0]);
8628
8671
  }
8629
- function N(a, b) {
8630
- for (var c = new C(), d, e = a.length, f = 0; f < e; ++f) d = a.charAt(f), d = b[d.toUpperCase()], null != d && c.g(d);
8672
+ function O(a, b) {
8673
+ for (var c = new D(), d, e = a.length, f = 0; f < e; ++f) d = a.charAt(f), d = b[d.toUpperCase()], null != d && c.g(d);
8631
8674
  return c.toString();
8632
8675
  }
8633
- function Za(a) {
8634
- return 0 == a.length || Ua.test(a);
8676
+ function Ya(a) {
8677
+ return 0 == a.length || Ta.test(a);
8635
8678
  }
8636
- function O(a) {
8637
- return null != a && isNaN(a) && a.toUpperCase() in Ea;
8679
+ function P(a) {
8680
+ return null != a && isNaN(a) && a.toUpperCase() in Da;
8638
8681
  }
8639
- J.prototype.format = function(a, b) {
8682
+ K.prototype.format = function(a, b) {
8640
8683
  if (0 == r(a, 2) && q(a, 5)) {
8641
8684
  var c = w(a, 5);
8642
8685
  if (0 < c.length) return c;
8643
8686
  }
8644
8687
  c = w(a, 1);
8645
- var d = P(a);
8646
- if (0 == b) return $a(c, 0, d, "");
8647
- if (!(c in I)) return d;
8648
- var e = Q(this, c, R(c));
8688
+ var d = Q(a);
8689
+ if (0 == b) return Za(c, 0, d, "");
8690
+ if (!(c in J)) return d;
8691
+ var e = R(this, c, S(c));
8649
8692
  a = q(a, 3) && 0 != r(a, 3).length ? 3 == b ? ";ext=" + r(a, 3) : q(e, 13) ? r(e, 13) + w(a, 3) : " ext. " + w(a, 3) : "";
8650
8693
  a: {
8651
8694
  e = 0 == u(e, 20).length || 2 == b ? u(e, 19) : u(e, 20);
@@ -8653,7 +8696,7 @@ var factoryOutput = (() => {
8653
8696
  f = e[h];
8654
8697
  var l = x(f, 3);
8655
8698
  if (0 == l || 0 == d.search(r(f, 3, l - 1))) {
8656
- if (l = new RegExp(r(f, 1)), M(l, d)) {
8699
+ if (l = new RegExp(r(f, 1)), N(l, d)) {
8657
8700
  e = f;
8658
8701
  break a;
8659
8702
  }
@@ -8664,18 +8707,18 @@ var factoryOutput = (() => {
8664
8707
  null != e && (g = e, e = w(g, 2), f = new RegExp(r(g, 1)), w(
8665
8708
  g,
8666
8709
  5
8667
- ), g = w(g, 4), d = 2 == b && null != g && 0 < g.length ? d.replace(f, e.replace(Ta, g)) : d.replace(f, e), 3 == b && (d = d.replace(RegExp("^[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]+"), ""), d = d.replace(RegExp("[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]+", "g"), "-")));
8668
- return $a(c, b, d, a);
8710
+ ), g = w(g, 4), d = 2 == b && null != g && 0 < g.length ? d.replace(f, e.replace(Sa, g)) : d.replace(f, e), 3 == b && (d = d.replace(RegExp("^[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]+"), ""), d = d.replace(RegExp("[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]+", "g"), "-")));
8711
+ return Za(c, b, d, a);
8669
8712
  };
8670
- function Q(a, b, c) {
8671
- return "001" == c ? S(a, "" + b) : S(a, c);
8713
+ function R(a, b, c) {
8714
+ return "001" == c ? T(a, "" + b) : T(a, c);
8672
8715
  }
8673
- function P(a) {
8716
+ function Q(a) {
8674
8717
  if (!q(a, 2)) return "";
8675
8718
  var b = "" + r(a, 2);
8676
8719
  return q(a, 4) && r(a, 4) && 0 < w(a, 8) ? Array(w(a, 8) + 1).join("0") + b : b;
8677
8720
  }
8678
- function $a(a, b, c, d) {
8721
+ function Za(a, b, c, d) {
8679
8722
  switch (b) {
8680
8723
  case 0:
8681
8724
  return "+" + a + c + d;
@@ -8687,7 +8730,7 @@ var factoryOutput = (() => {
8687
8730
  return c + d;
8688
8731
  }
8689
8732
  }
8690
- function T(a, b) {
8733
+ function U(a, b) {
8691
8734
  switch (b) {
8692
8735
  case 4:
8693
8736
  return r(a, 5);
@@ -8714,42 +8757,56 @@ var factoryOutput = (() => {
8714
8757
  return r(a, 1);
8715
8758
  }
8716
8759
  }
8717
- function ab(a, b) {
8718
- return U(a, r(b, 1)) ? U(a, r(b, 5)) ? 4 : U(a, r(b, 4)) ? 3 : U(a, r(b, 6)) ? 5 : U(a, r(b, 8)) ? 6 : U(a, r(b, 7)) ? 7 : U(a, r(b, 21)) ? 8 : U(a, r(b, 25)) ? 9 : U(a, r(b, 28)) ? 10 : U(a, r(b, 2)) ? r(b, 18) || U(a, r(b, 3)) ? 2 : 0 : !r(b, 18) && U(a, r(b, 3)) ? 1 : -1 : -1;
8760
+ function $a(a, b) {
8761
+ var c = ab(a, b);
8762
+ a = R(a, w(b, 1), c);
8763
+ if (null == a) return -1;
8764
+ b = Q(b);
8765
+ return bb(b, a);
8766
+ }
8767
+ function bb(a, b) {
8768
+ return V(a, r(b, 1)) ? V(a, r(b, 5)) ? 4 : V(a, r(b, 4)) ? 3 : V(a, r(b, 6)) ? 5 : V(a, r(b, 8)) ? 6 : V(a, r(b, 7)) ? 7 : V(a, r(b, 21)) ? 8 : V(a, r(b, 25)) ? 9 : V(a, r(b, 28)) ? 10 : V(a, r(b, 2)) ? r(b, 18) || V(a, r(b, 3)) ? 2 : 0 : !r(b, 18) && V(a, r(b, 3)) ? 1 : -1 : -1;
8719
8769
  }
8720
- function S(a, b) {
8770
+ function T(a, b) {
8721
8771
  if (null == b) return null;
8722
8772
  b = b.toUpperCase();
8723
8773
  var c = a.g[b];
8724
8774
  if (null == c) {
8725
- c = Ea[b];
8775
+ c = Da[b];
8726
8776
  if (null == c) return null;
8727
- c = new B().g(G.m(), c);
8777
+ c = new C().g(H.m(), c);
8728
8778
  a.g[b] = c;
8729
8779
  }
8730
8780
  return c;
8731
8781
  }
8732
- function U(a, b) {
8782
+ function V(a, b) {
8733
8783
  var c = a.length;
8734
- return 0 < x(b, 9) && -1 == u(b, 9).indexOf(c) ? false : M(w(b, 2), a);
8784
+ return 0 < x(b, 9) && -1 == u(b, 9).indexOf(c) ? false : N(w(b, 2), a);
8735
8785
  }
8736
- function bb(a, b) {
8786
+ function cb(a, b) {
8787
+ var c = ab(a, b);
8788
+ var d = w(b, 1);
8789
+ var e = R(a, d, c);
8790
+ null == e || "001" != c && d != db(a, c) ? e = false : (a = Q(b), e = -1 != bb(a, e));
8791
+ return e;
8792
+ }
8793
+ function ab(a, b) {
8737
8794
  if (null == b) return null;
8738
8795
  var c = w(b, 1);
8739
- c = I[c];
8796
+ c = J[c];
8740
8797
  if (null == c) a = null;
8741
8798
  else if (1 == c.length) a = c[0];
8742
8799
  else a: {
8743
- b = P(b);
8800
+ b = Q(b);
8744
8801
  for (var d, e = c.length, f = 0; f < e; f++) {
8745
8802
  d = c[f];
8746
- var g = S(a, d);
8803
+ var g = T(a, d);
8747
8804
  if (q(g, 23)) {
8748
8805
  if (0 == b.search(r(g, 23))) {
8749
8806
  a = d;
8750
8807
  break a;
8751
8808
  }
8752
- } else if (-1 != ab(b, g)) {
8809
+ } else if (-1 != bb(b, g)) {
8753
8810
  a = d;
8754
8811
  break a;
8755
8812
  }
@@ -8758,92 +8815,92 @@ var factoryOutput = (() => {
8758
8815
  }
8759
8816
  return a;
8760
8817
  }
8761
- function R(a) {
8762
- a = I[a];
8818
+ function S(a) {
8819
+ a = J[a];
8763
8820
  return null == a ? "ZZ" : a[0];
8764
8821
  }
8765
- function cb(a, b) {
8766
- a = S(a, b);
8822
+ function db(a, b) {
8823
+ a = T(a, b);
8767
8824
  if (null == a) throw Error("Invalid region code: " + b);
8768
8825
  return w(a, 10);
8769
8826
  }
8770
- function V(a, b, c, d) {
8771
- var e = T(c, d), f = 0 == x(e, 9) ? u(r(c, 1), 9) : u(e, 9);
8827
+ function W(a, b, c, d) {
8828
+ var e = U(c, d), f = 0 == x(e, 9) ? u(r(c, 1), 9) : u(e, 9);
8772
8829
  e = u(e, 10);
8773
- if (2 == d) if (Ya(T(c, 0))) a = T(c, 1), Ya(a) && (f = f.concat(0 == x(a, 9) ? u(r(c, 1), 9) : u(a, 9)), f.sort(), 0 == e.length ? e = u(a, 10) : (e = e.concat(u(a, 10)), e.sort()));
8774
- else return V(a, b, c, 1);
8830
+ if (2 == d) if (Xa(U(c, 0))) a = U(c, 1), Xa(a) && (f = f.concat(0 == x(a, 9) ? u(r(c, 1), 9) : u(a, 9)), f.sort(), 0 == e.length ? e = u(a, 10) : (e = e.concat(u(a, 10)), e.sort()));
8831
+ else return W(a, b, c, 1);
8775
8832
  if (-1 == f[0]) return 5;
8776
8833
  b = b.length;
8777
8834
  if (-1 < e.indexOf(b)) return 4;
8778
8835
  c = f[0];
8779
8836
  return c == b ? 0 : c > b ? 2 : f[f.length - 1] < b ? 3 : -1 < f.indexOf(b, 1) ? 0 : 5;
8780
8837
  }
8781
- function W(a, b, c) {
8782
- var d = P(b);
8838
+ function X(a, b, c) {
8839
+ var d = Q(b);
8783
8840
  b = w(b, 1);
8784
- if (!(b in I)) return 1;
8785
- b = Q(a, b, R(b));
8786
- return V(a, d, b, c);
8841
+ if (!(b in J)) return 1;
8842
+ b = R(a, b, S(b));
8843
+ return W(a, d, b, c);
8787
8844
  }
8788
- function db(a, b) {
8845
+ function eb(a, b) {
8789
8846
  a = a.toString();
8790
8847
  if (0 == a.length || "0" == a.charAt(0)) return 0;
8791
- for (var c, d = a.length, e = 1; 3 >= e && e <= d; ++e) if (c = parseInt(a.substring(0, e), 10), c in I) return b.g(a.substring(e)), c;
8848
+ for (var c, d = a.length, e = 1; 3 >= e && e <= d; ++e) if (c = parseInt(a.substring(0, e), 10), c in J) return b.g(a.substring(e)), c;
8792
8849
  return 0;
8793
8850
  }
8794
- function eb(a, b, c, d, e, f) {
8851
+ function fb(a, b, c, d, e, f) {
8795
8852
  if (0 == b.length) return 0;
8796
- b = new C(b);
8853
+ b = new D(b);
8797
8854
  var g;
8798
8855
  null != c && (g = r(c, 11));
8799
8856
  null == g && (g = "NonMatch");
8800
8857
  var h = b.toString();
8801
8858
  if (0 == h.length) g = 20;
8802
- else if (K.test(h)) h = h.replace(K, ""), D(b), b.g(Wa(h)), g = 1;
8859
+ else if (L.test(h)) h = h.replace(L, ""), E(b), b.g(Va(h)), g = 1;
8803
8860
  else {
8804
8861
  h = new RegExp(g);
8805
- Xa(b);
8862
+ Wa(b);
8806
8863
  g = b.toString();
8807
8864
  if (0 == g.search(h)) {
8808
8865
  h = g.match(h)[0].length;
8809
- var l = g.substring(h).match(Ja);
8810
- l && null != l[1] && 0 < l[1].length && "0" == N(l[1], Fa) ? g = false : (D(b), b.g(g.substring(h)), g = true);
8866
+ var l = g.substring(h).match(Ia);
8867
+ l && null != l[1] && 0 < l[1].length && "0" == O(l[1], Ea) ? g = false : (E(b), b.g(g.substring(h)), g = true);
8811
8868
  } else g = false;
8812
8869
  g = g ? 5 : 20;
8813
8870
  }
8814
8871
  e && t(f, 6, g);
8815
8872
  if (20 != g) {
8816
8873
  if (2 >= b.h.length) throw Error("Phone number too short after IDD");
8817
- a = db(b, d);
8874
+ a = eb(b, d);
8818
8875
  if (0 != a) return t(f, 1, a), a;
8819
8876
  throw Error("Invalid country calling code");
8820
8877
  }
8821
- if (null != c && (g = w(c, 10), h = "" + g, l = b.toString(), 0 == l.lastIndexOf(h, 0) && (h = new C(l.substring(h.length)), l = r(c, 1), l = new RegExp(w(l, 2)), fb(h, c, null), h = h.toString(), !M(l, b.toString()) && M(l, h) || 3 == V(a, b.toString(), c, -1)))) return d.g(h), e && t(f, 6, 10), t(f, 1, g), g;
8878
+ if (null != c && (g = w(c, 10), h = "" + g, l = b.toString(), 0 == l.lastIndexOf(h, 0) && (h = new D(l.substring(h.length)), l = r(c, 1), l = new RegExp(w(l, 2)), gb(h, c, null), h = h.toString(), !N(l, b.toString()) && N(l, h) || 3 == W(a, b.toString(), c, -1)))) return d.g(h), e && t(f, 6, 10), t(f, 1, g), g;
8822
8879
  t(f, 1, 0);
8823
8880
  return 0;
8824
8881
  }
8825
- function fb(a, b, c) {
8882
+ function gb(a, b, c) {
8826
8883
  var d = a.toString(), e = d.length, f = r(b, 15);
8827
8884
  if (0 != e && null != f && 0 != f.length) {
8828
8885
  var g = new RegExp("^(?:" + f + ")");
8829
8886
  if (e = g.exec(d)) {
8830
8887
  f = new RegExp(w(r(b, 1), 2));
8831
- var h = M(f, d), l = e.length - 1;
8888
+ var h = N(f, d), l = e.length - 1;
8832
8889
  b = r(b, 16);
8833
8890
  if (null == b || 0 == b.length || null == e[l] || 0 == e[l].length) {
8834
- if (!h || M(f, d.substring(e[0].length))) null != c && 0 < l && null != e[l] && c.g(e[1]), a.set(d.substring(e[0].length));
8835
- } else if (d = d.replace(g, b), !h || M(f, d)) null != c && 0 < l && c.g(e[1]), a.set(d);
8891
+ if (!h || N(f, d.substring(e[0].length))) null != c && 0 < l && null != e[l] && c.g(e[1]), a.set(d.substring(e[0].length));
8892
+ } else if (d = d.replace(g, b), !h || N(f, d)) null != c && 0 < l && c.g(e[1]), a.set(d);
8836
8893
  }
8837
8894
  }
8838
8895
  }
8839
- function X(a, b, c) {
8840
- if (!O(c) && 0 < b.length && "+" != b.charAt(0)) throw Error("Invalid country calling code");
8841
- return gb(a, b, c, true);
8896
+ function Y(a, b, c) {
8897
+ if (!P(c) && 0 < b.length && "+" != b.charAt(0)) throw Error("Invalid country calling code");
8898
+ return hb(a, b, c, true);
8842
8899
  }
8843
- function gb(a, b, c, d) {
8900
+ function hb(a, b, c, d) {
8844
8901
  if (null == b) throw Error("The string supplied did not seem to be a phone number");
8845
8902
  if (250 < b.length) throw Error("The string supplied is too long to be a phone number");
8846
- var e = new C();
8903
+ var e = new D();
8847
8904
  var f = b.indexOf(";phone-context=");
8848
8905
  if (-1 === f) f = null;
8849
8906
  else if (f += 15, f >= b.length) f = "";
@@ -8852,24 +8909,24 @@ var factoryOutput = (() => {
8852
8909
  f = -1 !== g ? b.substring(f, g) : b.substring(f);
8853
8910
  }
8854
8911
  var h = f;
8855
- null == h ? g = true : 0 === h.length ? g = false : (g = Oa.exec(h), h = Pa.exec(h), g = null !== g || null !== h);
8912
+ null == h ? g = true : 0 === h.length ? g = false : (g = Na.exec(h), h = Oa.exec(h), g = null !== g || null !== h);
8856
8913
  if (!g) throw Error("The string supplied did not seem to be a phone number");
8857
- null != f ? ("+" === f.charAt(0) && e.g(f), f = b.indexOf("tel:"), e.g(b.substring(0 <= f ? f + 4 : 0, b.indexOf(";phone-context=")))) : (f = e.g, g = b ?? "", h = g.search(Ka), 0 <= h ? (g = g.substring(h), g = g.replace(Ma, ""), h = g.search(La), 0 <= h && (g = g.substring(0, h))) : g = "", f.call(e, g));
8914
+ null != f ? ("+" === f.charAt(0) && e.g(f), f = b.indexOf("tel:"), e.g(b.substring(0 <= f ? f + 4 : 0, b.indexOf(";phone-context=")))) : (f = e.g, g = b ?? "", h = g.search(Ja), 0 <= h ? (g = g.substring(h), g = g.replace(La, ""), h = g.search(Ka), 0 <= h && (g = g.substring(0, h))) : g = "", f.call(e, g));
8858
8915
  f = e.toString();
8859
8916
  g = f.indexOf(";isub=");
8860
- 0 < g && (D(e), e.g(f.substring(0, g)));
8861
- if (!Va(e.toString())) throw Error("The string supplied did not seem to be a phone number");
8917
+ 0 < g && (E(e), e.g(f.substring(0, g)));
8918
+ if (!Ua(e.toString())) throw Error("The string supplied did not seem to be a phone number");
8862
8919
  f = e.toString();
8863
- if (!(O(c) || null != f && 0 < f.length && K.test(f))) throw Error("Invalid country calling code");
8864
- f = new H();
8920
+ if (!(P(c) || null != f && 0 < f.length && L.test(f))) throw Error("Invalid country calling code");
8921
+ f = new I();
8865
8922
  d && t(f, 5, b);
8866
8923
  a: {
8867
8924
  b = e.toString();
8868
- g = b.search(Ra);
8869
- if (0 <= g && Va(b.substring(0, g))) {
8870
- h = b.match(Ra);
8925
+ g = b.search(Qa);
8926
+ if (0 <= g && Ua(b.substring(0, g))) {
8927
+ h = b.match(Qa);
8871
8928
  for (var l = h.length, A = 1; A < l; ++A) if (null != h[A] && 0 < h[A].length) {
8872
- D(e);
8929
+ E(e);
8873
8930
  e.g(b.substring(0, g));
8874
8931
  b = h[A];
8875
8932
  break a;
@@ -8878,24 +8935,24 @@ var factoryOutput = (() => {
8878
8935
  b = "";
8879
8936
  }
8880
8937
  0 < b.length && t(f, 3, b);
8881
- g = S(a, c);
8882
- b = new C();
8938
+ g = T(a, c);
8939
+ b = new D();
8883
8940
  h = 0;
8884
8941
  l = e.toString();
8885
8942
  try {
8886
- h = eb(a, l, g, b, d, f);
8887
- } catch (da) {
8888
- if ("Invalid country calling code" == da.message && K.test(l)) {
8889
- if (l = l.replace(K, ""), h = eb(a, l, g, b, d, f), 0 == h) throw da;
8890
- } else throw da;
8943
+ h = fb(a, l, g, b, d, f);
8944
+ } catch (ca) {
8945
+ if ("Invalid country calling code" == ca.message && L.test(l)) {
8946
+ if (l = l.replace(L, ""), h = fb(a, l, g, b, d, f), 0 == h) throw ca;
8947
+ } else throw ca;
8891
8948
  }
8892
- 0 != h ? (e = R(h), e != c && (g = Q(a, h, e))) : (Xa(e), b.g(e.toString()), null != c ? (h = w(g, 10), t(
8949
+ 0 != h ? (e = S(h), e != c && (g = R(a, h, e))) : (Wa(e), b.g(e.toString()), null != c ? (h = w(g, 10), t(
8893
8950
  f,
8894
8951
  1,
8895
8952
  h
8896
8953
  )) : d && (delete f.h[6], f.g && delete f.g[6]));
8897
8954
  if (2 > b.h.length) throw Error("The string supplied is too short to be a phone number");
8898
- null != g && (c = new C(), e = new C(b.toString()), fb(e, g, c), a = V(a, e.toString(), g, -1), 2 != a && 4 != a && 5 != a && (b = e, d && 0 < c.toString().length && t(f, 7, c.toString())));
8955
+ null != g && (c = new D(), e = new D(b.toString()), gb(e, g, c), a = W(a, e.toString(), g, -1), 2 != a && 4 != a && 5 != a && (b = e, d && 0 < c.toString().length && t(f, 7, c.toString())));
8899
8956
  d = b.toString();
8900
8957
  a = d.length;
8901
8958
  if (2 > a) throw Error("The string supplied is too short to be a phone number");
@@ -8908,70 +8965,70 @@ var factoryOutput = (() => {
8908
8965
  t(f, 2, parseInt(d, 10));
8909
8966
  return f;
8910
8967
  }
8911
- function M(a, b) {
8968
+ function N(a, b) {
8912
8969
  return (a = "string" == typeof a ? b.match("^(?:" + a + ")$") : b.match(a)) && a[0].length == b.length ? true : false;
8913
8970
  }
8914
8971
  ;
8915
- function hb(a) {
8972
+ function ib(a) {
8916
8973
  this.fa = RegExp("\u2008");
8917
8974
  this.ja = "";
8918
- this.v = new C();
8975
+ this.v = new D();
8919
8976
  this.da = "";
8920
- this.s = new C();
8921
- this.ba = new C();
8977
+ this.s = new D();
8978
+ this.ba = new D();
8922
8979
  this.u = true;
8923
8980
  this.ea = this.ca = this.la = false;
8924
- this.ga = J.g();
8981
+ this.ga = K.g();
8925
8982
  this.$ = 0;
8926
- this.h = new C();
8983
+ this.h = new D();
8927
8984
  this.ha = false;
8928
8985
  this.o = "";
8929
- this.g = new C();
8986
+ this.g = new D();
8930
8987
  this.j = [];
8931
8988
  this.ka = a;
8932
- this.l = ib(this, this.ka);
8989
+ this.l = jb(this, this.ka);
8933
8990
  }
8934
- var jb = new G();
8935
- t(jb, 11, "NA");
8936
- var kb = RegExp("^[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]*\\$1[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]*(\\$\\d[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]*)*$"), lb = /[- ]/;
8937
- function ib(a, b) {
8991
+ var kb = new H();
8992
+ t(kb, 11, "NA");
8993
+ var lb = RegExp("^[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]*\\$1[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]*(\\$\\d[-x\u2010-\u2015\u2212\u30FC\uFF0D-\uFF0F \xA0\xAD\u200B\u2060\u3000()\uFF08\uFF09\uFF3B\uFF3D.\\[\\]/~\u2053\u223C\uFF5E]*)*$"), mb = /[- ]/;
8994
+ function jb(a, b) {
8938
8995
  var c = a.ga;
8939
- b = O(b) ? cb(c, b) : 0;
8940
- a = S(a.ga, R(b));
8941
- return null != a ? a : jb;
8996
+ b = P(b) ? db(c, b) : 0;
8997
+ a = T(a.ga, S(b));
8998
+ return null != a ? a : kb;
8942
8999
  }
8943
- function mb(a) {
9000
+ function nb(a) {
8944
9001
  for (var b = a.j.length, c = 0; c < b; ++c) {
8945
9002
  var d = a.j[c], e = w(d, 1);
8946
9003
  if (a.da == e) return false;
8947
9004
  var f = a;
8948
9005
  var g = d, h = w(g, 1);
8949
- D(f.v);
9006
+ E(f.v);
8950
9007
  var l = f;
8951
9008
  g = w(g, 2);
8952
9009
  var A = "999999999999999".match(h)[0];
8953
9010
  A.length < l.g.h.length ? l = "" : (l = A.replace(new RegExp(h, "g"), g), l = l.replace(RegExp("9", "g"), "\u2008"));
8954
9011
  0 < l.length ? (f.v.g(l), f = true) : f = false;
8955
- if (f) return a.da = e, a.ha = lb.test(r(d, 4)), a.$ = 0, true;
9012
+ if (f) return a.da = e, a.ha = mb.test(r(d, 4)), a.$ = 0, true;
8956
9013
  }
8957
9014
  return a.u = false;
8958
9015
  }
8959
- function nb(a, b) {
9016
+ function ob(a, b) {
8960
9017
  for (var c = [], d = b.length - 3, e = a.j.length, f = 0; f < e; ++f) {
8961
9018
  var g = a.j[f];
8962
9019
  0 == x(g, 3) ? c.push(a.j[f]) : (g = r(g, 3, Math.min(d, x(g, 3) - 1)), 0 == b.search(g) && c.push(a.j[f]));
8963
9020
  }
8964
9021
  a.j = c;
8965
9022
  }
8966
- function ob(a, b) {
9023
+ function pb(a, b) {
8967
9024
  a.s.g(b);
8968
9025
  var c = b;
8969
- Ja.test(c) || 1 == a.s.h.length && Ia.test(c) ? ("+" == b ? (c = b, a.ba.g(b)) : (c = Fa[b], a.ba.g(c), a.g.g(c)), b = c) : (a.u = false, a.la = true);
9026
+ Ia.test(c) || 1 == a.s.h.length && Ha.test(c) ? ("+" == b ? (c = b, a.ba.g(b)) : (c = Ea[b], a.ba.g(c), a.g.g(c)), b = c) : (a.u = false, a.la = true);
8970
9027
  if (!a.u) {
8971
9028
  if (!a.la) {
8972
- if (pb(a)) {
8973
- if (qb(a)) return rb(a);
8974
- } else if (0 < a.o.length && (b = a.g.toString(), D(a.g), a.g.g(a.o), a.g.g(b), b = a.h.toString(), c = b.lastIndexOf(a.o), D(a.h), a.h.g(b.substring(0, c))), a.o != sb(a)) return a.h.g(" "), rb(a);
9029
+ if (qb(a)) {
9030
+ if (rb(a)) return sb(a);
9031
+ } else if (0 < a.o.length && (b = a.g.toString(), E(a.g), a.g.g(a.o), a.g.g(b), b = a.h.toString(), c = b.lastIndexOf(a.o), E(a.h), a.h.g(b.substring(0, c))), a.o != tb(a)) return a.h.g(" "), sb(a);
8975
9032
  }
8976
9033
  return a.s.toString();
8977
9034
  }
@@ -8981,93 +9038,93 @@ var factoryOutput = (() => {
8981
9038
  case 2:
8982
9039
  return a.s.toString();
8983
9040
  case 3:
8984
- if (pb(a)) a.ea = true;
8985
- else return a.o = sb(a), tb(a);
9041
+ if (qb(a)) a.ea = true;
9042
+ else return a.o = tb(a), ub(a);
8986
9043
  default:
8987
- if (a.ea) return qb(a) && (a.ea = false), a.h.toString() + a.g.toString();
9044
+ if (a.ea) return rb(a) && (a.ea = false), a.h.toString() + a.g.toString();
8988
9045
  if (0 < a.j.length) {
8989
- b = ub(a, b);
8990
- c = vb(a);
9046
+ b = vb(a, b);
9047
+ c = wb(a);
8991
9048
  if (0 < c.length) return c;
8992
- nb(a, a.g.toString());
8993
- return mb(a) ? wb(a) : a.u ? Y(a, b) : a.s.toString();
9049
+ ob(a, a.g.toString());
9050
+ return nb(a) ? xb(a) : a.u ? Z(a, b) : a.s.toString();
8994
9051
  }
8995
- return tb(a);
9052
+ return ub(a);
8996
9053
  }
8997
9054
  }
8998
- function rb(a) {
9055
+ function sb(a) {
8999
9056
  a.u = true;
9000
9057
  a.ea = false;
9001
9058
  a.j = [];
9002
9059
  a.$ = 0;
9003
- D(a.v);
9060
+ E(a.v);
9004
9061
  a.da = "";
9005
- return tb(a);
9062
+ return ub(a);
9006
9063
  }
9007
- function vb(a) {
9064
+ function wb(a) {
9008
9065
  for (var b = a.g.toString(), c = a.j.length, d = 0; d < c; ++d) {
9009
9066
  var e = a.j[d], f = w(e, 1);
9010
- if (new RegExp("^(?:" + f + ")$").test(b) && (a.ha = lb.test(r(e, 4)), e = b.replace(new RegExp(f, "g"), r(e, 2)), e = Y(a, e), N(e, Ga) == a.ba)) return e;
9067
+ if (new RegExp("^(?:" + f + ")$").test(b) && (a.ha = mb.test(r(e, 4)), e = b.replace(new RegExp(f, "g"), r(e, 2)), e = Z(a, e), O(e, Fa) == a.ba)) return e;
9011
9068
  }
9012
9069
  return "";
9013
9070
  }
9014
- function Y(a, b) {
9071
+ function Z(a, b) {
9015
9072
  var c = a.h.h.length;
9016
9073
  return a.ha && 0 < c && " " != a.h.toString().charAt(c - 1) ? a.h + " " + b : a.h + b;
9017
9074
  }
9018
- function tb(a) {
9075
+ function ub(a) {
9019
9076
  var b = a.g.toString();
9020
9077
  if (3 <= b.length) {
9021
9078
  for (var c = a.ca && 0 == a.o.length && 0 < x(a.l, 20) ? u(a.l, 20) : u(a.l, 19), d = c.length, e = 0; e < d; ++e) {
9022
9079
  var f = c[e];
9023
- 0 < a.o.length && Za(w(f, 4)) && !r(f, 6) && !q(f, 5) || (0 != a.o.length || a.ca || Za(w(f, 4)) || r(f, 6)) && kb.test(w(f, 2)) && a.j.push(f);
9080
+ 0 < a.o.length && Ya(w(f, 4)) && !r(f, 6) && !q(f, 5) || (0 != a.o.length || a.ca || Ya(w(f, 4)) || r(f, 6)) && lb.test(w(f, 2)) && a.j.push(f);
9024
9081
  }
9025
- nb(a, b);
9026
- b = vb(a);
9027
- return 0 < b.length ? b : mb(a) ? wb(a) : a.s.toString();
9082
+ ob(a, b);
9083
+ b = wb(a);
9084
+ return 0 < b.length ? b : nb(a) ? xb(a) : a.s.toString();
9028
9085
  }
9029
- return Y(a, b);
9086
+ return Z(a, b);
9030
9087
  }
9031
- function wb(a) {
9088
+ function xb(a) {
9032
9089
  var b = a.g.toString(), c = b.length;
9033
9090
  if (0 < c) {
9034
- for (var d = "", e = 0; e < c; e++) d = ub(a, b.charAt(e));
9035
- return a.u ? Y(a, d) : a.s.toString();
9091
+ for (var d = "", e = 0; e < c; e++) d = vb(a, b.charAt(e));
9092
+ return a.u ? Z(a, d) : a.s.toString();
9036
9093
  }
9037
9094
  return a.h.toString();
9038
9095
  }
9039
- function sb(a) {
9096
+ function tb(a) {
9040
9097
  var b = a.g.toString(), c = 0;
9041
9098
  if (1 != r(a.l, 10)) var d = false;
9042
9099
  else d = a.g.toString(), d = "1" == d.charAt(0) && "0" != d.charAt(1) && "1" != d.charAt(1);
9043
9100
  d ? (c = 1, a.h.g("1").g(" "), a.ca = true) : q(a.l, 15) && (d = new RegExp("^(?:" + r(a.l, 15) + ")"), d = b.match(d), null != d && null != d[0] && 0 < d[0].length && (a.ca = true, c = d[0].length, a.h.g(b.substring(0, c))));
9044
- D(a.g);
9101
+ E(a.g);
9045
9102
  a.g.g(b.substring(c));
9046
9103
  return b.substring(0, c);
9047
9104
  }
9048
- function pb(a) {
9105
+ function qb(a) {
9049
9106
  var b = a.ba.toString(), c = new RegExp("^(?:\\+|" + r(a.l, 11) + ")");
9050
9107
  c = b.match(c);
9051
- return null != c && null != c[0] && 0 < c[0].length ? (a.ca = true, c = c[0].length, D(a.g), a.g.g(b.substring(c)), D(a.h), a.h.g(b.substring(0, c)), "+" != b.charAt(0) && a.h.g(" "), true) : false;
9108
+ return null != c && null != c[0] && 0 < c[0].length ? (a.ca = true, c = c[0].length, E(a.g), a.g.g(b.substring(c)), E(a.h), a.h.g(b.substring(0, c)), "+" != b.charAt(0) && a.h.g(" "), true) : false;
9052
9109
  }
9053
- function qb(a) {
9110
+ function rb(a) {
9054
9111
  if (0 == a.g.h.length) return false;
9055
- var b = new C(), c = db(a.g, b);
9112
+ var b = new D(), c = eb(a.g, b);
9056
9113
  if (0 == c) return false;
9057
- D(a.g);
9114
+ E(a.g);
9058
9115
  a.g.g(b.toString());
9059
- b = R(c);
9060
- "001" == b ? a.l = S(a.ga, "" + c) : b != a.ka && (a.l = ib(a, b));
9116
+ b = S(c);
9117
+ "001" == b ? a.l = T(a.ga, "" + c) : b != a.ka && (a.l = jb(a, b));
9061
9118
  a.h.g("" + c).g(" ");
9062
9119
  a.o = "";
9063
9120
  return true;
9064
9121
  }
9065
- function ub(a, b) {
9122
+ function vb(a, b) {
9066
9123
  var c = a.v.toString();
9067
9124
  if (0 <= c.substring(a.$).search(a.fa)) {
9068
9125
  var d = c.search(a.fa);
9069
9126
  b = c.replace(a.fa, b);
9070
- D(a.v);
9127
+ E(a.v);
9071
9128
  a.v.g(b);
9072
9129
  a.$ = d;
9073
9130
  return b.substring(0, a.$ + 1);
@@ -9077,13 +9134,13 @@ var factoryOutput = (() => {
9077
9134
  return a.s.toString();
9078
9135
  }
9079
9136
  ;
9080
- const Z = { FIXED_LINE: 0, MOBILE: 1, FIXED_LINE_OR_MOBILE: 2, TOLL_FREE: 3, PREMIUM_RATE: 4, SHARED_COST: 5, VOIP: 6, PERSONAL_NUMBER: 7, PAGER: 8, UAN: 9, VOICEMAIL: 10, UNKNOWN: -1 };
9137
+ const yb = { FIXED_LINE: 0, MOBILE: 1, FIXED_LINE_OR_MOBILE: 2, TOLL_FREE: 3, PREMIUM_RATE: 4, SHARED_COST: 5, VOIP: 6, PERSONAL_NUMBER: 7, PAGER: 8, UAN: 9, VOICEMAIL: 10, UNKNOWN: -1 };
9081
9138
  m("intlTelInputUtilsTemp", {});
9082
9139
  m("intlTelInputUtilsTemp.formatNumberAsYouType", (a, b) => {
9083
9140
  try {
9084
- const c = a.replace(/[^+0-9]/g, ""), d = new hb(b);
9141
+ const c = a.replace(/[^+0-9]/g, ""), d = new ib(b);
9085
9142
  b = "";
9086
- for (let e = 0; e < c.length; e++) d.ja = ob(d, c.charAt(e)), b = d.ja;
9143
+ for (let e = 0; e < c.length; e++) d.ja = pb(d, c.charAt(e)), b = d.ja;
9087
9144
  return b;
9088
9145
  } catch {
9089
9146
  return a;
@@ -9091,8 +9148,8 @@ var factoryOutput = (() => {
9091
9148
  });
9092
9149
  m("intlTelInputUtilsTemp.formatNumber", (a, b, c) => {
9093
9150
  try {
9094
- const e = J.g(), f = X(e, a, b);
9095
- var d = W(e, f, -1);
9151
+ const e = K.g(), f = Y(e, a, b);
9152
+ var d = X(e, f, -1);
9096
9153
  return 0 == d || 4 == d ? e.format(f, "undefined" === typeof c ? 0 : c) : a;
9097
9154
  } catch {
9098
9155
  return a;
@@ -9100,15 +9157,15 @@ var factoryOutput = (() => {
9100
9157
  });
9101
9158
  m("intlTelInputUtilsTemp.getExampleNumber", (a, b, c, d) => {
9102
9159
  try {
9103
- const l = J.g();
9160
+ const l = K.g();
9104
9161
  a: {
9105
9162
  var e = l;
9106
- if (O(a)) {
9107
- var f = T(S(e, a), c);
9163
+ if (P(a)) {
9164
+ var f = U(T(e, a), c);
9108
9165
  try {
9109
9166
  if (q(f, 6)) {
9110
9167
  var g = r(f, 6);
9111
- var h = gb(e, g, a, false);
9168
+ var h = hb(e, g, a, false);
9112
9169
  break a;
9113
9170
  }
9114
9171
  } catch (A) {
@@ -9123,21 +9180,15 @@ var factoryOutput = (() => {
9123
9180
  });
9124
9181
  m("intlTelInputUtilsTemp.getExtension", (a, b) => {
9125
9182
  try {
9126
- return r(X(J.g(), a, b), 3);
9183
+ return r(Y(K.g(), a, b), 3);
9127
9184
  } catch {
9128
9185
  return "";
9129
9186
  }
9130
9187
  });
9131
9188
  m("intlTelInputUtilsTemp.getNumberType", (a, b) => {
9132
9189
  try {
9133
- const g = J.g(), h = X(g, a, b);
9134
- var c = bb(g, h), d = Q(g, w(h, 1), c);
9135
- if (null == d) var e = -1;
9136
- else {
9137
- var f = P(h);
9138
- e = ab(f, d);
9139
- }
9140
- return e;
9190
+ const c = K.g(), d = Y(c, a, b);
9191
+ return $a(c, d);
9141
9192
  } catch {
9142
9193
  return -99;
9143
9194
  }
@@ -9145,53 +9196,46 @@ var factoryOutput = (() => {
9145
9196
  m("intlTelInputUtilsTemp.getValidationError", (a, b) => {
9146
9197
  if (!b) return 1;
9147
9198
  try {
9148
- const c = J.g(), d = X(c, a, b);
9149
- return W(c, d, -1);
9199
+ const c = K.g(), d = Y(c, a, b);
9200
+ return X(c, d, -1);
9150
9201
  } catch (c) {
9151
9202
  return "Invalid country calling code" === c.message ? 1 : 3 >= a.length || "Phone number too short after IDD" === c.message || "The string supplied is too short to be a phone number" === c.message ? 2 : "The string supplied is too long to be a phone number" === c.message ? 3 : -99;
9152
9203
  }
9153
9204
  });
9154
- m("intlTelInputUtilsTemp.isValidNumber", (a, b) => {
9205
+ m("intlTelInputUtilsTemp.isValidNumber", (a, b, c) => {
9155
9206
  try {
9156
- const l = J.g();
9157
- var c = X(l, a, b), d = bb(l, c);
9158
- a = l;
9159
- var e = w(c, 1), f = Q(a, e, d);
9160
- if (null == f || "001" != d && e != cb(a, d)) var g = false;
9161
- else {
9162
- var h = P(c);
9163
- g = -1 != ab(h, f);
9207
+ const d = K.g(), e = Y(d, a, b), f = cb(d, e);
9208
+ if (c) {
9209
+ const g = c.map((h) => yb[h]);
9210
+ return f && g.includes($a(d, e));
9164
9211
  }
9165
- return g;
9212
+ return f;
9166
9213
  } catch {
9167
9214
  return false;
9168
9215
  }
9169
9216
  });
9170
9217
  m("intlTelInputUtilsTemp.isPossibleNumber", (a, b, c) => {
9171
9218
  try {
9172
- const d = J.g(), e = X(d, a, b);
9219
+ const d = K.g(), e = Y(d, a, b);
9173
9220
  if (c) {
9174
- const f = 0 === W(d, e, Z[c]);
9175
- if ("FIXED_LINE_OR_MOBILE" === c) {
9176
- const g = 0 === W(d, e, Z.MOBILE), h = 0 === W(d, e, Z.FIXED_LINE);
9177
- return g || h || f;
9178
- }
9179
- return f;
9221
+ c.includes("FIXED_LINE_OR_MOBILE") && (c.includes("MOBILE") || c.push("MOBILE"), c.includes("FIXED_LINE") || c.push("FIXED_LINE"));
9222
+ for (let f of c) if (0 === X(d, e, yb[f])) return true;
9223
+ return false;
9180
9224
  }
9181
- return 0 === W(d, e, -1);
9225
+ return 0 === X(d, e, -1);
9182
9226
  } catch {
9183
9227
  return false;
9184
9228
  }
9185
9229
  });
9186
9230
  m("intlTelInputUtilsTemp.getCoreNumber", (a, b) => {
9187
9231
  try {
9188
- return r(X(J.g(), a, b), 2).toString();
9232
+ return r(Y(K.g(), a, b), 2).toString();
9189
9233
  } catch {
9190
9234
  return "";
9191
9235
  }
9192
9236
  });
9193
9237
  m("intlTelInputUtilsTemp.numberFormat", { E164: 0, INTERNATIONAL: 1, NATIONAL: 2, RFC3966: 3 });
9194
- m("intlTelInputUtilsTemp.numberType", Z);
9238
+ m("intlTelInputUtilsTemp.numberType", yb);
9195
9239
  m("intlTelInputUtilsTemp.validationError", { IS_POSSIBLE: 0, INVALID_COUNTRY_CODE: 1, TOO_SHORT: 2, TOO_LONG: 3, IS_POSSIBLE_LOCAL_ONLY: 4, INVALID_LENGTH: 5 });
9196
9240
  })();
9197
9241
  var utils = window.intlTelInputUtilsTemp;