intl-tel-input 24.3.6 → 24.4.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 +5 -7
- package/build/js/data.js +1 -1
- package/build/js/data.min.js +1 -1
- package/build/js/intlTelInput.js +11 -7
- package/build/js/intlTelInput.min.js +2 -2
- package/build/js/intlTelInputWithUtils.js +243 -264
- package/build/js/intlTelInputWithUtils.min.js +2 -2
- package/build/js/utils.js +44 -45
- package/package.json +2 -2
- package/react/README.md +1 -1
- package/react/build/IntlTelInput.cjs +10 -6
- package/react/build/IntlTelInput.js +10 -6
- package/react/build/IntlTelInputWithUtils.cjs +242 -263
- package/react/build/IntlTelInputWithUtils.js +242 -263
- package/vue/README.md +50 -6
- package/vue/build/IntlTelInput.mjs +70 -60
- package/vue/build/IntlTelInputWithUtils.mjs +467 -482
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { mergeModels as
|
|
2
|
-
const
|
|
1
|
+
import { mergeModels as e2, useModel as T2, ref as _1, onMounted as L2, watch as N2, onUnmounted as E2, withDirectives as D2, openBlock as M2, createElementBlock as P2, mergeProps as x2, vModelText as R2 } from "vue";
|
|
2
|
+
const $2 = [
|
|
3
3
|
[
|
|
4
4
|
"af",
|
|
5
5
|
// Afghanistan
|
|
@@ -1306,8 +1306,8 @@ const e2 = [
|
|
|
1306
1306
|
"263"
|
|
1307
1307
|
]
|
|
1308
1308
|
], H = [];
|
|
1309
|
-
for (let y = 0; y <
|
|
1310
|
-
const e =
|
|
1309
|
+
for (let y = 0; y < $2.length; y++) {
|
|
1310
|
+
const e = $2[y];
|
|
1311
1311
|
H[y] = {
|
|
1312
1312
|
name: "",
|
|
1313
1313
|
// this is now populated in the plugin
|
|
@@ -1318,7 +1318,7 @@ for (let y = 0; y < e2.length; y++) {
|
|
|
1318
1318
|
nodeById: {}
|
|
1319
1319
|
};
|
|
1320
1320
|
}
|
|
1321
|
-
const
|
|
1321
|
+
const B2 = {
|
|
1322
1322
|
ad: "Andorra",
|
|
1323
1323
|
ae: "United Arab Emirates",
|
|
1324
1324
|
af: "Afghanistan",
|
|
@@ -1561,7 +1561,7 @@ const R2 = {
|
|
|
1561
1561
|
za: "South Africa",
|
|
1562
1562
|
zm: "Zambia",
|
|
1563
1563
|
zw: "Zimbabwe"
|
|
1564
|
-
},
|
|
1564
|
+
}, k2 = {
|
|
1565
1565
|
selectedCountryAriaLabel: "Selected country",
|
|
1566
1566
|
noCountrySelected: "No country selected",
|
|
1567
1567
|
countryListAriaLabel: "List of countries",
|
|
@@ -1572,11 +1572,11 @@ const R2 = {
|
|
|
1572
1572
|
// additional countries (not supported by country-list library)
|
|
1573
1573
|
ac: "Ascension Island",
|
|
1574
1574
|
xk: "Kosovo"
|
|
1575
|
-
},
|
|
1575
|
+
}, s2 = { ...B2, ...k2 };
|
|
1576
1576
|
for (let y = 0; y < H.length; y++)
|
|
1577
|
-
H[y].name =
|
|
1578
|
-
let
|
|
1579
|
-
const
|
|
1577
|
+
H[y].name = s2[H[y].iso2];
|
|
1578
|
+
let O2 = 0;
|
|
1579
|
+
const r2 = {
|
|
1580
1580
|
//* Whether or not to allow the dropdown.
|
|
1581
1581
|
allowDropdown: !0,
|
|
1582
1582
|
//* Add a placeholder in the input with an example number for the selected country.
|
|
@@ -1631,7 +1631,7 @@ const s2 = {
|
|
|
1631
1631
|
utilsScript: "",
|
|
1632
1632
|
//* The number type to enforce during validation.
|
|
1633
1633
|
validationNumberType: "MOBILE"
|
|
1634
|
-
},
|
|
1634
|
+
}, G2 = [
|
|
1635
1635
|
"800",
|
|
1636
1636
|
"822",
|
|
1637
1637
|
"833",
|
|
@@ -1649,14 +1649,14 @@ const s2 = {
|
|
|
1649
1649
|
"887",
|
|
1650
1650
|
"888",
|
|
1651
1651
|
"889"
|
|
1652
|
-
], c1 = (y) => y.replace(/\D/g, ""),
|
|
1652
|
+
], c1 = (y) => y.replace(/\D/g, ""), i2 = (y = "") => y.normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase(), n2 = (y) => {
|
|
1653
1653
|
const e = c1(y);
|
|
1654
1654
|
if (e.charAt(0) === "1") {
|
|
1655
1655
|
const i = e.substr(1, 3);
|
|
1656
|
-
return
|
|
1656
|
+
return G2.indexOf(i) !== -1;
|
|
1657
1657
|
}
|
|
1658
1658
|
return !1;
|
|
1659
|
-
},
|
|
1659
|
+
}, U2 = (y, e, i, s) => {
|
|
1660
1660
|
if (i === 0 && !s)
|
|
1661
1661
|
return 0;
|
|
1662
1662
|
let u = 0;
|
|
@@ -1670,19 +1670,19 @@ const s2 = {
|
|
|
1670
1670
|
}, N = (y, e, i) => {
|
|
1671
1671
|
const s = document.createElement(y);
|
|
1672
1672
|
return e && Object.entries(e).forEach(([u, a]) => s.setAttribute(u, a)), i && i.appendChild(s), s;
|
|
1673
|
-
},
|
|
1673
|
+
}, $1 = (y) => {
|
|
1674
1674
|
const { instances: e } = C;
|
|
1675
1675
|
Object.values(e).forEach((i) => i[y]());
|
|
1676
1676
|
};
|
|
1677
|
-
class
|
|
1677
|
+
class F2 {
|
|
1678
1678
|
constructor(e, i = {}) {
|
|
1679
|
-
this.id =
|
|
1679
|
+
this.id = O2++, this.telInput = e, this.highlightedItem = null, this.options = Object.assign({}, r2, i), this.hadInitialPlaceholder = !!e.getAttribute("placeholder");
|
|
1680
1680
|
}
|
|
1681
1681
|
//* Can't be private as it's called from intlTelInput convenience wrapper.
|
|
1682
1682
|
_init() {
|
|
1683
1683
|
this.options.useFullscreenPopup && (this.options.fixDropdownWidth = !1), this.options.onlyCountries.length === 1 && (this.options.initialCountry = this.options.onlyCountries[0]), this.options.separateDialCode && (this.options.nationalMode = !1), this.options.allowDropdown && !this.options.showFlags && !this.options.separateDialCode && (this.options.nationalMode = !1), this.options.useFullscreenPopup && !this.options.dropdownContainer && (this.options.dropdownContainer = document.body), this.isAndroid = typeof navigator < "u" ? /Android/i.test(navigator.userAgent) : !1, this.isRTL = !!this.telInput.closest("[dir=rtl]");
|
|
1684
1684
|
const e = this.options.allowDropdown || this.options.separateDialCode;
|
|
1685
|
-
this.showSelectedCountryOnLeft = this.isRTL ? !e : e, this.options.separateDialCode && (this.isRTL ? this.originalPaddingRight = this.telInput.style.paddingRight : this.originalPaddingLeft = this.telInput.style.paddingLeft), this.options.i18n = { ...
|
|
1685
|
+
this.showSelectedCountryOnLeft = this.isRTL ? !e : e, this.options.separateDialCode && (this.isRTL ? this.originalPaddingRight = this.telInput.style.paddingRight : this.originalPaddingLeft = this.telInput.style.paddingLeft), this.options.i18n = { ...s2, ...this.options.i18n };
|
|
1686
1686
|
const i = new Promise((u, a) => {
|
|
1687
1687
|
this.resolveAutoCountryPromise = u, this.rejectAutoCountryPromise = a;
|
|
1688
1688
|
}), s = new Promise((u, a) => {
|
|
@@ -1783,18 +1783,15 @@ class U2 {
|
|
|
1783
1783
|
countrySearch: b,
|
|
1784
1784
|
i18n: _
|
|
1785
1785
|
} = this.options;
|
|
1786
|
-
let
|
|
1787
|
-
e && (
|
|
1788
|
-
const S = N("div", { class:
|
|
1786
|
+
let A = "iti";
|
|
1787
|
+
e && (A += " iti--allow-dropdown"), s && (A += " iti--show-flags"), u && (A += ` ${u}`), g || (A += " iti--inline-dropdown");
|
|
1788
|
+
const S = N("div", { class: A });
|
|
1789
1789
|
if ((I = this.telInput.parentNode) == null || I.insertBefore(S, this.telInput), e || s || i) {
|
|
1790
1790
|
this.countryContainer = N(
|
|
1791
1791
|
"div",
|
|
1792
|
-
{
|
|
1793
|
-
class: "iti__country-container",
|
|
1794
|
-
style: this.showSelectedCountryOnLeft ? "left: 0" : "right: 0"
|
|
1795
|
-
},
|
|
1792
|
+
{ class: "iti__country-container" },
|
|
1796
1793
|
S
|
|
1797
|
-
), e ? (this.selectedCountry = N(
|
|
1794
|
+
), this.showSelectedCountryOnLeft ? this.countryContainer.style.left = "0px" : this.countryContainer.style.right = "0px", e ? (this.selectedCountry = N(
|
|
1798
1795
|
"button",
|
|
1799
1796
|
{
|
|
1800
1797
|
type: "button",
|
|
@@ -1811,24 +1808,24 @@ class U2 {
|
|
|
1811
1808
|
{ class: "iti__selected-country" },
|
|
1812
1809
|
this.countryContainer
|
|
1813
1810
|
);
|
|
1814
|
-
const
|
|
1815
|
-
if (this.selectedCountryInner = N("div", { class: "iti__flag" },
|
|
1811
|
+
const T = N("div", { class: "iti__selected-country-primary" }, this.selectedCountry);
|
|
1812
|
+
if (this.selectedCountryInner = N("div", { class: "iti__flag" }, T), this.selectedCountryA11yText = N(
|
|
1816
1813
|
"span",
|
|
1817
1814
|
{ class: "iti__a11y-text" },
|
|
1818
1815
|
this.selectedCountryInner
|
|
1819
1816
|
), e && (this.dropdownArrow = N(
|
|
1820
1817
|
"div",
|
|
1821
1818
|
{ class: "iti__arrow", "aria-hidden": "true" },
|
|
1822
|
-
|
|
1819
|
+
T
|
|
1823
1820
|
)), i && (this.selectedDialCode = N(
|
|
1824
1821
|
"div",
|
|
1825
1822
|
{ class: "iti__selected-dial-code" },
|
|
1826
1823
|
this.selectedCountry
|
|
1827
1824
|
)), e) {
|
|
1828
|
-
const
|
|
1825
|
+
const P = p ? "" : "iti--flexible-dropdown-width";
|
|
1829
1826
|
if (this.dropdownContent = N("div", {
|
|
1830
1827
|
id: `iti-${this.id}__dropdown-content`,
|
|
1831
|
-
class: `iti__dropdown-content iti__hide ${
|
|
1828
|
+
class: `iti__dropdown-content iti__hide ${P}`
|
|
1832
1829
|
}), b && (this.searchInput = N(
|
|
1833
1830
|
"input",
|
|
1834
1831
|
{
|
|
@@ -1864,13 +1861,13 @@ class U2 {
|
|
|
1864
1861
|
}
|
|
1865
1862
|
}
|
|
1866
1863
|
if (S.appendChild(this.telInput), this._updateInputPadding(), a) {
|
|
1867
|
-
const
|
|
1868
|
-
|
|
1864
|
+
const T = this.telInput.getAttribute("name") || "", P = a(T);
|
|
1865
|
+
P.phone && (this.hiddenInput = N("input", {
|
|
1869
1866
|
type: "hidden",
|
|
1870
|
-
name:
|
|
1871
|
-
}), S.appendChild(this.hiddenInput)),
|
|
1867
|
+
name: P.phone
|
|
1868
|
+
}), S.appendChild(this.hiddenInput)), P.country && (this.hiddenInputCountry = N("input", {
|
|
1872
1869
|
type: "hidden",
|
|
1873
|
-
name:
|
|
1870
|
+
name: P.country
|
|
1874
1871
|
}), S.appendChild(this.hiddenInputCountry));
|
|
1875
1872
|
}
|
|
1876
1873
|
}
|
|
@@ -1899,12 +1896,12 @@ class U2 {
|
|
|
1899
1896
|
//* 1. Extracting a dial code from the given number
|
|
1900
1897
|
//* 2. Using explicit initialCountry
|
|
1901
1898
|
_setInitialState(e = !1) {
|
|
1902
|
-
const i = this.telInput.getAttribute("value"), s = this.telInput.value, a = i && i.charAt(0) === "+" && (!s || s.charAt(0) !== "+") ? i : s, c = this._getDialCode(a), p =
|
|
1899
|
+
const i = this.telInput.getAttribute("value"), s = this.telInput.value, a = i && i.charAt(0) === "+" && (!s || s.charAt(0) !== "+") ? i : s, c = this._getDialCode(a), p = n2(a), { initialCountry: g, geoIpLookup: b } = this.options, _ = g === "auto" && b;
|
|
1903
1900
|
if (c && !p)
|
|
1904
1901
|
this._updateCountryFromNumber(a);
|
|
1905
1902
|
else if (!_ || e) {
|
|
1906
|
-
const
|
|
1907
|
-
|
|
1903
|
+
const A = g ? g.toLowerCase() : "";
|
|
1904
|
+
A && this._getCountryData(A, !0) ? this._setCountry(A) : c && p ? this._setCountry("us") : this._setCountry();
|
|
1908
1905
|
}
|
|
1909
1906
|
a && this._updateValFromNumber(a);
|
|
1910
1907
|
}
|
|
@@ -1949,10 +1946,10 @@ class U2 {
|
|
|
1949
1946
|
C.autoCountry ? this.handleAutoCountry() : C.startedLoadingAutoCountry || (C.startedLoadingAutoCountry = !0, typeof this.options.geoIpLookup == "function" && this.options.geoIpLookup(
|
|
1950
1947
|
(e = "") => {
|
|
1951
1948
|
const i = e.toLowerCase();
|
|
1952
|
-
i && this._getCountryData(i, !0) ? (C.autoCountry = i, setTimeout(() =>
|
|
1949
|
+
i && this._getCountryData(i, !0) ? (C.autoCountry = i, setTimeout(() => $1("handleAutoCountry"))) : (this._setInitialState(!0), $1("rejectAutoCountryPromise"));
|
|
1953
1950
|
},
|
|
1954
1951
|
() => {
|
|
1955
|
-
this._setInitialState(!0),
|
|
1952
|
+
this._setInitialState(!0), $1("rejectAutoCountryPromise");
|
|
1956
1953
|
}
|
|
1957
1954
|
));
|
|
1958
1955
|
}
|
|
@@ -1965,17 +1962,17 @@ class U2 {
|
|
|
1965
1962
|
let p = !1;
|
|
1966
1963
|
new RegExp("\\p{L}", "u").test(this.telInput.value) && (p = !0), this._handleInputEvent = (g) => {
|
|
1967
1964
|
if (this.isAndroid && (g == null ? void 0 : g.data) === "+" && s && a && c) {
|
|
1968
|
-
const S = this.telInput.selectionStart || 0, I = this.telInput.value.substring(0, S - 1),
|
|
1969
|
-
this.telInput.value = I +
|
|
1965
|
+
const S = this.telInput.selectionStart || 0, I = this.telInput.value.substring(0, S - 1), T = this.telInput.value.substring(S);
|
|
1966
|
+
this.telInput.value = I + T, this._openDropdownWithPlus();
|
|
1970
1967
|
return;
|
|
1971
1968
|
}
|
|
1972
1969
|
this._updateCountryFromNumber(this.telInput.value) && this._triggerCountryChange();
|
|
1973
1970
|
const b = (g == null ? void 0 : g.data) && /[^+0-9]/.test(g.data), _ = (g == null ? void 0 : g.inputType) === "insertFromPaste" && this.telInput.value;
|
|
1974
1971
|
b || _ && !e ? p = !0 : /[^+0-9]/.test(this.telInput.value) || (p = !1);
|
|
1975
|
-
const
|
|
1976
|
-
if (i && !p && !
|
|
1977
|
-
const S = this.telInput.selectionStart || 0,
|
|
1978
|
-
this.telInput.value = O, this.telInput.setSelectionRange(
|
|
1972
|
+
const A = (g == null ? void 0 : g.detail) && g.detail.isSetNumber && !u;
|
|
1973
|
+
if (i && !p && !A) {
|
|
1974
|
+
const S = this.telInput.selectionStart || 0, T = this.telInput.value.substring(0, S).replace(/[^+0-9]/g, "").length, P = (g == null ? void 0 : g.inputType) === "deleteContentForward", O = this._formatNumberAsYouType(), J = U2(T, O, S, P);
|
|
1975
|
+
this.telInput.value = O, this.telInput.setSelectionRange(J, J);
|
|
1979
1976
|
}
|
|
1980
1977
|
}, this.telInput.addEventListener("input", this._handleInputEvent), (e || s) && (this._handleKeydownEvent = (g) => {
|
|
1981
1978
|
if (g.key && g.key.length === 1 && !g.altKey && !g.ctrlKey && !g.metaKey) {
|
|
@@ -1984,8 +1981,8 @@ class U2 {
|
|
|
1984
1981
|
return;
|
|
1985
1982
|
}
|
|
1986
1983
|
if (e) {
|
|
1987
|
-
const b = this.telInput.selectionStart === 0 && g.key === "+", _ = /^[0-9]$/.test(g.key),
|
|
1988
|
-
(!
|
|
1984
|
+
const b = this.telInput.selectionStart === 0 && g.key === "+", _ = /^[0-9]$/.test(g.key), A = s ? _ : b || _, S = this._getFullNumber(), I = C.utils.getCoreNumber(S, this.selectedCountryData.iso2), T = this.maxCoreNumberLength && I.length >= this.maxCoreNumberLength, P = this.telInput.value.substring(this.telInput.selectionStart, this.telInput.selectionEnd), O = /\d/.test(P), f1 = (this.telInput.selectionStart || 0) === this.telInput.value.length;
|
|
1985
|
+
(!A || T && !O && f1) && g.preventDefault();
|
|
1989
1986
|
}
|
|
1990
1987
|
}
|
|
1991
1988
|
}, this.telInput.addEventListener("keydown", this._handleKeydownEvent));
|
|
@@ -2074,9 +2071,9 @@ class U2 {
|
|
|
2074
2071
|
_filterCountries(e, i = !1) {
|
|
2075
2072
|
let s = !0;
|
|
2076
2073
|
this.countryList.innerHTML = "";
|
|
2077
|
-
const u =
|
|
2074
|
+
const u = i2(e);
|
|
2078
2075
|
for (let a = 0; a < this.countries.length; a++) {
|
|
2079
|
-
const c = this.countries[a], p =
|
|
2076
|
+
const c = this.countries[a], p = i2(c.name), g = c.name.split(/[^a-zA-ZÀ-ÿа-яА-Я]/).map((_) => _[0]).join("").toLowerCase(), b = `+${c.dialCode}`;
|
|
2080
2077
|
if (i || p.includes(u) || b.includes(u) || c.iso2.includes(u) || g.includes(u)) {
|
|
2081
2078
|
const _ = c.nodeById[this.id];
|
|
2082
2079
|
_ && this.countryList.appendChild(_), s && (this._highlightListItem(_, !1), s = !1);
|
|
@@ -2125,7 +2122,7 @@ class U2 {
|
|
|
2125
2122
|
let g = null;
|
|
2126
2123
|
if (c) {
|
|
2127
2124
|
const b = this.dialCodeToIso2Map[c1(c)], _ = b.indexOf(this.selectedCountryData.iso2) !== -1 && p.length <= c.length - 1;
|
|
2128
|
-
if (!(u === "1" &&
|
|
2125
|
+
if (!(u === "1" && n2(p)) && !_) {
|
|
2129
2126
|
for (let S = 0; S < b.length; S++)
|
|
2130
2127
|
if (b[S]) {
|
|
2131
2128
|
g = b[S];
|
|
@@ -2259,8 +2256,8 @@ class U2 {
|
|
|
2259
2256
|
if (g < a)
|
|
2260
2257
|
i.scrollTop = _;
|
|
2261
2258
|
else if (b > c) {
|
|
2262
|
-
const
|
|
2263
|
-
i.scrollTop = _ -
|
|
2259
|
+
const A = u - p;
|
|
2260
|
+
i.scrollTop = _ - A;
|
|
2264
2261
|
}
|
|
2265
2262
|
}
|
|
2266
2263
|
//* Replace any existing dial code with the new one
|
|
@@ -2442,23 +2439,23 @@ class U2 {
|
|
|
2442
2439
|
this.telInput.disabled = e, e ? this.selectedCountry.setAttribute("disabled", "true") : this.selectedCountry.removeAttribute("disabled");
|
|
2443
2440
|
}
|
|
2444
2441
|
}
|
|
2445
|
-
const
|
|
2442
|
+
const V2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUtilsScript = !0, new Promise((e, i) => {
|
|
2446
2443
|
import_INTENTIONALLY_BROKEN(
|
|
2447
2444
|
/* webpackIgnore: true */
|
|
2448
2445
|
/* @vite-ignore */
|
|
2449
2446
|
y
|
|
2450
2447
|
).then(({ default: s }) => {
|
|
2451
|
-
C.utils = s,
|
|
2448
|
+
C.utils = s, $1("handleUtils"), e(!0);
|
|
2452
2449
|
}).catch(() => {
|
|
2453
|
-
|
|
2450
|
+
$1("rejectUtilsScriptPromise"), i();
|
|
2454
2451
|
});
|
|
2455
2452
|
})) : null, C = Object.assign(
|
|
2456
2453
|
(y, e) => {
|
|
2457
|
-
const i = new
|
|
2454
|
+
const i = new F2(y, e);
|
|
2458
2455
|
return i._init(), y.setAttribute("data-intl-tel-input-id", i.id.toString()), C.instances[i.id] = i, i;
|
|
2459
2456
|
},
|
|
2460
2457
|
{
|
|
2461
|
-
defaults:
|
|
2458
|
+
defaults: r2,
|
|
2462
2459
|
//* Using a static var like this allows us to mock it in the tests.
|
|
2463
2460
|
documentReady: () => document.readyState === "complete",
|
|
2464
2461
|
//* Get the country data object.
|
|
@@ -2470,8 +2467,8 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2470
2467
|
},
|
|
2471
2468
|
//* A map from instance ID to instance object.
|
|
2472
2469
|
instances: {},
|
|
2473
|
-
loadUtils:
|
|
2474
|
-
version: "24.
|
|
2470
|
+
loadUtils: V2,
|
|
2471
|
+
version: "24.4.0"
|
|
2475
2472
|
}
|
|
2476
2473
|
);
|
|
2477
2474
|
(function() {
|
|
@@ -2527,7 +2524,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2527
2524
|
}
|
|
2528
2525
|
new b();
|
|
2529
2526
|
const _ = {};
|
|
2530
|
-
class
|
|
2527
|
+
class A {
|
|
2531
2528
|
constructor() {
|
|
2532
2529
|
var t = y.trustedTypes && y.trustedTypes.emptyHTML || "";
|
|
2533
2530
|
if (_ !== _) throw Error("SafeHtml is not meant to be built directly");
|
|
@@ -2537,21 +2534,21 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2537
2534
|
return this.g.toString();
|
|
2538
2535
|
}
|
|
2539
2536
|
}
|
|
2540
|
-
new
|
|
2537
|
+
new A();
|
|
2541
2538
|
function S(d, t) {
|
|
2542
2539
|
switch (this.g = d, this.l = !!t.aa, this.h = t.i, this.s = t.type, this.o = !1, this.h) {
|
|
2543
|
-
case
|
|
2540
|
+
case P:
|
|
2544
2541
|
case O:
|
|
2545
|
-
case
|
|
2546
|
-
case
|
|
2542
|
+
case J:
|
|
2543
|
+
case f1:
|
|
2547
2544
|
case o2:
|
|
2548
|
-
case
|
|
2545
|
+
case T:
|
|
2549
2546
|
case I:
|
|
2550
2547
|
this.o = !0;
|
|
2551
2548
|
}
|
|
2552
2549
|
this.j = t.defaultValue;
|
|
2553
2550
|
}
|
|
2554
|
-
var I = 1,
|
|
2551
|
+
var I = 1, T = 2, P = 3, O = 4, J = 6, f1 = 16, o2 = 18;
|
|
2555
2552
|
function u2(d, t) {
|
|
2556
2553
|
for (this.h = d, this.g = {}, d = 0; d < t.length; d++) {
|
|
2557
2554
|
var $ = t[d];
|
|
@@ -2563,19 +2560,19 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2563
2560
|
return t.g - $.g;
|
|
2564
2561
|
}), d;
|
|
2565
2562
|
}
|
|
2566
|
-
function
|
|
2563
|
+
function x() {
|
|
2567
2564
|
this.h = {}, this.j = this.m().g, this.g = this.l = null;
|
|
2568
2565
|
}
|
|
2569
|
-
|
|
2566
|
+
x.prototype.has = function(d) {
|
|
2570
2567
|
return R(this, d.g);
|
|
2571
|
-
},
|
|
2568
|
+
}, x.prototype.get = function(d, t) {
|
|
2572
2569
|
return f(this, d.g, t);
|
|
2573
|
-
},
|
|
2570
|
+
}, x.prototype.set = function(d, t) {
|
|
2574
2571
|
E(this, d.g, t);
|
|
2575
|
-
},
|
|
2576
|
-
|
|
2572
|
+
}, x.prototype.add = function(d, t) {
|
|
2573
|
+
v1(this, d.g, t);
|
|
2577
2574
|
};
|
|
2578
|
-
function
|
|
2575
|
+
function I1(d, t) {
|
|
2579
2576
|
for (var $ = l2(d.m()), n = 0; n < $.length; n++) {
|
|
2580
2577
|
var r = $[n], o = r.g;
|
|
2581
2578
|
if (R(t, o)) {
|
|
@@ -2583,14 +2580,14 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2583
2580
|
var l = r.h == 11 || r.h == 10;
|
|
2584
2581
|
if (r.l) {
|
|
2585
2582
|
r = M(t, o);
|
|
2586
|
-
for (var h = 0; h < r.length; h++)
|
|
2587
|
-
} else r = i1(t, o), l ? (l = i1(d, o)) ?
|
|
2583
|
+
for (var h = 0; h < r.length; h++) v1(d, o, l ? r[h].clone() : r[h]);
|
|
2584
|
+
} else r = i1(t, o), l ? (l = i1(d, o)) ? I1(l, r) : E(d, o, r.clone()) : E(d, o, r);
|
|
2588
2585
|
}
|
|
2589
2586
|
}
|
|
2590
2587
|
}
|
|
2591
|
-
|
|
2588
|
+
x.prototype.clone = function() {
|
|
2592
2589
|
var d = new this.constructor();
|
|
2593
|
-
return d != this && (d.h = {}, d.g && (d.g = {}),
|
|
2590
|
+
return d != this && (d.h = {}, d.g && (d.g = {}), I1(d, this)), d;
|
|
2594
2591
|
};
|
|
2595
2592
|
function R(d, t) {
|
|
2596
2593
|
return d.h[t] != null;
|
|
@@ -2638,7 +2635,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2638
2635
|
function E(d, t, $) {
|
|
2639
2636
|
d.h[t] = $, d.g && (d.g[t] = $);
|
|
2640
2637
|
}
|
|
2641
|
-
function
|
|
2638
|
+
function v1(d, t, $) {
|
|
2642
2639
|
d.h[t] || (d.h[t] = []), d.h[t].push($), d.g && delete d.g[t];
|
|
2643
2640
|
}
|
|
2644
2641
|
function n1(d, t) {
|
|
@@ -2651,26 +2648,26 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2651
2648
|
s1.prototype.g = function(d) {
|
|
2652
2649
|
throw new d.h(), Error("Unimplemented");
|
|
2653
2650
|
}, s1.prototype.h = function(d, t) {
|
|
2654
|
-
if (d.h == 11 || d.h == 10) return t instanceof
|
|
2655
|
-
if (d.h == 14) return typeof t == "string" &&
|
|
2651
|
+
if (d.h == 11 || d.h == 10) return t instanceof x ? t : this.g(d.s.prototype.m(), t);
|
|
2652
|
+
if (d.h == 14) return typeof t == "string" && S1.test(t) && (d = Number(t), 0 < d) ? d : t;
|
|
2656
2653
|
if (!d.o) return t;
|
|
2657
2654
|
if (d = d.s, d === String) {
|
|
2658
2655
|
if (typeof t == "number") return String(t);
|
|
2659
|
-
} else if (d === Number && typeof t == "string" && (t === "Infinity" || t === "-Infinity" || t === "NaN" ||
|
|
2656
|
+
} else if (d === Number && typeof t == "string" && (t === "Infinity" || t === "-Infinity" || t === "NaN" || S1.test(t))) return Number(t);
|
|
2660
2657
|
return t;
|
|
2661
2658
|
};
|
|
2662
|
-
var
|
|
2663
|
-
function
|
|
2659
|
+
var S1 = /^-?[0-9]+$/;
|
|
2660
|
+
function p1() {
|
|
2664
2661
|
}
|
|
2665
|
-
i(
|
|
2662
|
+
i(p1, s1), p1.prototype.g = function(d, t) {
|
|
2666
2663
|
return d = new d.h(), d.l = this, d.h = t, d.g = {}, d;
|
|
2667
2664
|
};
|
|
2668
|
-
function
|
|
2665
|
+
function q() {
|
|
2669
2666
|
}
|
|
2670
|
-
i(
|
|
2667
|
+
i(q, p1), q.prototype.h = function(d, t) {
|
|
2671
2668
|
return d.h == 8 ? !!t : s1.prototype.h.apply(this, arguments);
|
|
2672
|
-
},
|
|
2673
|
-
return
|
|
2669
|
+
}, q.prototype.g = function(d, t) {
|
|
2670
|
+
return q.ma.g.call(this, d, t);
|
|
2674
2671
|
};
|
|
2675
2672
|
function L(d, t) {
|
|
2676
2673
|
d != null && this.g.apply(this, arguments);
|
|
@@ -2688,29 +2685,29 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2688
2685
|
return this.h;
|
|
2689
2686
|
};
|
|
2690
2687
|
function j() {
|
|
2691
|
-
|
|
2688
|
+
x.call(this);
|
|
2692
2689
|
}
|
|
2693
|
-
i(j,
|
|
2694
|
-
var
|
|
2690
|
+
i(j, x);
|
|
2691
|
+
var w1 = null;
|
|
2695
2692
|
function w() {
|
|
2696
|
-
|
|
2693
|
+
x.call(this);
|
|
2697
2694
|
}
|
|
2698
|
-
i(w,
|
|
2699
|
-
var
|
|
2695
|
+
i(w, x);
|
|
2696
|
+
var b1 = null;
|
|
2700
2697
|
function W() {
|
|
2701
|
-
|
|
2698
|
+
x.call(this);
|
|
2702
2699
|
}
|
|
2703
|
-
i(W,
|
|
2704
|
-
var
|
|
2700
|
+
i(W, x);
|
|
2701
|
+
var A1 = null;
|
|
2705
2702
|
j.prototype.m = function() {
|
|
2706
|
-
var d = S1;
|
|
2707
|
-
return d || (S1 = d = n1(j, { 0: { name: "NumberFormat", ia: "i18n.phonenumbers.NumberFormat" }, 1: { name: "pattern", required: !0, i: 9, type: String }, 2: { name: "format", required: !0, i: 9, type: String }, 3: { name: "leading_digits_pattern", aa: !0, i: 9, type: String }, 4: { name: "national_prefix_formatting_rule", i: 9, type: String }, 6: { name: "national_prefix_optional_when_formatting", i: 8, defaultValue: !1, type: Boolean }, 5: { name: "domestic_carrier_code_formatting_rule", i: 9, type: String } })), d;
|
|
2708
|
-
}, j.m = j.prototype.m, w.prototype.m = function() {
|
|
2709
2703
|
var d = w1;
|
|
2710
|
-
return d || (w1 = d = n1(
|
|
2711
|
-
},
|
|
2704
|
+
return d || (w1 = d = n1(j, { 0: { name: "NumberFormat", ia: "i18n.phonenumbers.NumberFormat" }, 1: { name: "pattern", required: !0, i: 9, type: String }, 2: { name: "format", required: !0, i: 9, type: String }, 3: { name: "leading_digits_pattern", aa: !0, i: 9, type: String }, 4: { name: "national_prefix_formatting_rule", i: 9, type: String }, 6: { name: "national_prefix_optional_when_formatting", i: 8, defaultValue: !1, type: Boolean }, 5: { name: "domestic_carrier_code_formatting_rule", i: 9, type: String } })), d;
|
|
2705
|
+
}, j.m = j.prototype.m, w.prototype.m = function() {
|
|
2712
2706
|
var d = b1;
|
|
2713
|
-
return d || (b1 = d = n1(
|
|
2707
|
+
return d || (b1 = d = n1(w, { 0: { name: "PhoneNumberDesc", ia: "i18n.phonenumbers.PhoneNumberDesc" }, 2: { name: "national_number_pattern", i: 9, type: String }, 9: { name: "possible_length", aa: !0, i: 5, type: Number }, 10: { name: "possible_length_local_only", aa: !0, i: 5, type: Number }, 6: { name: "example_number", i: 9, type: String } })), d;
|
|
2708
|
+
}, w.m = w.prototype.m, W.prototype.m = function() {
|
|
2709
|
+
var d = A1;
|
|
2710
|
+
return d || (A1 = d = n1(W, {
|
|
2714
2711
|
0: { name: "PhoneMetadata", ia: "i18n.phonenumbers.PhoneMetadata" },
|
|
2715
2712
|
1: { name: "general_desc", i: 11, type: w },
|
|
2716
2713
|
2: { name: "fixed_line", i: 11, type: w },
|
|
@@ -2749,9 +2746,9 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2749
2746
|
})), d;
|
|
2750
2747
|
}, W.m = W.prototype.m;
|
|
2751
2748
|
function V() {
|
|
2752
|
-
|
|
2749
|
+
x.call(this);
|
|
2753
2750
|
}
|
|
2754
|
-
i(V,
|
|
2751
|
+
i(V, x);
|
|
2755
2752
|
var T1 = null, a2 = { ra: 0, qa: 1, pa: 5, oa: 10, na: 20 };
|
|
2756
2753
|
V.prototype.m = function() {
|
|
2757
2754
|
var d = T1;
|
|
@@ -2761,7 +2758,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2761
2758
|
type: String
|
|
2762
2759
|
} })), d;
|
|
2763
2760
|
}, V.ctor = V, V.ctor.m = V.prototype.m;
|
|
2764
|
-
var
|
|
2761
|
+
var X = {
|
|
2765
2762
|
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(" "),
|
|
2766
2763
|
7: ["RU", "KZ"],
|
|
2767
2764
|
20: ["EG"],
|
|
@@ -2977,7 +2974,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
2977
2974
|
995: ["GE"],
|
|
2978
2975
|
996: ["KG"],
|
|
2979
2976
|
998: ["UZ"]
|
|
2980
|
-
},
|
|
2977
|
+
}, L1 = {
|
|
2981
2978
|
AC: [, [
|
|
2982
2979
|
,
|
|
2983
2980
|
,
|
|
@@ -3519,7 +3516,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
3519
3516
|
,
|
|
3520
3517
|
,
|
|
3521
3518
|
[8]
|
|
3522
|
-
], [, , "2(?:0(?:49|5[23]|6[5-7]|9[016-9])|4(?:4[569]|5[4-6]|6[5-7]|7[0179])|5(?:[34]\\d|50|6[5-7]))\\d{4}", , , , "20491234"], [, , "(?:0[1-
|
|
3519
|
+
], [, , "2(?:0(?:49|5[23]|6[5-7]|9[016-9])|4(?:4[569]|5[4-6]|6[5-7]|7[0179])|5(?:[34]\\d|50|6[5-7]))\\d{4}", , , , "20491234"], [, , "(?:0[1-7]|5[0-8]|[67]\\d)\\d{6}", , , , "70123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "BF", 226, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[025-7]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3523
3520
|
BG: [
|
|
3524
3521
|
,
|
|
3525
3522
|
[, , "00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}", , , , , , , [6, 7, 8, 9, 12], [4, 5]],
|
|
@@ -3825,112 +3822,118 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
3825
3822
|
CD: [, [
|
|
3826
3823
|
,
|
|
3827
3824
|
,
|
|
3828
|
-
"[189]\\d{
|
|
3829
|
-
,
|
|
3830
|
-
,
|
|
3831
|
-
,
|
|
3832
|
-
,
|
|
3833
|
-
,
|
|
3834
|
-
,
|
|
3835
|
-
[7, 9]
|
|
3836
|
-
], [, , "12\\d{7}|[1-6]\\d{6}", , , , "1234567"], [, , "88\\d{5}|(?:8[0-69]|9[017-9])\\d{7}", , , , "991234567"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CD", 243, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], [, "(\\d{2})(\\d{5})", "$1 $2", ["[1-6]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3837
|
-
CF: [, [
|
|
3825
|
+
"(?:(?:[189]|5\\d)\\d|2)\\d{7}|[1-68]\\d{6}",
|
|
3838
3826
|
,
|
|
3839
3827
|
,
|
|
3840
|
-
"(?:[27]\\d{3}|8776)\\d{4}",
|
|
3841
3828
|
,
|
|
3842
3829
|
,
|
|
3843
3830
|
,
|
|
3844
3831
|
,
|
|
3832
|
+
[7, 8, 9, 10]
|
|
3833
|
+
], [, , "(?:(?:12|573)\\d\\d|276)\\d{5}|[1-6]\\d{6}", , , , "1234567"], [, , "88\\d{5}|(?:8[0-69]|9[017-9])\\d{7}", , , , "991234567", , , [7, 9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CD", 243, "00", "0", , , "0", , , , [[, "(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], [, "(\\d{2})(\\d{5})", "$1 $2", ["[1-6]"], "0$1"], [, "(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], [
|
|
3845
3834
|
,
|
|
3846
|
-
,
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
,
|
|
3855
|
-
,
|
|
3856
|
-
"061234567"
|
|
3857
|
-
], [, , , , , , , , , [-1]], [, , "80[0-2]\\d{6}", , , , "800123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CG", 242, "00", , , , , , , , [[, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3858
|
-
CH: [, [, , "8\\d{11}|[2-9]\\d{8}", , , , , , , [9, 12]], [, , "(?:2[12467]|3[1-4]|4[134]|5[256]|6[12]|[7-9]1)\\d{7}", , , , "212345678", , , [9]], [, , "(?:6[89]|7[235-9])\\d{7}", , , , "781234567", , , [9]], [
|
|
3835
|
+
"(\\d{3})(\\d{3})(\\d{3})",
|
|
3836
|
+
"$1 $2 $3",
|
|
3837
|
+
["[89]"],
|
|
3838
|
+
"0$1"
|
|
3839
|
+
], [, "(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["5"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3840
|
+
CF: [, [, , "(?:[27]\\d{3}|8776)\\d{4}", , , , , , , [8]], [, , "2[12]\\d{6}", , , , "21612345"], [, , "7[024-7]\\d{6}", , , , "70012345"], [, , , , , , , , , [-1]], [, , "8776\\d{4}", , , , "87761234"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CF", 236, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[278]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3841
|
+
CG: [, [, , "222\\d{6}|(?:0\\d|80)\\d{7}", , , , , , , [9]], [, , "222[1-589]\\d{5}", , , , "222123456"], [, , "026(?:1[0-5]|6[6-9])\\d{4}|0(?:[14-6]\\d\\d|2(?:40|5[5-8]|6[07-9]))\\d{5}", , , , "061234567"], [, , , , , , , , , [-1]], [, , "80[0-2]\\d{6}", , , , "800123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CG", 242, "00", , , , , , , , [[, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3842
|
+
CH: [, [
|
|
3859
3843
|
,
|
|
3860
3844
|
,
|
|
3861
|
-
"
|
|
3845
|
+
"8\\d{11}|[2-9]\\d{8}",
|
|
3862
3846
|
,
|
|
3863
3847
|
,
|
|
3864
3848
|
,
|
|
3865
|
-
"800123456",
|
|
3866
3849
|
,
|
|
3867
3850
|
,
|
|
3868
|
-
[9]
|
|
3869
|
-
], [, , "90[016]\\d{6}", , , , "900123456", , , [9]], [, , "84[0248]\\d{6}", , , , "840123456", , , [9]], [, , "878\\d{6}", , , , "878123456", , , [9]], [, , , , , , , , , [-1]], "CH", 41, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8[047]|90"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]|81"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["8"], "0$1"]], , [, , "74[0248]\\d{6}", , , , "740123456", , , [9]], , , [, , , , , , , , , [-1]], [, , "5[18]\\d{7}", , , , "581234567", , , [9]], , , [
|
|
3870
3851
|
,
|
|
3852
|
+
[9, 12]
|
|
3853
|
+
], [, , "(?:2[12467]|3[1-4]|4[134]|5[256]|6[12]|[7-9]1)\\d{7}", , , , "212345678", , , [9]], [, , "(?:6[89]|7[235-9])\\d{7}", , , , "781234567", , , [9]], [, , "800\\d{6}", , , , "800123456", , , [9]], [, , "90[016]\\d{6}", , , , "900123456", , , [9]], [, , "84[0248]\\d{6}", , , , "840123456", , , [9]], [, , "878\\d{6}", , , , "878123456", , , [9]], [, , , , , , , , , [-1]], "CH", 41, "00", "0", , , "0", , , , [[, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8[047]|90"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]|81"], "0$1"], [
|
|
3871
3854
|
,
|
|
3872
|
-
"
|
|
3855
|
+
"(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})",
|
|
3856
|
+
"$1 $2 $3 $4 $5",
|
|
3857
|
+
["8"],
|
|
3858
|
+
"0$1"
|
|
3859
|
+
]], , [, , "74[0248]\\d{6}", , , , "740123456", , , [9]], , , [, , , , , , , , , [-1]], [, , "5[18]\\d{7}", , , , "581234567", , , [9]], , , [, , "860\\d{9}", , , , "860123456789", , , [12]]],
|
|
3860
|
+
CI: [, [, , "[02]\\d{9}", , , , , , , [10]], [, , "2(?:[15]\\d{3}|7(?:2(?:0[23]|1[2357]|2[245]|3[45]|4[3-5])|3(?:06|1[69]|[2-6]7)))\\d{5}", , , , "2123456789"], [, , "0[157]\\d{8}", , , , "0123456789"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CI", 225, "00", , , , , , , , [[
|
|
3873
3861
|
,
|
|
3862
|
+
"(\\d{2})(\\d{2})(\\d)(\\d{5})",
|
|
3863
|
+
"$1 $2 $3 $4",
|
|
3864
|
+
["2"]
|
|
3865
|
+
], [, "(\\d{2})(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3 $4", ["0"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3866
|
+
CK: [, [, , "[2-578]\\d{4}", , , , , , , [5]], [, , "(?:2\\d|3[13-7]|4[1-5])\\d{3}", , , , "21234"], [, , "[578]\\d{4}", , , , "71234"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CK", 682, "00", , , , , , , , [[, "(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3867
|
+
CL: [, [
|
|
3874
3868
|
,
|
|
3875
3869
|
,
|
|
3876
|
-
"
|
|
3870
|
+
"12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}",
|
|
3877
3871
|
,
|
|
3878
3872
|
,
|
|
3879
|
-
[12]
|
|
3880
|
-
]],
|
|
3881
|
-
CI: [, [, , "[02]\\d{9}", , , , , , , [10]], [, , "2(?:[15]\\d{3}|7(?:2(?:0[23]|1[2357]|2[245]|3[45]|4[3-5])|3(?:06|1[69]|[2-6]7)))\\d{5}", , , , "2123456789"], [, , "0[157]\\d{8}", , , , "0123456789"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CI", 225, "00", , , , , , , , [[, "(\\d{2})(\\d{2})(\\d)(\\d{5})", "$1 $2 $3 $4", ["2"]], [, "(\\d{2})(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3 $4", ["0"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3882
|
-
CK: [, [
|
|
3883
3873
|
,
|
|
3884
3874
|
,
|
|
3885
|
-
"[2-578]\\d{4}",
|
|
3886
3875
|
,
|
|
3887
3876
|
,
|
|
3877
|
+
[9, 10, 11]
|
|
3878
|
+
], [, , "2(?:1982[0-6]|3314[05-9])\\d{3}|(?:2(?:1(?:160|962)|3(?:2\\d\\d|3(?:[03467]\\d|1[0-35-9]|2[1-9]|5[0-24-9]|8[0-3])|600)|646[59])|80[1-9]\\d\\d|9(?:3(?:[0-57-9]\\d\\d|6(?:0[02-9]|[1-9]\\d))|6(?:[0-8]\\d\\d|9(?:[02-79]\\d|1[05-9]))|7[1-9]\\d\\d|9(?:[03-9]\\d\\d|1(?:[0235-9]\\d|4[0-24-9])|2(?:[0-79]\\d|8[0-46-9]))))\\d{4}|(?:22|3[2-5]|[47][1-35]|5[1-3578]|6[13-57]|8[1-9]|9[2458])\\d{7}", , , , "221234567", , , [9]], [
|
|
3888
3879
|
,
|
|
3889
3880
|
,
|
|
3881
|
+
"2(?:1982[0-6]|3314[05-9])\\d{3}|(?:2(?:1(?:160|962)|3(?:2\\d\\d|3(?:[03467]\\d|1[0-35-9]|2[1-9]|5[0-24-9]|8[0-3])|600)|646[59])|80[1-9]\\d\\d|9(?:3(?:[0-57-9]\\d\\d|6(?:0[02-9]|[1-9]\\d))|6(?:[0-8]\\d\\d|9(?:[02-79]\\d|1[05-9]))|7[1-9]\\d\\d|9(?:[03-9]\\d\\d|1(?:[0235-9]\\d|4[0-24-9])|2(?:[0-79]\\d|8[0-46-9]))))\\d{4}|(?:22|3[2-5]|[47][1-35]|5[1-3578]|6[13-57]|8[1-9]|9[2458])\\d{7}",
|
|
3890
3882
|
,
|
|
3891
3883
|
,
|
|
3892
|
-
[5]
|
|
3893
|
-
], [, , "(?:2\\d|3[13-7]|4[1-5])\\d{3}", , , , "21234"], [, , "[578]\\d{4}", , , , "71234"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CK", 682, "00", , , , , , , , [[, "(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3894
|
-
CL: [, [, , "12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}", , , , , , , [9, 10, 11]], [
|
|
3895
3884
|
,
|
|
3885
|
+
"221234567",
|
|
3896
3886
|
,
|
|
3897
|
-
"2(?:1982[0-6]|3314[05-9])\\d{3}|(?:2(?:1(?:160|962)|3(?:2\\d\\d|3(?:[03467]\\d|1[0-35-9]|2[1-9]|5[0-24-9]|8[0-3])|600)|646[59])|80[1-9]\\d\\d|9(?:3(?:[0-57-9]\\d\\d|6(?:0[02-9]|[1-9]\\d))|6(?:[0-8]\\d\\d|9(?:[02-79]\\d|1[05-9]))|7[1-9]\\d\\d|9(?:[03-9]\\d\\d|1(?:[0235-9]\\d|4[0-24-9])|2(?:[0-79]\\d|8[0-46-9]))))\\d{4}|(?:22|3[2-5]|[47][1-35]|5[1-3578]|6[13-57]|8[1-9]|9[2458])\\d{7}",
|
|
3898
3887
|
,
|
|
3888
|
+
[9]
|
|
3889
|
+
], [, , "(?:123|8)00\\d{6}", , , , "800123456", , , [9, 11]], [, , , , , , , , , [-1]], [, , "600\\d{7,8}", , , , "6001234567", , , [10, 11]], [, , , , , , , , , [-1]], [, , "44\\d{7}", , , , "441234567", , , [9]], "CL", 56, "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", , , , , , , 1, [
|
|
3890
|
+
[, "(\\d{4})", "$1", ["1(?:[03-589]|21)|[29]0|78"]],
|
|
3891
|
+
[, "(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"],
|
|
3892
|
+
[, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]],
|
|
3893
|
+
[, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"],
|
|
3894
|
+
[, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9[2-9]"]],
|
|
3895
|
+
[, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"], "($1)"],
|
|
3896
|
+
[, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["60|8"]],
|
|
3897
|
+
[, "(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]],
|
|
3898
|
+
[, "(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]
|
|
3899
|
+
], [[, "(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9[2-9]"]], [
|
|
3899
3900
|
,
|
|
3901
|
+
"(\\d{2})(\\d{3})(\\d{4})",
|
|
3902
|
+
"$1 $2 $3",
|
|
3903
|
+
["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"],
|
|
3904
|
+
"($1)"
|
|
3905
|
+
], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["60|8"]], [, "(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], [, "(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]], [, , , , , , , , , [-1]], , , [, , "600\\d{7,8}", , , , , , , [10, 11]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3906
|
+
CM: [
|
|
3900
3907
|
,
|
|
3901
|
-
"
|
|
3908
|
+
[, , "[26]\\d{8}|88\\d{6,7}", , , , , , , [8, 9]],
|
|
3909
|
+
[, , "2(?:22|33)\\d{6}", , , , "222123456", , , [9]],
|
|
3910
|
+
[, , "(?:24[23]|6(?:[25-9]\\d|40))\\d{6}", , , , "671234567", , , [9]],
|
|
3911
|
+
[, , "88\\d{6,7}", , , , "88012345"],
|
|
3912
|
+
[, , , , , , , , , [-1]],
|
|
3913
|
+
[, , , , , , , , , [-1]],
|
|
3914
|
+
[, , , , , , , , , [-1]],
|
|
3915
|
+
[, , , , , , , , , [-1]],
|
|
3916
|
+
"CM",
|
|
3917
|
+
237,
|
|
3918
|
+
"00",
|
|
3902
3919
|
,
|
|
3903
3920
|
,
|
|
3904
|
-
[9]
|
|
3905
|
-
], [, , "2(?:1982[0-6]|3314[05-9])\\d{3}|(?:2(?:1(?:160|962)|3(?:2\\d\\d|3(?:[03467]\\d|1[0-35-9]|2[1-9]|5[0-24-9]|8[0-3])|600)|646[59])|80[1-9]\\d\\d|9(?:3(?:[0-57-9]\\d\\d|6(?:0[02-9]|[1-9]\\d))|6(?:[0-8]\\d\\d|9(?:[02-79]\\d|1[05-9]))|7[1-9]\\d\\d|9(?:[03-9]\\d\\d|1(?:[0235-9]\\d|4[0-24-9])|2(?:[0-79]\\d|8[0-46-9]))))\\d{4}|(?:22|3[2-5]|[47][1-35]|5[1-3578]|6[13-57]|8[1-9]|9[2458])\\d{7}", , , , "221234567", , , [9]], [, , "(?:123|8)00\\d{6}", , , , "800123456", , , [9, 11]], [, , , , , , , , , [-1]], [
|
|
3906
3921
|
,
|
|
3907
3922
|
,
|
|
3908
|
-
"600\\d{7,8}",
|
|
3909
3923
|
,
|
|
3910
3924
|
,
|
|
3911
3925
|
,
|
|
3912
|
-
"
|
|
3926
|
+
[[, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["88"]], [, "(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[26]|88"]]],
|
|
3913
3927
|
,
|
|
3928
|
+
[, , , , , , , , , [-1]],
|
|
3914
3929
|
,
|
|
3915
|
-
[10, 11]
|
|
3916
|
-
], [, , , , , , , , , [-1]], [, , "44\\d{7}", , , , "441234567", , , [9]], "CL", 56, "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", , , , , , , 1, [[, "(\\d{4})", "$1", ["1(?:[03-589]|21)|[29]0|78"]], [, "(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9[2-9]"]], [
|
|
3917
3930
|
,
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"],
|
|
3921
|
-
"($1)"
|
|
3922
|
-
], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["60|8"]], [, "(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], [, "(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]], [[, "(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9[2-9]"]], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"], "($1)"], [
|
|
3931
|
+
[, , , , , , , , , [-1]],
|
|
3932
|
+
[, , , , , , , , , [-1]],
|
|
3923
3933
|
,
|
|
3924
|
-
"(\\d{3})(\\d{3})(\\d{3,4})",
|
|
3925
|
-
"$1 $2 $3",
|
|
3926
|
-
["60|8"]
|
|
3927
|
-
], [, "(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], [, "(\\d{3})(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["60"]]], [, , , , , , , , , [-1]], , , [, , "600\\d{7,8}", , , , , , , [10, 11]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3928
|
-
CM: [, [, , "[26]\\d{8}|88\\d{6,7}", , , , , , , [8, 9]], [, , "2(?:22|33)\\d{6}", , , , "222123456", , , [9]], [, , "(?:24[23]|6(?:[25-9]\\d|40))\\d{6}", , , , "671234567", , , [9]], [, , "88\\d{6,7}", , , , "88012345"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "CM", 237, "00", , , , , , , , [[
|
|
3929
3934
|
,
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
["88"]
|
|
3933
|
-
], [, "(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[26]|88"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
3935
|
+
[, , , , , , , , , [-1]]
|
|
3936
|
+
],
|
|
3934
3937
|
CN: [, [, , "(?:(?:1[03-689]|2\\d)\\d\\d|6)\\d{8}|1\\d{10}|[126]\\d{6}(?:\\d(?:\\d{2})?)?|86\\d{5,6}|(?:[3-579]\\d|8[0-57-9])\\d{5,9}", , , , , , , [7, 8, 9, 10, 11, 12], [5, 6]], [
|
|
3935
3938
|
,
|
|
3936
3939
|
,
|
|
@@ -4724,7 +4727,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
4724
4727
|
,
|
|
4725
4728
|
[, , "[2-9]\\d{6}", , , , , , , [7]],
|
|
4726
4729
|
[, , "(?:4(?:[23]\\d\\d|4(?:1[024679]|[6-9]\\d))|5(?:5(?:3\\d|4[0-7])|6[67]\\d|7(?:1[04]|2[035]|3[58]|48))|8\\d{3})\\d{3}", , , , "5661234"],
|
|
4727
|
-
[, , "(?:[23679]\\d|5[0-489])\\d{5}", , , , "3012345"],
|
|
4730
|
+
[, , "(?:[23679]\\d|4[015]|5[0-489])\\d{5}", , , , "3012345"],
|
|
4728
4731
|
[, , , , , , , , , [-1]],
|
|
4729
4732
|
[, , , , , , , , , [-1]],
|
|
4730
4733
|
[, , , , , , , , , [-1]],
|
|
@@ -6290,132 +6293,112 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
6290
6293
|
[, , , , , , , , , [-1]]
|
|
6291
6294
|
],
|
|
6292
6295
|
NF: [, [, , "[13]\\d{5}", , , , , , , [6], [5]], [, , "(?:1(?:06|17|28|39)|3[0-2]\\d)\\d{3}", , , , "106609", , , , [5]], [, , "(?:14|3[58])\\d{4}", , , , "381234", , , , [5]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NF", 672, "00", , , , "([0-258]\\d{4})$", "3$1", , , [[, "(\\d{2})(\\d{4})", "$1 $2", ["1[0-3]"]], [, "(\\d)(\\d{5})", "$1 $2", ["[13]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6293
|
-
NG: [
|
|
6296
|
+
NG: [, [
|
|
6294
6297
|
,
|
|
6295
|
-
[
|
|
6296
|
-
,
|
|
6297
|
-
,
|
|
6298
|
-
"2[0-24-9]\\d{8}|[78]\\d{10,13}|[7-9]\\d{9}|[1-9]\\d{7}|[124-7]\\d{6}",
|
|
6299
|
-
,
|
|
6300
|
-
,
|
|
6301
|
-
,
|
|
6302
|
-
,
|
|
6303
|
-
,
|
|
6304
|
-
,
|
|
6305
|
-
[7, 8, 10, 11, 12, 13, 14],
|
|
6306
|
-
[5, 6]
|
|
6307
|
-
],
|
|
6308
|
-
[, , "20(?:[1259]\\d|3[013-9]|4[1-8]|6[024-689]|7[1-79]|8[2-9])\\d{6}|(?:(?:[1-356]\\d|4[02-8]|8[2-9])\\d|9(?:0[3-9]|[1-9]\\d))\\d{5}|7(?:0(?:[013-689]\\d|2[0-24-9])\\d{3,4}|[1-79]\\d{6})|(?:[12]\\d|4[147]|5[14579]|6[1578]|7[1-3578])\\d{5}", , , , "18040123", , , [7, 8, 10], [5, 6]],
|
|
6309
|
-
[, , "(?:702[0-24-9]|819[01])\\d{6}|(?:7(?:0[13-9]|[12]\\d)|8(?:0[1-9]|1[0-8])|9(?:0[1-9]|1[1-6]))\\d{7}", , , , "8021234567", , , [10]],
|
|
6310
|
-
[, , "800\\d{7,11}", , , , "80017591759", , , [10, 11, 12, 13, 14]],
|
|
6311
|
-
[, , , , , , , , , [-1]],
|
|
6312
|
-
[, , , , , , , , , [-1]],
|
|
6313
|
-
[, , , , , , , , , [-1]],
|
|
6314
|
-
[, , , , , , , , , [-1]],
|
|
6315
|
-
"NG",
|
|
6316
|
-
234,
|
|
6317
|
-
"009",
|
|
6318
|
-
"0",
|
|
6319
6298
|
,
|
|
6299
|
+
"38\\d{6}|[78]\\d{9,13}|(?:20|9\\d)\\d{8}",
|
|
6320
6300
|
,
|
|
6321
|
-
"0",
|
|
6322
6301
|
,
|
|
6323
6302
|
,
|
|
6324
6303
|
,
|
|
6325
|
-
[[, "(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["78"], "0$1"], [, "(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]|9(?:0[3-9]|[1-9])"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["[3-6]|7(?:0[0-689]|[1-79])|8[2-9]"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[7-9]"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["20[129]"], "0$1"], [, "(\\d{4})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], [
|
|
6326
|
-
,
|
|
6327
|
-
"(\\d{3})(\\d{4})(\\d{4,5})",
|
|
6328
|
-
"$1 $2 $3",
|
|
6329
|
-
["[78]"],
|
|
6330
|
-
"0$1"
|
|
6331
|
-
], [, "(\\d{3})(\\d{5})(\\d{5,6})", "$1 $2 $3", ["[78]"], "0$1"]],
|
|
6332
6304
|
,
|
|
6333
|
-
[, , , , , , , , , [-1]],
|
|
6334
6305
|
,
|
|
6306
|
+
[8, 10, 11, 12, 13, 14],
|
|
6307
|
+
[6, 7]
|
|
6308
|
+
], [, , "(?:20(?:[1259]\\d|3[013-9]|4[1-8]|6[024-689]|7[1-79]|8[2-9])|38)\\d{6}", , , , "2033123456", , , [8, 10], [6, 7]], [, , "(?:702[0-24-9]|819[01])\\d{6}|(?:7(?:0[13-9]|[12]\\d)|8(?:0[1-9]|1[0-8])|9(?:0[1-9]|1[1-6]))\\d{7}", , , , "8021234567", , , [10]], [, , "800\\d{7,11}", , , , "80017591759", , , [10, 11, 12, 13, 14]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NG", 234, "009", "0", , , "0", , , , [[, "(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["3"], "0$1"], [
|
|
6335
6309
|
,
|
|
6336
|
-
|
|
6337
|
-
|
|
6310
|
+
"(\\d{3})(\\d{3})(\\d{3,4})",
|
|
6311
|
+
"$1 $2 $3",
|
|
6312
|
+
["[7-9]"],
|
|
6313
|
+
"0$1"
|
|
6314
|
+
], [, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["20[129]"], "0$1"], [, "(\\d{4})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], [, "(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[78]"], "0$1"], [, "(\\d{3})(\\d{5})(\\d{5,6})", "$1 $2 $3", ["[78]"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "700\\d{7,11}", , , , "7001234567", , , [10, 11, 12, 13, 14]], , , [, , , , , , , , , [-1]]],
|
|
6315
|
+
NI: [, [, , "(?:1800|[25-8]\\d{3})\\d{4}", , , , , , , [8]], [, , "2\\d{7}", , , , "21234567"], [
|
|
6338
6316
|
,
|
|
6339
6317
|
,
|
|
6340
|
-
[
|
|
6341
|
-
|
|
6342
|
-
NI: [, [, , "(?:1800|[25-8]\\d{3})\\d{4}", , , , , , , [8]], [, , "2\\d{7}", , , , "21234567"], [, , "(?:5(?:5[0-7]|[78]\\d)|6(?:20|3[035]|4[045]|5[05]|77|8[1-9]|9[059])|(?:7[5-8]|8\\d)\\d)\\d{5}", , , , "81234567"], [, , "1800\\d{4}", , , , "18001234"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NI", 505, "00", , , , , , , , [[
|
|
6318
|
+
"(?:5(?:5[0-7]|[78]\\d)|6(?:20|3[035]|4[045]|5[05]|77|8[1-9]|9[059])|(?:7[5-8]|8\\d)\\d)\\d{5}",
|
|
6319
|
+
,
|
|
6343
6320
|
,
|
|
6344
|
-
"(\\d{4})(\\d{4})",
|
|
6345
|
-
"$1 $2",
|
|
6346
|
-
["[125-8]"]
|
|
6347
|
-
]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6348
|
-
NL: [, [, , "(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}", , , , , , , [5, 6, 7, 8, 9, 10, 11]], [, , "(?:1(?:[035]\\d|1[13-578]|6[124-8]|7[24]|8[0-467])|2(?:[0346]\\d|2[2-46-9]|5[125]|9[479])|3(?:[03568]\\d|1[3-8]|2[01]|4[1-8])|4(?:[0356]\\d|1[1-368]|7[58]|8[15-8]|9[23579])|5(?:[0358]\\d|[19][1-9]|2[1-57-9]|4[13-8]|6[126]|7[0-3578])|7\\d\\d)\\d{6}", , , , "101234567", , , [9]], [
|
|
6349
6321
|
,
|
|
6322
|
+
"81234567"
|
|
6323
|
+
], [, , "1800\\d{4}", , , , "18001234"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NI", 505, "00", , , , , , , , [[, "(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6324
|
+
NL: [, [, , "(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}", , , , , , , [5, 6, 7, 8, 9, 10, 11]], [
|
|
6350
6325
|
,
|
|
6351
|
-
"(?:6[1-58]|970\\d)\\d{7}",
|
|
6352
6326
|
,
|
|
6327
|
+
"(?:1(?:[035]\\d|1[13-578]|6[124-8]|7[24]|8[0-467])|2(?:[0346]\\d|2[2-46-9]|5[125]|9[479])|3(?:[03568]\\d|1[3-8]|2[01]|4[1-8])|4(?:[0356]\\d|1[1-368]|7[58]|8[15-8]|9[23579])|5(?:[0358]\\d|[19][1-9]|2[1-57-9]|4[13-8]|6[126]|7[0-3578])|7\\d\\d)\\d{6}",
|
|
6353
6328
|
,
|
|
6354
6329
|
,
|
|
6355
|
-
"612345678",
|
|
6356
6330
|
,
|
|
6331
|
+
"101234567",
|
|
6357
6332
|
,
|
|
6358
|
-
|
|
6359
|
-
|
|
6333
|
+
,
|
|
6334
|
+
[9]
|
|
6335
|
+
], [, , "(?:6[1-58]|970\\d)\\d{7}", , , , "612345678", , , [9, 11]], [, , "800\\d{4,7}", , , , "8001234", , , [7, 8, 9, 10]], [, , "90[069]\\d{4,7}", , , , "9061234", , , [7, 8, 9, 10]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "(?:85|91)\\d{7}", , , , "851234567", , , [9]], "NL", 31, "00", "0", , , "0", , , , [[, "(\\d{4})", "$1", ["1[238]|[34]"]], [, "(\\d{2})(\\d{3,4})", "$1 $2", ["14"]], [, "(\\d{6})", "$1", ["1"]], [, "(\\d{3})(\\d{4,7})", "$1 $2", ["[89]0"], "0$1"], [, "(\\d{2})(\\d{7})", "$1 $2", ["66"], "0$1"], [, "(\\d)(\\d{8})", "$1 $2", ["6"], "0$1"], [
|
|
6360
6336
|
,
|
|
6361
6337
|
"(\\d{3})(\\d{3})(\\d{3})",
|
|
6362
6338
|
"$1 $2 $3",
|
|
6363
6339
|
["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"],
|
|
6364
6340
|
"0$1"
|
|
6365
|
-
], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], [[, "(\\d{3})(\\d{4,7})", "$1 $2", ["[89]0"], "0$1"], [, "(\\d{2})(\\d{7})", "$1 $2", ["66"], "0$1"], [, "(\\d)(\\d{8})", "$1 $2", ["6"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], [
|
|
6341
|
+
], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], [[, "(\\d{3})(\\d{4,7})", "$1 $2", ["[89]0"], "0$1"], [, "(\\d{2})(\\d{7})", "$1 $2", ["66"], "0$1"], [, "(\\d)(\\d{8})", "$1 $2", ["6"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-578]|91"], "0$1"], [
|
|
6366
6342
|
,
|
|
6343
|
+
"(\\d{3})(\\d{3})(\\d{5})",
|
|
6344
|
+
"$1 $2 $3",
|
|
6345
|
+
["9"],
|
|
6346
|
+
"0$1"
|
|
6347
|
+
]], [, , "66\\d{7}", , , , "662345678", , , [9]], , , [, , "140(?:1[035]|2[0346]|3[03568]|4[0356]|5[0358]|8[458])|140(?:1[16-8]|2[259]|3[124]|4[17-9]|5[124679]|7)\\d", , , , , , , [5, 6]], [, , "140(?:1[035]|2[0346]|3[03568]|4[0356]|5[0358]|8[458])|(?:140(?:1[16-8]|2[259]|3[124]|4[17-9]|5[124679]|7)|8[478]\\d{6})\\d", , , , "14020", , , [5, 6, 9]], , , [, , , , , , , , , [-1]]],
|
|
6348
|
+
NO: [, [, , "(?:0|[2-9]\\d{3})\\d{4}", , , , , , , [5, 8]], [, , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-4679]|7[0-8])\\d{6}", , , , "21234567", , , [8]], [
|
|
6367
6349
|
,
|
|
6368
|
-
"140(?:1[035]|2[0346]|3[03568]|4[0356]|5[0358]|8[458])|140(?:1[16-8]|2[259]|3[124]|4[17-9]|5[124679]|7)\\d",
|
|
6369
6350
|
,
|
|
6351
|
+
"(?:4[015-8]|9\\d)\\d{6}",
|
|
6370
6352
|
,
|
|
6371
6353
|
,
|
|
6372
6354
|
,
|
|
6355
|
+
"40612345",
|
|
6373
6356
|
,
|
|
6374
6357
|
,
|
|
6375
|
-
[
|
|
6376
|
-
], [, , "
|
|
6377
|
-
NO: [, [, , "(?:0|[2-9]\\d{3})\\d{4}", , , , , , , [5, 8]], [, , "(?:2[1-4]|3[1-3578]|5[1-35-7]|6[1-4679]|7[0-8])\\d{6}", , , , "21234567", , , [8]], [, , "(?:4[015-8]|9\\d)\\d{6}", , , , "40612345", , , [8]], [
|
|
6358
|
+
[8]
|
|
6359
|
+
], [, , "80[01]\\d{5}", , , , "80012345", , , [8]], [, , "82[09]\\d{5}", , , , "82012345", , , [8]], [, , "810(?:0[0-6]|[2-8]\\d)\\d{3}", , , , "81021234", , , [8]], [, , "880\\d{5}", , , , "88012345", , , [8]], [, , "85[0-5]\\d{5}", , , , "85012345", , , [8]], "NO", 47, "00", , , , , , , , [[, "(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], [, "(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]"]]], , [, , , , , , , , , [-1]], 1, "[02-689]|7[0-8]", [, , , , , , , , , [-1]], [, , "(?:0[2-9]|81(?:0(?:0[7-9]|1\\d)|5\\d\\d))\\d{3}", , , , "02000"], , , [
|
|
6378
6360
|
,
|
|
6379
6361
|
,
|
|
6380
|
-
"
|
|
6362
|
+
"81[23]\\d{5}",
|
|
6381
6363
|
,
|
|
6382
6364
|
,
|
|
6383
6365
|
,
|
|
6384
|
-
"
|
|
6366
|
+
"81212345",
|
|
6385
6367
|
,
|
|
6386
6368
|
,
|
|
6387
6369
|
[8]
|
|
6388
|
-
]
|
|
6389
|
-
NP: [, [
|
|
6370
|
+
]],
|
|
6371
|
+
NP: [, [, , "(?:1\\d|9)\\d{9}|[1-9]\\d{7}", , , , , , , [8, 10, 11], [6, 7]], [, , "(?:1[0-6]\\d|99[02-6])\\d{5}|(?:2[13-79]|3[135-8]|4[146-9]|5[135-7]|6[13-9]|7[15-9]|8[1-46-9]|9[1-7])[2-6]\\d{5}", , , , "14567890", , , [8], [6, 7]], [, , "9(?:00|6[0-3]|7[024-6]|8[0-24-68])\\d{7}", , , , "9841234567", , , [10]], [, , "1(?:66001|800\\d\\d)\\d{5}", , , , "16600101234", , , [11]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NP", 977, "00", "0", , , "0", , , , [[, "(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"], [
|
|
6372
|
+
,
|
|
6373
|
+
"(\\d{2})(\\d{6})",
|
|
6374
|
+
"$1-$2",
|
|
6375
|
+
["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"],
|
|
6376
|
+
"0$1"
|
|
6377
|
+
], [, "(\\d{3})(\\d{7})", "$1-$2", ["9"]], [, "(\\d{4})(\\d{2})(\\d{5})", "$1-$2-$3", ["1"]]], [[, "(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"], [, "(\\d{2})(\\d{6})", "$1-$2", ["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"], "0$1"], [, "(\\d{3})(\\d{7})", "$1-$2", ["9"]]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6378
|
+
NR: [, [, , "(?:444|(?:55|8\\d)\\d|666)\\d{4}", , , , , , , [7]], [, , "444\\d{4}", , , , "4441234"], [, , "(?:55[3-9]|666|8\\d\\d)\\d{4}", , , , "5551234"], [
|
|
6390
6379
|
,
|
|
6391
6380
|
,
|
|
6392
|
-
"(?:1\\d|9)\\d{9}|[1-9]\\d{7}",
|
|
6393
6381
|
,
|
|
6394
6382
|
,
|
|
6395
6383
|
,
|
|
6396
6384
|
,
|
|
6397
6385
|
,
|
|
6398
6386
|
,
|
|
6399
|
-
[8, 10, 11],
|
|
6400
|
-
[6, 7]
|
|
6401
|
-
], [, , "(?:1[0-6]\\d|99[02-6])\\d{5}|(?:2[13-79]|3[135-8]|4[146-9]|5[135-7]|6[13-9]|7[15-9]|8[1-46-9]|9[1-7])[2-6]\\d{5}", , , , "14567890", , , [8], [6, 7]], [, , "9(?:00|6[0-3]|7[024-6]|8[0-24-68])\\d{7}", , , , "9841234567", , , [10]], [, , "1(?:66001|800\\d\\d)\\d{5}", , , , "16600101234", , , [11]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NP", 977, "00", "0", , , "0", , , , [
|
|
6402
|
-
[, "(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"],
|
|
6403
|
-
[, "(\\d{2})(\\d{6})", "$1-$2", ["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"], "0$1"],
|
|
6404
|
-
[, "(\\d{3})(\\d{7})", "$1-$2", ["9"]],
|
|
6405
|
-
[, "(\\d{4})(\\d{2})(\\d{5})", "$1-$2-$3", ["1"]]
|
|
6406
|
-
], [[, "(\\d)(\\d{7})", "$1-$2", ["1[2-6]"], "0$1"], [, "(\\d{2})(\\d{6})", "$1-$2", ["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"], "0$1"], [, "(\\d{3})(\\d{7})", "$1-$2", ["9"]]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6407
|
-
NR: [
|
|
6408
6387
|
,
|
|
6409
|
-
[
|
|
6410
|
-
|
|
6411
|
-
|
|
6388
|
+
[-1]
|
|
6389
|
+
], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "NR", 674, "00", , , , , , , , [[, "(\\d{3})(\\d{4})", "$1 $2", ["[4-68]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6390
|
+
NU: [
|
|
6391
|
+
,
|
|
6392
|
+
[, , "(?:[4-7]|888\\d)\\d{3}", , , , , , , [4, 7]],
|
|
6393
|
+
[, , "[47]\\d{3}", , , , "7012", , , [4]],
|
|
6394
|
+
[, , "(?:[56]|888[1-9])\\d{3}", , , , "8884012"],
|
|
6412
6395
|
[, , , , , , , , , [-1]],
|
|
6413
6396
|
[, , , , , , , , , [-1]],
|
|
6414
6397
|
[, , , , , , , , , [-1]],
|
|
6415
6398
|
[, , , , , , , , , [-1]],
|
|
6416
6399
|
[, , , , , , , , , [-1]],
|
|
6417
|
-
"
|
|
6418
|
-
|
|
6400
|
+
"NU",
|
|
6401
|
+
683,
|
|
6419
6402
|
"00",
|
|
6420
6403
|
,
|
|
6421
6404
|
,
|
|
@@ -6424,7 +6407,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
6424
6407
|
,
|
|
6425
6408
|
,
|
|
6426
6409
|
,
|
|
6427
|
-
[[, "(\\d{3})(\\d{4})", "$1 $2", ["
|
|
6410
|
+
[[, "(\\d{3})(\\d{4})", "$1 $2", ["8"]]],
|
|
6428
6411
|
,
|
|
6429
6412
|
[, , , , , , , , , [-1]],
|
|
6430
6413
|
,
|
|
@@ -6435,103 +6418,85 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
6435
6418
|
,
|
|
6436
6419
|
[, , , , , , , , , [-1]]
|
|
6437
6420
|
],
|
|
6438
|
-
|
|
6439
|
-
NZ: [, [
|
|
6440
|
-
,
|
|
6441
|
-
,
|
|
6442
|
-
"[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}",
|
|
6443
|
-
,
|
|
6444
|
-
,
|
|
6445
|
-
,
|
|
6446
|
-
,
|
|
6447
|
-
,
|
|
6448
|
-
,
|
|
6449
|
-
[5, 6, 7, 8, 9, 10]
|
|
6450
|
-
], [, , "24099\\d{3}|(?:3[2-79]|[49][2-9]|6[235-9]|7[2-57-9])\\d{6}", , , , "32345678", , , [8], [7]], [, , "2(?:[0-27-9]\\d|6)\\d{6,7}|2(?:1\\d|75)\\d{5}", , , , "211234567", , , [8, 9, 10]], [, , "508\\d{6,7}|80\\d{6,8}", , , , "800123456", , , [8, 9, 10]], [, , "(?:1[13-57-9]\\d{5}|50(?:0[08]|30|66|77|88))\\d{3}|90\\d{6,8}", , , , "900123456", , , [7, 8, 9, 10]], [, , , , , , , , , [-1]], [, , "70\\d{7}", , , , "701234567", , , [9]], [, , , , , , , , , [-1]], "NZ", 64, "0(?:0|161)", "0", , , "0", , "00", , [[, "(\\d{2})(\\d{3,8})", "$1 $2", ["8[1-79]"], "0$1"], [
|
|
6451
|
-
,
|
|
6452
|
-
"(\\d{3})(\\d{2})(\\d{2,3})",
|
|
6453
|
-
"$1 $2 $3",
|
|
6454
|
-
["50[036-8]|8|90", "50(?:[0367]|88)|8|90"],
|
|
6455
|
-
"0$1"
|
|
6456
|
-
], [, "(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["24|[346]|7[2-57-9]|9[2-9]"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:10|74)|[589]"], "0$1"], [, "(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1|2[028]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{3,5})", "$1 $2 $3", ["2(?:[169]|7[0-35-9])|7"], "0$1"]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , "8(?:1[16-9]|22|3\\d|4[045]|5[459]|6[235-9]|7[0-3579]|90)\\d{2,7}", , , , "83012378"], , , [, , , , , , , , , [-1]]],
|
|
6457
|
-
OM: [, [
|
|
6458
|
-
,
|
|
6459
|
-
,
|
|
6460
|
-
"(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}",
|
|
6461
|
-
,
|
|
6462
|
-
,
|
|
6463
|
-
,
|
|
6421
|
+
NZ: [
|
|
6464
6422
|
,
|
|
6423
|
+
[, , "[1289]\\d{9}|50\\d{5}(?:\\d{2,3})?|[27-9]\\d{7,8}|(?:[34]\\d|6[0-35-9])\\d{6}|8\\d{4,6}", , , , , , , [5, 6, 7, 8, 9, 10]],
|
|
6424
|
+
[, , "24099\\d{3}|(?:3[2-79]|[49][2-9]|6[235-9]|7[2-57-9])\\d{6}", , , , "32345678", , , [8], [7]],
|
|
6425
|
+
[, , "2(?:[0-27-9]\\d|6)\\d{6,7}|2(?:1\\d|75)\\d{5}", , , , "211234567", , , [8, 9, 10]],
|
|
6426
|
+
[, , "508\\d{6,7}|80\\d{6,8}", , , , "800123456", , , [8, 9, 10]],
|
|
6427
|
+
[, , "(?:1[13-57-9]\\d{5}|50(?:0[08]|30|66|77|88))\\d{3}|90\\d{6,8}", , , , "900123456", , , [7, 8, 9, 10]],
|
|
6428
|
+
[, , , , , , , , , [-1]],
|
|
6429
|
+
[
|
|
6430
|
+
,
|
|
6431
|
+
,
|
|
6432
|
+
"70\\d{7}",
|
|
6433
|
+
,
|
|
6434
|
+
,
|
|
6435
|
+
,
|
|
6436
|
+
"701234567",
|
|
6437
|
+
,
|
|
6438
|
+
,
|
|
6439
|
+
[9]
|
|
6440
|
+
],
|
|
6441
|
+
[, , , , , , , , , [-1]],
|
|
6442
|
+
"NZ",
|
|
6443
|
+
64,
|
|
6444
|
+
"0(?:0|161)",
|
|
6445
|
+
"0",
|
|
6465
6446
|
,
|
|
6466
6447
|
,
|
|
6467
|
-
|
|
6468
|
-
], [, , "2[1-6]\\d{6}", , , , "23123456", , , [8]], [, , "(?:1505|90[1-9]\\d)\\d{4}|(?:7[126-9]|9[1-9])\\d{6}", , , , "92123456", , , [8]], [, , "8007\\d{4,5}|(?:500|800[05])\\d{4}", , , , "80071234"], [, , "900\\d{5}", , , , "90012345", , , [8]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "OM", 968, "00", , , , , , , , [[, "(\\d{3})(\\d{4,6})", "$1 $2", ["[58]"]], [, "(\\d{2})(\\d{6})", "$1 $2", ["2"]], [, "(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6469
|
-
PA: [, [
|
|
6448
|
+
"0",
|
|
6470
6449
|
,
|
|
6450
|
+
"00",
|
|
6471
6451
|
,
|
|
6472
|
-
"(
|
|
6452
|
+
[[, "(\\d{2})(\\d{3,8})", "$1 $2", ["8[1-79]"], "0$1"], [, "(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["50[036-8]|8|90", "50(?:[0367]|88)|8|90"], "0$1"], [, "(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["24|[346]|7[2-57-9]|9[2-9]"], "0$1"], [, "(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:10|74)|[589]"], "0$1"], [, "(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1|2[028]"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{3,5})", "$1 $2 $3", ["2(?:[169]|7[0-35-9])|7"], "0$1"]],
|
|
6473
6453
|
,
|
|
6454
|
+
[, , , , , , , , , [-1]],
|
|
6474
6455
|
,
|
|
6475
6456
|
,
|
|
6457
|
+
[, , , , , , , , , [-1]],
|
|
6458
|
+
[, , "8(?:1[16-9]|22|3\\d|4[045]|5[459]|6[235-9]|7[0-3579]|90)\\d{2,7}", , , , "83012378"],
|
|
6476
6459
|
,
|
|
6477
6460
|
,
|
|
6461
|
+
[, , , , , , , , , [-1]]
|
|
6462
|
+
],
|
|
6463
|
+
OM: [, [, , "(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}", , , , , , , [7, 8, 9]], [, , "2[1-6]\\d{6}", , , , "23123456", , , [8]], [, , "(?:1505|90[1-9]\\d)\\d{4}|(?:7[126-9]|9[1-9])\\d{6}", , , , "92123456", , , [8]], [, , "8007\\d{4,5}|(?:500|800[05])\\d{4}", , , , "80071234"], [, , "900\\d{5}", , , , "90012345", , , [8]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "OM", 968, "00", , , , , , , , [[
|
|
6478
6464
|
,
|
|
6479
|
-
|
|
6480
|
-
|
|
6465
|
+
"(\\d{3})(\\d{4,6})",
|
|
6466
|
+
"$1 $2",
|
|
6467
|
+
["[58]"]
|
|
6468
|
+
], [, "(\\d{2})(\\d{6})", "$1 $2", ["2"]], [, "(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6469
|
+
PA: [, [, , "(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}", , , , , , , [7, 8, 10, 11]], [
|
|
6481
6470
|
,
|
|
6482
6471
|
,
|
|
6483
|
-
"(?:1[
|
|
6472
|
+
"(?:1(?:0\\d|1[479]|2[37]|3[0137]|4[17]|5[05]|6[058]|7[0167]|8[2358]|9[1389])|2(?:[0235-79]\\d|1[0-7]|4[013-9]|8[02-9])|3(?:[089]\\d|1[0-7]|2[0-5]|33|4[0-79]|5[0-35]|6[068]|7[0-8])|4(?:00|3[0-579]|4\\d|7[0-57-9])|5(?:[01]\\d|2[0-7]|[56]0|79)|7(?:0[09]|2[0-26-8]|3[03]|4[04]|5[05-9]|6[0156]|7[0-24-9]|8[5-9]|90)|8(?:09|2[89]|3\\d|4[0-24-689]|5[014]|8[02])|9(?:0[5-9]|1[0135-8]|2[036-9]|3[35-79]|40|5[0457-9]|6[05-9]|7[04-9]|8[35-8]|9\\d))\\d{4}",
|
|
6484
6473
|
,
|
|
6485
6474
|
,
|
|
6486
6475
|
,
|
|
6487
|
-
"
|
|
6476
|
+
"2001234",
|
|
6488
6477
|
,
|
|
6489
6478
|
,
|
|
6490
|
-
[7
|
|
6491
|
-
], [, , "800\\d{4,5}|(?:00800|800\\d)\\d{6}", , , , "8001234"], [, , "(?:8(?:22|55|60|7[78]|86)|9(?:00|81))\\d{4}", , , , "8601234", , , [7]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "PA", 507, "00", , , , , , , , [[, "(\\d{3})(\\d{4})", "$1-$2", ["[1-57-9]"]], [, "(\\d{4})(\\d{4})", "$1-$2", ["[68]"]], [, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6492
|
-
PE: [
|
|
6479
|
+
[7]
|
|
6480
|
+
], [, , "(?:1[16]1|21[89]|6\\d{3}|8(?:1[01]|7[23]))\\d{4}", , , , "61234567", , , [7, 8]], [, , "800\\d{4,5}|(?:00800|800\\d)\\d{6}", , , , "8001234"], [, , "(?:8(?:22|55|60|7[78]|86)|9(?:00|81))\\d{4}", , , , "8601234", , , [7]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "PA", 507, "00", , , , , , , , [[, "(\\d{3})(\\d{4})", "$1-$2", ["[1-57-9]"]], [, "(\\d{4})(\\d{4})", "$1-$2", ["[68]"]], [, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6481
|
+
PE: [, [
|
|
6493
6482
|
,
|
|
6494
|
-
[, , "(?:[14-8]|9\\d)\\d{7}", , , , , , , [8, 9], [6, 7]],
|
|
6495
|
-
[
|
|
6496
|
-
,
|
|
6497
|
-
,
|
|
6498
|
-
"(?:(?:4[34]|5[14])[0-8]\\d|7(?:173|3[0-8]\\d)|8(?:10[05689]|6(?:0[06-9]|1[6-9]|29)|7(?:0[569]|[56]0)))\\d{4}|(?:1[0-8]|4[12]|5[236]|6[1-7]|7[246]|8[2-4])\\d{6}",
|
|
6499
|
-
,
|
|
6500
|
-
,
|
|
6501
|
-
,
|
|
6502
|
-
"11234567",
|
|
6503
|
-
,
|
|
6504
|
-
,
|
|
6505
|
-
[8],
|
|
6506
|
-
[6, 7]
|
|
6507
|
-
],
|
|
6508
|
-
[, , "9\\d{8}", , , , "912345678", , , [9]],
|
|
6509
|
-
[, , "800\\d{5}", , , , "80012345", , , [8]],
|
|
6510
|
-
[, , "805\\d{5}", , , , "80512345", , , [8]],
|
|
6511
|
-
[, , "801\\d{5}", , , , "80112345", , , [8]],
|
|
6512
|
-
[, , "80[24]\\d{5}", , , , "80212345", , , [8]],
|
|
6513
|
-
[, , , , , , , , , [-1]],
|
|
6514
|
-
"PE",
|
|
6515
|
-
51,
|
|
6516
|
-
"00|19(?:1[124]|77|90)00",
|
|
6517
|
-
"0",
|
|
6518
|
-
" Anexo ",
|
|
6519
6483
|
,
|
|
6520
|
-
"
|
|
6484
|
+
"(?:[14-8]|9\\d)\\d{7}",
|
|
6521
6485
|
,
|
|
6522
|
-
"00",
|
|
6523
6486
|
,
|
|
6524
|
-
[[, "(\\d{3})(\\d{5})", "$1 $2", ["80"], "(0$1)"], [, "(\\d)(\\d{7})", "$1 $2", ["1"], "(0$1)"], [, "(\\d{2})(\\d{6})", "$1 $2", ["[4-8]"], "(0$1)"], [, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"]]],
|
|
6525
6487
|
,
|
|
6526
|
-
[, , , , , , , , , [-1]],
|
|
6527
6488
|
,
|
|
6528
6489
|
,
|
|
6529
|
-
[, , , , , , , , , [-1]],
|
|
6530
|
-
[, , , , , , , , , [-1]],
|
|
6531
6490
|
,
|
|
6491
|
+
[8, 9],
|
|
6492
|
+
[6, 7]
|
|
6493
|
+
], [, , "(?:(?:4[34]|5[14])[0-8]\\d|7(?:173|3[0-8]\\d)|8(?:10[05689]|6(?:0[06-9]|1[6-9]|29)|7(?:0[569]|[56]0)))\\d{4}|(?:1[0-8]|4[12]|5[236]|6[1-7]|7[246]|8[2-4])\\d{6}", , , , "11234567", , , [8], [6, 7]], [, , "9\\d{8}", , , , "912345678", , , [9]], [, , "800\\d{5}", , , , "80012345", , , [8]], [, , "805\\d{5}", , , , "80512345", , , [8]], [, , "801\\d{5}", , , , "80112345", , , [8]], [, , "80[24]\\d{5}", , , , "80212345", , , [8]], [, , , , , , , , , [-1]], "PE", 51, "00|19(?:1[124]|77|90)00", "0", " Anexo ", , "0", , "00", , [[
|
|
6532
6494
|
,
|
|
6533
|
-
|
|
6534
|
-
|
|
6495
|
+
"(\\d{3})(\\d{5})",
|
|
6496
|
+
"$1 $2",
|
|
6497
|
+
["80"],
|
|
6498
|
+
"(0$1)"
|
|
6499
|
+
], [, "(\\d)(\\d{7})", "$1 $2", ["1"], "(0$1)"], [, "(\\d{2})(\\d{6})", "$1 $2", ["[4-8]"], "(0$1)"], [, "(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6535
6500
|
PF: [
|
|
6536
6501
|
,
|
|
6537
6502
|
[, , "4\\d{5}(?:\\d{2})?|8\\d{7,8}", , , , , , , [6, 8, 9]],
|
|
@@ -6563,30 +6528,37 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
6563
6528
|
,
|
|
6564
6529
|
[, , , , , , , , , [-1]]
|
|
6565
6530
|
],
|
|
6566
|
-
PG: [, [, , "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", , , , , , , [7, 8]], [, , "(?:(?:3[0-2]|4[257]|5[34]|9[78])\\d|64[1-9]|85[02-46-9])\\d{4}", , , , "3123456", , , [7]], [, , "(?:7\\d|8[1-38])\\d{6}", , , , "70123456", , , [8]], [
|
|
6531
|
+
PG: [, [, , "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", , , , , , , [7, 8]], [, , "(?:(?:3[0-2]|4[257]|5[34]|9[78])\\d|64[1-9]|85[02-46-9])\\d{4}", , , , "3123456", , , [7]], [, , "(?:7\\d|8[1-38])\\d{6}", , , , "70123456", , , [8]], [
|
|
6567
6532
|
,
|
|
6568
|
-
"(\\d{3})(\\d{4})",
|
|
6569
|
-
"$1 $2",
|
|
6570
|
-
["18|[2-69]|85"]
|
|
6571
|
-
], [, "(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], , [, , "27[01]\\d{4}", , , , "2700123", , , [7]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6572
|
-
PH: [, [, , "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", , , , , , , [6, 8, 9, 10, 11, 12, 13], [4, 5, 7]], [, , "(?:(?:2[3-8]|3[2-68]|4[2-9]|5[2-6]|6[2-58]|7[24578])\\d{3}|88(?:22\\d\\d|42))\\d{4}|(?:2|8[2-8]\\d\\d)\\d{5}", , , , "232345678", , , [6, 8, 9, 10], [4, 5, 7]], [
|
|
6573
6533
|
,
|
|
6534
|
+
"180\\d{4}",
|
|
6574
6535
|
,
|
|
6575
|
-
"(?:8(?:1[37]|9[5-8])|9(?:0[5-9]|1[0-24-9]|[235-7]\\d|4[2-9]|8[135-9]|9[1-9]))\\d{7}",
|
|
6576
6536
|
,
|
|
6577
6537
|
,
|
|
6538
|
+
"1801234",
|
|
6578
6539
|
,
|
|
6579
|
-
"9051234567",
|
|
6580
6540
|
,
|
|
6541
|
+
[7]
|
|
6542
|
+
], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "2(?:0[0-57]|7[568])\\d{4}", , , , "2751234", , , [7]], "PG", 675, "00|140[1-3]", , , , , , "00", , [[, "(\\d{3})(\\d{4})", "$1 $2", ["18|[2-69]|85"]], [, "(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], , [, , "27[01]\\d{4}", , , , "2700123", , , [7]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6543
|
+
PH: [, [, , "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", , , , , , , [6, 8, 9, 10, 11, 12, 13], [4, 5, 7]], [
|
|
6581
6544
|
,
|
|
6582
|
-
[10]
|
|
6583
|
-
], [, , "1800\\d{7,9}", , , , "180012345678", , , [11, 12, 13]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "PH", 63, "00", "0", , , "0", , , , [[, "(\\d)(\\d{5})", "$1 $2", ["2"], "(0$1)"], [, "(\\d{4})(\\d{4,6})", "$1 $2", ["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2", "3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"], "(0$1)"], [
|
|
6584
6545
|
,
|
|
6585
|
-
"(\\d{
|
|
6546
|
+
"(?:(?:2[3-8]|3[2-68]|4[2-9]|5[2-6]|6[2-58]|7[24578])\\d{3}|88(?:22\\d\\d|42))\\d{4}|(?:2|8[2-8]\\d\\d)\\d{5}",
|
|
6547
|
+
,
|
|
6548
|
+
,
|
|
6549
|
+
,
|
|
6550
|
+
"232345678",
|
|
6551
|
+
,
|
|
6552
|
+
,
|
|
6553
|
+
[6, 8, 9, 10],
|
|
6554
|
+
[4, 5, 7]
|
|
6555
|
+
], [, , "(?:8(?:1[37]|9[5-8])|9(?:0[5-9]|1[0-24-9]|[235-7]\\d|4[2-9]|8[135-9]|9[1-9]))\\d{7}", , , , "9051234567", , , [10]], [, , "1800\\d{7,9}", , , , "180012345678", , , [11, 12, 13]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "PH", 63, "00", "0", , , "0", , , , [[, "(\\d)(\\d{5})", "$1 $2", ["2"], "(0$1)"], [
|
|
6556
|
+
,
|
|
6557
|
+
"(\\d{4})(\\d{4,6})",
|
|
6586
6558
|
"$1 $2",
|
|
6587
|
-
["
|
|
6559
|
+
["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2", "3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"],
|
|
6588
6560
|
"(0$1)"
|
|
6589
|
-
], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "(0$1)"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|8[2-8]"], "(0$1)"], [, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], [, "(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["1"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6561
|
+
], [, "(\\d{5})(\\d{4})", "$1 $2", ["346|4(?:27|9[35])|883", "3469|4(?:279|9(?:30|56))|8834"], "(0$1)"], [, "(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "(0$1)"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|8[2-8]"], "(0$1)"], [, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], [, "(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]], [, "(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["1"]]], , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
6590
6562
|
PK: [, [
|
|
6591
6563
|
,
|
|
6592
6564
|
,
|
|
@@ -6816,7 +6788,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
6816
6788
|
,
|
|
6817
6789
|
,
|
|
6818
6790
|
"211234567"
|
|
6819
|
-
], [, , "(?:630|702)0\\d{5}|(?:6(?:
|
|
6791
|
+
], [, , "(?:630|702)0\\d{5}|(?:6(?:00|2\\d)|7(?:0[013-9]|1[0-3]|[2-7]\\d|8[03-8]|9[0-39]))\\d{6}", , , , "712034567", , , [9]], [, , "800\\d{6}", , , , "800123456", , , [9]], [, , "90[0136]\\d{6}", , , , "900123456", , , [9]], [, , "801\\d{6}", , , , "801123456", , , [9]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "RO", 40, "00", "0", " int ", , "0", , , , [[, "(\\d{3})(\\d{3})", "$1 $2", ["2[3-6]", "2[3-6]\\d9"], "0$1"], [, "(\\d{2})(\\d{4})", "$1 $2", ["219|31"], "0$1"], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[23]1"], "0$1"], [
|
|
6820
6792
|
,
|
|
6821
6793
|
"(\\d{3})(\\d{3})(\\d{3})",
|
|
6822
6794
|
"$1 $2 $3",
|
|
@@ -6971,7 +6943,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
6971
6943
|
,
|
|
6972
6944
|
,
|
|
6973
6945
|
[8]
|
|
6974
|
-
], [, , "8(?:09[0-
|
|
6946
|
+
], [, , "8(?:09[0-689]|95[0-2])\\d{4}|(?:8(?:0[1-8]|[1-8]\\d|9[0-4])|9[0-8]\\d)\\d{5}", , , , "81234567", , , [8]], [, , "(?:18|8)00\\d{7}", , , , "18001234567", , , [10, 11]], [, , "1900\\d{7}", , , , "19001234567", , , [11]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , "(?:3[12]\\d|666)\\d{5}", , , , "31234567", , , [8]], "SG", 65, "0[0-3]\\d", , , , , , , , [
|
|
6975
6947
|
[, "(\\d{4,5})", "$1", ["1[013-9]|77", "1(?:[013-8]|9(?:0[1-9]|[1-9]))|77"]],
|
|
6976
6948
|
[, "(\\d{4})(\\d{4})", "$1 $2", ["[369]|8(?:0[1-9]|[1-9])"]],
|
|
6977
6949
|
[, "(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]],
|
|
@@ -7091,7 +7063,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
7091
7063
|
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"], [
|
|
7092
7064
|
,
|
|
7093
7065
|
,
|
|
7094
|
-
"7(?:(?:[06-8]\\d|21|90)\\d|5(?:01|[19]0|25|[38]3|[4-7]\\d))\\d{5}",
|
|
7066
|
+
"7(?:(?:[06-8]\\d|21|90)\\d|5(?:0[01]|[19]0|2[25]|[38]3|[4-7]\\d))\\d{5}",
|
|
7095
7067
|
,
|
|
7096
7068
|
,
|
|
7097
7069
|
,
|
|
@@ -7241,62 +7213,62 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
7241
7213
|
,
|
|
7242
7214
|
[10, 13]
|
|
7243
7215
|
], [, , "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]]],
|
|
7244
|
-
TJ: [
|
|
7216
|
+
TJ: [, [, , "[0-57-9]\\d{8}", , , , , , , [9], [3, 5, 6, 7]], [
|
|
7245
7217
|
,
|
|
7246
|
-
|
|
7247
|
-
[
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
|
|
7252
|
-
|
|
7253
|
-
|
|
7254
|
-
|
|
7255
|
-
|
|
7256
|
-
|
|
7257
|
-
,
|
|
7258
|
-
[3, 5, 6, 7]
|
|
7259
|
-
],
|
|
7260
|
-
[, , "(?:33[03-9]|4(?:1[18]|4[02-479])|81[1-9])\\d{6}|(?:0[0-57-9]|1[017]|2[02]|[34]0|5[05]|7[01578]|8[078]|9\\d)\\d{7}", , , , "917123456"],
|
|
7261
|
-
[, , , , , , , , , [-1]],
|
|
7262
|
-
[, , , , , , , , , [-1]],
|
|
7263
|
-
[, , , , , , , , , [-1]],
|
|
7264
|
-
[, , , , , , , , , [-1]],
|
|
7265
|
-
[, , , , , , , , , [-1]],
|
|
7266
|
-
"TJ",
|
|
7267
|
-
992,
|
|
7268
|
-
"810",
|
|
7218
|
+
,
|
|
7219
|
+
"(?:3(?:1[3-5]|2[245]|3[12]|4[24-7]|5[25]|72)|4(?:46|74|87))\\d{6}",
|
|
7220
|
+
,
|
|
7221
|
+
,
|
|
7222
|
+
,
|
|
7223
|
+
"372123456",
|
|
7224
|
+
,
|
|
7225
|
+
,
|
|
7226
|
+
,
|
|
7227
|
+
[3, 5, 6, 7]
|
|
7228
|
+
], [, , "(?:33[03-9]|4(?:1[18]|4[02-479])|81[1-9])\\d{6}|(?:[09]\\d|1[017]|2[02]|[34]0|5[05]|7[01578]|8[078])\\d{7}", , , , "917123456"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TJ", 992, "810", , , , , , "8~10", , [[, "(\\d{6})(\\d)(\\d{2})", "$1 $2 $3", ["331", "3317"]], [, "(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["44[02-479]|[34]7"]], [, "(\\d{4})(\\d)(\\d{4})", "$1 $2 $3", ["3(?:[1245]|3[12])"]], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[0-57-9]"]]], , [
|
|
7269
7229
|
,
|
|
7270
7230
|
,
|
|
7271
7231
|
,
|
|
7272
7232
|
,
|
|
7273
7233
|
,
|
|
7274
|
-
"8~10",
|
|
7275
7234
|
,
|
|
7276
|
-
[[, "(\\d{6})(\\d)(\\d{2})", "$1 $2 $3", ["331", "3317"]], [, "(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["44[02-479]|[34]7"]], [, "(\\d{4})(\\d)(\\d{4})", "$1 $2 $3", ["3(?:[1245]|3[12])"]], [, "(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[0-57-9]"]]],
|
|
7277
7235
|
,
|
|
7278
|
-
[, , , , , , , , , [-1]],
|
|
7279
7236
|
,
|
|
7280
7237
|
,
|
|
7238
|
+
[-1]
|
|
7239
|
+
], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
7240
|
+
TK: [, [, , "[2-47]\\d{3,6}", , , , , , , [4, 5, 6, 7]], [, , "(?:2[2-4]|[34]\\d)\\d{2,5}", , , , "3101"], [, , "7[2-4]\\d{2,5}", , , , "7290"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TK", 690, "00", , , , , , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
7241
|
+
TL: [
|
|
7242
|
+
,
|
|
7243
|
+
[, , "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", , , , , , , [7, 8]],
|
|
7244
|
+
[, , "(?:2[1-5]|3[1-9]|4[1-4])\\d{5}", , , , "2112345", , , [7]],
|
|
7245
|
+
[, , "7[2-8]\\d{6}", , , , "77212345", , , [8]],
|
|
7246
|
+
[, , "80\\d{5}", , , , "8012345", , , [7]],
|
|
7247
|
+
[, , "90\\d{5}", , , , "9012345", , , [7]],
|
|
7281
7248
|
[, , , , , , , , , [-1]],
|
|
7249
|
+
[, , "70\\d{5}", , , , "7012345", , , [7]],
|
|
7282
7250
|
[, , , , , , , , , [-1]],
|
|
7251
|
+
"TL",
|
|
7252
|
+
670,
|
|
7253
|
+
"00",
|
|
7283
7254
|
,
|
|
7284
7255
|
,
|
|
7285
|
-
[, , , , , , , , , [-1]]
|
|
7286
|
-
],
|
|
7287
|
-
TK: [, [, , "[2-47]\\d{3,6}", , , , , , , [4, 5, 6, 7]], [, , "(?:2[2-4]|[34]\\d)\\d{2,5}", , , , "3101"], [, , "7[2-4]\\d{2,5}", , , , "7290"], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], "TK", 690, "00", , , , , , , , , , [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]], [, , , , , , , , , [-1]], , , [, , , , , , , , , [-1]]],
|
|
7288
|
-
TL: [, [, , "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", , , , , , , [7, 8]], [, , "(?:2[1-5]|3[1-9]|4[1-4])\\d{5}", , , , "2112345", , , [7]], [
|
|
7289
7256
|
,
|
|
7290
7257
|
,
|
|
7291
|
-
"7[2-8]\\d{6}",
|
|
7292
7258
|
,
|
|
7293
7259
|
,
|
|
7294
7260
|
,
|
|
7295
|
-
"
|
|
7261
|
+
[[, "(\\d{3})(\\d{4})", "$1 $2", ["[2-489]|70"]], [, "(\\d{4})(\\d{4})", "$1 $2", ["7"]]],
|
|
7296
7262
|
,
|
|
7263
|
+
[, , , , , , , , , [-1]],
|
|
7297
7264
|
,
|
|
7298
|
-
|
|
7299
|
-
|
|
7265
|
+
,
|
|
7266
|
+
[, , , , , , , , , [-1]],
|
|
7267
|
+
[, , , , , , , , , [-1]],
|
|
7268
|
+
,
|
|
7269
|
+
,
|
|
7270
|
+
[, , , , , , , , , [-1]]
|
|
7271
|
+
],
|
|
7300
7272
|
TM: [, [, , "(?:[1-6]\\d|71)\\d{6}", , , , , , , [8]], [, , "(?:1(?:2\\d|3[1-9])|2(?:22|4[0-35-8])|3(?:22|4[03-9])|4(?:22|3[128]|4\\d|6[15])|5(?:22|5[7-9]|6[014-689]))\\d{5}", , , , "12345678"], [
|
|
7301
7273
|
,
|
|
7302
7274
|
,
|
|
@@ -7529,7 +7501,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
7529
7501
|
,
|
|
7530
7502
|
[, , , , , , , , , [-1]]
|
|
7531
7503
|
],
|
|
7532
|
-
UY: [, [, , "0004\\d{2,9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}", , , , , , , [6, 7, 8, 9, 10, 11, 12, 13]], [, , "(?:1(?:770|9(?:20|
|
|
7504
|
+
UY: [, [, , "0004\\d{2,9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}", , , , , , , [6, 7, 8, 9, 10, 11, 12, 13]], [, , "(?:1(?:770|9(?:20|[89]7))|(?:2\\d|4[2-7])\\d\\d)\\d{4}", , , , "21231234", , , [8], [7]], [, , "9[1-9]\\d{6}", , , , "94231234", , , [8]], [
|
|
7533
7505
|
,
|
|
7534
7506
|
,
|
|
7535
7507
|
"0004\\d{2,9}|(?:405|80[05])\\d{4}",
|
|
@@ -7996,7 +7968,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
7996
7968
|
D.h = void 0, D.g = function() {
|
|
7997
7969
|
return D.h ? D.h : D.h = new D();
|
|
7998
7970
|
};
|
|
7999
|
-
var
|
|
7971
|
+
var g1 = { 0: "0", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", "0": "0", "1": "1", "2": "2", "3": "3", "4": "4", "5": "5", "6": "6", "7": "7", "8": "8", "9": "9", "٠": "0", "١": "1", "٢": "2", "٣": "3", "٤": "4", "٥": "5", "٦": "6", "٧": "7", "٨": "8", "٩": "9", "۰": "0", "۱": "1", "۲": "2", "۳": "3", "۴": "4", "۵": "5", "۶": "6", "۷": "7", "۸": "8", "۹": "9" }, h2 = {
|
|
8000
7972
|
0: "0",
|
|
8001
7973
|
1: "1",
|
|
8002
7974
|
2: "2",
|
|
@@ -8077,36 +8049,36 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8077
8049
|
X: "9",
|
|
8078
8050
|
Y: "9",
|
|
8079
8051
|
Z: "9"
|
|
8080
|
-
}, f2 = RegExp("[++]+"),
|
|
8052
|
+
}, f2 = RegExp("[++]+"), Q = RegExp("^[++]+"), N1 = RegExp("([0-90-9٠-٩۰-۹])"), p2 = RegExp("[++0-90-9٠-٩۰-۹]"), g2 = /[\\\/] *x/, C2 = RegExp("[^0-90-9٠-٩۰-۹A-Za-z#]+$"), m2 = /(?:.*?[A-Za-z]){3}.*/, y2 = RegExp("^\\+([0-90-9٠-٩۰-۹]|[\\-\\.\\(\\)]?)*[0-90-9٠-٩۰-۹]([0-90-9٠-٩۰-۹]|[\\-\\.\\(\\)]?)*$"), _2 = RegExp("^([A-Za-z0-90-9٠-٩۰-۹]+((\\-)*[A-Za-z0-90-9٠-٩۰-۹])*\\.)*[A-Za-z]+((\\-)*[A-Za-z0-90-9٠-٩۰-۹])*\\.?$");
|
|
8081
8053
|
function Z(d) {
|
|
8082
8054
|
return "([0-90-9٠-٩۰-۹]{1," + d + "})";
|
|
8083
8055
|
}
|
|
8084
|
-
function
|
|
8056
|
+
function E1() {
|
|
8085
8057
|
return ";ext=" + Z("20") + "|[ \\t,]*(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)[:\\..]?[ \\t,-]*" + (Z("20") + "#?|[ \\t,]*(?:[xx##~~]|int|int)[:\\..]?[ \\t,-]*") + (Z("9") + "#?|[- ]+") + (Z("6") + "#|[ \\t]*(?:,{2}|;)[:\\..]?[ \\t,-]*") + (Z("15") + "#?|[ \\t]*(?:,)+[:\\..]?[ \\t,-]*") + (Z("9") + "#?");
|
|
8086
8058
|
}
|
|
8087
|
-
var
|
|
8088
|
-
function
|
|
8059
|
+
var D1 = new RegExp("(?:" + E1() + ")$", "i"), I2 = new RegExp("^[0-90-9٠-٩۰-۹]{2}$|^[++]*(?:[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~*]*[0-90-9٠-٩۰-۹]){3,}[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~*A-Za-z0-90-9٠-٩۰-۹]*(?:" + E1() + ")?$", "i"), v2 = /(\$\d)/, S2 = /^\(?\$1\)?$/;
|
|
8060
|
+
function M1(d) {
|
|
8089
8061
|
return 2 > d.length ? !1 : G(I2, d);
|
|
8090
8062
|
}
|
|
8091
|
-
function
|
|
8092
|
-
return G(m2, d) ? r1(d, c2) : r1(d,
|
|
8063
|
+
function P1(d) {
|
|
8064
|
+
return G(m2, d) ? r1(d, c2) : r1(d, g1);
|
|
8093
8065
|
}
|
|
8094
8066
|
function x1(d) {
|
|
8095
|
-
var t =
|
|
8067
|
+
var t = P1(d.toString());
|
|
8096
8068
|
B(d), d.g(t);
|
|
8097
8069
|
}
|
|
8098
|
-
function
|
|
8070
|
+
function R1(d) {
|
|
8099
8071
|
return d != null && (F(d, 9) != 1 || M(d, 9)[0] != -1);
|
|
8100
8072
|
}
|
|
8101
8073
|
function r1(d, t) {
|
|
8102
8074
|
for (var $ = new L(), n, r = d.length, o = 0; o < r; ++o) n = d.charAt(o), n = t[n.toUpperCase()], n != null && $.g(n);
|
|
8103
8075
|
return $.toString();
|
|
8104
8076
|
}
|
|
8105
|
-
function
|
|
8077
|
+
function B1(d) {
|
|
8106
8078
|
return d.length == 0 || S2.test(d);
|
|
8107
8079
|
}
|
|
8108
8080
|
function o1(d) {
|
|
8109
|
-
return d != null && isNaN(d) && d.toUpperCase() in
|
|
8081
|
+
return d != null && isNaN(d) && d.toUpperCase() in L1;
|
|
8110
8082
|
}
|
|
8111
8083
|
D.prototype.format = function(d, t) {
|
|
8112
8084
|
if (f(d, 2) == 0 && R(d, 5)) {
|
|
@@ -8114,10 +8086,10 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8114
8086
|
if (0 < $.length) return $;
|
|
8115
8087
|
}
|
|
8116
8088
|
$ = v(d, 1);
|
|
8117
|
-
var n =
|
|
8118
|
-
if (t == 0) return
|
|
8119
|
-
if (!($ in
|
|
8120
|
-
var r =
|
|
8089
|
+
var n = t1(d);
|
|
8090
|
+
if (t == 0) return k1($, 0, n, "");
|
|
8091
|
+
if (!($ in X)) return n;
|
|
8092
|
+
var r = d1(this, $, e1($));
|
|
8121
8093
|
d = R(d, 3) && f(d, 3).length != 0 ? t == 3 ? ";ext=" + f(d, 3) : R(r, 13) ? f(r, 13) + v(d, 3) : " ext. " + v(d, 3) : "";
|
|
8122
8094
|
d: {
|
|
8123
8095
|
r = M(r, 20).length == 0 || t == 2 ? M(r, 19) : M(r, 20);
|
|
@@ -8134,17 +8106,17 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8134
8106
|
return r != null && (l = r, r = v(l, 2), o = new RegExp(f(l, 1)), v(
|
|
8135
8107
|
l,
|
|
8136
8108
|
5
|
|
8137
|
-
), l = v(l, 4), n = t == 2 && l != null && 0 < l.length ? n.replace(o, r.replace(v2, l)) : n.replace(o, r), t == 3 && (n = n.replace(RegExp("^[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]+"), ""), n = n.replace(RegExp("[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]+", "g"), "-"))),
|
|
8109
|
+
), l = v(l, 4), n = t == 2 && l != null && 0 < l.length ? n.replace(o, r.replace(v2, l)) : n.replace(o, r), t == 3 && (n = n.replace(RegExp("^[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]+"), ""), n = n.replace(RegExp("[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]+", "g"), "-"))), k1($, t, n, d);
|
|
8138
8110
|
};
|
|
8139
|
-
function
|
|
8111
|
+
function d1(d, t, $) {
|
|
8140
8112
|
return $ == "001" ? K(d, "" + t) : K(d, $);
|
|
8141
8113
|
}
|
|
8142
|
-
function
|
|
8114
|
+
function t1(d) {
|
|
8143
8115
|
if (!R(d, 2)) return "";
|
|
8144
8116
|
var t = "" + f(d, 2);
|
|
8145
8117
|
return R(d, 4) && f(d, 4) && 0 < v(d, 8) ? Array(v(d, 8) + 1).join("0") + t : t;
|
|
8146
8118
|
}
|
|
8147
|
-
function
|
|
8119
|
+
function k1(d, t, $, n) {
|
|
8148
8120
|
switch (t) {
|
|
8149
8121
|
case 0:
|
|
8150
8122
|
return "+" + d + $ + n;
|
|
@@ -8183,7 +8155,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8183
8155
|
return f(d, 1);
|
|
8184
8156
|
}
|
|
8185
8157
|
}
|
|
8186
|
-
function
|
|
8158
|
+
function C1(d, t) {
|
|
8187
8159
|
return k(d, f(t, 1)) ? k(d, f(t, 5)) ? 4 : k(d, f(t, 4)) ? 3 : k(d, f(t, 6)) ? 5 : k(d, f(t, 8)) ? 6 : k(d, f(t, 7)) ? 7 : k(d, f(t, 21)) ? 8 : k(d, f(t, 25)) ? 9 : k(d, f(t, 28)) ? 10 : k(d, f(t, 2)) ? f(t, 18) || k(d, f(t, 3)) ? 2 : 0 : !f(t, 18) && k(d, f(t, 3)) ? 1 : -1 : -1;
|
|
8188
8160
|
}
|
|
8189
8161
|
function K(d, t) {
|
|
@@ -8191,8 +8163,8 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8191
8163
|
t = t.toUpperCase();
|
|
8192
8164
|
var $ = d.g[t];
|
|
8193
8165
|
if ($ == null) {
|
|
8194
|
-
if ($ =
|
|
8195
|
-
$ = new
|
|
8166
|
+
if ($ = L1[t], $ == null) return null;
|
|
8167
|
+
$ = new q().g(W.m(), $), d.g[t] = $;
|
|
8196
8168
|
}
|
|
8197
8169
|
return $;
|
|
8198
8170
|
}
|
|
@@ -8200,13 +8172,13 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8200
8172
|
var $ = d.length;
|
|
8201
8173
|
return 0 < F(t, 9) && M(t, 9).indexOf($) == -1 ? !1 : G(v(t, 2), d);
|
|
8202
8174
|
}
|
|
8203
|
-
function
|
|
8175
|
+
function O1(d, t) {
|
|
8204
8176
|
if (t == null) return null;
|
|
8205
8177
|
var $ = v(t, 1);
|
|
8206
|
-
if ($ =
|
|
8178
|
+
if ($ = X[$], $ == null) d = null;
|
|
8207
8179
|
else if ($.length == 1) d = $[0];
|
|
8208
8180
|
else d: {
|
|
8209
|
-
t =
|
|
8181
|
+
t = t1(t);
|
|
8210
8182
|
for (var n, r = $.length, o = 0; o < r; o++) {
|
|
8211
8183
|
n = $[o];
|
|
8212
8184
|
var l = K(d, n);
|
|
@@ -8215,7 +8187,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8215
8187
|
d = n;
|
|
8216
8188
|
break d;
|
|
8217
8189
|
}
|
|
8218
|
-
} else if (
|
|
8190
|
+
} else if (C1(t, l) != -1) {
|
|
8219
8191
|
d = n;
|
|
8220
8192
|
break d;
|
|
8221
8193
|
}
|
|
@@ -8224,52 +8196,52 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8224
8196
|
}
|
|
8225
8197
|
return d;
|
|
8226
8198
|
}
|
|
8227
|
-
function
|
|
8228
|
-
return d =
|
|
8199
|
+
function e1(d) {
|
|
8200
|
+
return d = X[d], d == null ? "ZZ" : d[0];
|
|
8229
8201
|
}
|
|
8230
|
-
function
|
|
8202
|
+
function G1(d, t) {
|
|
8231
8203
|
if (d = K(d, t), d == null) throw Error("Invalid region code: " + t);
|
|
8232
8204
|
return v(d, 10);
|
|
8233
8205
|
}
|
|
8234
8206
|
function l1(d, t, $, n) {
|
|
8235
8207
|
var r = u1($, n), o = F(r, 9) == 0 ? M(f($, 1), 9) : M(r, 9);
|
|
8236
|
-
if (r = M(r, 10), n == 2) if (
|
|
8208
|
+
if (r = M(r, 10), n == 2) if (R1(u1($, 0))) d = u1($, 1), R1(d) && (o = o.concat(F(d, 9) == 0 ? M(f($, 1), 9) : M(d, 9)), o.sort(), r.length == 0 ? r = M(d, 10) : (r = r.concat(M(d, 10)), r.sort()));
|
|
8237
8209
|
else return l1(d, t, $, 1);
|
|
8238
8210
|
return o[0] == -1 ? 5 : (t = t.length, -1 < r.indexOf(t) ? 4 : ($ = o[0], $ == t ? 0 : $ > t ? 2 : o[o.length - 1] < t ? 3 : -1 < o.indexOf(t, 1) ? 0 : 5));
|
|
8239
8211
|
}
|
|
8240
8212
|
function Y(d, t, $) {
|
|
8241
|
-
var n =
|
|
8242
|
-
return t = v(t, 1), t in
|
|
8213
|
+
var n = t1(t);
|
|
8214
|
+
return t = v(t, 1), t in X ? (t = d1(d, t, e1(t)), l1(d, n, t, $)) : 1;
|
|
8243
8215
|
}
|
|
8244
|
-
function
|
|
8216
|
+
function U1(d, t) {
|
|
8245
8217
|
if (d = d.toString(), d.length == 0 || d.charAt(0) == "0") return 0;
|
|
8246
|
-
for (var $, n = d.length, r = 1; 3 >= r && r <= n; ++r) if ($ = parseInt(d.substring(0, r), 10), $ in
|
|
8218
|
+
for (var $, n = d.length, r = 1; 3 >= r && r <= n; ++r) if ($ = parseInt(d.substring(0, r), 10), $ in X) return t.g(d.substring(r)), $;
|
|
8247
8219
|
return 0;
|
|
8248
8220
|
}
|
|
8249
|
-
function
|
|
8221
|
+
function F1(d, t, $, n, r, o) {
|
|
8250
8222
|
if (t.length == 0) return 0;
|
|
8251
8223
|
t = new L(t);
|
|
8252
8224
|
var l;
|
|
8253
8225
|
$ != null && (l = f($, 11)), l == null && (l = "NonMatch");
|
|
8254
8226
|
var h = t.toString();
|
|
8255
8227
|
if (h.length == 0) l = 20;
|
|
8256
|
-
else if (
|
|
8228
|
+
else if (Q.test(h)) h = h.replace(Q, ""), B(t), t.g(P1(h)), l = 1;
|
|
8257
8229
|
else {
|
|
8258
8230
|
if (h = new RegExp(l), x1(t), l = t.toString(), l.search(h) == 0) {
|
|
8259
8231
|
h = l.match(h)[0].length;
|
|
8260
|
-
var m = l.substring(h).match(
|
|
8261
|
-
m && m[1] != null && 0 < m[1].length && r1(m[1],
|
|
8232
|
+
var m = l.substring(h).match(N1);
|
|
8233
|
+
m && m[1] != null && 0 < m[1].length && r1(m[1], g1) == "0" ? l = !1 : (B(t), t.g(l.substring(h)), l = !0);
|
|
8262
8234
|
} else l = !1;
|
|
8263
8235
|
l = l ? 5 : 20;
|
|
8264
8236
|
}
|
|
8265
8237
|
if (r && E(o, 6, l), l != 20) {
|
|
8266
8238
|
if (2 >= t.h.length) throw Error("Phone number too short after IDD");
|
|
8267
|
-
if (d =
|
|
8239
|
+
if (d = U1(t, n), d != 0) return E(o, 1, d), d;
|
|
8268
8240
|
throw Error("Invalid country calling code");
|
|
8269
8241
|
}
|
|
8270
|
-
return $ != null && (l = v($, 10), h = "" + l, m = t.toString(), m.lastIndexOf(h, 0) == 0 && (h = new L(m.substring(h.length)), m = f($, 1), m = new RegExp(v(m, 2)),
|
|
8242
|
+
return $ != null && (l = v($, 10), h = "" + l, m = t.toString(), m.lastIndexOf(h, 0) == 0 && (h = new L(m.substring(h.length)), m = f($, 1), m = new RegExp(v(m, 2)), V1(h, $, null), h = h.toString(), !G(m, t.toString()) && G(m, h) || l1(d, t.toString(), $, -1) == 3)) ? (n.g(h), r && E(o, 6, 10), E(o, 1, l), l) : (E(o, 1, 0), 0);
|
|
8271
8243
|
}
|
|
8272
|
-
function
|
|
8244
|
+
function V1(d, t, $) {
|
|
8273
8245
|
var n = d.toString(), r = n.length, o = f(t, 15);
|
|
8274
8246
|
if (r != 0 && o != null && o.length != 0) {
|
|
8275
8247
|
var l = new RegExp("^(?:" + o + ")");
|
|
@@ -8282,9 +8254,9 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8282
8254
|
}
|
|
8283
8255
|
function z(d, t, $) {
|
|
8284
8256
|
if (!o1($) && 0 < t.length && t.charAt(0) != "+") throw Error("Invalid country calling code");
|
|
8285
|
-
return
|
|
8257
|
+
return K1(d, t, $, !0);
|
|
8286
8258
|
}
|
|
8287
|
-
function
|
|
8259
|
+
function K1(d, t, $, n) {
|
|
8288
8260
|
if (t == null) throw Error("The string supplied did not seem to be a phone number");
|
|
8289
8261
|
if (250 < t.length) throw Error("The string supplied is too long to be a phone number");
|
|
8290
8262
|
var r = new L(), o = t.indexOf(";phone-context=");
|
|
@@ -8295,12 +8267,12 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8295
8267
|
o = l !== -1 ? t.substring(o, l) : t.substring(o);
|
|
8296
8268
|
}
|
|
8297
8269
|
var h = o;
|
|
8298
|
-
if (h == null ? l = !0 : h.length === 0 ? l = !1 : (l = y2.exec(h), h = _2.exec(h), l = l !== null || h !== null), !l || (o != null ? (o.charAt(0) === "+" && r.g(o), o = t.indexOf("tel:"), r.g(t.substring(0 <= o ? o + 4 : 0, t.indexOf(";phone-context=")))) : (o = r.g, l = t ?? "", h = l.search(p2), 0 <= h ? (l = l.substring(h), l = l.replace(C2, ""), h = l.search(g2), 0 <= h && (l = l.substring(0, h))) : l = "", o.call(r, l)), o = r.toString(), l = o.indexOf(";isub="), 0 < l && (B(r), r.g(o.substring(0, l))), !
|
|
8299
|
-
if (o = r.toString(), !(o1($) || o != null && 0 < o.length &&
|
|
8270
|
+
if (h == null ? l = !0 : h.length === 0 ? l = !1 : (l = y2.exec(h), h = _2.exec(h), l = l !== null || h !== null), !l || (o != null ? (o.charAt(0) === "+" && r.g(o), o = t.indexOf("tel:"), r.g(t.substring(0 <= o ? o + 4 : 0, t.indexOf(";phone-context=")))) : (o = r.g, l = t ?? "", h = l.search(p2), 0 <= h ? (l = l.substring(h), l = l.replace(C2, ""), h = l.search(g2), 0 <= h && (l = l.substring(0, h))) : l = "", o.call(r, l)), o = r.toString(), l = o.indexOf(";isub="), 0 < l && (B(r), r.g(o.substring(0, l))), !M1(r.toString()))) throw Error("The string supplied did not seem to be a phone number");
|
|
8271
|
+
if (o = r.toString(), !(o1($) || o != null && 0 < o.length && Q.test(o))) throw Error("Invalid country calling code");
|
|
8300
8272
|
o = new V(), n && E(o, 5, t);
|
|
8301
8273
|
d: {
|
|
8302
|
-
if (t = r.toString(), l = t.search(
|
|
8303
|
-
h = t.match(
|
|
8274
|
+
if (t = r.toString(), l = t.search(D1), 0 <= l && M1(t.substring(0, l))) {
|
|
8275
|
+
h = t.match(D1);
|
|
8304
8276
|
for (var m = h.length, U = 1; U < m; ++U) if (h[U] != null && 0 < h[U].length) {
|
|
8305
8277
|
B(r), r.g(t.substring(0, l)), t = h[U];
|
|
8306
8278
|
break d;
|
|
@@ -8310,17 +8282,17 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8310
8282
|
}
|
|
8311
8283
|
0 < t.length && E(o, 3, t), l = K(d, $), t = new L(), h = 0, m = r.toString();
|
|
8312
8284
|
try {
|
|
8313
|
-
h =
|
|
8314
|
-
} catch (
|
|
8315
|
-
if (
|
|
8316
|
-
if (m = m.replace(
|
|
8317
|
-
} else throw
|
|
8285
|
+
h = F1(d, m, l, t, n, o);
|
|
8286
|
+
} catch (y1) {
|
|
8287
|
+
if (y1.message == "Invalid country calling code" && Q.test(m)) {
|
|
8288
|
+
if (m = m.replace(Q, ""), h = F1(d, m, l, t, n, o), h == 0) throw y1;
|
|
8289
|
+
} else throw y1;
|
|
8318
8290
|
}
|
|
8319
|
-
if (h != 0 ? (r =
|
|
8291
|
+
if (h != 0 ? (r = e1(h), r != $ && (l = d1(d, h, r))) : (x1(r), t.g(r.toString()), $ != null ? (h = v(l, 10), E(
|
|
8320
8292
|
o,
|
|
8321
8293
|
1,
|
|
8322
8294
|
h
|
|
8323
|
-
)) : n && (delete o.h[6], o.g && delete o.g[6])), 2 > t.h.length || (l != null && ($ = new L(), r = new L(t.toString()),
|
|
8295
|
+
)) : n && (delete o.h[6], o.g && delete o.g[6])), 2 > t.h.length || (l != null && ($ = new L(), r = new L(t.toString()), V1(r, l, $), d = l1(d, r.toString(), l, -1), d != 2 && d != 4 && d != 5 && (t = r, n && 0 < $.toString().length && E(o, 7, $.toString()))), n = t.toString(), d = n.length, 2 > d)) throw Error("The string supplied is too short to be a phone number");
|
|
8324
8296
|
if (17 < d) throw Error("The string supplied is too long to be a phone number");
|
|
8325
8297
|
if (1 < n.length && n.charAt(0) == "0") {
|
|
8326
8298
|
for (E(o, 4, !0), d = 1; d < n.length - 1 && n.charAt(d) == "0"; ) d++;
|
|
@@ -8332,16 +8304,16 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8332
8304
|
return !!((d = typeof d == "string" ? t.match("^(?:" + d + ")$") : t.match(d)) && d[0].length == t.length);
|
|
8333
8305
|
}
|
|
8334
8306
|
function w2(d) {
|
|
8335
|
-
this.fa = RegExp(" "), this.ja = "", this.v = new L(), this.da = "", this.s = new L(), this.ba = new L(), this.u = !0, this.ea = this.ca = this.la = !1, this.ga = D.g(), this.$ = 0, this.h = new L(), this.ha = !1, this.o = "", this.g = new L(), this.j = [], this.ka = d, this.l =
|
|
8307
|
+
this.fa = RegExp(" "), this.ja = "", this.v = new L(), this.da = "", this.s = new L(), this.ba = new L(), this.u = !0, this.ea = this.ca = this.la = !1, this.ga = D.g(), this.$ = 0, this.h = new L(), this.ha = !1, this.o = "", this.g = new L(), this.j = [], this.ka = d, this.l = W1(this, this.ka);
|
|
8336
8308
|
}
|
|
8337
|
-
var
|
|
8338
|
-
E(
|
|
8339
|
-
var b2 = RegExp("^[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]*\\$1[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]*(\\$\\d[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]*)*$"),
|
|
8340
|
-
function
|
|
8309
|
+
var H1 = new W();
|
|
8310
|
+
E(H1, 11, "NA");
|
|
8311
|
+
var b2 = RegExp("^[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]*\\$1[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]*(\\$\\d[-x‐-―−ー--/ ()()[].\\[\\]/~⁓∼~]*)*$"), j1 = /[- ]/;
|
|
8312
|
+
function W1(d, t) {
|
|
8341
8313
|
var $ = d.ga;
|
|
8342
|
-
return t = o1(t) ?
|
|
8314
|
+
return t = o1(t) ? G1($, t) : 0, d = K(d.ga, e1(t)), d ?? H1;
|
|
8343
8315
|
}
|
|
8344
|
-
function
|
|
8316
|
+
function z1(d) {
|
|
8345
8317
|
for (var t = d.j.length, $ = 0; $ < t; ++$) {
|
|
8346
8318
|
var n = d.j[$], r = v(n, 1);
|
|
8347
8319
|
if (d.da == r) return !1;
|
|
@@ -8350,25 +8322,25 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8350
8322
|
var m = o;
|
|
8351
8323
|
l = v(l, 2);
|
|
8352
8324
|
var U = "999999999999999".match(h)[0];
|
|
8353
|
-
if (U.length < m.g.h.length ? m = "" : (m = U.replace(new RegExp(h, "g"), l), m = m.replace(RegExp("9", "g"), " ")), 0 < m.length ? (o.v.g(m), o = !0) : o = !1, o) return d.da = r, d.ha =
|
|
8325
|
+
if (U.length < m.g.h.length ? m = "" : (m = U.replace(new RegExp(h, "g"), l), m = m.replace(RegExp("9", "g"), " ")), 0 < m.length ? (o.v.g(m), o = !0) : o = !1, o) return d.da = r, d.ha = j1.test(f(n, 4)), d.$ = 0, !0;
|
|
8354
8326
|
}
|
|
8355
8327
|
return d.u = !1;
|
|
8356
8328
|
}
|
|
8357
|
-
function
|
|
8329
|
+
function Z1(d, t) {
|
|
8358
8330
|
for (var $ = [], n = t.length - 3, r = d.j.length, o = 0; o < r; ++o) {
|
|
8359
8331
|
var l = d.j[o];
|
|
8360
8332
|
F(l, 3) == 0 ? $.push(d.j[o]) : (l = f(l, 3, Math.min(n, F(l, 3) - 1)), t.search(l) == 0 && $.push(d.j[o]));
|
|
8361
8333
|
}
|
|
8362
8334
|
d.j = $;
|
|
8363
8335
|
}
|
|
8364
|
-
function
|
|
8336
|
+
function A2(d, t) {
|
|
8365
8337
|
d.s.g(t);
|
|
8366
8338
|
var $ = t;
|
|
8367
|
-
if (
|
|
8339
|
+
if (N1.test($) || d.s.h.length == 1 && f2.test($) ? (t == "+" ? ($ = t, d.ba.g(t)) : ($ = g1[t], d.ba.g($), d.g.g($)), t = $) : (d.u = !1, d.la = !0), !d.u) {
|
|
8368
8340
|
if (!d.la) {
|
|
8369
|
-
if (
|
|
8370
|
-
if (
|
|
8371
|
-
} else if (0 < d.o.length && (t = d.g.toString(), B(d.g), d.g.g(d.o), d.g.g(t), t = d.h.toString(), $ = t.lastIndexOf(d.o), B(d.h), d.h.g(t.substring(0, $))), d.o !=
|
|
8341
|
+
if (Q1(d)) {
|
|
8342
|
+
if (d2(d)) return Y1(d);
|
|
8343
|
+
} else if (0 < d.o.length && (t = d.g.toString(), B(d.g), d.g.g(d.o), d.g.g(t), t = d.h.toString(), $ = t.lastIndexOf(d.o), B(d.h), d.h.g(t.substring(0, $))), d.o != X1(d)) return d.h.g(" "), Y1(d);
|
|
8372
8344
|
}
|
|
8373
8345
|
return d.s.toString();
|
|
8374
8346
|
}
|
|
@@ -8378,19 +8350,19 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8378
8350
|
case 2:
|
|
8379
8351
|
return d.s.toString();
|
|
8380
8352
|
case 3:
|
|
8381
|
-
if (
|
|
8382
|
-
else return d.o =
|
|
8353
|
+
if (Q1(d)) d.ea = !0;
|
|
8354
|
+
else return d.o = X1(d), m1(d);
|
|
8383
8355
|
default:
|
|
8384
|
-
return d.ea ? (
|
|
8356
|
+
return d.ea ? (d2(d) && (d.ea = !1), d.h.toString() + d.g.toString()) : 0 < d.j.length ? (t = t2(d, t), $ = J1(d), 0 < $.length ? $ : (Z1(d, d.g.toString()), z1(d) ? q1(d) : d.u ? a1(d, t) : d.s.toString())) : m1(d);
|
|
8385
8357
|
}
|
|
8386
8358
|
}
|
|
8387
|
-
function Z1(d) {
|
|
8388
|
-
return d.u = !0, d.ea = !1, d.j = [], d.$ = 0, B(d.v), d.da = "", C1(d);
|
|
8389
|
-
}
|
|
8390
8359
|
function Y1(d) {
|
|
8360
|
+
return d.u = !0, d.ea = !1, d.j = [], d.$ = 0, B(d.v), d.da = "", m1(d);
|
|
8361
|
+
}
|
|
8362
|
+
function J1(d) {
|
|
8391
8363
|
for (var t = d.g.toString(), $ = d.j.length, n = 0; n < $; ++n) {
|
|
8392
8364
|
var r = d.j[n], o = v(r, 1);
|
|
8393
|
-
if (new RegExp("^(?:" + o + ")$").test(t) && (d.ha =
|
|
8365
|
+
if (new RegExp("^(?:" + o + ")$").test(t) && (d.ha = j1.test(f(r, 4)), r = t.replace(new RegExp(o, "g"), f(r, 2)), r = a1(d, r), r1(r, h2) == d.ba)) return r;
|
|
8394
8366
|
}
|
|
8395
8367
|
return "";
|
|
8396
8368
|
}
|
|
@@ -8398,41 +8370,41 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8398
8370
|
var $ = d.h.h.length;
|
|
8399
8371
|
return d.ha && 0 < $ && d.h.toString().charAt($ - 1) != " " ? d.h + " " + t : d.h + t;
|
|
8400
8372
|
}
|
|
8401
|
-
function
|
|
8373
|
+
function m1(d) {
|
|
8402
8374
|
var t = d.g.toString();
|
|
8403
8375
|
if (3 <= t.length) {
|
|
8404
8376
|
for (var $ = d.ca && d.o.length == 0 && 0 < F(d.l, 20) ? M(d.l, 20) : M(d.l, 19), n = $.length, r = 0; r < n; ++r) {
|
|
8405
8377
|
var o = $[r];
|
|
8406
|
-
0 < d.o.length &&
|
|
8378
|
+
0 < d.o.length && B1(v(o, 4)) && !f(o, 6) && !R(o, 5) || (d.o.length != 0 || d.ca || B1(v(o, 4)) || f(o, 6)) && b2.test(v(o, 2)) && d.j.push(o);
|
|
8407
8379
|
}
|
|
8408
|
-
return
|
|
8380
|
+
return Z1(d, t), t = J1(d), 0 < t.length ? t : z1(d) ? q1(d) : d.s.toString();
|
|
8409
8381
|
}
|
|
8410
8382
|
return a1(d, t);
|
|
8411
8383
|
}
|
|
8412
|
-
function
|
|
8384
|
+
function q1(d) {
|
|
8413
8385
|
var t = d.g.toString(), $ = t.length;
|
|
8414
8386
|
if (0 < $) {
|
|
8415
|
-
for (var n = "", r = 0; r < $; r++) n =
|
|
8387
|
+
for (var n = "", r = 0; r < $; r++) n = t2(d, t.charAt(r));
|
|
8416
8388
|
return d.u ? a1(d, n) : d.s.toString();
|
|
8417
8389
|
}
|
|
8418
8390
|
return d.h.toString();
|
|
8419
8391
|
}
|
|
8420
|
-
function
|
|
8392
|
+
function X1(d) {
|
|
8421
8393
|
var t = d.g.toString(), $ = 0;
|
|
8422
8394
|
if (f(d.l, 10) != 1) var n = !1;
|
|
8423
8395
|
else n = d.g.toString(), n = n.charAt(0) == "1" && n.charAt(1) != "0" && n.charAt(1) != "1";
|
|
8424
8396
|
return n ? ($ = 1, d.h.g("1").g(" "), d.ca = !0) : R(d.l, 15) && (n = new RegExp("^(?:" + f(d.l, 15) + ")"), n = t.match(n), n != null && n[0] != null && 0 < n[0].length && (d.ca = !0, $ = n[0].length, d.h.g(t.substring(0, $)))), B(d.g), d.g.g(t.substring($)), t.substring(0, $);
|
|
8425
8397
|
}
|
|
8426
|
-
function
|
|
8398
|
+
function Q1(d) {
|
|
8427
8399
|
var t = d.ba.toString(), $ = new RegExp("^(?:\\+|" + f(d.l, 11) + ")");
|
|
8428
8400
|
return $ = t.match($), $ != null && $[0] != null && 0 < $[0].length ? (d.ca = !0, $ = $[0].length, B(d.g), d.g.g(t.substring($)), B(d.h), d.h.g(t.substring(0, $)), t.charAt(0) != "+" && d.h.g(" "), !0) : !1;
|
|
8429
8401
|
}
|
|
8430
|
-
function
|
|
8402
|
+
function d2(d) {
|
|
8431
8403
|
if (d.g.h.length == 0) return !1;
|
|
8432
|
-
var t = new L(), $ =
|
|
8433
|
-
return $ == 0 ? !1 : (B(d.g), d.g.g(t.toString()), t =
|
|
8404
|
+
var t = new L(), $ = U1(d.g, t);
|
|
8405
|
+
return $ == 0 ? !1 : (B(d.g), d.g.g(t.toString()), t = e1($), t == "001" ? d.l = K(d.ga, "" + $) : t != d.ka && (d.l = W1(d, t)), d.h.g("" + $).g(" "), d.o = "", !0);
|
|
8434
8406
|
}
|
|
8435
|
-
function
|
|
8407
|
+
function t2(d, t) {
|
|
8436
8408
|
var $ = d.v.toString();
|
|
8437
8409
|
if (0 <= $.substring(d.$).search(d.fa)) {
|
|
8438
8410
|
var n = $.search(d.fa);
|
|
@@ -8445,7 +8417,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8445
8417
|
try {
|
|
8446
8418
|
const $ = d.replace(/[^+0-9]/g, ""), n = new w2(t);
|
|
8447
8419
|
t = "";
|
|
8448
|
-
for (let r = 0; r < $.length; r++) n.ja =
|
|
8420
|
+
for (let r = 0; r < $.length; r++) n.ja = A2(n, $.charAt(r)), t = n.ja;
|
|
8449
8421
|
return t;
|
|
8450
8422
|
} catch {
|
|
8451
8423
|
return d;
|
|
@@ -8467,7 +8439,7 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8467
8439
|
var o = u1(K(r, d), $);
|
|
8468
8440
|
try {
|
|
8469
8441
|
if (R(o, 6)) {
|
|
8470
|
-
var l = f(o, 6), h =
|
|
8442
|
+
var l = f(o, 6), h = K1(r, l, d, !1);
|
|
8471
8443
|
break d;
|
|
8472
8444
|
}
|
|
8473
8445
|
} catch {
|
|
@@ -8488,11 +8460,11 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8488
8460
|
}), e("intlTelInputUtilsTemp.getNumberType", (d, t) => {
|
|
8489
8461
|
try {
|
|
8490
8462
|
const l = D.g(), h = z(l, d, t);
|
|
8491
|
-
var $ =
|
|
8463
|
+
var $ = O1(l, h), n = d1(l, v(h, 1), $);
|
|
8492
8464
|
if (n == null) var r = -1;
|
|
8493
8465
|
else {
|
|
8494
|
-
var o =
|
|
8495
|
-
r =
|
|
8466
|
+
var o = t1(h);
|
|
8467
|
+
r = C1(o, n);
|
|
8496
8468
|
}
|
|
8497
8469
|
return r;
|
|
8498
8470
|
} catch {
|
|
@@ -8509,13 +8481,13 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8509
8481
|
}), e("intlTelInputUtilsTemp.isValidNumber", (d, t) => {
|
|
8510
8482
|
try {
|
|
8511
8483
|
const m = D.g();
|
|
8512
|
-
var $ = z(m, d, t), n =
|
|
8484
|
+
var $ = z(m, d, t), n = O1(m, $);
|
|
8513
8485
|
d = m;
|
|
8514
|
-
var r = v($, 1), o =
|
|
8515
|
-
if (o == null || n != "001" && r !=
|
|
8486
|
+
var r = v($, 1), o = d1(d, r, n);
|
|
8487
|
+
if (o == null || n != "001" && r != G1(d, n)) var l = !1;
|
|
8516
8488
|
else {
|
|
8517
|
-
var h =
|
|
8518
|
-
l =
|
|
8489
|
+
var h = t1($);
|
|
8490
|
+
l = C1(h, o) != -1;
|
|
8519
8491
|
}
|
|
8520
8492
|
return l;
|
|
8521
8493
|
} catch {
|
|
@@ -8544,12 +8516,20 @@ const F2 = (y) => !C.utils && !C.startedLoadingUtilsScript ? (C.startedLoadingUt
|
|
|
8544
8516
|
}
|
|
8545
8517
|
}), e("intlTelInputUtilsTemp.numberFormat", { E164: 0, INTERNATIONAL: 1, NATIONAL: 2, RFC3966: 3 }), e("intlTelInputUtilsTemp.numberType", h1), e("intlTelInputUtilsTemp.validationError", { IS_POSSIBLE: 0, INVALID_COUNTRY_CODE: 1, TOO_SHORT: 2, TOO_LONG: 3, IS_POSSIBLE_LOCAL_ONLY: 4, INVALID_LENGTH: 5 });
|
|
8546
8518
|
})();
|
|
8547
|
-
const
|
|
8519
|
+
const K2 = window.intlTelInputUtilsTemp;
|
|
8548
8520
|
delete window.intlTelInputUtilsTemp;
|
|
8549
|
-
C.utils =
|
|
8550
|
-
const
|
|
8521
|
+
C.utils = K2;
|
|
8522
|
+
const j2 = {
|
|
8551
8523
|
__name: "IntlTelInputWithUtils",
|
|
8552
|
-
props: /* @__PURE__ */
|
|
8524
|
+
props: /* @__PURE__ */ e2({
|
|
8525
|
+
disabled: {
|
|
8526
|
+
type: Boolean,
|
|
8527
|
+
default: !1
|
|
8528
|
+
},
|
|
8529
|
+
inputProps: {
|
|
8530
|
+
type: Object,
|
|
8531
|
+
default: () => ({})
|
|
8532
|
+
},
|
|
8553
8533
|
options: {
|
|
8554
8534
|
type: Object,
|
|
8555
8535
|
default: () => ({})
|
|
@@ -8557,9 +8537,6 @@ const H2 = {
|
|
|
8557
8537
|
value: {
|
|
8558
8538
|
type: String,
|
|
8559
8539
|
default: ""
|
|
8560
|
-
},
|
|
8561
|
-
disabled: {
|
|
8562
|
-
type: Boolean
|
|
8563
8540
|
}
|
|
8564
8541
|
}, {
|
|
8565
8542
|
modelValue: {
|
|
@@ -8568,41 +8545,49 @@ const H2 = {
|
|
|
8568
8545
|
},
|
|
8569
8546
|
modelModifiers: {}
|
|
8570
8547
|
}),
|
|
8571
|
-
emits: /* @__PURE__ */
|
|
8548
|
+
emits: /* @__PURE__ */ e2([
|
|
8549
|
+
"changeNumber",
|
|
8550
|
+
"changeCountry",
|
|
8551
|
+
"changeValidity",
|
|
8552
|
+
"changeErrorCode"
|
|
8553
|
+
], ["update:modelValue"]),
|
|
8572
8554
|
setup(y, { expose: e, emit: i }) {
|
|
8573
|
-
const s =
|
|
8555
|
+
const s = T2(y, "modelValue"), u = y, a = i, c = _1(), p = _1(), g = _1(!1), b = () => p.value ? u.options.strictMode ? p.value.isValidNumberPrecise() : p.value.isValidNumber() : null, _ = () => {
|
|
8574
8556
|
let I = b();
|
|
8575
|
-
g.value !== I && (g.value = I, a("changeValidity", !!I), a(
|
|
8576
|
-
|
|
8557
|
+
g.value !== I && (g.value = I, a("changeValidity", !!I), a(
|
|
8558
|
+
"changeErrorCode",
|
|
8559
|
+
I ? null : p.value.getValidationError()
|
|
8560
|
+
));
|
|
8561
|
+
}, A = () => {
|
|
8577
8562
|
var I;
|
|
8578
8563
|
a("changeNumber", ((I = p.value) == null ? void 0 : I.getNumber()) ?? ""), _();
|
|
8579
8564
|
}, S = () => {
|
|
8580
8565
|
var I;
|
|
8581
|
-
a("changeCountry", ((I = p.value) == null ? void 0 : I.getSelectedCountryData().iso2) ?? ""),
|
|
8566
|
+
a("changeCountry", ((I = p.value) == null ? void 0 : I.getSelectedCountryData().iso2) ?? ""), A(), _();
|
|
8582
8567
|
};
|
|
8583
8568
|
return L2(() => {
|
|
8584
8569
|
c.value && (p.value = C(c.value, u.options), u.value && p.value.setNumber(u.value), u.disabled && p.value.setDisabled(u.disabled));
|
|
8585
8570
|
}), N2(
|
|
8586
8571
|
() => u.disabled,
|
|
8587
8572
|
(I) => {
|
|
8588
|
-
var
|
|
8589
|
-
return (
|
|
8573
|
+
var T;
|
|
8574
|
+
return (T = p.value) == null ? void 0 : T.setDisabled(I);
|
|
8590
8575
|
}
|
|
8591
8576
|
), E2(() => {
|
|
8592
8577
|
var I;
|
|
8593
8578
|
return (I = p.value) == null ? void 0 : I.destroy();
|
|
8594
|
-
}), e({ instance: p, input: c }), (I,
|
|
8579
|
+
}), e({ instance: p, input: c }), (I, T) => D2((M2(), P2("input", x2({
|
|
8595
8580
|
ref_key: "input",
|
|
8596
8581
|
ref: c,
|
|
8597
|
-
"onUpdate:modelValue":
|
|
8582
|
+
"onUpdate:modelValue": T[0] || (T[0] = (P) => s.value = P),
|
|
8598
8583
|
type: "tel",
|
|
8599
8584
|
onCountrychange: S,
|
|
8600
|
-
onInput:
|
|
8601
|
-
}, null,
|
|
8602
|
-
[
|
|
8585
|
+
onInput: A
|
|
8586
|
+
}, y.inputProps), null, 16)), [
|
|
8587
|
+
[R2, s.value]
|
|
8603
8588
|
]);
|
|
8604
8589
|
}
|
|
8605
8590
|
};
|
|
8606
8591
|
export {
|
|
8607
|
-
|
|
8592
|
+
j2 as default
|
|
8608
8593
|
};
|