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.
- package/README.md +57 -48
- package/build/js/data.js +1 -1
- package/build/js/data.min.js +1 -1
- package/build/js/intlTelInput.d.ts +6 -8
- package/build/js/intlTelInput.js +17 -33
- package/build/js/intlTelInput.min.js +2 -2
- package/build/js/intlTelInputWithUtils.js +448 -404
- package/build/js/intlTelInputWithUtils.min.js +2 -2
- package/build/js/utils.js +90 -91
- package/package.json +1 -1
- package/react/README.md +1 -1
- package/react/build/IntlTelInput.cjs +16 -32
- package/react/build/IntlTelInput.d.ts +6 -8
- package/react/build/IntlTelInput.js +16 -32
- package/react/build/IntlTelInputWithUtils.cjs +447 -403
- package/react/build/IntlTelInputWithUtils.js +447 -403
- package/vue/README.md +1 -1
- package/vue/build/IntlTelInput.mjs +19 -27
- package/vue/build/IntlTelInputWithUtils.mjs +770 -724
|
@@ -1623,8 +1623,8 @@ var defaults = {
|
|
|
1623
1623
|
i18n: {},
|
|
1624
1624
|
//* Initial country.
|
|
1625
1625
|
initialCountry: "",
|
|
1626
|
-
//*
|
|
1627
|
-
|
|
1626
|
+
//* A function to load the utils script.
|
|
1627
|
+
loadUtils: null,
|
|
1628
1628
|
//* National vs international formatting for numbers e.g. placeholders and displaying existing numbers.
|
|
1629
1629
|
nationalMode: true,
|
|
1630
1630
|
//* Display only these countries.
|
|
@@ -1645,10 +1645,8 @@ var defaults = {
|
|
|
1645
1645
|
navigator.userAgent
|
|
1646
1646
|
) || window.innerWidth <= 500
|
|
1647
1647
|
) : false,
|
|
1648
|
-
//* Deprecated! Use `loadUtilsOnInit` instead.
|
|
1649
|
-
utilsScript: "",
|
|
1650
1648
|
//* The number type to enforce during validation.
|
|
1651
|
-
|
|
1649
|
+
validationNumberTypes: ["MOBILE"]
|
|
1652
1650
|
};
|
|
1653
1651
|
var regionlessNanpNumbers = [
|
|
1654
1652
|
"800",
|
|
@@ -2157,15 +2155,11 @@ var Iti = class {
|
|
|
2157
2155
|
}
|
|
2158
2156
|
//* Init many requests: utils script / geo ip lookup.
|
|
2159
2157
|
_initRequests() {
|
|
2160
|
-
let {
|
|
2161
|
-
if (
|
|
2162
|
-
console.warn("intl-tel-input: The `utilsScript` option is deprecated and will be removed in a future release! Please use the `loadUtilsOnInit` option instead.");
|
|
2163
|
-
loadUtilsOnInit = utilsScript;
|
|
2164
|
-
}
|
|
2165
|
-
if (loadUtilsOnInit && !intlTelInput.utils) {
|
|
2158
|
+
let { loadUtils, initialCountry, geoIpLookup } = this.options;
|
|
2159
|
+
if (loadUtils && !intlTelInput.utils) {
|
|
2166
2160
|
this._handlePageLoad = () => {
|
|
2167
2161
|
window.removeEventListener("load", this._handlePageLoad);
|
|
2168
|
-
intlTelInput.loadUtils
|
|
2162
|
+
intlTelInput.attachUtils(loadUtils)?.catch(() => {
|
|
2169
2163
|
});
|
|
2170
2164
|
};
|
|
2171
2165
|
if (intlTelInput.documentReady()) {
|
|
@@ -2629,7 +2623,7 @@ var Iti = class {
|
|
|
2629
2623
|
}
|
|
2630
2624
|
//* Update the maximum valid number length for the currently selected country.
|
|
2631
2625
|
_updateMaxLength() {
|
|
2632
|
-
const { strictMode, placeholderNumberType,
|
|
2626
|
+
const { strictMode, placeholderNumberType, validationNumberTypes } = this.options;
|
|
2633
2627
|
const { iso2 } = this.selectedCountryData;
|
|
2634
2628
|
if (strictMode && intlTelInput.utils) {
|
|
2635
2629
|
if (iso2) {
|
|
@@ -2641,7 +2635,7 @@ var Iti = class {
|
|
|
2641
2635
|
true
|
|
2642
2636
|
);
|
|
2643
2637
|
let validNumber = exampleNumber;
|
|
2644
|
-
while (intlTelInput.utils.isPossibleNumber(exampleNumber, iso2,
|
|
2638
|
+
while (intlTelInput.utils.isPossibleNumber(exampleNumber, iso2, validationNumberTypes)) {
|
|
2645
2639
|
validNumber = exampleNumber;
|
|
2646
2640
|
exampleNumber += "0";
|
|
2647
2641
|
}
|
|
@@ -2993,7 +2987,7 @@ var Iti = class {
|
|
|
2993
2987
|
return this._utilsIsPossibleNumber(val);
|
|
2994
2988
|
}
|
|
2995
2989
|
_utilsIsPossibleNumber(val) {
|
|
2996
|
-
return intlTelInput.utils ? intlTelInput.utils.isPossibleNumber(val, this.selectedCountryData.iso2, this.options.
|
|
2990
|
+
return intlTelInput.utils ? intlTelInput.utils.isPossibleNumber(val, this.selectedCountryData.iso2, this.options.validationNumberTypes) : null;
|
|
2997
2991
|
}
|
|
2998
2992
|
//* Validate the input val (precise)
|
|
2999
2993
|
isValidNumberPrecise() {
|
|
@@ -3011,7 +3005,7 @@ var Iti = class {
|
|
|
3011
3005
|
return this._utilsIsValidNumber(val);
|
|
3012
3006
|
}
|
|
3013
3007
|
_utilsIsValidNumber(val) {
|
|
3014
|
-
return intlTelInput.utils ? intlTelInput.utils.isValidNumber(val, this.selectedCountryData.iso2) : null;
|
|
3008
|
+
return intlTelInput.utils ? intlTelInput.utils.isValidNumber(val, this.selectedCountryData.iso2, this.options.validationNumberTypes) : null;
|
|
3015
3009
|
}
|
|
3016
3010
|
//* Update the selected country, and update the input val accordingly.
|
|
3017
3011
|
setCountry(iso2) {
|
|
@@ -3047,29 +3041,23 @@ var Iti = class {
|
|
|
3047
3041
|
}
|
|
3048
3042
|
}
|
|
3049
3043
|
};
|
|
3050
|
-
var
|
|
3044
|
+
var attachUtils = (source) => {
|
|
3051
3045
|
if (!intlTelInput.utils && !intlTelInput.startedLoadingUtilsScript) {
|
|
3052
3046
|
let loadCall;
|
|
3053
|
-
if (typeof source === "
|
|
3054
|
-
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!"));
|
|
3055
|
-
} else if (typeof source === "function") {
|
|
3047
|
+
if (typeof source === "function") {
|
|
3056
3048
|
try {
|
|
3057
3049
|
loadCall = Promise.resolve(source());
|
|
3058
3050
|
} catch (error) {
|
|
3059
3051
|
return Promise.reject(error);
|
|
3060
3052
|
}
|
|
3061
3053
|
} else {
|
|
3062
|
-
return Promise.reject(new TypeError(`The argument passed to
|
|
3054
|
+
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}`));
|
|
3063
3055
|
}
|
|
3064
3056
|
intlTelInput.startedLoadingUtilsScript = true;
|
|
3065
3057
|
return loadCall.then((module) => {
|
|
3066
3058
|
const utils2 = module?.default;
|
|
3067
3059
|
if (!utils2 || typeof utils2 !== "object") {
|
|
3068
|
-
|
|
3069
|
-
throw new TypeError(`The module loaded from ${source} did not set utils as its default export.`);
|
|
3070
|
-
} else {
|
|
3071
|
-
throw new TypeError("The loader function passed to loadUtils did not resolve to a module object with utils as its default export.");
|
|
3072
|
-
}
|
|
3060
|
+
throw new TypeError("The loader function passed to attachUtils did not resolve to a module object with utils as its default export.");
|
|
3073
3061
|
}
|
|
3074
3062
|
intlTelInput.utils = utils2;
|
|
3075
3063
|
forEachInstance("handleUtils");
|
|
@@ -3102,10 +3090,10 @@ var intlTelInput = Object.assign(
|
|
|
3102
3090
|
},
|
|
3103
3091
|
//* A map from instance ID to instance object.
|
|
3104
3092
|
instances: {},
|
|
3105
|
-
|
|
3093
|
+
attachUtils,
|
|
3106
3094
|
startedLoadingUtilsScript: false,
|
|
3107
3095
|
startedLoadingAutoCountry: false,
|
|
3108
|
-
version: "
|
|
3096
|
+
version: "25.0.0"
|
|
3109
3097
|
}
|
|
3110
3098
|
);
|
|
3111
3099
|
var intl_tel_input_default = intlTelInput;
|
|
@@ -3139,7 +3127,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
3139
3127
|
return b;
|
|
3140
3128
|
}
|
|
3141
3129
|
;
|
|
3142
|
-
var
|
|
3130
|
+
var da = class {
|
|
3143
3131
|
constructor(a) {
|
|
3144
3132
|
if (ba !== ba) throw Error("SafeUrl is not meant to be built directly");
|
|
3145
3133
|
this.g = a;
|
|
@@ -3148,8 +3136,8 @@ var intl_tel_input_default = intlTelInput;
|
|
|
3148
3136
|
return this.g.toString();
|
|
3149
3137
|
}
|
|
3150
3138
|
}, ba = {};
|
|
3151
|
-
new
|
|
3152
|
-
new
|
|
3139
|
+
new da("about:invalid#zClosurez");
|
|
3140
|
+
new da("about:blank");
|
|
3153
3141
|
const ea = {};
|
|
3154
3142
|
class fa {
|
|
3155
3143
|
constructor() {
|
|
@@ -3328,91 +3316,91 @@ var intl_tel_input_default = intlTelInput;
|
|
|
3328
3316
|
return b;
|
|
3329
3317
|
};
|
|
3330
3318
|
var xa = /^-?[0-9]+$/;
|
|
3331
|
-
function
|
|
3319
|
+
function B() {
|
|
3332
3320
|
}
|
|
3333
|
-
n(
|
|
3334
|
-
|
|
3321
|
+
n(B, z);
|
|
3322
|
+
B.prototype.g = function(a, b) {
|
|
3335
3323
|
a = new a.h();
|
|
3336
3324
|
a.l = this;
|
|
3337
3325
|
a.h = b;
|
|
3338
3326
|
a.g = {};
|
|
3339
3327
|
return a;
|
|
3340
3328
|
};
|
|
3341
|
-
function
|
|
3329
|
+
function C() {
|
|
3342
3330
|
}
|
|
3343
|
-
n(
|
|
3344
|
-
|
|
3331
|
+
n(C, B);
|
|
3332
|
+
C.prototype.h = function(a, b) {
|
|
3345
3333
|
return 8 == a.h ? !!b : z.prototype.h.apply(this, arguments);
|
|
3346
3334
|
};
|
|
3347
|
-
|
|
3348
|
-
return
|
|
3335
|
+
C.prototype.g = function(a, b) {
|
|
3336
|
+
return C.ma.g.call(this, a, b);
|
|
3349
3337
|
};
|
|
3350
|
-
function
|
|
3338
|
+
function D(a, b) {
|
|
3351
3339
|
null != a && this.g.apply(this, arguments);
|
|
3352
3340
|
}
|
|
3353
|
-
|
|
3354
|
-
|
|
3341
|
+
D.prototype.h = "";
|
|
3342
|
+
D.prototype.set = function(a) {
|
|
3355
3343
|
this.h = "" + a;
|
|
3356
3344
|
};
|
|
3357
|
-
|
|
3345
|
+
D.prototype.g = function(a, b, c) {
|
|
3358
3346
|
this.h += String(a);
|
|
3359
3347
|
if (null != b) for (let d = 1; d < arguments.length; d++) this.h += arguments[d];
|
|
3360
3348
|
return this;
|
|
3361
3349
|
};
|
|
3362
|
-
function
|
|
3350
|
+
function E(a) {
|
|
3363
3351
|
a.h = "";
|
|
3364
3352
|
}
|
|
3365
|
-
|
|
3353
|
+
D.prototype.toString = function() {
|
|
3366
3354
|
return this.h;
|
|
3367
3355
|
};
|
|
3368
|
-
function E() {
|
|
3369
|
-
p.call(this);
|
|
3370
|
-
}
|
|
3371
|
-
n(E, p);
|
|
3372
|
-
var za = null;
|
|
3373
3356
|
function F() {
|
|
3374
3357
|
p.call(this);
|
|
3375
3358
|
}
|
|
3376
3359
|
n(F, p);
|
|
3377
|
-
var
|
|
3360
|
+
var ya = null;
|
|
3378
3361
|
function G() {
|
|
3379
3362
|
p.call(this);
|
|
3380
3363
|
}
|
|
3381
3364
|
n(G, p);
|
|
3382
|
-
var
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
E.m = E.prototype.m;
|
|
3365
|
+
var za = null;
|
|
3366
|
+
function H() {
|
|
3367
|
+
p.call(this);
|
|
3368
|
+
}
|
|
3369
|
+
n(H, p);
|
|
3370
|
+
var Aa = null;
|
|
3389
3371
|
F.prototype.m = function() {
|
|
3390
|
-
var a =
|
|
3391
|
-
a || (
|
|
3372
|
+
var a = ya;
|
|
3373
|
+
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 } }));
|
|
3392
3374
|
return a;
|
|
3393
3375
|
};
|
|
3394
3376
|
F.m = F.prototype.m;
|
|
3395
3377
|
G.prototype.m = function() {
|
|
3396
|
-
var a =
|
|
3397
|
-
a || (
|
|
3378
|
+
var a = za;
|
|
3379
|
+
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 } }));
|
|
3380
|
+
return a;
|
|
3381
|
+
};
|
|
3382
|
+
G.m = G.prototype.m;
|
|
3383
|
+
H.prototype.m = function() {
|
|
3384
|
+
var a = Aa;
|
|
3385
|
+
a || (Aa = a = y(H, {
|
|
3398
3386
|
0: { name: "PhoneMetadata", ia: "i18n.phonenumbers.PhoneMetadata" },
|
|
3399
|
-
1: { name: "general_desc", i: 11, type:
|
|
3400
|
-
2: { name: "fixed_line", i: 11, type:
|
|
3401
|
-
3: { name: "mobile", i: 11, type:
|
|
3402
|
-
4: { name: "toll_free", i: 11, type:
|
|
3403
|
-
5: { name: "premium_rate", i: 11, type:
|
|
3404
|
-
6: { name: "shared_cost", i: 11, type:
|
|
3405
|
-
7: { name: "personal_number", i: 11, type:
|
|
3406
|
-
8: { name: "voip", i: 11, type:
|
|
3407
|
-
21: { name: "pager", i: 11, type:
|
|
3408
|
-
25: { name: "uan", i: 11, type:
|
|
3409
|
-
27: { name: "emergency", i: 11, type:
|
|
3410
|
-
28: { name: "voicemail", i: 11, type:
|
|
3411
|
-
29: { name: "short_code", i: 11, type:
|
|
3412
|
-
30: { name: "standard_rate", i: 11, type:
|
|
3413
|
-
31: { name: "carrier_specific", i: 11, type:
|
|
3414
|
-
33: { name: "sms_services", i: 11, type:
|
|
3415
|
-
24: { name: "no_international_dialling", i: 11, type:
|
|
3387
|
+
1: { name: "general_desc", i: 11, type: G },
|
|
3388
|
+
2: { name: "fixed_line", i: 11, type: G },
|
|
3389
|
+
3: { name: "mobile", i: 11, type: G },
|
|
3390
|
+
4: { name: "toll_free", i: 11, type: G },
|
|
3391
|
+
5: { name: "premium_rate", i: 11, type: G },
|
|
3392
|
+
6: { name: "shared_cost", i: 11, type: G },
|
|
3393
|
+
7: { name: "personal_number", i: 11, type: G },
|
|
3394
|
+
8: { name: "voip", i: 11, type: G },
|
|
3395
|
+
21: { name: "pager", i: 11, type: G },
|
|
3396
|
+
25: { name: "uan", i: 11, type: G },
|
|
3397
|
+
27: { name: "emergency", i: 11, type: G },
|
|
3398
|
+
28: { name: "voicemail", i: 11, type: G },
|
|
3399
|
+
29: { name: "short_code", i: 11, type: G },
|
|
3400
|
+
30: { name: "standard_rate", i: 11, type: G },
|
|
3401
|
+
31: { name: "carrier_specific", i: 11, type: G },
|
|
3402
|
+
33: { name: "sms_services", i: 11, type: G },
|
|
3403
|
+
24: { name: "no_international_dialling", i: 11, type: G },
|
|
3416
3404
|
9: { name: "id", required: true, i: 9, type: String },
|
|
3417
3405
|
10: { name: "country_code", i: 5, type: Number },
|
|
3418
3406
|
11: { name: "international_prefix", i: 9, type: String },
|
|
@@ -3426,31 +3414,31 @@ var intl_tel_input_default = intlTelInput;
|
|
|
3426
3414
|
},
|
|
3427
3415
|
16: { name: "national_prefix_transform_rule", i: 9, type: String },
|
|
3428
3416
|
18: { name: "same_mobile_and_fixed_line_pattern", i: 8, defaultValue: false, type: Boolean },
|
|
3429
|
-
19: { name: "number_format", aa: true, i: 11, type:
|
|
3430
|
-
20: { name: "intl_number_format", aa: true, i: 11, type:
|
|
3417
|
+
19: { name: "number_format", aa: true, i: 11, type: F },
|
|
3418
|
+
20: { name: "intl_number_format", aa: true, i: 11, type: F },
|
|
3431
3419
|
22: { name: "main_country_for_code", i: 8, defaultValue: false, type: Boolean },
|
|
3432
3420
|
23: { name: "leading_digits", i: 9, type: String }
|
|
3433
3421
|
}));
|
|
3434
3422
|
return a;
|
|
3435
3423
|
};
|
|
3436
|
-
|
|
3437
|
-
function
|
|
3424
|
+
H.m = H.prototype.m;
|
|
3425
|
+
function I() {
|
|
3438
3426
|
p.call(this);
|
|
3439
3427
|
}
|
|
3440
|
-
n(
|
|
3441
|
-
var
|
|
3442
|
-
|
|
3443
|
-
var a =
|
|
3444
|
-
a || (
|
|
3428
|
+
n(I, p);
|
|
3429
|
+
var Ba = null, Ca = { ra: 0, qa: 1, pa: 5, oa: 10, na: 20 };
|
|
3430
|
+
I.prototype.m = function() {
|
|
3431
|
+
var a = Ba;
|
|
3432
|
+
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: {
|
|
3445
3433
|
name: "preferred_domestic_carrier_code",
|
|
3446
3434
|
i: 9,
|
|
3447
3435
|
type: String
|
|
3448
3436
|
} }));
|
|
3449
3437
|
return a;
|
|
3450
3438
|
};
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
var
|
|
3439
|
+
I.ctor = I;
|
|
3440
|
+
I.ctor.m = I.prototype.m;
|
|
3441
|
+
var J = {
|
|
3454
3442
|
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(" "),
|
|
3455
3443
|
7: ["RU", "KZ"],
|
|
3456
3444
|
20: ["EG"],
|
|
@@ -3666,7 +3654,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
3666
3654
|
995: ["GE"],
|
|
3667
3655
|
996: ["KG"],
|
|
3668
3656
|
998: ["UZ"]
|
|
3669
|
-
},
|
|
3657
|
+
}, Da = {
|
|
3670
3658
|
AC: [, [
|
|
3671
3659
|
,
|
|
3672
3660
|
,
|
|
@@ -4454,10 +4442,10 @@ var intl_tel_input_default = intlTelInput;
|
|
|
4454
4442
|
,
|
|
4455
4443
|
[7]
|
|
4456
4444
|
], [, , "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]]],
|
|
4457
|
-
CA: [, [, , "
|
|
4445
|
+
CA: [, [, , "[2-9]\\d{9}|3\\d{6}", , , , , , , [7, 10]], [
|
|
4458
4446
|
,
|
|
4459
4447
|
,
|
|
4460
|
-
"(?: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])|
|
|
4448
|
+
"(?: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}",
|
|
4461
4449
|
,
|
|
4462
4450
|
,
|
|
4463
4451
|
,
|
|
@@ -4466,10 +4454,10 @@ var intl_tel_input_default = intlTelInput;
|
|
|
4466
4454
|
,
|
|
4467
4455
|
[10],
|
|
4468
4456
|
[7]
|
|
4469
|
-
], [, , "(?: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])|
|
|
4457
|
+
], [, , "(?: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]], [
|
|
4470
4458
|
,
|
|
4471
4459
|
,
|
|
4472
|
-
"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)|
|
|
4460
|
+
"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}",
|
|
4473
4461
|
,
|
|
4474
4462
|
,
|
|
4475
4463
|
,
|
|
@@ -5274,7 +5262,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5274
5262
|
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]], [
|
|
5275
5263
|
,
|
|
5276
5264
|
,
|
|
5277
|
-
"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])|
|
|
5265
|
+
"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}",
|
|
5278
5266
|
,
|
|
5279
5267
|
,
|
|
5280
5268
|
,
|
|
@@ -5283,7 +5271,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5283
5271
|
GF: [, [
|
|
5284
5272
|
,
|
|
5285
5273
|
,
|
|
5286
|
-
"[56]94\\d{
|
|
5274
|
+
"(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}",
|
|
5287
5275
|
,
|
|
5288
5276
|
,
|
|
5289
5277
|
,
|
|
@@ -5291,7 +5279,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5291
5279
|
,
|
|
5292
5280
|
,
|
|
5293
5281
|
[9]
|
|
5294
|
-
], [, , "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", ["[
|
|
5282
|
+
], [, , "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]], [
|
|
5295
5283
|
,
|
|
5296
5284
|
,
|
|
5297
5285
|
,
|
|
@@ -5302,71 +5290,71 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5302
5290
|
,
|
|
5303
5291
|
,
|
|
5304
5292
|
[-1]
|
|
5305
|
-
]],
|
|
5306
|
-
GG: [
|
|
5293
|
+
], , , [, , , , , , , , , [-1]]],
|
|
5294
|
+
GG: [
|
|
5307
5295
|
,
|
|
5296
|
+
[, , "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", , , , , , , [7, 9, 10], [6]],
|
|
5297
|
+
[, , "1481[25-9]\\d{5}", , , , "1481256789", , , [10], [6]],
|
|
5298
|
+
[, , "7(?:(?:781|839)\\d|911[17])\\d{5}", , , , "7781123456", , , [10]],
|
|
5299
|
+
[, , "80[08]\\d{7}|800\\d{6}|8001111", , , , "8001234567"],
|
|
5300
|
+
[, , "(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", , , , "9012345678", , , [7, 10]],
|
|
5301
|
+
[, , , , , , , , , [-1]],
|
|
5302
|
+
[, , "70\\d{8}", , , , "7012345678", , , [10]],
|
|
5303
|
+
[, , "56\\d{8}", , , , "5612345678", , , [10]],
|
|
5304
|
+
"GG",
|
|
5305
|
+
44,
|
|
5306
|
+
"00",
|
|
5307
|
+
"0",
|
|
5308
5308
|
,
|
|
5309
|
-
"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}",
|
|
5310
5309
|
,
|
|
5310
|
+
"([25-9]\\d{5})$|0",
|
|
5311
|
+
"1481$1",
|
|
5311
5312
|
,
|
|
5312
5313
|
,
|
|
5313
|
-
"7640123456",
|
|
5314
5314
|
,
|
|
5315
5315
|
,
|
|
5316
|
-
[10]
|
|
5317
|
-
], , , [, , , , , , , , , [-1]], [, , "(?:3[0347]|55)\\d{8}", , , , "5512345678", , , [10]], , , [, , , , , , , , , [-1]]],
|
|
5318
|
-
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]], [
|
|
5316
|
+
[, , "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]],
|
|
5319
5317
|
,
|
|
5320
5318
|
,
|
|
5321
|
-
|
|
5319
|
+
[, , , , , , , , , [-1]],
|
|
5320
|
+
[, , "(?:3[0347]|55)\\d{8}", , , , "5512345678", , , [10]],
|
|
5322
5321
|
,
|
|
5323
5322
|
,
|
|
5323
|
+
[, , , , , , , , , [-1]]
|
|
5324
|
+
],
|
|
5325
|
+
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]], [
|
|
5324
5326
|
,
|
|
5325
|
-
"80012345",
|
|
5326
5327
|
,
|
|
5328
|
+
"(?:2(?:[0346-9]\\d|5[67])|5(?:[03-7]\\d|9[1-9]))\\d{6}",
|
|
5327
5329
|
,
|
|
5328
|
-
[8]
|
|
5329
|
-
], [, , , , , , , , , [-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]]],
|
|
5330
|
-
GI: [, [, , "(?:[25]\\d|60)\\d{6}", , , , , , , [8]], [
|
|
5331
5330
|
,
|
|
5332
5331
|
,
|
|
5333
|
-
"
|
|
5332
|
+
"231234567",
|
|
5334
5333
|
,
|
|
5335
5334
|
,
|
|
5335
|
+
[9]
|
|
5336
|
+
], [, , "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]]],
|
|
5337
|
+
GI: [, [
|
|
5336
5338
|
,
|
|
5337
|
-
"20012345"
|
|
5338
|
-
], [, , "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]]],
|
|
5339
|
-
GL: [
|
|
5340
5339
|
,
|
|
5341
|
-
|
|
5342
|
-
[, , "(?:19|3[1-7]|[68][1-9]|70|9\\d)\\d{4}", , , , "321000"],
|
|
5343
|
-
[, , "[245]\\d{5}", , , , "221234"],
|
|
5344
|
-
[, , "80\\d{4}", , , , "801234"],
|
|
5345
|
-
[, , , , , , , , , [-1]],
|
|
5346
|
-
[, , , , , , , , , [-1]],
|
|
5347
|
-
[, , , , , , , , , [-1]],
|
|
5348
|
-
[, , "3[89]\\d{4}", , , , "381234"],
|
|
5349
|
-
"GL",
|
|
5350
|
-
299,
|
|
5351
|
-
"00",
|
|
5340
|
+
"(?:[25]\\d|60)\\d{6}",
|
|
5352
5341
|
,
|
|
5353
5342
|
,
|
|
5354
5343
|
,
|
|
5355
5344
|
,
|
|
5356
5345
|
,
|
|
5357
5346
|
,
|
|
5347
|
+
[8]
|
|
5348
|
+
], [, , "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]]],
|
|
5349
|
+
GL: [, [, , "(?:19|[2-689]\\d|70)\\d{4}", , , , , , , [6]], [, , "(?:19|3[1-7]|[68][1-9]|70|9\\d)\\d{4}", , , , "321000"], [
|
|
5358
5350
|
,
|
|
5359
|
-
[[, "(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]],
|
|
5360
|
-
,
|
|
5361
|
-
[, , , , , , , , , [-1]],
|
|
5362
5351
|
,
|
|
5352
|
+
"[245]\\d{5}",
|
|
5363
5353
|
,
|
|
5364
|
-
[, , , , , , , , , [-1]],
|
|
5365
|
-
[, , , , , , , , , [-1]],
|
|
5366
5354
|
,
|
|
5367
5355
|
,
|
|
5368
|
-
|
|
5369
|
-
],
|
|
5356
|
+
"221234"
|
|
5357
|
+
], [, , "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]]],
|
|
5370
5358
|
GM: [
|
|
5371
5359
|
,
|
|
5372
5360
|
[, , "[2-9]\\d{6}", , , , , , , [7]],
|
|
@@ -5398,33 +5386,55 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5398
5386
|
,
|
|
5399
5387
|
[, , , , , , , , , [-1]]
|
|
5400
5388
|
],
|
|
5401
|
-
GN: [
|
|
5389
|
+
GN: [
|
|
5390
|
+
,
|
|
5391
|
+
[, , "722\\d{6}|(?:3|6\\d)\\d{7}", , , , , , , [8, 9]],
|
|
5392
|
+
[, , "3(?:0(?:24|3[12]|4[1-35-7]|5[13]|6[189]|[78]1|9[1478])|1\\d\\d)\\d{4}", , , , "30241234", , , [8]],
|
|
5393
|
+
[, , "6[0-356]\\d{7}", , , , "601123456", , , [9]],
|
|
5394
|
+
[, , , , , , , , , [-1]],
|
|
5395
|
+
[, , , , , , , , , [-1]],
|
|
5396
|
+
[, , , , , , , , , [-1]],
|
|
5397
|
+
[, , , , , , , , , [-1]],
|
|
5398
|
+
[, , "722\\d{6}", , , , "722123456", , , [9]],
|
|
5399
|
+
"GN",
|
|
5400
|
+
224,
|
|
5401
|
+
"00",
|
|
5402
|
+
,
|
|
5403
|
+
,
|
|
5402
5404
|
,
|
|
5403
|
-
"(\\d{3})(\\d{2})(\\d{2})(\\d{2})",
|
|
5404
|
-
"$1 $2 $3 $4",
|
|
5405
|
-
["[67]"]
|
|
5406
|
-
]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
5407
|
-
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]], [
|
|
5408
5405
|
,
|
|
5409
5406
|
,
|
|
5410
|
-
"9(?:(?:39[5-7]|76[018])\\d|475[0-5])\\d{4}",
|
|
5411
5407
|
,
|
|
5412
5408
|
,
|
|
5409
|
+
[[, "(\\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]"]]],
|
|
5413
5410
|
,
|
|
5414
|
-
|
|
5415
|
-
], "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]]],
|
|
5416
|
-
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"], [
|
|
5411
|
+
[, , , , , , , , , [-1]],
|
|
5417
5412
|
,
|
|
5418
5413
|
,
|
|
5414
|
+
[, , , , , , , , , [-1]],
|
|
5415
|
+
[, , , , , , , , , [-1]],
|
|
5419
5416
|
,
|
|
5420
5417
|
,
|
|
5418
|
+
[, , , , , , , , , [-1]]
|
|
5419
|
+
],
|
|
5420
|
+
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"], [
|
|
5421
5421
|
,
|
|
5422
5422
|
,
|
|
5423
|
+
"80[0-5]\\d{6}",
|
|
5423
5424
|
,
|
|
5424
5425
|
,
|
|
5425
5426
|
,
|
|
5426
|
-
|
|
5427
|
-
], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "
|
|
5427
|
+
"800012345"
|
|
5428
|
+
], [, , , , , , , , , [-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]]],
|
|
5429
|
+
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"], [
|
|
5430
|
+
,
|
|
5431
|
+
,
|
|
5432
|
+
"(?:222|55\\d)\\d{6}",
|
|
5433
|
+
,
|
|
5434
|
+
,
|
|
5435
|
+
,
|
|
5436
|
+
"222123456"
|
|
5437
|
+
], [, , "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]]],
|
|
5428
5438
|
GR: [, [, , "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", , , , , , , [10, 11, 12]], [
|
|
5429
5439
|
,
|
|
5430
5440
|
,
|
|
@@ -5448,10 +5458,10 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5448
5458
|
"$1 $2 $3",
|
|
5449
5459
|
["1"]
|
|
5450
5460
|
]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
5451
|
-
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-
|
|
5461
|
+
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]], [
|
|
5452
5462
|
,
|
|
5453
5463
|
,
|
|
5454
|
-
"671(?:2\\d\\d|3(?:00|3[39]|4[349]|55|6[26])|4(?:00|56|7[1-9]|8[02-
|
|
5464
|
+
"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}",
|
|
5455
5465
|
,
|
|
5456
5466
|
,
|
|
5457
5467
|
,
|
|
@@ -5493,7 +5503,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5493
5503
|
,
|
|
5494
5504
|
,
|
|
5495
5505
|
[8]
|
|
5496
|
-
], [, , "(?:4(?:44[0-25-9]|6(?:1[0-7]|4[0-57-9]|6[0-4])|
|
|
5506
|
+
], [, , "(?: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]], [
|
|
5497
5507
|
,
|
|
5498
5508
|
,
|
|
5499
5509
|
"900(?:[0-24-9]\\d{7}|3\\d{1,4})",
|
|
@@ -5519,7 +5529,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
5519
5529
|
HN: [, [, , "8\\d{10}|[237-9]\\d{7}", , , , , , , [8, 11]], [
|
|
5520
5530
|
,
|
|
5521
5531
|
,
|
|
5522
|
-
"2(?:2(?:0[0-59]|1[1-9]|[23]\\d|4[02-
|
|
5532
|
+
"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}",
|
|
5523
5533
|
,
|
|
5524
5534
|
,
|
|
5525
5535
|
,
|
|
@@ -6624,7 +6634,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
6624
6634
|
,
|
|
6625
6635
|
"5002345678"
|
|
6626
6636
|
], [, , , , , , , , , [-1]], "MP", 1, "011", "1", , , "([2-9]\\d{6})$|1", "670$1", , 1, , , [, , , , , , , , , [-1]], , "670", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6627
|
-
MQ: [, [, , "596\\d{
|
|
6637
|
+
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]], [
|
|
6628
6638
|
,
|
|
6629
6639
|
,
|
|
6630
6640
|
"9(?:397[0-3]|477[0-5]|76(?:6\\d|7[0-367]))\\d{4}",
|
|
@@ -6632,7 +6642,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
6632
6642
|
,
|
|
6633
6643
|
,
|
|
6634
6644
|
"976612345"
|
|
6635
|
-
], "MQ", 596, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[
|
|
6645
|
+
], "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]]],
|
|
6636
6646
|
MR: [
|
|
6637
6647
|
,
|
|
6638
6648
|
[, , "(?:[2-4]\\d\\d|800)\\d{5}", , , , , , , [8]],
|
|
@@ -7188,7 +7198,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
7188
7198
|
[, "(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]],
|
|
7189
7199
|
[, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]
|
|
7190
7200
|
], , [, , "64\\d{4,7}", , , , "641234567", , , [6, 7, 8, 9]], , , [, , , , , , , , , [-1]], [, , "804\\d{6}", , , , "804123456", , , [9]], , , [, , , , , , , , , [-1]]],
|
|
7191
|
-
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[
|
|
7201
|
+
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]], [
|
|
7192
7202
|
,
|
|
7193
7203
|
,
|
|
7194
7204
|
"8[129]\\d{7}",
|
|
@@ -7293,15 +7303,15 @@ var intl_tel_input_default = intlTelInput;
|
|
|
7293
7303
|
,
|
|
7294
7304
|
[8]
|
|
7295
7305
|
], [, , "[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]]],
|
|
7296
|
-
RE: [, [, , "(?:26|[689]\\d)\\d{7}", , , , , , , [9]], [, , "26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}", , , , "262161234"], [
|
|
7306
|
+
RE: [, [, , "709\\d{6}|(?:26|[689]\\d)\\d{7}", , , , , , , [9]], [, , "26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}", , , , "262161234"], [
|
|
7297
7307
|
,
|
|
7298
7308
|
,
|
|
7299
|
-
"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}",
|
|
7309
|
+
"(?: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}",
|
|
7300
7310
|
,
|
|
7301
7311
|
,
|
|
7302
7312
|
,
|
|
7303
7313
|
"692123456"
|
|
7304
|
-
], [, , "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", ["[
|
|
7314
|
+
], [, , "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]]],
|
|
7305
7315
|
RO: [, [, , "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", , , , , , , [6, 9]], [
|
|
7306
7316
|
,
|
|
7307
7317
|
,
|
|
@@ -7615,7 +7625,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
7615
7625
|
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"], [
|
|
7616
7626
|
,
|
|
7617
7627
|
,
|
|
7618
|
-
"7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|[
|
|
7628
|
+
"7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|3[36]|[4-7]\\d|8[35]))\\d{5}",
|
|
7619
7629
|
,
|
|
7620
7630
|
,
|
|
7621
7631
|
,
|
|
@@ -7712,11 +7722,11 @@ var intl_tel_input_default = intlTelInput;
|
|
|
7712
7722
|
,
|
|
7713
7723
|
[, , , , , , , , , [-1]]
|
|
7714
7724
|
],
|
|
7715
|
-
SY: [, [, , "[1-
|
|
7725
|
+
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], [
|
|
7716
7726
|
,
|
|
7717
7727
|
"(\\d{3})(\\d{3})(\\d{3})",
|
|
7718
7728
|
"$1 $2 $3",
|
|
7719
|
-
["
|
|
7729
|
+
["[59]"],
|
|
7720
7730
|
"0$1",
|
|
7721
7731
|
,
|
|
7722
7732
|
1
|
|
@@ -7734,37 +7744,70 @@ var intl_tel_input_default = intlTelInput;
|
|
|
7734
7744
|
[8]
|
|
7735
7745
|
], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
7736
7746
|
TA: [, [, , "8\\d{3}", , , , , , , [4]], [, , "8\\d{3}", , , , "8999"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TA", 290, "00", , , , , , , , , , [, , , , , , , , , [-1]], , "8", [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
7737
|
-
TC: [
|
|
7747
|
+
TC: [
|
|
7748
|
+
,
|
|
7749
|
+
[, , "(?:[58]\\d\\d|649|900)\\d{7}", , , , , , , [10], [7]],
|
|
7750
|
+
[, , "649(?:266|712|9(?:4\\d|50))\\d{4}", , , , "6497121234", , , , [7]],
|
|
7751
|
+
[, , "649(?:2(?:3[129]|4[1-79])|3\\d\\d|4[34][1-3])\\d{4}", , , , "6492311234", , , , [7]],
|
|
7752
|
+
[, , "8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", , , , "8002345678"],
|
|
7753
|
+
[, , "900[2-9]\\d{6}", , , , "9002345678"],
|
|
7754
|
+
[, , , , , , , , , [-1]],
|
|
7755
|
+
[, , "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"],
|
|
7756
|
+
[, , "649(?:71[01]|966)\\d{4}", , , , "6497101234", , , , [7]],
|
|
7757
|
+
"TC",
|
|
7758
|
+
1,
|
|
7759
|
+
"011",
|
|
7760
|
+
"1",
|
|
7738
7761
|
,
|
|
7739
7762
|
,
|
|
7740
|
-
"
|
|
7763
|
+
"([2-479]\\d{6})$|1",
|
|
7764
|
+
"649$1",
|
|
7741
7765
|
,
|
|
7742
7766
|
,
|
|
7743
7767
|
,
|
|
7744
|
-
|
|
7745
|
-
|
|
7768
|
+
,
|
|
7769
|
+
[, , , , , , , , , [-1]],
|
|
7770
|
+
,
|
|
7771
|
+
"649",
|
|
7772
|
+
[
|
|
7773
|
+
,
|
|
7774
|
+
,
|
|
7775
|
+
,
|
|
7776
|
+
,
|
|
7777
|
+
,
|
|
7778
|
+
,
|
|
7779
|
+
,
|
|
7780
|
+
,
|
|
7781
|
+
,
|
|
7782
|
+
[-1]
|
|
7783
|
+
],
|
|
7784
|
+
[, , , , , , , , , [-1]],
|
|
7785
|
+
,
|
|
7786
|
+
,
|
|
7787
|
+
[, , , , , , , , , [-1]]
|
|
7788
|
+
],
|
|
7746
7789
|
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]]],
|
|
7747
|
-
TG: [, [, , "[279]\\d{7}", , , , , , , [8]], [
|
|
7790
|
+
TG: [, [, , "[279]\\d{7}", , , , , , , [8]], [
|
|
7748
7791
|
,
|
|
7749
7792
|
,
|
|
7750
|
-
"(?:7[
|
|
7793
|
+
"2(?:2[2-7]|3[23]|4[45]|55|6[67]|77)\\d{5}",
|
|
7751
7794
|
,
|
|
7752
7795
|
,
|
|
7753
7796
|
,
|
|
7754
|
-
"
|
|
7755
|
-
], [, , , , , , , , , [-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]]],
|
|
7756
|
-
TH: [, [, , "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", , , , , , , [8, 9, 10, 13]], [, , "(?:1[0689]|2\\d|3[2-9]|4[2-5]|5[2-6]|7[3-7])\\d{6}", , , , "21234567", , , [8]], [
|
|
7797
|
+
"22212345"
|
|
7798
|
+
], [, , "(?: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]]],
|
|
7799
|
+
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]], [
|
|
7757
7800
|
,
|
|
7758
7801
|
,
|
|
7759
|
-
"(?:
|
|
7802
|
+
"67(?:1[0-8]|2[4-7])\\d{5}|(?:14|6[1-6]|[89]\\d)\\d{7}",
|
|
7760
7803
|
,
|
|
7761
7804
|
,
|
|
7762
7805
|
,
|
|
7763
|
-
"
|
|
7806
|
+
"812345678",
|
|
7764
7807
|
,
|
|
7765
7808
|
,
|
|
7766
|
-
[
|
|
7767
|
-
], [, , "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]]],
|
|
7809
|
+
[9]
|
|
7810
|
+
], [, , "(?: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]]],
|
|
7768
7811
|
TJ: [, [, , "[0-57-9]\\d{8}", , , , , , , [9], [3, 5, 6, 7]], [
|
|
7769
7812
|
,
|
|
7770
7813
|
,
|
|
@@ -7990,7 +8033,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
7990
8033
|
], [
|
|
7991
8034
|
,
|
|
7992
8035
|
,
|
|
7993
|
-
"(?: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[
|
|
8036
|
+
"(?: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}",
|
|
7994
8037
|
,
|
|
7995
8038
|
,
|
|
7996
8039
|
,
|
|
@@ -8002,7 +8045,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8002
8045
|
], [
|
|
8003
8046
|
,
|
|
8004
8047
|
,
|
|
8005
|
-
"(?: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[
|
|
8048
|
+
"(?: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}",
|
|
8006
8049
|
,
|
|
8007
8050
|
,
|
|
8008
8051
|
,
|
|
@@ -8295,18 +8338,37 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8295
8338
|
["7"],
|
|
8296
8339
|
"0$1"
|
|
8297
8340
|
]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
8298
|
-
YT: [
|
|
8341
|
+
YT: [
|
|
8342
|
+
,
|
|
8343
|
+
[, , "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", , , , , , , [9]],
|
|
8344
|
+
[, , "269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}", , , , "269601234"],
|
|
8345
|
+
[, , "(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}", , , , "639012345"],
|
|
8346
|
+
[, , "80\\d{7}", , , , "801234567"],
|
|
8347
|
+
[, , , , , , , , , [-1]],
|
|
8348
|
+
[, , , , , , , , , [-1]],
|
|
8349
|
+
[, , , , , , , , , [-1]],
|
|
8350
|
+
[, , "9(?:(?:39|47)8[01]|769\\d)\\d{4}", , , , "939801234"],
|
|
8351
|
+
"YT",
|
|
8352
|
+
262,
|
|
8353
|
+
"00",
|
|
8354
|
+
"0",
|
|
8299
8355
|
,
|
|
8300
8356
|
,
|
|
8357
|
+
"0",
|
|
8301
8358
|
,
|
|
8302
8359
|
,
|
|
8303
8360
|
,
|
|
8304
8361
|
,
|
|
8305
8362
|
,
|
|
8363
|
+
[, , , , , , , , , [-1]],
|
|
8306
8364
|
,
|
|
8307
8365
|
,
|
|
8308
|
-
[-1]
|
|
8309
|
-
|
|
8366
|
+
[, , , , , , , , , [-1]],
|
|
8367
|
+
[, , , , , , , , , [-1]],
|
|
8368
|
+
,
|
|
8369
|
+
,
|
|
8370
|
+
[, , , , , , , , , [-1]]
|
|
8371
|
+
],
|
|
8310
8372
|
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]], [
|
|
8311
8373
|
,
|
|
8312
8374
|
,
|
|
@@ -8392,50 +8454,31 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8392
8454
|
[, , , , , , , , , [-1]]
|
|
8393
8455
|
],
|
|
8394
8456
|
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]]],
|
|
8395
|
-
870: [, [, , "7\\d{11}|[
|
|
8457
|
+
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]], [
|
|
8396
8458
|
,
|
|
8397
8459
|
,
|
|
8460
|
+
"2\\d{8}",
|
|
8398
8461
|
,
|
|
8399
8462
|
,
|
|
8400
8463
|
,
|
|
8464
|
+
"201234567",
|
|
8401
8465
|
,
|
|
8402
8466
|
,
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
[-1]
|
|
8406
|
-
], "001", 870, , , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[35-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
8467
|
+
[9]
|
|
8468
|
+
], "001", 870, , , , , , , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
8407
8469
|
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]]],
|
|
8408
|
-
881: [
|
|
8409
|
-
,
|
|
8410
|
-
[, , "6\\d{9}|[0-36-9]\\d{8}", , , , , , , [9, 10]],
|
|
8411
|
-
[, , , , , , , , , [-1]],
|
|
8412
|
-
[, , "6\\d{9}|[0-36-9]\\d{8}", , , , "612345678"],
|
|
8413
|
-
[, , , , , , , , , [-1]],
|
|
8414
|
-
[, , , , , , , , , [-1]],
|
|
8415
|
-
[, , , , , , , , , [-1]],
|
|
8416
|
-
[, , , , , , , , , [-1]],
|
|
8417
|
-
[, , , , , , , , , [-1]],
|
|
8418
|
-
"001",
|
|
8419
|
-
881,
|
|
8470
|
+
881: [, [
|
|
8420
8471
|
,
|
|
8421
8472
|
,
|
|
8473
|
+
"6\\d{9}|[0-36-9]\\d{8}",
|
|
8422
8474
|
,
|
|
8423
8475
|
,
|
|
8424
8476
|
,
|
|
8425
8477
|
,
|
|
8426
8478
|
,
|
|
8427
8479
|
,
|
|
8428
|
-
[
|
|
8429
|
-
|
|
8430
|
-
[, , , , , , , , , [-1]],
|
|
8431
|
-
,
|
|
8432
|
-
,
|
|
8433
|
-
[, , , , , , , , , [-1]],
|
|
8434
|
-
[, , , , , , , , , [-1]],
|
|
8435
|
-
,
|
|
8436
|
-
,
|
|
8437
|
-
[, , , , , , , , , [-1]]
|
|
8438
|
-
],
|
|
8480
|
+
[9, 10]
|
|
8481
|
+
], [, , , , , , , , , [-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]]],
|
|
8439
8482
|
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]], [
|
|
8440
8483
|
,
|
|
8441
8484
|
,
|
|
@@ -8476,14 +8519,14 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8476
8519
|
], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "001", 888, , , , , , , , 1, [[, "(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "\\d{11}", , , , "12345678901"], , , [, , , , , , , , , [-1]]],
|
|
8477
8520
|
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]]]
|
|
8478
8521
|
};
|
|
8479
|
-
function
|
|
8522
|
+
function K() {
|
|
8480
8523
|
this.g = {};
|
|
8481
8524
|
}
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
return
|
|
8525
|
+
K.h = void 0;
|
|
8526
|
+
K.g = function() {
|
|
8527
|
+
return K.h ? K.h : K.h = new K();
|
|
8485
8528
|
};
|
|
8486
|
-
var
|
|
8529
|
+
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 = {
|
|
8487
8530
|
0: "0",
|
|
8488
8531
|
1: "1",
|
|
8489
8532
|
2: "2",
|
|
@@ -8497,7 +8540,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8497
8540
|
"+": "+",
|
|
8498
8541
|
"*": "*",
|
|
8499
8542
|
"#": "#"
|
|
8500
|
-
},
|
|
8543
|
+
}, Ga = {
|
|
8501
8544
|
0: "0",
|
|
8502
8545
|
1: "1",
|
|
8503
8546
|
2: "2",
|
|
@@ -8564,48 +8607,48 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8564
8607
|
X: "9",
|
|
8565
8608
|
Y: "9",
|
|
8566
8609
|
Z: "9"
|
|
8567
|
-
},
|
|
8568
|
-
function
|
|
8610
|
+
}, 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])*\\.?$");
|
|
8611
|
+
function M(a) {
|
|
8569
8612
|
return "([0-9\uFF10-\uFF19\u0660-\u0669\u06F0-\u06F9]{1," + a + "})";
|
|
8570
8613
|
}
|
|
8571
|
-
function
|
|
8572
|
-
return ";ext=" +
|
|
8614
|
+
function Pa() {
|
|
8615
|
+
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") + "#?");
|
|
8616
|
+
}
|
|
8617
|
+
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\)?$/;
|
|
8618
|
+
function Ua(a) {
|
|
8619
|
+
return 2 > a.length ? false : N(Ra, a);
|
|
8573
8620
|
}
|
|
8574
|
-
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\)?$/;
|
|
8575
8621
|
function Va(a) {
|
|
8576
|
-
return
|
|
8622
|
+
return N(Ma, a) ? O(a, Ga) : O(a, Ea);
|
|
8577
8623
|
}
|
|
8578
8624
|
function Wa(a) {
|
|
8579
|
-
|
|
8580
|
-
|
|
8581
|
-
function Xa(a) {
|
|
8582
|
-
var b = Wa(a.toString());
|
|
8583
|
-
D(a);
|
|
8625
|
+
var b = Va(a.toString());
|
|
8626
|
+
E(a);
|
|
8584
8627
|
a.g(b);
|
|
8585
8628
|
}
|
|
8586
|
-
function
|
|
8629
|
+
function Xa(a) {
|
|
8587
8630
|
return null != a && (1 != x(a, 9) || -1 != u(a, 9)[0]);
|
|
8588
8631
|
}
|
|
8589
|
-
function
|
|
8590
|
-
for (var c = new
|
|
8632
|
+
function O(a, b) {
|
|
8633
|
+
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);
|
|
8591
8634
|
return c.toString();
|
|
8592
8635
|
}
|
|
8593
|
-
function
|
|
8594
|
-
return 0 == a.length ||
|
|
8636
|
+
function Ya(a) {
|
|
8637
|
+
return 0 == a.length || Ta.test(a);
|
|
8595
8638
|
}
|
|
8596
|
-
function
|
|
8597
|
-
return null != a && isNaN(a) && a.toUpperCase() in
|
|
8639
|
+
function P(a) {
|
|
8640
|
+
return null != a && isNaN(a) && a.toUpperCase() in Da;
|
|
8598
8641
|
}
|
|
8599
|
-
|
|
8642
|
+
K.prototype.format = function(a, b) {
|
|
8600
8643
|
if (0 == r(a, 2) && q(a, 5)) {
|
|
8601
8644
|
var c = w(a, 5);
|
|
8602
8645
|
if (0 < c.length) return c;
|
|
8603
8646
|
}
|
|
8604
8647
|
c = w(a, 1);
|
|
8605
|
-
var d =
|
|
8606
|
-
if (0 == b) return
|
|
8607
|
-
if (!(c in
|
|
8608
|
-
var e =
|
|
8648
|
+
var d = Q(a);
|
|
8649
|
+
if (0 == b) return Za(c, 0, d, "");
|
|
8650
|
+
if (!(c in J)) return d;
|
|
8651
|
+
var e = R(this, c, S(c));
|
|
8609
8652
|
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) : "";
|
|
8610
8653
|
a: {
|
|
8611
8654
|
e = 0 == u(e, 20).length || 2 == b ? u(e, 19) : u(e, 20);
|
|
@@ -8613,7 +8656,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8613
8656
|
f = e[h];
|
|
8614
8657
|
var l = x(f, 3);
|
|
8615
8658
|
if (0 == l || 0 == d.search(r(f, 3, l - 1))) {
|
|
8616
|
-
if (l = new RegExp(r(f, 1)),
|
|
8659
|
+
if (l = new RegExp(r(f, 1)), N(l, d)) {
|
|
8617
8660
|
e = f;
|
|
8618
8661
|
break a;
|
|
8619
8662
|
}
|
|
@@ -8624,18 +8667,18 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8624
8667
|
null != e && (g = e, e = w(g, 2), f = new RegExp(r(g, 1)), w(
|
|
8625
8668
|
g,
|
|
8626
8669
|
5
|
|
8627
|
-
), g = w(g, 4), d = 2 == b && null != g && 0 < g.length ? d.replace(f, e.replace(
|
|
8628
|
-
return
|
|
8670
|
+
), 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"), "-")));
|
|
8671
|
+
return Za(c, b, d, a);
|
|
8629
8672
|
};
|
|
8630
|
-
function
|
|
8631
|
-
return "001" == c ?
|
|
8673
|
+
function R(a, b, c) {
|
|
8674
|
+
return "001" == c ? T(a, "" + b) : T(a, c);
|
|
8632
8675
|
}
|
|
8633
|
-
function
|
|
8676
|
+
function Q(a) {
|
|
8634
8677
|
if (!q(a, 2)) return "";
|
|
8635
8678
|
var b = "" + r(a, 2);
|
|
8636
8679
|
return q(a, 4) && r(a, 4) && 0 < w(a, 8) ? Array(w(a, 8) + 1).join("0") + b : b;
|
|
8637
8680
|
}
|
|
8638
|
-
function
|
|
8681
|
+
function Za(a, b, c, d) {
|
|
8639
8682
|
switch (b) {
|
|
8640
8683
|
case 0:
|
|
8641
8684
|
return "+" + a + c + d;
|
|
@@ -8647,7 +8690,7 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8647
8690
|
return c + d;
|
|
8648
8691
|
}
|
|
8649
8692
|
}
|
|
8650
|
-
function
|
|
8693
|
+
function U(a, b) {
|
|
8651
8694
|
switch (b) {
|
|
8652
8695
|
case 4:
|
|
8653
8696
|
return r(a, 5);
|
|
@@ -8674,42 +8717,56 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8674
8717
|
return r(a, 1);
|
|
8675
8718
|
}
|
|
8676
8719
|
}
|
|
8677
|
-
function
|
|
8678
|
-
|
|
8720
|
+
function $a(a, b) {
|
|
8721
|
+
var c = ab(a, b);
|
|
8722
|
+
a = R(a, w(b, 1), c);
|
|
8723
|
+
if (null == a) return -1;
|
|
8724
|
+
b = Q(b);
|
|
8725
|
+
return bb(b, a);
|
|
8726
|
+
}
|
|
8727
|
+
function bb(a, b) {
|
|
8728
|
+
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;
|
|
8679
8729
|
}
|
|
8680
|
-
function
|
|
8730
|
+
function T(a, b) {
|
|
8681
8731
|
if (null == b) return null;
|
|
8682
8732
|
b = b.toUpperCase();
|
|
8683
8733
|
var c = a.g[b];
|
|
8684
8734
|
if (null == c) {
|
|
8685
|
-
c =
|
|
8735
|
+
c = Da[b];
|
|
8686
8736
|
if (null == c) return null;
|
|
8687
|
-
c = new
|
|
8737
|
+
c = new C().g(H.m(), c);
|
|
8688
8738
|
a.g[b] = c;
|
|
8689
8739
|
}
|
|
8690
8740
|
return c;
|
|
8691
8741
|
}
|
|
8692
|
-
function
|
|
8742
|
+
function V(a, b) {
|
|
8693
8743
|
var c = a.length;
|
|
8694
|
-
return 0 < x(b, 9) && -1 == u(b, 9).indexOf(c) ? false :
|
|
8744
|
+
return 0 < x(b, 9) && -1 == u(b, 9).indexOf(c) ? false : N(w(b, 2), a);
|
|
8695
8745
|
}
|
|
8696
|
-
function
|
|
8746
|
+
function cb(a, b) {
|
|
8747
|
+
var c = ab(a, b);
|
|
8748
|
+
var d = w(b, 1);
|
|
8749
|
+
var e = R(a, d, c);
|
|
8750
|
+
null == e || "001" != c && d != db(a, c) ? e = false : (a = Q(b), e = -1 != bb(a, e));
|
|
8751
|
+
return e;
|
|
8752
|
+
}
|
|
8753
|
+
function ab(a, b) {
|
|
8697
8754
|
if (null == b) return null;
|
|
8698
8755
|
var c = w(b, 1);
|
|
8699
|
-
c =
|
|
8756
|
+
c = J[c];
|
|
8700
8757
|
if (null == c) a = null;
|
|
8701
8758
|
else if (1 == c.length) a = c[0];
|
|
8702
8759
|
else a: {
|
|
8703
|
-
b =
|
|
8760
|
+
b = Q(b);
|
|
8704
8761
|
for (var d, e = c.length, f = 0; f < e; f++) {
|
|
8705
8762
|
d = c[f];
|
|
8706
|
-
var g =
|
|
8763
|
+
var g = T(a, d);
|
|
8707
8764
|
if (q(g, 23)) {
|
|
8708
8765
|
if (0 == b.search(r(g, 23))) {
|
|
8709
8766
|
a = d;
|
|
8710
8767
|
break a;
|
|
8711
8768
|
}
|
|
8712
|
-
} else if (-1 !=
|
|
8769
|
+
} else if (-1 != bb(b, g)) {
|
|
8713
8770
|
a = d;
|
|
8714
8771
|
break a;
|
|
8715
8772
|
}
|
|
@@ -8718,92 +8775,92 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8718
8775
|
}
|
|
8719
8776
|
return a;
|
|
8720
8777
|
}
|
|
8721
|
-
function
|
|
8722
|
-
a =
|
|
8778
|
+
function S(a) {
|
|
8779
|
+
a = J[a];
|
|
8723
8780
|
return null == a ? "ZZ" : a[0];
|
|
8724
8781
|
}
|
|
8725
|
-
function
|
|
8726
|
-
a =
|
|
8782
|
+
function db(a, b) {
|
|
8783
|
+
a = T(a, b);
|
|
8727
8784
|
if (null == a) throw Error("Invalid region code: " + b);
|
|
8728
8785
|
return w(a, 10);
|
|
8729
8786
|
}
|
|
8730
|
-
function
|
|
8731
|
-
var e =
|
|
8787
|
+
function W(a, b, c, d) {
|
|
8788
|
+
var e = U(c, d), f = 0 == x(e, 9) ? u(r(c, 1), 9) : u(e, 9);
|
|
8732
8789
|
e = u(e, 10);
|
|
8733
|
-
if (2 == d) if (
|
|
8734
|
-
else return
|
|
8790
|
+
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()));
|
|
8791
|
+
else return W(a, b, c, 1);
|
|
8735
8792
|
if (-1 == f[0]) return 5;
|
|
8736
8793
|
b = b.length;
|
|
8737
8794
|
if (-1 < e.indexOf(b)) return 4;
|
|
8738
8795
|
c = f[0];
|
|
8739
8796
|
return c == b ? 0 : c > b ? 2 : f[f.length - 1] < b ? 3 : -1 < f.indexOf(b, 1) ? 0 : 5;
|
|
8740
8797
|
}
|
|
8741
|
-
function
|
|
8742
|
-
var d =
|
|
8798
|
+
function X(a, b, c) {
|
|
8799
|
+
var d = Q(b);
|
|
8743
8800
|
b = w(b, 1);
|
|
8744
|
-
if (!(b in
|
|
8745
|
-
b =
|
|
8746
|
-
return
|
|
8801
|
+
if (!(b in J)) return 1;
|
|
8802
|
+
b = R(a, b, S(b));
|
|
8803
|
+
return W(a, d, b, c);
|
|
8747
8804
|
}
|
|
8748
|
-
function
|
|
8805
|
+
function eb(a, b) {
|
|
8749
8806
|
a = a.toString();
|
|
8750
8807
|
if (0 == a.length || "0" == a.charAt(0)) return 0;
|
|
8751
|
-
for (var c, d = a.length, e = 1; 3 >= e && e <= d; ++e) if (c = parseInt(a.substring(0, e), 10), c in
|
|
8808
|
+
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;
|
|
8752
8809
|
return 0;
|
|
8753
8810
|
}
|
|
8754
|
-
function
|
|
8811
|
+
function fb(a, b, c, d, e, f) {
|
|
8755
8812
|
if (0 == b.length) return 0;
|
|
8756
|
-
b = new
|
|
8813
|
+
b = new D(b);
|
|
8757
8814
|
var g;
|
|
8758
8815
|
null != c && (g = r(c, 11));
|
|
8759
8816
|
null == g && (g = "NonMatch");
|
|
8760
8817
|
var h = b.toString();
|
|
8761
8818
|
if (0 == h.length) g = 20;
|
|
8762
|
-
else if (
|
|
8819
|
+
else if (L.test(h)) h = h.replace(L, ""), E(b), b.g(Va(h)), g = 1;
|
|
8763
8820
|
else {
|
|
8764
8821
|
h = new RegExp(g);
|
|
8765
|
-
|
|
8822
|
+
Wa(b);
|
|
8766
8823
|
g = b.toString();
|
|
8767
8824
|
if (0 == g.search(h)) {
|
|
8768
8825
|
h = g.match(h)[0].length;
|
|
8769
|
-
var l = g.substring(h).match(
|
|
8770
|
-
l && null != l[1] && 0 < l[1].length && "0" ==
|
|
8826
|
+
var l = g.substring(h).match(Ia);
|
|
8827
|
+
l && null != l[1] && 0 < l[1].length && "0" == O(l[1], Ea) ? g = false : (E(b), b.g(g.substring(h)), g = true);
|
|
8771
8828
|
} else g = false;
|
|
8772
8829
|
g = g ? 5 : 20;
|
|
8773
8830
|
}
|
|
8774
8831
|
e && t(f, 6, g);
|
|
8775
8832
|
if (20 != g) {
|
|
8776
8833
|
if (2 >= b.h.length) throw Error("Phone number too short after IDD");
|
|
8777
|
-
a =
|
|
8834
|
+
a = eb(b, d);
|
|
8778
8835
|
if (0 != a) return t(f, 1, a), a;
|
|
8779
8836
|
throw Error("Invalid country calling code");
|
|
8780
8837
|
}
|
|
8781
|
-
if (null != c && (g = w(c, 10), h = "" + g, l = b.toString(), 0 == l.lastIndexOf(h, 0) && (h = new
|
|
8838
|
+
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;
|
|
8782
8839
|
t(f, 1, 0);
|
|
8783
8840
|
return 0;
|
|
8784
8841
|
}
|
|
8785
|
-
function
|
|
8842
|
+
function gb(a, b, c) {
|
|
8786
8843
|
var d = a.toString(), e = d.length, f = r(b, 15);
|
|
8787
8844
|
if (0 != e && null != f && 0 != f.length) {
|
|
8788
8845
|
var g = new RegExp("^(?:" + f + ")");
|
|
8789
8846
|
if (e = g.exec(d)) {
|
|
8790
8847
|
f = new RegExp(w(r(b, 1), 2));
|
|
8791
|
-
var h =
|
|
8848
|
+
var h = N(f, d), l = e.length - 1;
|
|
8792
8849
|
b = r(b, 16);
|
|
8793
8850
|
if (null == b || 0 == b.length || null == e[l] || 0 == e[l].length) {
|
|
8794
|
-
if (!h ||
|
|
8795
|
-
} else if (d = d.replace(g, b), !h ||
|
|
8851
|
+
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));
|
|
8852
|
+
} else if (d = d.replace(g, b), !h || N(f, d)) null != c && 0 < l && c.g(e[1]), a.set(d);
|
|
8796
8853
|
}
|
|
8797
8854
|
}
|
|
8798
8855
|
}
|
|
8799
|
-
function
|
|
8800
|
-
if (!
|
|
8801
|
-
return
|
|
8856
|
+
function Y(a, b, c) {
|
|
8857
|
+
if (!P(c) && 0 < b.length && "+" != b.charAt(0)) throw Error("Invalid country calling code");
|
|
8858
|
+
return hb(a, b, c, true);
|
|
8802
8859
|
}
|
|
8803
|
-
function
|
|
8860
|
+
function hb(a, b, c, d) {
|
|
8804
8861
|
if (null == b) throw Error("The string supplied did not seem to be a phone number");
|
|
8805
8862
|
if (250 < b.length) throw Error("The string supplied is too long to be a phone number");
|
|
8806
|
-
var e = new
|
|
8863
|
+
var e = new D();
|
|
8807
8864
|
var f = b.indexOf(";phone-context=");
|
|
8808
8865
|
if (-1 === f) f = null;
|
|
8809
8866
|
else if (f += 15, f >= b.length) f = "";
|
|
@@ -8812,24 +8869,24 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8812
8869
|
f = -1 !== g ? b.substring(f, g) : b.substring(f);
|
|
8813
8870
|
}
|
|
8814
8871
|
var h = f;
|
|
8815
|
-
null == h ? g = true : 0 === h.length ? g = false : (g =
|
|
8872
|
+
null == h ? g = true : 0 === h.length ? g = false : (g = Na.exec(h), h = Oa.exec(h), g = null !== g || null !== h);
|
|
8816
8873
|
if (!g) throw Error("The string supplied did not seem to be a phone number");
|
|
8817
|
-
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(
|
|
8874
|
+
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));
|
|
8818
8875
|
f = e.toString();
|
|
8819
8876
|
g = f.indexOf(";isub=");
|
|
8820
|
-
0 < g && (
|
|
8821
|
-
if (!
|
|
8877
|
+
0 < g && (E(e), e.g(f.substring(0, g)));
|
|
8878
|
+
if (!Ua(e.toString())) throw Error("The string supplied did not seem to be a phone number");
|
|
8822
8879
|
f = e.toString();
|
|
8823
|
-
if (!(
|
|
8824
|
-
f = new
|
|
8880
|
+
if (!(P(c) || null != f && 0 < f.length && L.test(f))) throw Error("Invalid country calling code");
|
|
8881
|
+
f = new I();
|
|
8825
8882
|
d && t(f, 5, b);
|
|
8826
8883
|
a: {
|
|
8827
8884
|
b = e.toString();
|
|
8828
|
-
g = b.search(
|
|
8829
|
-
if (0 <= g &&
|
|
8830
|
-
h = b.match(
|
|
8885
|
+
g = b.search(Qa);
|
|
8886
|
+
if (0 <= g && Ua(b.substring(0, g))) {
|
|
8887
|
+
h = b.match(Qa);
|
|
8831
8888
|
for (var l = h.length, A = 1; A < l; ++A) if (null != h[A] && 0 < h[A].length) {
|
|
8832
|
-
|
|
8889
|
+
E(e);
|
|
8833
8890
|
e.g(b.substring(0, g));
|
|
8834
8891
|
b = h[A];
|
|
8835
8892
|
break a;
|
|
@@ -8838,24 +8895,24 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8838
8895
|
b = "";
|
|
8839
8896
|
}
|
|
8840
8897
|
0 < b.length && t(f, 3, b);
|
|
8841
|
-
g =
|
|
8842
|
-
b = new
|
|
8898
|
+
g = T(a, c);
|
|
8899
|
+
b = new D();
|
|
8843
8900
|
h = 0;
|
|
8844
8901
|
l = e.toString();
|
|
8845
8902
|
try {
|
|
8846
|
-
h =
|
|
8847
|
-
} catch (
|
|
8848
|
-
if ("Invalid country calling code" ==
|
|
8849
|
-
if (l = l.replace(
|
|
8850
|
-
} else throw
|
|
8903
|
+
h = fb(a, l, g, b, d, f);
|
|
8904
|
+
} catch (ca) {
|
|
8905
|
+
if ("Invalid country calling code" == ca.message && L.test(l)) {
|
|
8906
|
+
if (l = l.replace(L, ""), h = fb(a, l, g, b, d, f), 0 == h) throw ca;
|
|
8907
|
+
} else throw ca;
|
|
8851
8908
|
}
|
|
8852
|
-
0 != h ? (e =
|
|
8909
|
+
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(
|
|
8853
8910
|
f,
|
|
8854
8911
|
1,
|
|
8855
8912
|
h
|
|
8856
8913
|
)) : d && (delete f.h[6], f.g && delete f.g[6]));
|
|
8857
8914
|
if (2 > b.h.length) throw Error("The string supplied is too short to be a phone number");
|
|
8858
|
-
null != g && (c = new
|
|
8915
|
+
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())));
|
|
8859
8916
|
d = b.toString();
|
|
8860
8917
|
a = d.length;
|
|
8861
8918
|
if (2 > a) throw Error("The string supplied is too short to be a phone number");
|
|
@@ -8868,70 +8925,70 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8868
8925
|
t(f, 2, parseInt(d, 10));
|
|
8869
8926
|
return f;
|
|
8870
8927
|
}
|
|
8871
|
-
function
|
|
8928
|
+
function N(a, b) {
|
|
8872
8929
|
return (a = "string" == typeof a ? b.match("^(?:" + a + ")$") : b.match(a)) && a[0].length == b.length ? true : false;
|
|
8873
8930
|
}
|
|
8874
8931
|
;
|
|
8875
|
-
function
|
|
8932
|
+
function ib(a) {
|
|
8876
8933
|
this.fa = RegExp("\u2008");
|
|
8877
8934
|
this.ja = "";
|
|
8878
|
-
this.v = new
|
|
8935
|
+
this.v = new D();
|
|
8879
8936
|
this.da = "";
|
|
8880
|
-
this.s = new
|
|
8881
|
-
this.ba = new
|
|
8937
|
+
this.s = new D();
|
|
8938
|
+
this.ba = new D();
|
|
8882
8939
|
this.u = true;
|
|
8883
8940
|
this.ea = this.ca = this.la = false;
|
|
8884
|
-
this.ga =
|
|
8941
|
+
this.ga = K.g();
|
|
8885
8942
|
this.$ = 0;
|
|
8886
|
-
this.h = new
|
|
8943
|
+
this.h = new D();
|
|
8887
8944
|
this.ha = false;
|
|
8888
8945
|
this.o = "";
|
|
8889
|
-
this.g = new
|
|
8946
|
+
this.g = new D();
|
|
8890
8947
|
this.j = [];
|
|
8891
8948
|
this.ka = a;
|
|
8892
|
-
this.l =
|
|
8949
|
+
this.l = jb(this, this.ka);
|
|
8893
8950
|
}
|
|
8894
|
-
var
|
|
8895
|
-
t(
|
|
8896
|
-
var
|
|
8897
|
-
function
|
|
8951
|
+
var kb = new H();
|
|
8952
|
+
t(kb, 11, "NA");
|
|
8953
|
+
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 = /[- ]/;
|
|
8954
|
+
function jb(a, b) {
|
|
8898
8955
|
var c = a.ga;
|
|
8899
|
-
b =
|
|
8900
|
-
a =
|
|
8901
|
-
return null != a ? a :
|
|
8956
|
+
b = P(b) ? db(c, b) : 0;
|
|
8957
|
+
a = T(a.ga, S(b));
|
|
8958
|
+
return null != a ? a : kb;
|
|
8902
8959
|
}
|
|
8903
|
-
function
|
|
8960
|
+
function nb(a) {
|
|
8904
8961
|
for (var b = a.j.length, c = 0; c < b; ++c) {
|
|
8905
8962
|
var d = a.j[c], e = w(d, 1);
|
|
8906
8963
|
if (a.da == e) return false;
|
|
8907
8964
|
var f = a;
|
|
8908
8965
|
var g = d, h = w(g, 1);
|
|
8909
|
-
|
|
8966
|
+
E(f.v);
|
|
8910
8967
|
var l = f;
|
|
8911
8968
|
g = w(g, 2);
|
|
8912
8969
|
var A = "999999999999999".match(h)[0];
|
|
8913
8970
|
A.length < l.g.h.length ? l = "" : (l = A.replace(new RegExp(h, "g"), g), l = l.replace(RegExp("9", "g"), "\u2008"));
|
|
8914
8971
|
0 < l.length ? (f.v.g(l), f = true) : f = false;
|
|
8915
|
-
if (f) return a.da = e, a.ha =
|
|
8972
|
+
if (f) return a.da = e, a.ha = mb.test(r(d, 4)), a.$ = 0, true;
|
|
8916
8973
|
}
|
|
8917
8974
|
return a.u = false;
|
|
8918
8975
|
}
|
|
8919
|
-
function
|
|
8976
|
+
function ob(a, b) {
|
|
8920
8977
|
for (var c = [], d = b.length - 3, e = a.j.length, f = 0; f < e; ++f) {
|
|
8921
8978
|
var g = a.j[f];
|
|
8922
8979
|
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]));
|
|
8923
8980
|
}
|
|
8924
8981
|
a.j = c;
|
|
8925
8982
|
}
|
|
8926
|
-
function
|
|
8983
|
+
function pb(a, b) {
|
|
8927
8984
|
a.s.g(b);
|
|
8928
8985
|
var c = b;
|
|
8929
|
-
|
|
8986
|
+
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);
|
|
8930
8987
|
if (!a.u) {
|
|
8931
8988
|
if (!a.la) {
|
|
8932
|
-
if (
|
|
8933
|
-
if (
|
|
8934
|
-
} else if (0 < a.o.length && (b = a.g.toString(),
|
|
8989
|
+
if (qb(a)) {
|
|
8990
|
+
if (rb(a)) return sb(a);
|
|
8991
|
+
} 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);
|
|
8935
8992
|
}
|
|
8936
8993
|
return a.s.toString();
|
|
8937
8994
|
}
|
|
@@ -8941,93 +8998,93 @@ var intl_tel_input_default = intlTelInput;
|
|
|
8941
8998
|
case 2:
|
|
8942
8999
|
return a.s.toString();
|
|
8943
9000
|
case 3:
|
|
8944
|
-
if (
|
|
8945
|
-
else return a.o =
|
|
9001
|
+
if (qb(a)) a.ea = true;
|
|
9002
|
+
else return a.o = tb(a), ub(a);
|
|
8946
9003
|
default:
|
|
8947
|
-
if (a.ea) return
|
|
9004
|
+
if (a.ea) return rb(a) && (a.ea = false), a.h.toString() + a.g.toString();
|
|
8948
9005
|
if (0 < a.j.length) {
|
|
8949
|
-
b =
|
|
8950
|
-
c =
|
|
9006
|
+
b = vb(a, b);
|
|
9007
|
+
c = wb(a);
|
|
8951
9008
|
if (0 < c.length) return c;
|
|
8952
|
-
|
|
8953
|
-
return
|
|
9009
|
+
ob(a, a.g.toString());
|
|
9010
|
+
return nb(a) ? xb(a) : a.u ? Z(a, b) : a.s.toString();
|
|
8954
9011
|
}
|
|
8955
|
-
return
|
|
9012
|
+
return ub(a);
|
|
8956
9013
|
}
|
|
8957
9014
|
}
|
|
8958
|
-
function
|
|
9015
|
+
function sb(a) {
|
|
8959
9016
|
a.u = true;
|
|
8960
9017
|
a.ea = false;
|
|
8961
9018
|
a.j = [];
|
|
8962
9019
|
a.$ = 0;
|
|
8963
|
-
|
|
9020
|
+
E(a.v);
|
|
8964
9021
|
a.da = "";
|
|
8965
|
-
return
|
|
9022
|
+
return ub(a);
|
|
8966
9023
|
}
|
|
8967
|
-
function
|
|
9024
|
+
function wb(a) {
|
|
8968
9025
|
for (var b = a.g.toString(), c = a.j.length, d = 0; d < c; ++d) {
|
|
8969
9026
|
var e = a.j[d], f = w(e, 1);
|
|
8970
|
-
if (new RegExp("^(?:" + f + ")$").test(b) && (a.ha =
|
|
9027
|
+
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;
|
|
8971
9028
|
}
|
|
8972
9029
|
return "";
|
|
8973
9030
|
}
|
|
8974
|
-
function
|
|
9031
|
+
function Z(a, b) {
|
|
8975
9032
|
var c = a.h.h.length;
|
|
8976
9033
|
return a.ha && 0 < c && " " != a.h.toString().charAt(c - 1) ? a.h + " " + b : a.h + b;
|
|
8977
9034
|
}
|
|
8978
|
-
function
|
|
9035
|
+
function ub(a) {
|
|
8979
9036
|
var b = a.g.toString();
|
|
8980
9037
|
if (3 <= b.length) {
|
|
8981
9038
|
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) {
|
|
8982
9039
|
var f = c[e];
|
|
8983
|
-
0 < a.o.length &&
|
|
9040
|
+
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);
|
|
8984
9041
|
}
|
|
8985
|
-
|
|
8986
|
-
b =
|
|
8987
|
-
return 0 < b.length ? b :
|
|
9042
|
+
ob(a, b);
|
|
9043
|
+
b = wb(a);
|
|
9044
|
+
return 0 < b.length ? b : nb(a) ? xb(a) : a.s.toString();
|
|
8988
9045
|
}
|
|
8989
|
-
return
|
|
9046
|
+
return Z(a, b);
|
|
8990
9047
|
}
|
|
8991
|
-
function
|
|
9048
|
+
function xb(a) {
|
|
8992
9049
|
var b = a.g.toString(), c = b.length;
|
|
8993
9050
|
if (0 < c) {
|
|
8994
|
-
for (var d = "", e = 0; e < c; e++) d =
|
|
8995
|
-
return a.u ?
|
|
9051
|
+
for (var d = "", e = 0; e < c; e++) d = vb(a, b.charAt(e));
|
|
9052
|
+
return a.u ? Z(a, d) : a.s.toString();
|
|
8996
9053
|
}
|
|
8997
9054
|
return a.h.toString();
|
|
8998
9055
|
}
|
|
8999
|
-
function
|
|
9056
|
+
function tb(a) {
|
|
9000
9057
|
var b = a.g.toString(), c = 0;
|
|
9001
9058
|
if (1 != r(a.l, 10)) var d = false;
|
|
9002
9059
|
else d = a.g.toString(), d = "1" == d.charAt(0) && "0" != d.charAt(1) && "1" != d.charAt(1);
|
|
9003
9060
|
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))));
|
|
9004
|
-
|
|
9061
|
+
E(a.g);
|
|
9005
9062
|
a.g.g(b.substring(c));
|
|
9006
9063
|
return b.substring(0, c);
|
|
9007
9064
|
}
|
|
9008
|
-
function
|
|
9065
|
+
function qb(a) {
|
|
9009
9066
|
var b = a.ba.toString(), c = new RegExp("^(?:\\+|" + r(a.l, 11) + ")");
|
|
9010
9067
|
c = b.match(c);
|
|
9011
|
-
return null != c && null != c[0] && 0 < c[0].length ? (a.ca = true, c = c[0].length,
|
|
9068
|
+
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;
|
|
9012
9069
|
}
|
|
9013
|
-
function
|
|
9070
|
+
function rb(a) {
|
|
9014
9071
|
if (0 == a.g.h.length) return false;
|
|
9015
|
-
var b = new
|
|
9072
|
+
var b = new D(), c = eb(a.g, b);
|
|
9016
9073
|
if (0 == c) return false;
|
|
9017
|
-
|
|
9074
|
+
E(a.g);
|
|
9018
9075
|
a.g.g(b.toString());
|
|
9019
|
-
b =
|
|
9020
|
-
"001" == b ? a.l =
|
|
9076
|
+
b = S(c);
|
|
9077
|
+
"001" == b ? a.l = T(a.ga, "" + c) : b != a.ka && (a.l = jb(a, b));
|
|
9021
9078
|
a.h.g("" + c).g(" ");
|
|
9022
9079
|
a.o = "";
|
|
9023
9080
|
return true;
|
|
9024
9081
|
}
|
|
9025
|
-
function
|
|
9082
|
+
function vb(a, b) {
|
|
9026
9083
|
var c = a.v.toString();
|
|
9027
9084
|
if (0 <= c.substring(a.$).search(a.fa)) {
|
|
9028
9085
|
var d = c.search(a.fa);
|
|
9029
9086
|
b = c.replace(a.fa, b);
|
|
9030
|
-
|
|
9087
|
+
E(a.v);
|
|
9031
9088
|
a.v.g(b);
|
|
9032
9089
|
a.$ = d;
|
|
9033
9090
|
return b.substring(0, a.$ + 1);
|
|
@@ -9037,13 +9094,13 @@ var intl_tel_input_default = intlTelInput;
|
|
|
9037
9094
|
return a.s.toString();
|
|
9038
9095
|
}
|
|
9039
9096
|
;
|
|
9040
|
-
const
|
|
9097
|
+
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 };
|
|
9041
9098
|
m("intlTelInputUtilsTemp", {});
|
|
9042
9099
|
m("intlTelInputUtilsTemp.formatNumberAsYouType", (a, b) => {
|
|
9043
9100
|
try {
|
|
9044
|
-
const c = a.replace(/[^+0-9]/g, ""), d = new
|
|
9101
|
+
const c = a.replace(/[^+0-9]/g, ""), d = new ib(b);
|
|
9045
9102
|
b = "";
|
|
9046
|
-
for (let e = 0; e < c.length; e++) d.ja =
|
|
9103
|
+
for (let e = 0; e < c.length; e++) d.ja = pb(d, c.charAt(e)), b = d.ja;
|
|
9047
9104
|
return b;
|
|
9048
9105
|
} catch {
|
|
9049
9106
|
return a;
|
|
@@ -9051,8 +9108,8 @@ var intl_tel_input_default = intlTelInput;
|
|
|
9051
9108
|
});
|
|
9052
9109
|
m("intlTelInputUtilsTemp.formatNumber", (a, b, c) => {
|
|
9053
9110
|
try {
|
|
9054
|
-
const e =
|
|
9055
|
-
var d =
|
|
9111
|
+
const e = K.g(), f = Y(e, a, b);
|
|
9112
|
+
var d = X(e, f, -1);
|
|
9056
9113
|
return 0 == d || 4 == d ? e.format(f, "undefined" === typeof c ? 0 : c) : a;
|
|
9057
9114
|
} catch {
|
|
9058
9115
|
return a;
|
|
@@ -9060,15 +9117,15 @@ var intl_tel_input_default = intlTelInput;
|
|
|
9060
9117
|
});
|
|
9061
9118
|
m("intlTelInputUtilsTemp.getExampleNumber", (a, b, c, d) => {
|
|
9062
9119
|
try {
|
|
9063
|
-
const l =
|
|
9120
|
+
const l = K.g();
|
|
9064
9121
|
a: {
|
|
9065
9122
|
var e = l;
|
|
9066
|
-
if (
|
|
9067
|
-
var f = T(
|
|
9123
|
+
if (P(a)) {
|
|
9124
|
+
var f = U(T(e, a), c);
|
|
9068
9125
|
try {
|
|
9069
9126
|
if (q(f, 6)) {
|
|
9070
9127
|
var g = r(f, 6);
|
|
9071
|
-
var h =
|
|
9128
|
+
var h = hb(e, g, a, false);
|
|
9072
9129
|
break a;
|
|
9073
9130
|
}
|
|
9074
9131
|
} catch (A) {
|
|
@@ -9083,21 +9140,15 @@ var intl_tel_input_default = intlTelInput;
|
|
|
9083
9140
|
});
|
|
9084
9141
|
m("intlTelInputUtilsTemp.getExtension", (a, b) => {
|
|
9085
9142
|
try {
|
|
9086
|
-
return r(
|
|
9143
|
+
return r(Y(K.g(), a, b), 3);
|
|
9087
9144
|
} catch {
|
|
9088
9145
|
return "";
|
|
9089
9146
|
}
|
|
9090
9147
|
});
|
|
9091
9148
|
m("intlTelInputUtilsTemp.getNumberType", (a, b) => {
|
|
9092
9149
|
try {
|
|
9093
|
-
const
|
|
9094
|
-
|
|
9095
|
-
if (null == d) var e = -1;
|
|
9096
|
-
else {
|
|
9097
|
-
var f = P(h);
|
|
9098
|
-
e = ab(f, d);
|
|
9099
|
-
}
|
|
9100
|
-
return e;
|
|
9150
|
+
const c = K.g(), d = Y(c, a, b);
|
|
9151
|
+
return $a(c, d);
|
|
9101
9152
|
} catch {
|
|
9102
9153
|
return -99;
|
|
9103
9154
|
}
|
|
@@ -9105,53 +9156,46 @@ var intl_tel_input_default = intlTelInput;
|
|
|
9105
9156
|
m("intlTelInputUtilsTemp.getValidationError", (a, b) => {
|
|
9106
9157
|
if (!b) return 1;
|
|
9107
9158
|
try {
|
|
9108
|
-
const c =
|
|
9109
|
-
return
|
|
9159
|
+
const c = K.g(), d = Y(c, a, b);
|
|
9160
|
+
return X(c, d, -1);
|
|
9110
9161
|
} catch (c) {
|
|
9111
9162
|
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;
|
|
9112
9163
|
}
|
|
9113
9164
|
});
|
|
9114
|
-
m("intlTelInputUtilsTemp.isValidNumber", (a, b) => {
|
|
9165
|
+
m("intlTelInputUtilsTemp.isValidNumber", (a, b, c) => {
|
|
9115
9166
|
try {
|
|
9116
|
-
const
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
if (null == f || "001" != d && e != cb(a, d)) var g = false;
|
|
9121
|
-
else {
|
|
9122
|
-
var h = P(c);
|
|
9123
|
-
g = -1 != ab(h, f);
|
|
9167
|
+
const d = K.g(), e = Y(d, a, b), f = cb(d, e);
|
|
9168
|
+
if (c) {
|
|
9169
|
+
const g = c.map((h) => yb[h]);
|
|
9170
|
+
return f && g.includes($a(d, e));
|
|
9124
9171
|
}
|
|
9125
|
-
return
|
|
9172
|
+
return f;
|
|
9126
9173
|
} catch {
|
|
9127
9174
|
return false;
|
|
9128
9175
|
}
|
|
9129
9176
|
});
|
|
9130
9177
|
m("intlTelInputUtilsTemp.isPossibleNumber", (a, b, c) => {
|
|
9131
9178
|
try {
|
|
9132
|
-
const d =
|
|
9179
|
+
const d = K.g(), e = Y(d, a, b);
|
|
9133
9180
|
if (c) {
|
|
9134
|
-
|
|
9135
|
-
if (
|
|
9136
|
-
|
|
9137
|
-
return g || h || f;
|
|
9138
|
-
}
|
|
9139
|
-
return f;
|
|
9181
|
+
c.includes("FIXED_LINE_OR_MOBILE") && (c.includes("MOBILE") || c.push("MOBILE"), c.includes("FIXED_LINE") || c.push("FIXED_LINE"));
|
|
9182
|
+
for (let f of c) if (0 === X(d, e, yb[f])) return true;
|
|
9183
|
+
return false;
|
|
9140
9184
|
}
|
|
9141
|
-
return 0 ===
|
|
9185
|
+
return 0 === X(d, e, -1);
|
|
9142
9186
|
} catch {
|
|
9143
9187
|
return false;
|
|
9144
9188
|
}
|
|
9145
9189
|
});
|
|
9146
9190
|
m("intlTelInputUtilsTemp.getCoreNumber", (a, b) => {
|
|
9147
9191
|
try {
|
|
9148
|
-
return r(
|
|
9192
|
+
return r(Y(K.g(), a, b), 2).toString();
|
|
9149
9193
|
} catch {
|
|
9150
9194
|
return "";
|
|
9151
9195
|
}
|
|
9152
9196
|
});
|
|
9153
9197
|
m("intlTelInputUtilsTemp.numberFormat", { E164: 0, INTERNATIONAL: 1, NATIONAL: 2, RFC3966: 3 });
|
|
9154
|
-
m("intlTelInputUtilsTemp.numberType",
|
|
9198
|
+
m("intlTelInputUtilsTemp.numberType", yb);
|
|
9155
9199
|
m("intlTelInputUtilsTemp.validationError", { IS_POSSIBLE: 0, INVALID_COUNTRY_CODE: 1, TOO_SHORT: 2, TOO_LONG: 3, IS_POSSIBLE_LOCAL_ONLY: 4, INVALID_LENGTH: 5 });
|
|
9156
9200
|
})();
|
|
9157
9201
|
var utils = window.intlTelInputUtilsTemp;
|