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.
@@ -1659,8 +1659,8 @@ var defaults = {
1659
1659
  i18n: {},
1660
1660
  //* Initial country.
1661
1661
  initialCountry: "",
1662
- //* Specify the path to the libphonenumber script to enable validation/formatting.
1663
- loadUtilsOnInit: "",
1662
+ //* A function to load the utils script.
1663
+ loadUtils: null,
1664
1664
  //* National vs international formatting for numbers e.g. placeholders and displaying existing numbers.
1665
1665
  nationalMode: true,
1666
1666
  //* Display only these countries.
@@ -1681,10 +1681,8 @@ var defaults = {
1681
1681
  navigator.userAgent
1682
1682
  ) || window.innerWidth <= 500
1683
1683
  ) : false,
1684
- //* Deprecated! Use `loadUtilsOnInit` instead.
1685
- utilsScript: "",
1686
1684
  //* The number type to enforce during validation.
1687
- validationNumberType: "MOBILE"
1685
+ validationNumberTypes: ["MOBILE"]
1688
1686
  };
1689
1687
  var regionlessNanpNumbers = [
1690
1688
  "800",
@@ -2193,15 +2191,11 @@ var Iti = class {
2193
2191
  }
2194
2192
  //* Init many requests: utils script / geo ip lookup.
2195
2193
  _initRequests() {
2196
- let { loadUtilsOnInit, utilsScript, initialCountry, geoIpLookup } = this.options;
2197
- if (!loadUtilsOnInit && utilsScript) {
2198
- console.warn("intl-tel-input: The `utilsScript` option is deprecated and will be removed in a future release! Please use the `loadUtilsOnInit` option instead.");
2199
- loadUtilsOnInit = utilsScript;
2200
- }
2201
- if (loadUtilsOnInit && !intlTelInput.utils) {
2194
+ let { loadUtils, initialCountry, geoIpLookup } = this.options;
2195
+ if (loadUtils && !intlTelInput.utils) {
2202
2196
  this._handlePageLoad = () => {
2203
2197
  window.removeEventListener("load", this._handlePageLoad);
2204
- intlTelInput.loadUtils(loadUtilsOnInit)?.catch(() => {
2198
+ intlTelInput.attachUtils(loadUtils)?.catch(() => {
2205
2199
  });
2206
2200
  };
2207
2201
  if (intlTelInput.documentReady()) {
@@ -2665,7 +2659,7 @@ var Iti = class {
2665
2659
  }
2666
2660
  //* Update the maximum valid number length for the currently selected country.
2667
2661
  _updateMaxLength() {
2668
- const { strictMode, placeholderNumberType, validationNumberType } = this.options;
2662
+ const { strictMode, placeholderNumberType, validationNumberTypes } = this.options;
2669
2663
  const { iso2 } = this.selectedCountryData;
2670
2664
  if (strictMode && intlTelInput.utils) {
2671
2665
  if (iso2) {
@@ -2677,7 +2671,7 @@ var Iti = class {
2677
2671
  true
2678
2672
  );
2679
2673
  let validNumber = exampleNumber;
2680
- while (intlTelInput.utils.isPossibleNumber(exampleNumber, iso2, validationNumberType)) {
2674
+ while (intlTelInput.utils.isPossibleNumber(exampleNumber, iso2, validationNumberTypes)) {
2681
2675
  validNumber = exampleNumber;
2682
2676
  exampleNumber += "0";
2683
2677
  }
@@ -3029,7 +3023,7 @@ var Iti = class {
3029
3023
  return this._utilsIsPossibleNumber(val);
3030
3024
  }
3031
3025
  _utilsIsPossibleNumber(val) {
3032
- return intlTelInput.utils ? intlTelInput.utils.isPossibleNumber(val, this.selectedCountryData.iso2, this.options.validationNumberType) : null;
3026
+ return intlTelInput.utils ? intlTelInput.utils.isPossibleNumber(val, this.selectedCountryData.iso2, this.options.validationNumberTypes) : null;
3033
3027
  }
3034
3028
  //* Validate the input val (precise)
3035
3029
  isValidNumberPrecise() {
@@ -3047,7 +3041,7 @@ var Iti = class {
3047
3041
  return this._utilsIsValidNumber(val);
3048
3042
  }
3049
3043
  _utilsIsValidNumber(val) {
3050
- return intlTelInput.utils ? intlTelInput.utils.isValidNumber(val, this.selectedCountryData.iso2) : null;
3044
+ return intlTelInput.utils ? intlTelInput.utils.isValidNumber(val, this.selectedCountryData.iso2, this.options.validationNumberTypes) : null;
3051
3045
  }
3052
3046
  //* Update the selected country, and update the input val accordingly.
3053
3047
  setCountry(iso2) {
@@ -3083,29 +3077,23 @@ var Iti = class {
3083
3077
  }
3084
3078
  }
3085
3079
  };
3086
- var loadUtils = (source) => {
3080
+ var attachUtils = (source) => {
3087
3081
  if (!intlTelInput.utils && !intlTelInput.startedLoadingUtilsScript) {
3088
3082
  let loadCall;
3089
- if (typeof source === "string") {
3090
- 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!"));
3091
- } else if (typeof source === "function") {
3083
+ if (typeof source === "function") {
3092
3084
  try {
3093
3085
  loadCall = Promise.resolve(source());
3094
3086
  } catch (error) {
3095
3087
  return Promise.reject(error);
3096
3088
  }
3097
3089
  } else {
3098
- 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}`));
3090
+ 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}`));
3099
3091
  }
3100
3092
  intlTelInput.startedLoadingUtilsScript = true;
3101
3093
  return loadCall.then((module2) => {
3102
3094
  const utils2 = module2?.default;
3103
3095
  if (!utils2 || typeof utils2 !== "object") {
3104
- if (typeof source === "string") {
3105
- throw new TypeError(`The module loaded from ${source} did not set utils as its default export.`);
3106
- } else {
3107
- throw new TypeError("The loader function passed to loadUtils did not resolve to a module object with utils as its default export.");
3108
- }
3096
+ throw new TypeError("The loader function passed to attachUtils did not resolve to a module object with utils as its default export.");
3109
3097
  }
3110
3098
  intlTelInput.utils = utils2;
3111
3099
  forEachInstance("handleUtils");
@@ -3138,10 +3126,10 @@ var intlTelInput = Object.assign(
3138
3126
  },
3139
3127
  //* A map from instance ID to instance object.
3140
3128
  instances: {},
3141
- loadUtils,
3129
+ attachUtils,
3142
3130
  startedLoadingUtilsScript: false,
3143
3131
  startedLoadingAutoCountry: false,
3144
- version: "24.8.1"
3132
+ version: "25.0.0"
3145
3133
  }
3146
3134
  );
3147
3135
  var intl_tel_input_default = intlTelInput;
@@ -3175,7 +3163,7 @@ var intl_tel_input_default = intlTelInput;
3175
3163
  return b;
3176
3164
  }
3177
3165
  ;
3178
- var ca = class {
3166
+ var da = class {
3179
3167
  constructor(a) {
3180
3168
  if (ba !== ba) throw Error("SafeUrl is not meant to be built directly");
3181
3169
  this.g = a;
@@ -3184,8 +3172,8 @@ var intl_tel_input_default = intlTelInput;
3184
3172
  return this.g.toString();
3185
3173
  }
3186
3174
  }, ba = {};
3187
- new ca("about:invalid#zClosurez");
3188
- new ca("about:blank");
3175
+ new da("about:invalid#zClosurez");
3176
+ new da("about:blank");
3189
3177
  const ea = {};
3190
3178
  class fa {
3191
3179
  constructor() {
@@ -3364,91 +3352,91 @@ var intl_tel_input_default = intlTelInput;
3364
3352
  return b;
3365
3353
  };
3366
3354
  var xa = /^-?[0-9]+$/;
3367
- function ya() {
3355
+ function B() {
3368
3356
  }
3369
- n(ya, z);
3370
- ya.prototype.g = function(a, b) {
3357
+ n(B, z);
3358
+ B.prototype.g = function(a, b) {
3371
3359
  a = new a.h();
3372
3360
  a.l = this;
3373
3361
  a.h = b;
3374
3362
  a.g = {};
3375
3363
  return a;
3376
3364
  };
3377
- function B() {
3365
+ function C() {
3378
3366
  }
3379
- n(B, ya);
3380
- B.prototype.h = function(a, b) {
3367
+ n(C, B);
3368
+ C.prototype.h = function(a, b) {
3381
3369
  return 8 == a.h ? !!b : z.prototype.h.apply(this, arguments);
3382
3370
  };
3383
- B.prototype.g = function(a, b) {
3384
- return B.ma.g.call(this, a, b);
3371
+ C.prototype.g = function(a, b) {
3372
+ return C.ma.g.call(this, a, b);
3385
3373
  };
3386
- function C(a, b) {
3374
+ function D(a, b) {
3387
3375
  null != a && this.g.apply(this, arguments);
3388
3376
  }
3389
- C.prototype.h = "";
3390
- C.prototype.set = function(a) {
3377
+ D.prototype.h = "";
3378
+ D.prototype.set = function(a) {
3391
3379
  this.h = "" + a;
3392
3380
  };
3393
- C.prototype.g = function(a, b, c) {
3381
+ D.prototype.g = function(a, b, c) {
3394
3382
  this.h += String(a);
3395
3383
  if (null != b) for (let d = 1; d < arguments.length; d++) this.h += arguments[d];
3396
3384
  return this;
3397
3385
  };
3398
- function D(a) {
3386
+ function E(a) {
3399
3387
  a.h = "";
3400
3388
  }
3401
- C.prototype.toString = function() {
3389
+ D.prototype.toString = function() {
3402
3390
  return this.h;
3403
3391
  };
3404
- function E() {
3405
- p.call(this);
3406
- }
3407
- n(E, p);
3408
- var za = null;
3409
3392
  function F() {
3410
3393
  p.call(this);
3411
3394
  }
3412
3395
  n(F, p);
3413
- var Aa = null;
3396
+ var ya = null;
3414
3397
  function G() {
3415
3398
  p.call(this);
3416
3399
  }
3417
3400
  n(G, p);
3418
- var Ba = null;
3419
- E.prototype.m = function() {
3420
- var a = za;
3421
- 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 } }));
3422
- return a;
3423
- };
3424
- E.m = E.prototype.m;
3401
+ var za = null;
3402
+ function H() {
3403
+ p.call(this);
3404
+ }
3405
+ n(H, p);
3406
+ var Aa = null;
3425
3407
  F.prototype.m = function() {
3426
- var a = Aa;
3427
- 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 } }));
3408
+ var a = ya;
3409
+ 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 } }));
3428
3410
  return a;
3429
3411
  };
3430
3412
  F.m = F.prototype.m;
3431
3413
  G.prototype.m = function() {
3432
- var a = Ba;
3433
- a || (Ba = a = y(G, {
3414
+ var a = za;
3415
+ 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 } }));
3416
+ return a;
3417
+ };
3418
+ G.m = G.prototype.m;
3419
+ H.prototype.m = function() {
3420
+ var a = Aa;
3421
+ a || (Aa = a = y(H, {
3434
3422
  0: { name: "PhoneMetadata", ia: "i18n.phonenumbers.PhoneMetadata" },
3435
- 1: { name: "general_desc", i: 11, type: F },
3436
- 2: { name: "fixed_line", i: 11, type: F },
3437
- 3: { name: "mobile", i: 11, type: F },
3438
- 4: { name: "toll_free", i: 11, type: F },
3439
- 5: { name: "premium_rate", i: 11, type: F },
3440
- 6: { name: "shared_cost", i: 11, type: F },
3441
- 7: { name: "personal_number", i: 11, type: F },
3442
- 8: { name: "voip", i: 11, type: F },
3443
- 21: { name: "pager", i: 11, type: F },
3444
- 25: { name: "uan", i: 11, type: F },
3445
- 27: { name: "emergency", i: 11, type: F },
3446
- 28: { name: "voicemail", i: 11, type: F },
3447
- 29: { name: "short_code", i: 11, type: F },
3448
- 30: { name: "standard_rate", i: 11, type: F },
3449
- 31: { name: "carrier_specific", i: 11, type: F },
3450
- 33: { name: "sms_services", i: 11, type: F },
3451
- 24: { name: "no_international_dialling", i: 11, type: F },
3423
+ 1: { name: "general_desc", i: 11, type: G },
3424
+ 2: { name: "fixed_line", i: 11, type: G },
3425
+ 3: { name: "mobile", i: 11, type: G },
3426
+ 4: { name: "toll_free", i: 11, type: G },
3427
+ 5: { name: "premium_rate", i: 11, type: G },
3428
+ 6: { name: "shared_cost", i: 11, type: G },
3429
+ 7: { name: "personal_number", i: 11, type: G },
3430
+ 8: { name: "voip", i: 11, type: G },
3431
+ 21: { name: "pager", i: 11, type: G },
3432
+ 25: { name: "uan", i: 11, type: G },
3433
+ 27: { name: "emergency", i: 11, type: G },
3434
+ 28: { name: "voicemail", i: 11, type: G },
3435
+ 29: { name: "short_code", i: 11, type: G },
3436
+ 30: { name: "standard_rate", i: 11, type: G },
3437
+ 31: { name: "carrier_specific", i: 11, type: G },
3438
+ 33: { name: "sms_services", i: 11, type: G },
3439
+ 24: { name: "no_international_dialling", i: 11, type: G },
3452
3440
  9: { name: "id", required: true, i: 9, type: String },
3453
3441
  10: { name: "country_code", i: 5, type: Number },
3454
3442
  11: { name: "international_prefix", i: 9, type: String },
@@ -3462,31 +3450,31 @@ var intl_tel_input_default = intlTelInput;
3462
3450
  },
3463
3451
  16: { name: "national_prefix_transform_rule", i: 9, type: String },
3464
3452
  18: { name: "same_mobile_and_fixed_line_pattern", i: 8, defaultValue: false, type: Boolean },
3465
- 19: { name: "number_format", aa: true, i: 11, type: E },
3466
- 20: { name: "intl_number_format", aa: true, i: 11, type: E },
3453
+ 19: { name: "number_format", aa: true, i: 11, type: F },
3454
+ 20: { name: "intl_number_format", aa: true, i: 11, type: F },
3467
3455
  22: { name: "main_country_for_code", i: 8, defaultValue: false, type: Boolean },
3468
3456
  23: { name: "leading_digits", i: 9, type: String }
3469
3457
  }));
3470
3458
  return a;
3471
3459
  };
3472
- G.m = G.prototype.m;
3473
- function H() {
3460
+ H.m = H.prototype.m;
3461
+ function I() {
3474
3462
  p.call(this);
3475
3463
  }
3476
- n(H, p);
3477
- var Ca = null, Da = { ra: 0, qa: 1, pa: 5, oa: 10, na: 20 };
3478
- H.prototype.m = function() {
3479
- var a = Ca;
3480
- 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: {
3464
+ n(I, p);
3465
+ var Ba = null, Ca = { ra: 0, qa: 1, pa: 5, oa: 10, na: 20 };
3466
+ I.prototype.m = function() {
3467
+ var a = Ba;
3468
+ 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: {
3481
3469
  name: "preferred_domestic_carrier_code",
3482
3470
  i: 9,
3483
3471
  type: String
3484
3472
  } }));
3485
3473
  return a;
3486
3474
  };
3487
- H.ctor = H;
3488
- H.ctor.m = H.prototype.m;
3489
- var I = {
3475
+ I.ctor = I;
3476
+ I.ctor.m = I.prototype.m;
3477
+ var J = {
3490
3478
  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(" "),
3491
3479
  7: ["RU", "KZ"],
3492
3480
  20: ["EG"],
@@ -3702,7 +3690,7 @@ var intl_tel_input_default = intlTelInput;
3702
3690
  995: ["GE"],
3703
3691
  996: ["KG"],
3704
3692
  998: ["UZ"]
3705
- }, Ea = {
3693
+ }, Da = {
3706
3694
  AC: [, [
3707
3695
  ,
3708
3696
  ,
@@ -4490,10 +4478,10 @@ var intl_tel_input_default = intlTelInput;
4490
4478
  ,
4491
4479
  [7]
4492
4480
  ], [, , "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]]],
4493
- CA: [, [, , "(?:[2-8]\\d|90)\\d{8}|3\\d{6}", , , , , , , [7, 10]], [
4481
+ CA: [, [, , "[2-9]\\d{9}|3\\d{6}", , , , , , , [7, 10]], [
4494
4482
  ,
4495
4483
  ,
4496
- "(?: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}",
4484
+ "(?: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}",
4497
4485
  ,
4498
4486
  ,
4499
4487
  ,
@@ -4502,10 +4490,10 @@ var intl_tel_input_default = intlTelInput;
4502
4490
  ,
4503
4491
  [10],
4504
4492
  [7]
4505
- ], [, , "(?: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]], [
4493
+ ], [, , "(?: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]], [
4506
4494
  ,
4507
4495
  ,
4508
- "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}",
4496
+ "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}",
4509
4497
  ,
4510
4498
  ,
4511
4499
  ,
@@ -5310,7 +5298,7 @@ var intl_tel_input_default = intlTelInput;
5310
5298
  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]], [
5311
5299
  ,
5312
5300
  ,
5313
- "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}",
5301
+ "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}",
5314
5302
  ,
5315
5303
  ,
5316
5304
  ,
@@ -5319,7 +5307,7 @@ var intl_tel_input_default = intlTelInput;
5319
5307
  GF: [, [
5320
5308
  ,
5321
5309
  ,
5322
- "[56]94\\d{6}|(?:80|9\\d)\\d{7}",
5310
+ "(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}",
5323
5311
  ,
5324
5312
  ,
5325
5313
  ,
@@ -5327,7 +5315,7 @@ var intl_tel_input_default = intlTelInput;
5327
5315
  ,
5328
5316
  ,
5329
5317
  [9]
5330
- ], [, , "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]], , , [
5318
+ ], [, , "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]], [
5331
5319
  ,
5332
5320
  ,
5333
5321
  ,
@@ -5338,71 +5326,71 @@ var intl_tel_input_default = intlTelInput;
5338
5326
  ,
5339
5327
  ,
5340
5328
  [-1]
5341
- ]],
5342
- 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", , , , , [
5329
+ ], , , [, , , , , , , , , [-1]]],
5330
+ GG: [
5343
5331
  ,
5332
+ [, , "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", , , , , , , [7, 9, 10], [6]],
5333
+ [, , "1481[25-9]\\d{5}", , , , "1481256789", , , [10], [6]],
5334
+ [, , "7(?:(?:781|839)\\d|911[17])\\d{5}", , , , "7781123456", , , [10]],
5335
+ [, , "80[08]\\d{7}|800\\d{6}|8001111", , , , "8001234567"],
5336
+ [, , "(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", , , , "9012345678", , , [7, 10]],
5337
+ [, , , , , , , , , [-1]],
5338
+ [, , "70\\d{8}", , , , "7012345678", , , [10]],
5339
+ [, , "56\\d{8}", , , , "5612345678", , , [10]],
5340
+ "GG",
5341
+ 44,
5342
+ "00",
5343
+ "0",
5344
5344
  ,
5345
- "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}",
5346
5345
  ,
5346
+ "([25-9]\\d{5})$|0",
5347
+ "1481$1",
5347
5348
  ,
5348
5349
  ,
5349
- "7640123456",
5350
5350
  ,
5351
5351
  ,
5352
- [10]
5353
- ], , , [, , , , , , , , , [-1]], [, , "(?:3[0347]|55)\\d{8}", , , , "5512345678", , , [10]], , , [, , , , , , , , , [-1]]],
5354
- 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]], [
5352
+ [, , "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]],
5355
5353
  ,
5356
5354
  ,
5357
- "800\\d{5}",
5355
+ [, , , , , , , , , [-1]],
5356
+ [, , "(?:3[0347]|55)\\d{8}", , , , "5512345678", , , [10]],
5358
5357
  ,
5359
5358
  ,
5359
+ [, , , , , , , , , [-1]]
5360
+ ],
5361
+ 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]], [
5360
5362
  ,
5361
- "80012345",
5362
5363
  ,
5364
+ "(?:2(?:[0346-9]\\d|5[67])|5(?:[03-7]\\d|9[1-9]))\\d{6}",
5363
5365
  ,
5364
- [8]
5365
- ], [, , , , , , , , , [-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]]],
5366
- GI: [, [, , "(?:[25]\\d|60)\\d{6}", , , , , , , [8]], [
5367
5366
  ,
5368
5367
  ,
5369
- "2190[0-2]\\d{3}|2(?:0(?:[02]\\d|3[01])|16[24-9]|2[2-5]\\d)\\d{4}",
5368
+ "231234567",
5370
5369
  ,
5371
5370
  ,
5371
+ [9]
5372
+ ], [, , "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]]],
5373
+ GI: [, [
5372
5374
  ,
5373
- "20012345"
5374
- ], [, , "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]]],
5375
- GL: [
5376
5375
  ,
5377
- [, , "(?:19|[2-689]\\d|70)\\d{4}", , , , , , , [6]],
5378
- [, , "(?:19|3[1-7]|[68][1-9]|70|9\\d)\\d{4}", , , , "321000"],
5379
- [, , "[245]\\d{5}", , , , "221234"],
5380
- [, , "80\\d{4}", , , , "801234"],
5381
- [, , , , , , , , , [-1]],
5382
- [, , , , , , , , , [-1]],
5383
- [, , , , , , , , , [-1]],
5384
- [, , "3[89]\\d{4}", , , , "381234"],
5385
- "GL",
5386
- 299,
5387
- "00",
5376
+ "(?:[25]\\d|60)\\d{6}",
5388
5377
  ,
5389
5378
  ,
5390
5379
  ,
5391
5380
  ,
5392
5381
  ,
5393
5382
  ,
5383
+ [8]
5384
+ ], [, , "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]]],
5385
+ GL: [, [, , "(?:19|[2-689]\\d|70)\\d{4}", , , , , , , [6]], [, , "(?:19|3[1-7]|[68][1-9]|70|9\\d)\\d{4}", , , , "321000"], [
5394
5386
  ,
5395
- [[, "(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]],
5396
- ,
5397
- [, , , , , , , , , [-1]],
5398
5387
  ,
5388
+ "[245]\\d{5}",
5399
5389
  ,
5400
- [, , , , , , , , , [-1]],
5401
- [, , , , , , , , , [-1]],
5402
5390
  ,
5403
5391
  ,
5404
- [, , , , , , , , , [-1]]
5405
- ],
5392
+ "221234"
5393
+ ], [, , "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]]],
5406
5394
  GM: [
5407
5395
  ,
5408
5396
  [, , "[2-9]\\d{6}", , , , , , , [7]],
@@ -5434,33 +5422,55 @@ var intl_tel_input_default = intlTelInput;
5434
5422
  ,
5435
5423
  [, , , , , , , , , [-1]]
5436
5424
  ],
5437
- 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"]], [
5425
+ GN: [
5426
+ ,
5427
+ [, , "722\\d{6}|(?:3|6\\d)\\d{7}", , , , , , , [8, 9]],
5428
+ [, , "3(?:0(?:24|3[12]|4[1-35-7]|5[13]|6[189]|[78]1|9[1478])|1\\d\\d)\\d{4}", , , , "30241234", , , [8]],
5429
+ [, , "6[0-356]\\d{7}", , , , "601123456", , , [9]],
5430
+ [, , , , , , , , , [-1]],
5431
+ [, , , , , , , , , [-1]],
5432
+ [, , , , , , , , , [-1]],
5433
+ [, , , , , , , , , [-1]],
5434
+ [, , "722\\d{6}", , , , "722123456", , , [9]],
5435
+ "GN",
5436
+ 224,
5437
+ "00",
5438
+ ,
5439
+ ,
5438
5440
  ,
5439
- "(\\d{3})(\\d{2})(\\d{2})(\\d{2})",
5440
- "$1 $2 $3 $4",
5441
- ["[67]"]
5442
- ]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5443
- 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]], [
5444
5441
  ,
5445
5442
  ,
5446
- "9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\d{4}",
5447
5443
  ,
5448
5444
  ,
5445
+ [[, "(\\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]"]]],
5449
5446
  ,
5450
- "976012345"
5451
- ], "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]]],
5452
- 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"], [
5447
+ [, , , , , , , , , [-1]],
5453
5448
  ,
5454
5449
  ,
5450
+ [, , , , , , , , , [-1]],
5451
+ [, , , , , , , , , [-1]],
5455
5452
  ,
5456
5453
  ,
5454
+ [, , , , , , , , , [-1]]
5455
+ ],
5456
+ 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"], [
5457
5457
  ,
5458
5458
  ,
5459
+ "80[0-5]\\d{6}",
5459
5460
  ,
5460
5461
  ,
5461
5462
  ,
5462
- [-1]
5463
- ], [, , , , , , , , , [-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]]],
5463
+ "800012345"
5464
+ ], [, , , , , , , , , [-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]]],
5465
+ 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"], [
5466
+ ,
5467
+ ,
5468
+ "(?:222|55\\d)\\d{6}",
5469
+ ,
5470
+ ,
5471
+ ,
5472
+ "222123456"
5473
+ ], [, , "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]]],
5464
5474
  GR: [, [, , "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", , , , , , , [10, 11, 12]], [
5465
5475
  ,
5466
5476
  ,
@@ -5484,10 +5494,10 @@ var intl_tel_input_default = intlTelInput;
5484
5494
  "$1 $2 $3",
5485
5495
  ["1"]
5486
5496
  ]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
5487
- 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]], [
5497
+ 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]], [
5488
5498
  ,
5489
5499
  ,
5490
- "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}",
5500
+ "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}",
5491
5501
  ,
5492
5502
  ,
5493
5503
  ,
@@ -5529,7 +5539,7 @@ var intl_tel_input_default = intlTelInput;
5529
5539
  ,
5530
5540
  ,
5531
5541
  [8]
5532
- ], [, , "(?: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]], [
5542
+ ], [, , "(?: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]], [
5533
5543
  ,
5534
5544
  ,
5535
5545
  "900(?:[0-24-9]\\d{7}|3\\d{1,4})",
@@ -5555,7 +5565,7 @@ var intl_tel_input_default = intlTelInput;
5555
5565
  HN: [, [, , "8\\d{10}|[237-9]\\d{7}", , , , , , , [8, 11]], [
5556
5566
  ,
5557
5567
  ,
5558
- "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}",
5568
+ "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}",
5559
5569
  ,
5560
5570
  ,
5561
5571
  ,
@@ -6660,7 +6670,7 @@ var intl_tel_input_default = intlTelInput;
6660
6670
  ,
6661
6671
  "5002345678"
6662
6672
  ], [, , , , , , , , , [-1]], "MP", 1, "011", "1", , , "([2-9]\\d{6})$|1", "670$1", , 1, , , [, , , , , , , , , [-1]], , "670", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
6663
- 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]], [
6673
+ 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]], [
6664
6674
  ,
6665
6675
  ,
6666
6676
  "9(?:397[0-3]|477[0-5]|76(?:6\\d|7[0-367]))\\d{4}",
@@ -6668,7 +6678,7 @@ var intl_tel_input_default = intlTelInput;
6668
6678
  ,
6669
6679
  ,
6670
6680
  "976612345"
6671
- ], "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]]],
6681
+ ], "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]]],
6672
6682
  MR: [
6673
6683
  ,
6674
6684
  [, , "(?:[2-4]\\d\\d|800)\\d{5}", , , , , , , [8]],
@@ -7224,7 +7234,7 @@ var intl_tel_input_default = intlTelInput;
7224
7234
  [, "(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]],
7225
7235
  [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]
7226
7236
  ], , [, , "64\\d{4,7}", , , , "641234567", , , [6, 7, 8, 9]], , , [, , , , , , , , , [-1]], [, , "804\\d{6}", , , , "804123456", , , [9]], , , [, , , , , , , , , [-1]]],
7227
- 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]], [
7237
+ 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]], [
7228
7238
  ,
7229
7239
  ,
7230
7240
  "8[129]\\d{7}",
@@ -7329,15 +7339,15 @@ var intl_tel_input_default = intlTelInput;
7329
7339
  ,
7330
7340
  [8]
7331
7341
  ], [, , "[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]]],
7332
- RE: [, [, , "(?:26|[689]\\d)\\d{7}", , , , , , , [9]], [, , "26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}", , , , "262161234"], [
7342
+ RE: [, [, , "709\\d{6}|(?:26|[689]\\d)\\d{7}", , , , , , , [9]], [, , "26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}", , , , "262161234"], [
7333
7343
  ,
7334
7344
  ,
7335
- "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}",
7345
+ "(?: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}",
7336
7346
  ,
7337
7347
  ,
7338
7348
  ,
7339
7349
  "692123456"
7340
- ], [, , "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]]],
7350
+ ], [, , "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]]],
7341
7351
  RO: [, [, , "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", , , , , , , [6, 9]], [
7342
7352
  ,
7343
7353
  ,
@@ -7651,7 +7661,7 @@ var intl_tel_input_default = intlTelInput;
7651
7661
  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"], [
7652
7662
  ,
7653
7663
  ,
7654
- "7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|[38]3|[4-7]\\d))\\d{5}",
7664
+ "7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|3[36]|[4-7]\\d|8[35]))\\d{5}",
7655
7665
  ,
7656
7666
  ,
7657
7667
  ,
@@ -7748,11 +7758,11 @@ var intl_tel_input_default = intlTelInput;
7748
7758
  ,
7749
7759
  [, , , , , , , , , [-1]]
7750
7760
  ],
7751
- 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], [
7761
+ 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], [
7752
7762
  ,
7753
7763
  "(\\d{3})(\\d{3})(\\d{3})",
7754
7764
  "$1 $2 $3",
7755
- ["9"],
7765
+ ["[59]"],
7756
7766
  "0$1",
7757
7767
  ,
7758
7768
  1
@@ -7770,37 +7780,70 @@ var intl_tel_input_default = intlTelInput;
7770
7780
  [8]
7771
7781
  ], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7772
7782
  TA: [, [, , "8\\d{3}", , , , , , , [4]], [, , "8\\d{3}", , , , "8999"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TA", 290, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "8", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
7773
- 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]], [
7783
+ TC: [
7784
+ ,
7785
+ [, , "(?:[58]\\d\\d|649|900)\\d{7}", , , , , , , [10], [7]],
7786
+ [, , "649(?:266|712|9(?:4\\d|50))\\d{4}", , , , "6497121234", , , , [7]],
7787
+ [, , "649(?:2(?:3[129]|4[1-79])|3\\d\\d|4[34][1-3])\\d{4}", , , , "6492311234", , , , [7]],
7788
+ [, , "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", , , , "8002345678"],
7789
+ [, , "900[2-9]\\d{6}", , , , "9002345678"],
7790
+ [, , , , , , , , , [-1]],
7791
+ [, , "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"],
7792
+ [, , "649(?:71[01]|966)\\d{4}", , , , "6497101234", , , , [7]],
7793
+ "TC",
7794
+ 1,
7795
+ "011",
7796
+ "1",
7774
7797
  ,
7775
7798
  ,
7776
- "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",
7799
+ "([2-479]\\d{6})$|1",
7800
+ "649$1",
7777
7801
  ,
7778
7802
  ,
7779
7803
  ,
7780
- "8002345678"
7781
- ], [, , "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]]],
7804
+ ,
7805
+ [, , , , , , , , , [-1]],
7806
+ ,
7807
+ "649",
7808
+ [
7809
+ ,
7810
+ ,
7811
+ ,
7812
+ ,
7813
+ ,
7814
+ ,
7815
+ ,
7816
+ ,
7817
+ ,
7818
+ [-1]
7819
+ ],
7820
+ [, , , , , , , , , [-1]],
7821
+ ,
7822
+ ,
7823
+ [, , , , , , , , , [-1]]
7824
+ ],
7782
7825
  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]]],
7783
- TG: [, [, , "[279]\\d{7}", , , , , , , [8]], [, , "2(?:2[2-7]|3[23]|4[45]|55|6[67]|77)\\d{5}", , , , "22212345"], [
7826
+ TG: [, [, , "[279]\\d{7}", , , , , , , [8]], [
7784
7827
  ,
7785
7828
  ,
7786
- "(?:7[019]|9[0-36-9])\\d{6}",
7829
+ "2(?:2[2-7]|3[23]|4[45]|55|6[67]|77)\\d{5}",
7787
7830
  ,
7788
7831
  ,
7789
7832
  ,
7790
- "90112345"
7791
- ], [, , , , , , , , , [-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]]],
7792
- 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]], [
7833
+ "22212345"
7834
+ ], [, , "(?: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]]],
7835
+ 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]], [
7793
7836
  ,
7794
7837
  ,
7795
- "(?:001800\\d|1800)\\d{6}",
7838
+ "67(?:1[0-8]|2[4-7])\\d{5}|(?:14|6[1-6]|[89]\\d)\\d{7}",
7796
7839
  ,
7797
7840
  ,
7798
7841
  ,
7799
- "1800123456",
7842
+ "812345678",
7800
7843
  ,
7801
7844
  ,
7802
- [10, 13]
7803
- ], [, , "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]]],
7845
+ [9]
7846
+ ], [, , "(?: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]]],
7804
7847
  TJ: [, [, , "[0-57-9]\\d{8}", , , , , , , [9], [3, 5, 6, 7]], [
7805
7848
  ,
7806
7849
  ,
@@ -8026,7 +8069,7 @@ var intl_tel_input_default = intlTelInput;
8026
8069
  ], [
8027
8070
  ,
8028
8071
  ,
8029
- "(?: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}",
8072
+ "(?: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}",
8030
8073
  ,
8031
8074
  ,
8032
8075
  ,
@@ -8038,7 +8081,7 @@ var intl_tel_input_default = intlTelInput;
8038
8081
  ], [
8039
8082
  ,
8040
8083
  ,
8041
- "(?: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}",
8084
+ "(?: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}",
8042
8085
  ,
8043
8086
  ,
8044
8087
  ,
@@ -8331,18 +8374,37 @@ var intl_tel_input_default = intlTelInput;
8331
8374
  ["7"],
8332
8375
  "0$1"
8333
8376
  ]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8334
- 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]], [
8377
+ YT: [
8378
+ ,
8379
+ [, , "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", , , , , , , [9]],
8380
+ [, , "269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}", , , , "269601234"],
8381
+ [, , "(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}", , , , "639012345"],
8382
+ [, , "80\\d{7}", , , , "801234567"],
8383
+ [, , , , , , , , , [-1]],
8384
+ [, , , , , , , , , [-1]],
8385
+ [, , , , , , , , , [-1]],
8386
+ [, , "9(?:(?:39|47)8[01]|769\\d)\\d{4}", , , , "939801234"],
8387
+ "YT",
8388
+ 262,
8389
+ "00",
8390
+ "0",
8335
8391
  ,
8336
8392
  ,
8393
+ "0",
8337
8394
  ,
8338
8395
  ,
8339
8396
  ,
8340
8397
  ,
8341
8398
  ,
8399
+ [, , , , , , , , , [-1]],
8342
8400
  ,
8343
8401
  ,
8344
- [-1]
8345
- ], , , [, , , , , , , , , [-1]]],
8402
+ [, , , , , , , , , [-1]],
8403
+ [, , , , , , , , , [-1]],
8404
+ ,
8405
+ ,
8406
+ [, , , , , , , , , [-1]]
8407
+ ],
8346
8408
  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]], [
8347
8409
  ,
8348
8410
  ,
@@ -8428,50 +8490,31 @@ var intl_tel_input_default = intlTelInput;
8428
8490
  [, , , , , , , , , [-1]]
8429
8491
  ],
8430
8492
  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]]],
8431
- 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]], [
8493
+ 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]], [
8432
8494
  ,
8433
8495
  ,
8496
+ "2\\d{8}",
8434
8497
  ,
8435
8498
  ,
8436
8499
  ,
8500
+ "201234567",
8437
8501
  ,
8438
8502
  ,
8439
- ,
8440
- ,
8441
- [-1]
8442
- ], "001", 870, , , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[35-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8503
+ [9]
8504
+ ], "001", 870, , , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
8443
8505
  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]]],
8444
- 881: [
8445
- ,
8446
- [, , "6\\d{9}|[0-36-9]\\d{8}", , , , , , , [9, 10]],
8447
- [, , , , , , , , , [-1]],
8448
- [, , "6\\d{9}|[0-36-9]\\d{8}", , , , "612345678"],
8449
- [, , , , , , , , , [-1]],
8450
- [, , , , , , , , , [-1]],
8451
- [, , , , , , , , , [-1]],
8452
- [, , , , , , , , , [-1]],
8453
- [, , , , , , , , , [-1]],
8454
- "001",
8455
- 881,
8506
+ 881: [, [
8456
8507
  ,
8457
8508
  ,
8509
+ "6\\d{9}|[0-36-9]\\d{8}",
8458
8510
  ,
8459
8511
  ,
8460
8512
  ,
8461
8513
  ,
8462
8514
  ,
8463
8515
  ,
8464
- [[, "(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], [, "(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]],
8465
- ,
8466
- [, , , , , , , , , [-1]],
8467
- ,
8468
- ,
8469
- [, , , , , , , , , [-1]],
8470
- [, , , , , , , , , [-1]],
8471
- ,
8472
- ,
8473
- [, , , , , , , , , [-1]]
8474
- ],
8516
+ [9, 10]
8517
+ ], [, , , , , , , , , [-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]]],
8475
8518
  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]], [
8476
8519
  ,
8477
8520
  ,
@@ -8512,14 +8555,14 @@ var intl_tel_input_default = intlTelInput;
8512
8555
  ], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "001", 888, , , , , , , , 1, [[, "(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "\\d{11}", , , , "12345678901"], , , [, , , , , , , , , [-1]]],
8513
8556
  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]]]
8514
8557
  };
8515
- function J() {
8558
+ function K() {
8516
8559
  this.g = {};
8517
8560
  }
8518
- J.h = void 0;
8519
- J.g = function() {
8520
- return J.h ? J.h : J.h = new J();
8561
+ K.h = void 0;
8562
+ K.g = function() {
8563
+ return K.h ? K.h : K.h = new K();
8521
8564
  };
8522
- 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 = {
8565
+ 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 = {
8523
8566
  0: "0",
8524
8567
  1: "1",
8525
8568
  2: "2",
@@ -8533,7 +8576,7 @@ var intl_tel_input_default = intlTelInput;
8533
8576
  "+": "+",
8534
8577
  "*": "*",
8535
8578
  "#": "#"
8536
- }, Ha = {
8579
+ }, Ga = {
8537
8580
  0: "0",
8538
8581
  1: "1",
8539
8582
  2: "2",
@@ -8600,48 +8643,48 @@ var intl_tel_input_default = intlTelInput;
8600
8643
  X: "9",
8601
8644
  Y: "9",
8602
8645
  Z: "9"
8603
- }, 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])*\\.?$");
8604
- function L(a) {
8646
+ }, 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])*\\.?$");
8647
+ function M(a) {
8605
8648
  return "([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]{1," + a + "})";
8606
8649
  }
8607
- function Qa() {
8608
- 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") + "#?");
8650
+ function Pa() {
8651
+ 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") + "#?");
8652
+ }
8653
+ 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\)?$/;
8654
+ function Ua(a) {
8655
+ return 2 > a.length ? false : N(Ra, a);
8609
8656
  }
8610
- 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\)?$/;
8611
8657
  function Va(a) {
8612
- return 2 > a.length ? false : M(Sa, a);
8658
+ return N(Ma, a) ? O(a, Ga) : O(a, Ea);
8613
8659
  }
8614
8660
  function Wa(a) {
8615
- return M(Na, a) ? N(a, Ha) : N(a, Fa);
8616
- }
8617
- function Xa(a) {
8618
- var b = Wa(a.toString());
8619
- D(a);
8661
+ var b = Va(a.toString());
8662
+ E(a);
8620
8663
  a.g(b);
8621
8664
  }
8622
- function Ya(a) {
8665
+ function Xa(a) {
8623
8666
  return null != a && (1 != x(a, 9) || -1 != u(a, 9)[0]);
8624
8667
  }
8625
- function N(a, b) {
8626
- 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);
8668
+ function O(a, b) {
8669
+ 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);
8627
8670
  return c.toString();
8628
8671
  }
8629
- function Za(a) {
8630
- return 0 == a.length || Ua.test(a);
8672
+ function Ya(a) {
8673
+ return 0 == a.length || Ta.test(a);
8631
8674
  }
8632
- function O(a) {
8633
- return null != a && isNaN(a) && a.toUpperCase() in Ea;
8675
+ function P(a) {
8676
+ return null != a && isNaN(a) && a.toUpperCase() in Da;
8634
8677
  }
8635
- J.prototype.format = function(a, b) {
8678
+ K.prototype.format = function(a, b) {
8636
8679
  if (0 == r(a, 2) && q(a, 5)) {
8637
8680
  var c = w(a, 5);
8638
8681
  if (0 < c.length) return c;
8639
8682
  }
8640
8683
  c = w(a, 1);
8641
- var d = P(a);
8642
- if (0 == b) return $a(c, 0, d, "");
8643
- if (!(c in I)) return d;
8644
- var e = Q(this, c, R(c));
8684
+ var d = Q(a);
8685
+ if (0 == b) return Za(c, 0, d, "");
8686
+ if (!(c in J)) return d;
8687
+ var e = R(this, c, S(c));
8645
8688
  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) : "";
8646
8689
  a: {
8647
8690
  e = 0 == u(e, 20).length || 2 == b ? u(e, 19) : u(e, 20);
@@ -8649,7 +8692,7 @@ var intl_tel_input_default = intlTelInput;
8649
8692
  f = e[h];
8650
8693
  var l = x(f, 3);
8651
8694
  if (0 == l || 0 == d.search(r(f, 3, l - 1))) {
8652
- if (l = new RegExp(r(f, 1)), M(l, d)) {
8695
+ if (l = new RegExp(r(f, 1)), N(l, d)) {
8653
8696
  e = f;
8654
8697
  break a;
8655
8698
  }
@@ -8660,18 +8703,18 @@ var intl_tel_input_default = intlTelInput;
8660
8703
  null != e && (g = e, e = w(g, 2), f = new RegExp(r(g, 1)), w(
8661
8704
  g,
8662
8705
  5
8663
- ), 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"), "-")));
8664
- return $a(c, b, d, a);
8706
+ ), 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"), "-")));
8707
+ return Za(c, b, d, a);
8665
8708
  };
8666
- function Q(a, b, c) {
8667
- return "001" == c ? S(a, "" + b) : S(a, c);
8709
+ function R(a, b, c) {
8710
+ return "001" == c ? T(a, "" + b) : T(a, c);
8668
8711
  }
8669
- function P(a) {
8712
+ function Q(a) {
8670
8713
  if (!q(a, 2)) return "";
8671
8714
  var b = "" + r(a, 2);
8672
8715
  return q(a, 4) && r(a, 4) && 0 < w(a, 8) ? Array(w(a, 8) + 1).join("0") + b : b;
8673
8716
  }
8674
- function $a(a, b, c, d) {
8717
+ function Za(a, b, c, d) {
8675
8718
  switch (b) {
8676
8719
  case 0:
8677
8720
  return "+" + a + c + d;
@@ -8683,7 +8726,7 @@ var intl_tel_input_default = intlTelInput;
8683
8726
  return c + d;
8684
8727
  }
8685
8728
  }
8686
- function T(a, b) {
8729
+ function U(a, b) {
8687
8730
  switch (b) {
8688
8731
  case 4:
8689
8732
  return r(a, 5);
@@ -8710,42 +8753,56 @@ var intl_tel_input_default = intlTelInput;
8710
8753
  return r(a, 1);
8711
8754
  }
8712
8755
  }
8713
- function ab(a, b) {
8714
- 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;
8756
+ function $a(a, b) {
8757
+ var c = ab(a, b);
8758
+ a = R(a, w(b, 1), c);
8759
+ if (null == a) return -1;
8760
+ b = Q(b);
8761
+ return bb(b, a);
8762
+ }
8763
+ function bb(a, b) {
8764
+ 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;
8715
8765
  }
8716
- function S(a, b) {
8766
+ function T(a, b) {
8717
8767
  if (null == b) return null;
8718
8768
  b = b.toUpperCase();
8719
8769
  var c = a.g[b];
8720
8770
  if (null == c) {
8721
- c = Ea[b];
8771
+ c = Da[b];
8722
8772
  if (null == c) return null;
8723
- c = new B().g(G.m(), c);
8773
+ c = new C().g(H.m(), c);
8724
8774
  a.g[b] = c;
8725
8775
  }
8726
8776
  return c;
8727
8777
  }
8728
- function U(a, b) {
8778
+ function V(a, b) {
8729
8779
  var c = a.length;
8730
- return 0 < x(b, 9) && -1 == u(b, 9).indexOf(c) ? false : M(w(b, 2), a);
8780
+ return 0 < x(b, 9) && -1 == u(b, 9).indexOf(c) ? false : N(w(b, 2), a);
8731
8781
  }
8732
- function bb(a, b) {
8782
+ function cb(a, b) {
8783
+ var c = ab(a, b);
8784
+ var d = w(b, 1);
8785
+ var e = R(a, d, c);
8786
+ null == e || "001" != c && d != db(a, c) ? e = false : (a = Q(b), e = -1 != bb(a, e));
8787
+ return e;
8788
+ }
8789
+ function ab(a, b) {
8733
8790
  if (null == b) return null;
8734
8791
  var c = w(b, 1);
8735
- c = I[c];
8792
+ c = J[c];
8736
8793
  if (null == c) a = null;
8737
8794
  else if (1 == c.length) a = c[0];
8738
8795
  else a: {
8739
- b = P(b);
8796
+ b = Q(b);
8740
8797
  for (var d, e = c.length, f = 0; f < e; f++) {
8741
8798
  d = c[f];
8742
- var g = S(a, d);
8799
+ var g = T(a, d);
8743
8800
  if (q(g, 23)) {
8744
8801
  if (0 == b.search(r(g, 23))) {
8745
8802
  a = d;
8746
8803
  break a;
8747
8804
  }
8748
- } else if (-1 != ab(b, g)) {
8805
+ } else if (-1 != bb(b, g)) {
8749
8806
  a = d;
8750
8807
  break a;
8751
8808
  }
@@ -8754,92 +8811,92 @@ var intl_tel_input_default = intlTelInput;
8754
8811
  }
8755
8812
  return a;
8756
8813
  }
8757
- function R(a) {
8758
- a = I[a];
8814
+ function S(a) {
8815
+ a = J[a];
8759
8816
  return null == a ? "ZZ" : a[0];
8760
8817
  }
8761
- function cb(a, b) {
8762
- a = S(a, b);
8818
+ function db(a, b) {
8819
+ a = T(a, b);
8763
8820
  if (null == a) throw Error("Invalid region code: " + b);
8764
8821
  return w(a, 10);
8765
8822
  }
8766
- function V(a, b, c, d) {
8767
- var e = T(c, d), f = 0 == x(e, 9) ? u(r(c, 1), 9) : u(e, 9);
8823
+ function W(a, b, c, d) {
8824
+ var e = U(c, d), f = 0 == x(e, 9) ? u(r(c, 1), 9) : u(e, 9);
8768
8825
  e = u(e, 10);
8769
- 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()));
8770
- else return V(a, b, c, 1);
8826
+ 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()));
8827
+ else return W(a, b, c, 1);
8771
8828
  if (-1 == f[0]) return 5;
8772
8829
  b = b.length;
8773
8830
  if (-1 < e.indexOf(b)) return 4;
8774
8831
  c = f[0];
8775
8832
  return c == b ? 0 : c > b ? 2 : f[f.length - 1] < b ? 3 : -1 < f.indexOf(b, 1) ? 0 : 5;
8776
8833
  }
8777
- function W(a, b, c) {
8778
- var d = P(b);
8834
+ function X(a, b, c) {
8835
+ var d = Q(b);
8779
8836
  b = w(b, 1);
8780
- if (!(b in I)) return 1;
8781
- b = Q(a, b, R(b));
8782
- return V(a, d, b, c);
8837
+ if (!(b in J)) return 1;
8838
+ b = R(a, b, S(b));
8839
+ return W(a, d, b, c);
8783
8840
  }
8784
- function db(a, b) {
8841
+ function eb(a, b) {
8785
8842
  a = a.toString();
8786
8843
  if (0 == a.length || "0" == a.charAt(0)) return 0;
8787
- 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;
8844
+ 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;
8788
8845
  return 0;
8789
8846
  }
8790
- function eb(a, b, c, d, e, f) {
8847
+ function fb(a, b, c, d, e, f) {
8791
8848
  if (0 == b.length) return 0;
8792
- b = new C(b);
8849
+ b = new D(b);
8793
8850
  var g;
8794
8851
  null != c && (g = r(c, 11));
8795
8852
  null == g && (g = "NonMatch");
8796
8853
  var h = b.toString();
8797
8854
  if (0 == h.length) g = 20;
8798
- else if (K.test(h)) h = h.replace(K, ""), D(b), b.g(Wa(h)), g = 1;
8855
+ else if (L.test(h)) h = h.replace(L, ""), E(b), b.g(Va(h)), g = 1;
8799
8856
  else {
8800
8857
  h = new RegExp(g);
8801
- Xa(b);
8858
+ Wa(b);
8802
8859
  g = b.toString();
8803
8860
  if (0 == g.search(h)) {
8804
8861
  h = g.match(h)[0].length;
8805
- var l = g.substring(h).match(Ja);
8806
- l && null != l[1] && 0 < l[1].length && "0" == N(l[1], Fa) ? g = false : (D(b), b.g(g.substring(h)), g = true);
8862
+ var l = g.substring(h).match(Ia);
8863
+ l && null != l[1] && 0 < l[1].length && "0" == O(l[1], Ea) ? g = false : (E(b), b.g(g.substring(h)), g = true);
8807
8864
  } else g = false;
8808
8865
  g = g ? 5 : 20;
8809
8866
  }
8810
8867
  e && t(f, 6, g);
8811
8868
  if (20 != g) {
8812
8869
  if (2 >= b.h.length) throw Error("Phone number too short after IDD");
8813
- a = db(b, d);
8870
+ a = eb(b, d);
8814
8871
  if (0 != a) return t(f, 1, a), a;
8815
8872
  throw Error("Invalid country calling code");
8816
8873
  }
8817
- 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;
8874
+ 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;
8818
8875
  t(f, 1, 0);
8819
8876
  return 0;
8820
8877
  }
8821
- function fb(a, b, c) {
8878
+ function gb(a, b, c) {
8822
8879
  var d = a.toString(), e = d.length, f = r(b, 15);
8823
8880
  if (0 != e && null != f && 0 != f.length) {
8824
8881
  var g = new RegExp("^(?:" + f + ")");
8825
8882
  if (e = g.exec(d)) {
8826
8883
  f = new RegExp(w(r(b, 1), 2));
8827
- var h = M(f, d), l = e.length - 1;
8884
+ var h = N(f, d), l = e.length - 1;
8828
8885
  b = r(b, 16);
8829
8886
  if (null == b || 0 == b.length || null == e[l] || 0 == e[l].length) {
8830
- 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));
8831
- } else if (d = d.replace(g, b), !h || M(f, d)) null != c && 0 < l && c.g(e[1]), a.set(d);
8887
+ 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));
8888
+ } else if (d = d.replace(g, b), !h || N(f, d)) null != c && 0 < l && c.g(e[1]), a.set(d);
8832
8889
  }
8833
8890
  }
8834
8891
  }
8835
- function X(a, b, c) {
8836
- if (!O(c) && 0 < b.length && "+" != b.charAt(0)) throw Error("Invalid country calling code");
8837
- return gb(a, b, c, true);
8892
+ function Y(a, b, c) {
8893
+ if (!P(c) && 0 < b.length && "+" != b.charAt(0)) throw Error("Invalid country calling code");
8894
+ return hb(a, b, c, true);
8838
8895
  }
8839
- function gb(a, b, c, d) {
8896
+ function hb(a, b, c, d) {
8840
8897
  if (null == b) throw Error("The string supplied did not seem to be a phone number");
8841
8898
  if (250 < b.length) throw Error("The string supplied is too long to be a phone number");
8842
- var e = new C();
8899
+ var e = new D();
8843
8900
  var f = b.indexOf(";phone-context=");
8844
8901
  if (-1 === f) f = null;
8845
8902
  else if (f += 15, f >= b.length) f = "";
@@ -8848,24 +8905,24 @@ var intl_tel_input_default = intlTelInput;
8848
8905
  f = -1 !== g ? b.substring(f, g) : b.substring(f);
8849
8906
  }
8850
8907
  var h = f;
8851
- null == h ? g = true : 0 === h.length ? g = false : (g = Oa.exec(h), h = Pa.exec(h), g = null !== g || null !== h);
8908
+ null == h ? g = true : 0 === h.length ? g = false : (g = Na.exec(h), h = Oa.exec(h), g = null !== g || null !== h);
8852
8909
  if (!g) throw Error("The string supplied did not seem to be a phone number");
8853
- 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));
8910
+ 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));
8854
8911
  f = e.toString();
8855
8912
  g = f.indexOf(";isub=");
8856
- 0 < g && (D(e), e.g(f.substring(0, g)));
8857
- if (!Va(e.toString())) throw Error("The string supplied did not seem to be a phone number");
8913
+ 0 < g && (E(e), e.g(f.substring(0, g)));
8914
+ if (!Ua(e.toString())) throw Error("The string supplied did not seem to be a phone number");
8858
8915
  f = e.toString();
8859
- if (!(O(c) || null != f && 0 < f.length && K.test(f))) throw Error("Invalid country calling code");
8860
- f = new H();
8916
+ if (!(P(c) || null != f && 0 < f.length && L.test(f))) throw Error("Invalid country calling code");
8917
+ f = new I();
8861
8918
  d && t(f, 5, b);
8862
8919
  a: {
8863
8920
  b = e.toString();
8864
- g = b.search(Ra);
8865
- if (0 <= g && Va(b.substring(0, g))) {
8866
- h = b.match(Ra);
8921
+ g = b.search(Qa);
8922
+ if (0 <= g && Ua(b.substring(0, g))) {
8923
+ h = b.match(Qa);
8867
8924
  for (var l = h.length, A = 1; A < l; ++A) if (null != h[A] && 0 < h[A].length) {
8868
- D(e);
8925
+ E(e);
8869
8926
  e.g(b.substring(0, g));
8870
8927
  b = h[A];
8871
8928
  break a;
@@ -8874,24 +8931,24 @@ var intl_tel_input_default = intlTelInput;
8874
8931
  b = "";
8875
8932
  }
8876
8933
  0 < b.length && t(f, 3, b);
8877
- g = S(a, c);
8878
- b = new C();
8934
+ g = T(a, c);
8935
+ b = new D();
8879
8936
  h = 0;
8880
8937
  l = e.toString();
8881
8938
  try {
8882
- h = eb(a, l, g, b, d, f);
8883
- } catch (da) {
8884
- if ("Invalid country calling code" == da.message && K.test(l)) {
8885
- if (l = l.replace(K, ""), h = eb(a, l, g, b, d, f), 0 == h) throw da;
8886
- } else throw da;
8939
+ h = fb(a, l, g, b, d, f);
8940
+ } catch (ca) {
8941
+ if ("Invalid country calling code" == ca.message && L.test(l)) {
8942
+ if (l = l.replace(L, ""), h = fb(a, l, g, b, d, f), 0 == h) throw ca;
8943
+ } else throw ca;
8887
8944
  }
8888
- 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(
8945
+ 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(
8889
8946
  f,
8890
8947
  1,
8891
8948
  h
8892
8949
  )) : d && (delete f.h[6], f.g && delete f.g[6]));
8893
8950
  if (2 > b.h.length) throw Error("The string supplied is too short to be a phone number");
8894
- 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())));
8951
+ 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())));
8895
8952
  d = b.toString();
8896
8953
  a = d.length;
8897
8954
  if (2 > a) throw Error("The string supplied is too short to be a phone number");
@@ -8904,70 +8961,70 @@ var intl_tel_input_default = intlTelInput;
8904
8961
  t(f, 2, parseInt(d, 10));
8905
8962
  return f;
8906
8963
  }
8907
- function M(a, b) {
8964
+ function N(a, b) {
8908
8965
  return (a = "string" == typeof a ? b.match("^(?:" + a + ")$") : b.match(a)) && a[0].length == b.length ? true : false;
8909
8966
  }
8910
8967
  ;
8911
- function hb(a) {
8968
+ function ib(a) {
8912
8969
  this.fa = RegExp("\u2008");
8913
8970
  this.ja = "";
8914
- this.v = new C();
8971
+ this.v = new D();
8915
8972
  this.da = "";
8916
- this.s = new C();
8917
- this.ba = new C();
8973
+ this.s = new D();
8974
+ this.ba = new D();
8918
8975
  this.u = true;
8919
8976
  this.ea = this.ca = this.la = false;
8920
- this.ga = J.g();
8977
+ this.ga = K.g();
8921
8978
  this.$ = 0;
8922
- this.h = new C();
8979
+ this.h = new D();
8923
8980
  this.ha = false;
8924
8981
  this.o = "";
8925
- this.g = new C();
8982
+ this.g = new D();
8926
8983
  this.j = [];
8927
8984
  this.ka = a;
8928
- this.l = ib(this, this.ka);
8985
+ this.l = jb(this, this.ka);
8929
8986
  }
8930
- var jb = new G();
8931
- t(jb, 11, "NA");
8932
- 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 = /[- ]/;
8933
- function ib(a, b) {
8987
+ var kb = new H();
8988
+ t(kb, 11, "NA");
8989
+ 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 = /[- ]/;
8990
+ function jb(a, b) {
8934
8991
  var c = a.ga;
8935
- b = O(b) ? cb(c, b) : 0;
8936
- a = S(a.ga, R(b));
8937
- return null != a ? a : jb;
8992
+ b = P(b) ? db(c, b) : 0;
8993
+ a = T(a.ga, S(b));
8994
+ return null != a ? a : kb;
8938
8995
  }
8939
- function mb(a) {
8996
+ function nb(a) {
8940
8997
  for (var b = a.j.length, c = 0; c < b; ++c) {
8941
8998
  var d = a.j[c], e = w(d, 1);
8942
8999
  if (a.da == e) return false;
8943
9000
  var f = a;
8944
9001
  var g = d, h = w(g, 1);
8945
- D(f.v);
9002
+ E(f.v);
8946
9003
  var l = f;
8947
9004
  g = w(g, 2);
8948
9005
  var A = "999999999999999".match(h)[0];
8949
9006
  A.length < l.g.h.length ? l = "" : (l = A.replace(new RegExp(h, "g"), g), l = l.replace(RegExp("9", "g"), "\u2008"));
8950
9007
  0 < l.length ? (f.v.g(l), f = true) : f = false;
8951
- if (f) return a.da = e, a.ha = lb.test(r(d, 4)), a.$ = 0, true;
9008
+ if (f) return a.da = e, a.ha = mb.test(r(d, 4)), a.$ = 0, true;
8952
9009
  }
8953
9010
  return a.u = false;
8954
9011
  }
8955
- function nb(a, b) {
9012
+ function ob(a, b) {
8956
9013
  for (var c = [], d = b.length - 3, e = a.j.length, f = 0; f < e; ++f) {
8957
9014
  var g = a.j[f];
8958
9015
  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]));
8959
9016
  }
8960
9017
  a.j = c;
8961
9018
  }
8962
- function ob(a, b) {
9019
+ function pb(a, b) {
8963
9020
  a.s.g(b);
8964
9021
  var c = b;
8965
- 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);
9022
+ 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);
8966
9023
  if (!a.u) {
8967
9024
  if (!a.la) {
8968
- if (pb(a)) {
8969
- if (qb(a)) return rb(a);
8970
- } 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);
9025
+ if (qb(a)) {
9026
+ if (rb(a)) return sb(a);
9027
+ } 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);
8971
9028
  }
8972
9029
  return a.s.toString();
8973
9030
  }
@@ -8977,93 +9034,93 @@ var intl_tel_input_default = intlTelInput;
8977
9034
  case 2:
8978
9035
  return a.s.toString();
8979
9036
  case 3:
8980
- if (pb(a)) a.ea = true;
8981
- else return a.o = sb(a), tb(a);
9037
+ if (qb(a)) a.ea = true;
9038
+ else return a.o = tb(a), ub(a);
8982
9039
  default:
8983
- if (a.ea) return qb(a) && (a.ea = false), a.h.toString() + a.g.toString();
9040
+ if (a.ea) return rb(a) && (a.ea = false), a.h.toString() + a.g.toString();
8984
9041
  if (0 < a.j.length) {
8985
- b = ub(a, b);
8986
- c = vb(a);
9042
+ b = vb(a, b);
9043
+ c = wb(a);
8987
9044
  if (0 < c.length) return c;
8988
- nb(a, a.g.toString());
8989
- return mb(a) ? wb(a) : a.u ? Y(a, b) : a.s.toString();
9045
+ ob(a, a.g.toString());
9046
+ return nb(a) ? xb(a) : a.u ? Z(a, b) : a.s.toString();
8990
9047
  }
8991
- return tb(a);
9048
+ return ub(a);
8992
9049
  }
8993
9050
  }
8994
- function rb(a) {
9051
+ function sb(a) {
8995
9052
  a.u = true;
8996
9053
  a.ea = false;
8997
9054
  a.j = [];
8998
9055
  a.$ = 0;
8999
- D(a.v);
9056
+ E(a.v);
9000
9057
  a.da = "";
9001
- return tb(a);
9058
+ return ub(a);
9002
9059
  }
9003
- function vb(a) {
9060
+ function wb(a) {
9004
9061
  for (var b = a.g.toString(), c = a.j.length, d = 0; d < c; ++d) {
9005
9062
  var e = a.j[d], f = w(e, 1);
9006
- 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;
9063
+ 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;
9007
9064
  }
9008
9065
  return "";
9009
9066
  }
9010
- function Y(a, b) {
9067
+ function Z(a, b) {
9011
9068
  var c = a.h.h.length;
9012
9069
  return a.ha && 0 < c && " " != a.h.toString().charAt(c - 1) ? a.h + " " + b : a.h + b;
9013
9070
  }
9014
- function tb(a) {
9071
+ function ub(a) {
9015
9072
  var b = a.g.toString();
9016
9073
  if (3 <= b.length) {
9017
9074
  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) {
9018
9075
  var f = c[e];
9019
- 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);
9076
+ 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);
9020
9077
  }
9021
- nb(a, b);
9022
- b = vb(a);
9023
- return 0 < b.length ? b : mb(a) ? wb(a) : a.s.toString();
9078
+ ob(a, b);
9079
+ b = wb(a);
9080
+ return 0 < b.length ? b : nb(a) ? xb(a) : a.s.toString();
9024
9081
  }
9025
- return Y(a, b);
9082
+ return Z(a, b);
9026
9083
  }
9027
- function wb(a) {
9084
+ function xb(a) {
9028
9085
  var b = a.g.toString(), c = b.length;
9029
9086
  if (0 < c) {
9030
- for (var d = "", e = 0; e < c; e++) d = ub(a, b.charAt(e));
9031
- return a.u ? Y(a, d) : a.s.toString();
9087
+ for (var d = "", e = 0; e < c; e++) d = vb(a, b.charAt(e));
9088
+ return a.u ? Z(a, d) : a.s.toString();
9032
9089
  }
9033
9090
  return a.h.toString();
9034
9091
  }
9035
- function sb(a) {
9092
+ function tb(a) {
9036
9093
  var b = a.g.toString(), c = 0;
9037
9094
  if (1 != r(a.l, 10)) var d = false;
9038
9095
  else d = a.g.toString(), d = "1" == d.charAt(0) && "0" != d.charAt(1) && "1" != d.charAt(1);
9039
9096
  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))));
9040
- D(a.g);
9097
+ E(a.g);
9041
9098
  a.g.g(b.substring(c));
9042
9099
  return b.substring(0, c);
9043
9100
  }
9044
- function pb(a) {
9101
+ function qb(a) {
9045
9102
  var b = a.ba.toString(), c = new RegExp("^(?:\\+|" + r(a.l, 11) + ")");
9046
9103
  c = b.match(c);
9047
- 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;
9104
+ 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;
9048
9105
  }
9049
- function qb(a) {
9106
+ function rb(a) {
9050
9107
  if (0 == a.g.h.length) return false;
9051
- var b = new C(), c = db(a.g, b);
9108
+ var b = new D(), c = eb(a.g, b);
9052
9109
  if (0 == c) return false;
9053
- D(a.g);
9110
+ E(a.g);
9054
9111
  a.g.g(b.toString());
9055
- b = R(c);
9056
- "001" == b ? a.l = S(a.ga, "" + c) : b != a.ka && (a.l = ib(a, b));
9112
+ b = S(c);
9113
+ "001" == b ? a.l = T(a.ga, "" + c) : b != a.ka && (a.l = jb(a, b));
9057
9114
  a.h.g("" + c).g(" ");
9058
9115
  a.o = "";
9059
9116
  return true;
9060
9117
  }
9061
- function ub(a, b) {
9118
+ function vb(a, b) {
9062
9119
  var c = a.v.toString();
9063
9120
  if (0 <= c.substring(a.$).search(a.fa)) {
9064
9121
  var d = c.search(a.fa);
9065
9122
  b = c.replace(a.fa, b);
9066
- D(a.v);
9123
+ E(a.v);
9067
9124
  a.v.g(b);
9068
9125
  a.$ = d;
9069
9126
  return b.substring(0, a.$ + 1);
@@ -9073,13 +9130,13 @@ var intl_tel_input_default = intlTelInput;
9073
9130
  return a.s.toString();
9074
9131
  }
9075
9132
  ;
9076
- 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 };
9133
+ 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 };
9077
9134
  m("intlTelInputUtilsTemp", {});
9078
9135
  m("intlTelInputUtilsTemp.formatNumberAsYouType", (a, b) => {
9079
9136
  try {
9080
- const c = a.replace(/[^+0-9]/g, ""), d = new hb(b);
9137
+ const c = a.replace(/[^+0-9]/g, ""), d = new ib(b);
9081
9138
  b = "";
9082
- for (let e = 0; e < c.length; e++) d.ja = ob(d, c.charAt(e)), b = d.ja;
9139
+ for (let e = 0; e < c.length; e++) d.ja = pb(d, c.charAt(e)), b = d.ja;
9083
9140
  return b;
9084
9141
  } catch {
9085
9142
  return a;
@@ -9087,8 +9144,8 @@ var intl_tel_input_default = intlTelInput;
9087
9144
  });
9088
9145
  m("intlTelInputUtilsTemp.formatNumber", (a, b, c) => {
9089
9146
  try {
9090
- const e = J.g(), f = X(e, a, b);
9091
- var d = W(e, f, -1);
9147
+ const e = K.g(), f = Y(e, a, b);
9148
+ var d = X(e, f, -1);
9092
9149
  return 0 == d || 4 == d ? e.format(f, "undefined" === typeof c ? 0 : c) : a;
9093
9150
  } catch {
9094
9151
  return a;
@@ -9096,15 +9153,15 @@ var intl_tel_input_default = intlTelInput;
9096
9153
  });
9097
9154
  m("intlTelInputUtilsTemp.getExampleNumber", (a, b, c, d) => {
9098
9155
  try {
9099
- const l = J.g();
9156
+ const l = K.g();
9100
9157
  a: {
9101
9158
  var e = l;
9102
- if (O(a)) {
9103
- var f = T(S(e, a), c);
9159
+ if (P(a)) {
9160
+ var f = U(T(e, a), c);
9104
9161
  try {
9105
9162
  if (q(f, 6)) {
9106
9163
  var g = r(f, 6);
9107
- var h = gb(e, g, a, false);
9164
+ var h = hb(e, g, a, false);
9108
9165
  break a;
9109
9166
  }
9110
9167
  } catch (A) {
@@ -9119,21 +9176,15 @@ var intl_tel_input_default = intlTelInput;
9119
9176
  });
9120
9177
  m("intlTelInputUtilsTemp.getExtension", (a, b) => {
9121
9178
  try {
9122
- return r(X(J.g(), a, b), 3);
9179
+ return r(Y(K.g(), a, b), 3);
9123
9180
  } catch {
9124
9181
  return "";
9125
9182
  }
9126
9183
  });
9127
9184
  m("intlTelInputUtilsTemp.getNumberType", (a, b) => {
9128
9185
  try {
9129
- const g = J.g(), h = X(g, a, b);
9130
- var c = bb(g, h), d = Q(g, w(h, 1), c);
9131
- if (null == d) var e = -1;
9132
- else {
9133
- var f = P(h);
9134
- e = ab(f, d);
9135
- }
9136
- return e;
9186
+ const c = K.g(), d = Y(c, a, b);
9187
+ return $a(c, d);
9137
9188
  } catch {
9138
9189
  return -99;
9139
9190
  }
@@ -9141,53 +9192,46 @@ var intl_tel_input_default = intlTelInput;
9141
9192
  m("intlTelInputUtilsTemp.getValidationError", (a, b) => {
9142
9193
  if (!b) return 1;
9143
9194
  try {
9144
- const c = J.g(), d = X(c, a, b);
9145
- return W(c, d, -1);
9195
+ const c = K.g(), d = Y(c, a, b);
9196
+ return X(c, d, -1);
9146
9197
  } catch (c) {
9147
9198
  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;
9148
9199
  }
9149
9200
  });
9150
- m("intlTelInputUtilsTemp.isValidNumber", (a, b) => {
9201
+ m("intlTelInputUtilsTemp.isValidNumber", (a, b, c) => {
9151
9202
  try {
9152
- const l = J.g();
9153
- var c = X(l, a, b), d = bb(l, c);
9154
- a = l;
9155
- var e = w(c, 1), f = Q(a, e, d);
9156
- if (null == f || "001" != d && e != cb(a, d)) var g = false;
9157
- else {
9158
- var h = P(c);
9159
- g = -1 != ab(h, f);
9203
+ const d = K.g(), e = Y(d, a, b), f = cb(d, e);
9204
+ if (c) {
9205
+ const g = c.map((h) => yb[h]);
9206
+ return f && g.includes($a(d, e));
9160
9207
  }
9161
- return g;
9208
+ return f;
9162
9209
  } catch {
9163
9210
  return false;
9164
9211
  }
9165
9212
  });
9166
9213
  m("intlTelInputUtilsTemp.isPossibleNumber", (a, b, c) => {
9167
9214
  try {
9168
- const d = J.g(), e = X(d, a, b);
9215
+ const d = K.g(), e = Y(d, a, b);
9169
9216
  if (c) {
9170
- const f = 0 === W(d, e, Z[c]);
9171
- if ("FIXED_LINE_OR_MOBILE" === c) {
9172
- const g = 0 === W(d, e, Z.MOBILE), h = 0 === W(d, e, Z.FIXED_LINE);
9173
- return g || h || f;
9174
- }
9175
- return f;
9217
+ c.includes("FIXED_LINE_OR_MOBILE") && (c.includes("MOBILE") || c.push("MOBILE"), c.includes("FIXED_LINE") || c.push("FIXED_LINE"));
9218
+ for (let f of c) if (0 === X(d, e, yb[f])) return true;
9219
+ return false;
9176
9220
  }
9177
- return 0 === W(d, e, -1);
9221
+ return 0 === X(d, e, -1);
9178
9222
  } catch {
9179
9223
  return false;
9180
9224
  }
9181
9225
  });
9182
9226
  m("intlTelInputUtilsTemp.getCoreNumber", (a, b) => {
9183
9227
  try {
9184
- return r(X(J.g(), a, b), 2).toString();
9228
+ return r(Y(K.g(), a, b), 2).toString();
9185
9229
  } catch {
9186
9230
  return "";
9187
9231
  }
9188
9232
  });
9189
9233
  m("intlTelInputUtilsTemp.numberFormat", { E164: 0, INTERNATIONAL: 1, NATIONAL: 2, RFC3966: 3 });
9190
- m("intlTelInputUtilsTemp.numberType", Z);
9234
+ m("intlTelInputUtilsTemp.numberType", yb);
9191
9235
  m("intlTelInputUtilsTemp.validationError", { IS_POSSIBLE: 0, INVALID_COUNTRY_CODE: 1, TOO_SHORT: 2, TOO_LONG: 3, IS_POSSIBLE_LOCAL_ONLY: 4, INVALID_LENGTH: 5 });
9192
9236
  })();
9193
9237
  var utils = window.intlTelInputUtilsTemp;