design-system-next 2.26.2 → 2.26.3
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/dist/design-system-next.es.d.ts +138 -69
- package/dist/design-system-next.es.js +697 -665
- package/dist/design-system-next.es.js.gz +0 -0
- package/dist/design-system-next.umd.js +10 -10
- package/dist/design-system-next.umd.js.gz +0 -0
- package/dist/main.css +1 -1
- package/dist/main.css.gz +0 -0
- package/package.json +1 -1
- package/src/components/list/list-item/list-item.ts +60 -60
- package/src/components/list/use-list.ts +6 -6
- package/src/components/{radio-grouped → radio/radio-grouped}/radio-grouped.ts +74 -65
- package/src/components/{radio-grouped → radio/radio-grouped}/radio-grouped.vue +4 -1
- package/src/components/{radio-grouped → radio/radio-grouped}/use-radio-grouped.ts +63 -62
- package/src/components/radio/radio.ts +4 -0
- package/src/components/radio/radio.vue +10 -4
- package/src/components/radio/use-radio.ts +16 -2
|
@@ -5760,12 +5760,24 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5760
5760
|
fullWidth: {
|
|
5761
5761
|
type: Boolean,
|
|
5762
5762
|
default: !1
|
|
5763
|
+
},
|
|
5764
|
+
choiceBox: {
|
|
5765
|
+
type: Boolean,
|
|
5766
|
+
default: !1
|
|
5763
5767
|
}
|
|
5764
5768
|
}, n4 = ["update:modelValue"], s4 = (e, t, r) => {
|
|
5765
|
-
const { modelValue: n, disabled: s, description: a, bordered: l, fullWidth: i } = Oe(e),
|
|
5766
|
-
const
|
|
5769
|
+
const { modelValue: n, disabled: s, description: a, bordered: l, fullWidth: i, choiceBox: d } = Oe(e), u = B(null), c = Vo(u), p = P(() => {
|
|
5770
|
+
const f = U("spr-relative spr-m-0", {
|
|
5771
|
+
"spr-inline-block": !d.value,
|
|
5772
|
+
"spr-block": d.value,
|
|
5773
|
+
"spr-w-full": i.value || d.value,
|
|
5774
|
+
"spr-align-middle": !d.value,
|
|
5775
|
+
"spr-border-color spr-border-color-weak spr-border spr-border-solid spr-p-2 spr-rounded-lg spr-transition spr-ease-in-out spr-duration-150 active:spr-scale-[0.98]": d.value,
|
|
5776
|
+
"spr-cursor-pointer": d.value && !s.value,
|
|
5777
|
+
"spr-cursor-not-allowed": s.value && d.value
|
|
5778
|
+
}), v = U("spr-sr-only spr-peer spr-inline-block", {
|
|
5767
5779
|
"spr-cursor-not-allowed": s.value
|
|
5768
|
-
}),
|
|
5780
|
+
}), $ = U(
|
|
5769
5781
|
"spr-inline-block spr-w-4 spr-h-4 spr-rounded-full spr-border-2 spr-border-solid spr-shrink-0",
|
|
5770
5782
|
{
|
|
5771
5783
|
"spr-mr-2": r.default,
|
|
@@ -5774,11 +5786,11 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5774
5786
|
// Hover State
|
|
5775
5787
|
{
|
|
5776
5788
|
// Hover state with matching value
|
|
5777
|
-
"spr-background-color-brand-hover spr-border-2 spr-border-color-brand-hover spr-shadow-[inset_0px_0px_0px_2.5px_#fff]":
|
|
5789
|
+
"spr-background-color-brand-hover spr-border-2 spr-border-color-brand-hover spr-shadow-[inset_0px_0px_0px_2.5px_#fff]": c.value && String(n == null ? void 0 : n.value) === String(e.value) && !s.value && !l.value,
|
|
5778
5790
|
// Hover state but different value
|
|
5779
|
-
"spr-background-color-base spr-border-2 spr-border-color-supporting spr-shadow-[inset_0px_0px_0px_2.5px_#fff]":
|
|
5791
|
+
"spr-background-color-base spr-border-2 spr-border-color-supporting spr-shadow-[inset_0px_0px_0px_2.5px_#fff]": c.value && String(n == null ? void 0 : n.value) !== String(e.value) && !s.value && !l.value,
|
|
5780
5792
|
// Bordered Hover state but different value
|
|
5781
|
-
"spr-background-color-base spr-border-2 spr-border-color-supporting":
|
|
5793
|
+
"spr-background-color-base spr-border-2 spr-border-color-supporting": c.value && String(n == null ? void 0 : n.value) !== String(e.value) && !s.value && l.value
|
|
5782
5794
|
},
|
|
5783
5795
|
// Active State
|
|
5784
5796
|
{
|
|
@@ -5803,7 +5815,7 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5803
5815
|
// Bordered Disabled state but different value
|
|
5804
5816
|
"spr-border-white-400 spr-background-color-disabled": s.value && String(n == null ? void 0 : n.value) !== String(e.value) && l.value
|
|
5805
5817
|
}
|
|
5806
|
-
),
|
|
5818
|
+
), m = U(
|
|
5807
5819
|
"spr-group spr-m-0 spr-inline-flex spr-w-auto spr-items-center spr-p-0 spr-font-main",
|
|
5808
5820
|
"spr-text-color-strong spr-inline-flex spr-items-center spr-p-0",
|
|
5809
5821
|
{
|
|
@@ -5812,7 +5824,7 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5812
5824
|
"spr-cursor-pointer": !s.value,
|
|
5813
5825
|
"spr-cursor-not-allowed": s.value
|
|
5814
5826
|
}
|
|
5815
|
-
),
|
|
5827
|
+
), y = U(
|
|
5816
5828
|
"spr-border spr-rounded-md spr-p-size-spacing-2xs spr-border-solid spr-box-border",
|
|
5817
5829
|
{
|
|
5818
5830
|
//enabled state
|
|
@@ -5827,16 +5839,18 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5827
5839
|
}
|
|
5828
5840
|
);
|
|
5829
5841
|
return {
|
|
5830
|
-
baseClasses:
|
|
5831
|
-
|
|
5832
|
-
|
|
5833
|
-
|
|
5842
|
+
baseClasses: f,
|
|
5843
|
+
baseInputClasses: v,
|
|
5844
|
+
baseIndicatorClasses: $,
|
|
5845
|
+
labelClasses: m,
|
|
5846
|
+
borderedClasses: y
|
|
5834
5847
|
};
|
|
5835
|
-
}),
|
|
5848
|
+
}), g = Re(e, "modelValue", t);
|
|
5836
5849
|
return {
|
|
5837
|
-
radioRef:
|
|
5838
|
-
radioClasses:
|
|
5839
|
-
|
|
5850
|
+
radioRef: u,
|
|
5851
|
+
radioClasses: p,
|
|
5852
|
+
isHovered: c,
|
|
5853
|
+
proxyValue: g,
|
|
5840
5854
|
description: a,
|
|
5841
5855
|
bordered: l
|
|
5842
5856
|
};
|
|
@@ -5845,20 +5859,26 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5845
5859
|
props: r4,
|
|
5846
5860
|
emits: n4,
|
|
5847
5861
|
setup(e, { emit: t }) {
|
|
5848
|
-
const r = e, n = t, s = Qt(), { proxyValue: a, radioRef: l, radioClasses: i } = s4(r, n, s);
|
|
5849
|
-
return (
|
|
5850
|
-
class: w(
|
|
5862
|
+
const r = e, n = t, s = Qt(), { proxyValue: a, radioRef: l, radioClasses: i, isHovered: d } = s4(r, n, s);
|
|
5863
|
+
return (u, c) => (h(), b("div", {
|
|
5864
|
+
class: w(o(i).baseClasses),
|
|
5865
|
+
onClick: c[1] || (c[1] = (p) => {
|
|
5866
|
+
var g;
|
|
5867
|
+
return (g = o(l)) == null ? void 0 : g.click();
|
|
5868
|
+
}),
|
|
5869
|
+
onMouseenter: c[2] || (c[2] = (p) => d.value = !0),
|
|
5870
|
+
onMouseleave: c[3] || (c[3] = (p) => d.value = !1)
|
|
5851
5871
|
}, [
|
|
5852
5872
|
ut(x("input", {
|
|
5853
5873
|
id: r.id,
|
|
5854
5874
|
ref_key: "radioRef",
|
|
5855
5875
|
ref: l,
|
|
5856
|
-
"onUpdate:modelValue":
|
|
5876
|
+
"onUpdate:modelValue": c[0] || (c[0] = (p) => Ie(a) ? a.value = p : null),
|
|
5857
5877
|
type: "radio",
|
|
5858
5878
|
name: r.name,
|
|
5859
5879
|
value: r.value,
|
|
5860
5880
|
disabled: r.disabled,
|
|
5861
|
-
class: w(o(i).
|
|
5881
|
+
class: w(o(i).baseInputClasses)
|
|
5862
5882
|
}, null, 10, a4), [
|
|
5863
5883
|
[nc, o(a)]
|
|
5864
5884
|
]),
|
|
@@ -5873,7 +5893,7 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5873
5893
|
class: w(o(i).baseIndicatorClasses)
|
|
5874
5894
|
}, null, 2),
|
|
5875
5895
|
x("div", l4, [
|
|
5876
|
-
de(
|
|
5896
|
+
de(u.$slots, "default", {}, void 0, !0),
|
|
5877
5897
|
r.description && r.description !== "" ? (h(), b("span", {
|
|
5878
5898
|
key: 0,
|
|
5879
5899
|
class: w([
|
|
@@ -5883,9 +5903,9 @@ const lt = e3, r3 = t3, v2 = ["click", "hover", "focus", "touch"], n3 = ["fixed"
|
|
|
5883
5903
|
}, q(r.description), 3)) : L("", !0)
|
|
5884
5904
|
])
|
|
5885
5905
|
], 10, o4)
|
|
5886
|
-
],
|
|
5906
|
+
], 34));
|
|
5887
5907
|
}
|
|
5888
|
-
}), Jo = /* @__PURE__ */ nr(i4, [["__scopeId", "data-v-
|
|
5908
|
+
}), Jo = /* @__PURE__ */ nr(i4, [["__scopeId", "data-v-3a9a16e6"]]), u4 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
5889
5909
|
__proto__: null,
|
|
5890
5910
|
default: Jo
|
|
5891
5911
|
}, Symbol.toStringTag, { value: "Module" })), lu = ["plain", "pending", "information", "success", "danger", "neutral", "caution"], d4 = {
|
|
@@ -6521,7 +6541,7 @@ const D4 = {
|
|
|
6521
6541
|
}, re = (O) => ({
|
|
6522
6542
|
[g.value.listItemClasses]: !O.disabled && !(u.value && !D(O)),
|
|
6523
6543
|
"spr-background-color-single-active": D(O) && !O.disabled && !d.value,
|
|
6524
|
-
"spr-cursor-not-allowed spr-flex spr-items-center spr-gap-1.5 spr-rounded-lg": O.disabled || u.value && !D(O),
|
|
6544
|
+
"spr-cursor-not-allowed spr-flex spr-items-center spr-justify-between spr-gap-1.5 spr-rounded-lg": O.disabled || u.value && !D(O),
|
|
6525
6545
|
"spr-p-size-spacing-3xs": !e.lozenge,
|
|
6526
6546
|
"spr-py-size-spacing-3xs spr-px-size-spacing-4xs": e.lozenge
|
|
6527
6547
|
}), ee = () => {
|
|
@@ -14025,7 +14045,7 @@ const x7 = {
|
|
|
14025
14045
|
}), O7 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
14026
14046
|
__proto__: null,
|
|
14027
14047
|
default: vu
|
|
14028
|
-
}, Symbol.toStringTag, { value: "Module" })), j7 = { version: 4, country_calling_codes: { 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"], 7: ["RU", "KZ"], 20: ["EG"], 27: ["ZA"], 30: ["GR"], 31: ["NL"], 32: ["BE"], 33: ["FR"], 34: ["ES"], 36: ["HU"], 39: ["IT", "VA"], 40: ["RO"], 41: ["CH"], 43: ["AT"], 44: ["GB", "GG", "IM", "JE"], 45: ["DK"], 46: ["SE"], 47: ["NO", "SJ"], 48: ["PL"], 49: ["DE"], 51: ["PE"], 52: ["MX"], 53: ["CU"], 54: ["AR"], 55: ["BR"], 56: ["CL"], 57: ["CO"], 58: ["VE"], 60: ["MY"], 61: ["AU", "CC", "CX"], 62: ["ID"], 63: ["PH"], 64: ["NZ"], 65: ["SG"], 66: ["TH"], 81: ["JP"], 82: ["KR"], 84: ["VN"], 86: ["CN"], 90: ["TR"], 91: ["IN"], 92: ["PK"], 93: ["AF"], 94: ["LK"], 95: ["MM"], 98: ["IR"], 211: ["SS"], 212: ["MA", "EH"], 213: ["DZ"], 216: ["TN"], 218: ["LY"], 220: ["GM"], 221: ["SN"], 222: ["MR"], 223: ["ML"], 224: ["GN"], 225: ["CI"], 226: ["BF"], 227: ["NE"], 228: ["TG"], 229: ["BJ"], 230: ["MU"], 231: ["LR"], 232: ["SL"], 233: ["GH"], 234: ["NG"], 235: ["TD"], 236: ["CF"], 237: ["CM"], 238: ["CV"], 239: ["ST"], 240: ["GQ"], 241: ["GA"], 242: ["CG"], 243: ["CD"], 244: ["AO"], 245: ["GW"], 246: ["IO"], 247: ["AC"], 248: ["SC"], 249: ["SD"], 250: ["RW"], 251: ["ET"], 252: ["SO"], 253: ["DJ"], 254: ["KE"], 255: ["TZ"], 256: ["UG"], 257: ["BI"], 258: ["MZ"], 260: ["ZM"], 261: ["MG"], 262: ["RE", "YT"], 263: ["ZW"], 264: ["NA"], 265: ["MW"], 266: ["LS"], 267: ["BW"], 268: ["SZ"], 269: ["KM"], 290: ["SH", "TA"], 291: ["ER"], 297: ["AW"], 298: ["FO"], 299: ["GL"], 350: ["GI"], 351: ["PT"], 352: ["LU"], 353: ["IE"], 354: ["IS"], 355: ["AL"], 356: ["MT"], 357: ["CY"], 358: ["FI", "AX"], 359: ["BG"], 370: ["LT"], 371: ["LV"], 372: ["EE"], 373: ["MD"], 374: ["AM"], 375: ["BY"], 376: ["AD"], 377: ["MC"], 378: ["SM"], 380: ["UA"], 381: ["RS"], 382: ["ME"], 383: ["XK"], 385: ["HR"], 386: ["SI"], 387: ["BA"], 389: ["MK"], 420: ["CZ"], 421: ["SK"], 423: ["LI"], 500: ["FK"], 501: ["BZ"], 502: ["GT"], 503: ["SV"], 504: ["HN"], 505: ["NI"], 506: ["CR"], 507: ["PA"], 508: ["PM"], 509: ["HT"], 590: ["GP", "BL", "MF"], 591: ["BO"], 592: ["GY"], 593: ["EC"], 594: ["GF"], 595: ["PY"], 596: ["MQ"], 597: ["SR"], 598: ["UY"], 599: ["CW", "BQ"], 670: ["TL"], 672: ["NF"], 673: ["BN"], 674: ["NR"], 675: ["PG"], 676: ["TO"], 677: ["SB"], 678: ["VU"], 679: ["FJ"], 680: ["PW"], 681: ["WF"], 682: ["CK"], 683: ["NU"], 685: ["WS"], 686: ["KI"], 687: ["NC"], 688: ["TV"], 689: ["PF"], 690: ["TK"], 691: ["FM"], 692: ["MH"], 850: ["KP"], 852: ["HK"], 853: ["MO"], 855: ["KH"], 856: ["LA"], 880: ["BD"], 886: ["TW"], 960: ["MV"], 961: ["LB"], 962: ["JO"], 963: ["SY"], 964: ["IQ"], 965: ["KW"], 966: ["SA"], 967: ["YE"], 968: ["OM"], 970: ["PS"], 971: ["AE"], 972: ["IL"], 973: ["BH"], 974: ["QA"], 975: ["BT"], 976: ["MN"], 977: ["NP"], 992: ["TJ"], 993: ["TM"], 994: ["AZ"], 995: ["GE"], 996: ["KG"], 998: ["UZ"] }, countries: { AC: ["247", "00", "(?:[01589]\\d|[46])\\d{4}", [5, 6]], AD: ["376", "00", "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", [6, 8, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["[135-9]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["1"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]]], AE: ["971", "00", "(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{2,9})", "$1 $2", ["60|8"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[236]|[479][2-8]"], "0$1"], ["(\\d{3})(\\d)(\\d{5})", "$1 $2 $3", ["[479]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"]], "0"], AF: ["93", "00", "[2-7]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"]], "0"], AG: ["1", "011", "(?:268|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([457]\\d{6})$|1", "268$1", 0, "268"], AI: ["1", "011", "(?:264|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2457]\\d{6})$|1", "264$1", 0, "264"], AL: ["355", "00", "(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}", [6, 7, 8, 9], [["(\\d{3})(\\d{3,4})", "$1 $2", ["80|9"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["4[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2358][2-5]|4"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["[23578]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["6"], "0$1"]], "0"], AM: ["374", "00", "(?:[1-489]\\d|55|60|77)\\d{6}", [8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[89]0"], "0 $1"], ["(\\d{3})(\\d{5})", "$1 $2", ["2|3[12]"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["1|47"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[3-9]"], "0$1"]], "0"], AO: ["244", "00", "[29]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[29]"]]]], AR: ["54", "00", "(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}", [10, 11], [["(\\d{4})(\\d{2})(\\d{4})", "$1 $2-$3", ["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])", "2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["1"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[68]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2-$3", ["[23]"], "0$1", 1], ["(\\d)(\\d{4})(\\d{2})(\\d{4})", "$2 15-$3-$4", ["9(?:2[2-469]|3[3-578])", "9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))", "9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d)(\\d{2})(\\d{4})(\\d{4})", "$2 15-$3-$4", ["91"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d{3})(\\d{3})(\\d{5})", "$1-$2-$3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{4})", "$2 15-$3-$4", ["9"], "0$1", 0, "$1 $2 $3-$4"]], "0", 0, "0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?", "9$1"], AS: ["1", "011", "(?:[58]\\d\\d|684|900)\\d{7}", [10], 0, "1", 0, "([267]\\d{6})$|1", "684$1", 0, "684"], AT: ["43", "00", "1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{3,12})", "$1 $2", ["1(?:11|[2-9])"], "0$1"], ["(\\d{3})(\\d{2})", "$1 $2", ["517"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["5[079]"], "0$1"], ["(\\d{3})(\\d{3,10})", "$1 $2", ["(?:31|4)6|51|6(?:48|5[0-3579]|[6-9])|7(?:20|32|8)|[89]", "(?:31|4)6|51|6(?:485|5[0-3579]|[6-9])|7(?:20|32|8)|[89]"], "0$1"], ["(\\d{4})(\\d{3,9})", "$1 $2", ["[2-467]|5[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,7})", "$1 $2 $3", ["5"], "0$1"]], "0"], AU: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}", [5, 6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{3,4})", "$1 $2", ["16"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["16"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["14|4"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[2378]"], "(0$1)"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:30|[89])"]]], "0", 0, "(183[12])|0", 0, 0, 0, [["(?:(?:2(?:(?:[0-26-9]\\d|3[0-8]|5[0135-9])\\d|4(?:[02-9]\\d|10))|3(?:(?:[0-3589]\\d|6[1-9]|7[0-35-9])\\d|4(?:[0-578]\\d|90))|7(?:[013-57-9]\\d|2[0-8])\\d)\\d\\d|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4])|[34]\\d\\d)|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79])))))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, ["163\\d{2,6}", [5, 6, 7, 8, 9]], ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], AW: ["297", "00", "(?:[25-79]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[25-9]"]]]], AX: ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}", [5, 6, 7, 8, 9, 10, 11, 12], 0, "0", 0, 0, 0, 0, "18", 0, "00"], AZ: ["994", "00", "365\\d{6}|(?:[124579]\\d|60|88)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[28]|2|365|46", "1[28]|2|365[45]|46", "1[28]|2|365(?:4|5[02])|46"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[13-9]"], "0$1"]], "0"], BA: ["387", "00", "6\\d{8}|(?:[35689]\\d|49|70)\\d{6}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[1-3]|[7-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2-$3", ["[3-5]|6[56]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["6"], "0$1"]], "0"], BB: ["1", "011", "(?:246|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "246$1", 0, "246"], BD: ["880", "00", "[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1-$2", ["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"], "0$1"], ["(\\d{4})(\\d{3,6})", "$1-$2", ["[13-9]|2[23]"], "0$1"], ["(\\d)(\\d{7,8})", "$1-$2", ["2"], "0$1"]], "0"], BE: ["32", "00", "4\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:80|9)0"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[239]|4[23]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[15-8]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4"], "0$1"]], "0"], BF: ["226", "00", "(?:[025-7]\\d|44)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[024-7]"]]]], BG: ["359", "00", "00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}", [6, 7, 8, 9, 12], [["(\\d)(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["43[1-6]|70[1-9]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:70|8)0"], "0$1"], ["(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3", ["43[1-7]|7"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[48]|9[08]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"]], "0"], BH: ["973", "00", "[136-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[13679]|8[02-4679]"]]]], BI: ["257", "00", "(?:[267]\\d|31)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2367]"]]]], BJ: ["229", "00", "(?:01\\d|[24-689])\\d{7}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["0"]]]], BL: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:2[7-9]|3[3-7]|5[12]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], BM: ["1", "011", "(?:441|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "441$1", 0, "441"], BN: ["673", "00", "[2-578]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-578]"]]]], BO: ["591", "00(?:1\\d)?", "8001\\d{5}|(?:[2-467]\\d|50)\\d{6}", [8, 9], [["(\\d)(\\d{7})", "$1 $2", ["[235]|4[46]"]], ["(\\d{8})", "$1", ["[67]"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["8"]]], "0", 0, "0(1\\d)?"], BQ: ["599", "00", "(?:[34]1|7\\d)\\d{5}", [7], 0, 0, 0, 0, 0, 0, "[347]"], BR: ["55", "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)", "[1-467]\\d{9,10}|55[0-46-9]\\d{8}|[34]\\d{7}|55\\d{7,8}|(?:5[0-46-9]|[89]\\d)\\d{7,9}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37|86)", "300|4(?:0(?:0|20)|370|864)"]], ["(\\d{3})(\\d{2,3})(\\d{4})", "$1 $2 $3", ["(?:[358]|90)0"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"], "($1)"], ["(\\d{2})(\\d{5})(\\d{4})", "$1 $2-$3", ["[16][1-9]|[2-57-9]"], "($1)"]], "0", 0, "(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?", "$2"], BS: ["1", "011", "(?:242|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([3-8]\\d{6})$|1", "242$1", 0, "242"], BT: ["975", "00", "[178]\\d{7}|[2-8]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-6]|7[246]|8[2-4]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[67]|[78]"]]]], BW: ["267", "00", "(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["90"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[24-6]|3[15-9]"]], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37]"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["8"]]]], BY: ["375", "810", "(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3})", "$1 $2", ["800"], "8 $1"], ["(\\d{3})(\\d{2})(\\d{2,4})", "$1 $2 $3", ["800"], "8 $1"], ["(\\d{4})(\\d{2})(\\d{3})", "$1 $2-$3", ["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])", "1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"], "8 0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["1(?:[56]|7[467])|2[1-3]"], "8 0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-4]"], "8 0$1"], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[89]"], "8 $1"]], "8", 0, "0|80?", 0, 0, 0, 0, "8~10"], BZ: ["501", "00", "(?:0800\\d|[2-8])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-8]"]], ["(\\d)(\\d{3})(\\d{4})(\\d{3})", "$1-$2-$3-$4", ["0"]]]], CA: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [7, 10], 0, "1", 0, 0, 0, 0, 0, [["(?:2(?:04|[23]6|[48]9|5[07]|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", [10]], ["", [10]], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", [10]], ["900[2-9]\\d{6}", [10]], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:2[125-9]|33|44|66|77|88)|6(?:22|33))[2-9]\\d{6}", [10]], 0, ["310\\d{4}", [7]], 0, ["600[2-9]\\d{6}", [10]]]], CC: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], CD: ["243", "00", "(?:(?:[189]|5\\d)\\d|2)\\d{7}|[1-68]\\d{6}", [7, 8, 9, 10], [["(\\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"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["5"], "0$1"]], "0"], CF: ["236", "00", "(?:[27]\\d{3}|8776)\\d{4}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[278]"]]]], CG: ["242", "00", "222\\d{6}|(?:0\\d|80)\\d{7}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]]], CH: ["41", "00", "8\\d{11}|[2-9]\\d{8}", [9, 12], [["(\\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"]], "0"], CI: ["225", "00", "[02]\\d{9}", [10], [["(\\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"]]]], CK: ["682", "00", "[2-578]\\d{4}", [5], [["(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]]], CL: ["56", "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", "12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}", [9, 10, 11], [["(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["60|809"]], ["(\\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(?:10|[2-9])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-8]|[1-9])"], "($1)"], ["(\\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"]]]], CM: ["237", "00", "[26]\\d{8}|88\\d{6,7}", [8, 9], [["(\\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"]]]], CN: ["86", "00|1(?:[12]\\d|79)\\d\\d00", "(?:(?: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], [["(\\d{2})(\\d{5,6})", "$1 $2", ["(?:10|2[0-57-9])[19]|3(?:[157]|35|49|9[1-68])|4(?:1[124-9]|2[179]|6[47-9]|7|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:07|1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3|4[13]|5[1-5]|7[0-79]|9[0-35-9])|(?:4[35]|59|85)[1-9]", "(?:10|2[0-57-9])(?:1[02]|9[56])|8078|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))1", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|80781|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))12", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|807812|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:078|1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123"], "0$1"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]", "(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]", "85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])", "85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["(?:4|80)0"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|2(?:[02-57-9]|1[1-9])", "10|2(?:[02-57-9]|1[1-9])", "10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"], "0$1", 1], ["(\\d{3})(\\d{7,8})", "$1 $2", ["9"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["80"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[3-578]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["1[3-9]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["[12]"], "0$1", 1]], "0", 0, "(1(?:[12]\\d|79)\\d\\d)|0", 0, 0, 0, 0, "00"], CO: ["57", "00(?:4(?:[14]4|56)|[579])", "(?:46|60\\d\\d)\\d{6}|(?:1\\d|[39])\\d{9}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["46"]], ["(\\d{3})(\\d{7})", "$1 $2", ["6|90"], "($1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3[0-357]|9[14]"]], ["(\\d)(\\d{3})(\\d{7})", "$1-$2-$3", ["1"], "0$1", 0, "$1 $2 $3"]], "0", 0, "0([3579]|4(?:[14]4|56))?"], CR: ["506", "00", "(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}", [8, 10], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[3-9]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[89]"]]], 0, 0, "(19(?:0[0-2468]|1[09]|20|66|77|99))"], CU: ["53", "119", "(?:[2-7]|8\\d\\d)\\d{7}|[2-47]\\d{6}|[34]\\d{5}", [6, 7, 8, 10], [["(\\d{2})(\\d{4,6})", "$1 $2", ["2[1-4]|[34]"], "(0$1)"], ["(\\d)(\\d{6,7})", "$1 $2", ["7"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["[56]"], "0$1"], ["(\\d{3})(\\d{7})", "$1 $2", ["8"], "0$1"]], "0"], CV: ["238", "0", "(?:[2-59]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-589]"]]]], CW: ["599", "00", "(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[3467]"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["9[4-8]"]]], 0, 0, 0, 0, 0, "[69]"], CX: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], CY: ["357", "00", "(?:[279]\\d|[58]0)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[257-9]"]]]], CZ: ["420", "00", "(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}", [9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]|9[015-7]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["96"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]]], DE: ["49", "00", "[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [["(\\d{2})(\\d{3,13})", "$1 $2", ["3[02]|40|[68]9"], "0$1"], ["(\\d{3})(\\d{3,12})", "$1 $2", ["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1", "2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"], "0$1"], ["(\\d{4})(\\d{2,11})", "$1 $2", ["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]", "[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["138"], "0$1"], ["(\\d{5})(\\d{2,10})", "$1 $2", ["3"], "0$1"], ["(\\d{3})(\\d{5,11})", "$1 $2", ["181"], "0$1"], ["(\\d{3})(\\d)(\\d{4,10})", "$1 $2 $3", ["1(?:3|80)|9"], "0$1"], ["(\\d{3})(\\d{7,8})", "$1 $2", ["1[67]"], "0$1"], ["(\\d{3})(\\d{7,12})", "$1 $2", ["8"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["185", "1850", "18500"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["18[68]"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["15[1279]"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["15[03568]", "15(?:[0568]|3[13])"], "0$1"], ["(\\d{3})(\\d{8})", "$1 $2", ["18"], "0$1"], ["(\\d{3})(\\d{2})(\\d{7,8})", "$1 $2 $3", ["1(?:6[023]|7)"], "0$1"], ["(\\d{4})(\\d{2})(\\d{7})", "$1 $2 $3", ["15[279]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{8})", "$1 $2 $3", ["15"], "0$1"]], "0"], DJ: ["253", "00", "(?:2\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[27]"]]]], DK: ["45", "00", "[2-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-9]"]]]], DM: ["1", "011", "(?:[58]\\d\\d|767|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "767$1", 0, "767"], DO: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "8001|8[024]9"], DZ: ["213", "00", "(?:[1-4]|[5-79]\\d|80)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["9"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-8]"], "0$1"]], "0"], EC: ["593", "00", "1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}", [8, 9, 10, 11], [["(\\d)(\\d{3})(\\d{4})", "$1 $2-$3", ["[2-7]"], "(0$1)", 0, "$1-$2-$3"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1"]]], "0"], EE: ["372", "00", "8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88", "[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]], ["(\\d{4})(\\d{3,4})", "$1 $2", ["[45]|8(?:00|[1-49])", "[45]|8(?:00[1-9]|[1-49])"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], EG: ["20", "00", "[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}", [8, 9, 10], [["(\\d)(\\d{7,8})", "$1 $2", ["[23]"], "0$1"], ["(\\d{2})(\\d{6,7})", "$1 $2", ["1[35]|[4-6]|8[2468]|9[235-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{8})", "$1 $2", ["1"], "0$1"]], "0"], EH: ["212", "00", "[5-8]\\d{8}", [9], 0, "0", 0, 0, 0, 0, "528[89]"], ER: ["291", "00", "[178]\\d{6}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[178]"], "0$1"]], "0"], ES: ["34", "00", "[5-9]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]00"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-9]"]]]], ET: ["251", "00", "(?:11|[2-579]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-579]"], "0$1"]], "0"], FI: ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{5})", "$1", ["20[2-59]"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1 $2", ["(?:[1-3]0|[68])0|70[07-9]"], "0$1"], ["(\\d{2})(\\d{4,8})", "$1 $2", ["[14]|2[09]|50|7[135]"], "0$1"], ["(\\d{2})(\\d{6,10})", "$1 $2", ["7"], "0$1"], ["(\\d)(\\d{4,9})", "$1 $2", ["(?:19|[2568])[1-8]|3(?:0[1-9]|[1-9])|9"], "0$1"]], "0", 0, 0, 0, 0, "1[03-79]|[2-9]", 0, "00"], FJ: ["679", "0(?:0|52)", "45\\d{5}|(?:0800\\d|[235-9])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[235-9]|45"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]]], 0, 0, 0, 0, 0, 0, 0, "00"], FK: ["500", "00", "[2-7]\\d{4}", [5]], FM: ["691", "00", "(?:[39]\\d\\d|820)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[389]"]]]], FO: ["298", "00", "[2-9]\\d{5}", [6], [["(\\d{6})", "$1", ["[2-9]"]]], 0, 0, "(10(?:01|[12]0|88))"], FR: ["33", "00", "[1-9]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0 $1"], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[1-79]"], "0$1"]], "0"], GA: ["241", "00", "(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}", [7, 8], [["(\\d)(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-7]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["11|[67]"], "0$1"]], 0, 0, "0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})", "$1"], GB: ["44", "00", "[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}", [7, 9, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["800", "8001", "80011", "800111", "8001111"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["845", "8454", "84546", "845464"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["800"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["1(?:38|5[23]|69|76|94)", "1(?:(?:38|69)7|5(?:24|39)|768|946)", "1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["1(?:[2-69][02-9]|[78])"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[25]|7(?:0|6[02-9])", "[25]|7(?:0|6(?:[03-9]|2[356]))"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1389]"], "0$1"]], "0", 0, "0|180020", 0, 0, 0, [["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0-5])|4(?:(?:[0-5]\\d|70)\\d|69[7-9])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|5[01]))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-3]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}", [9, 10]], ["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]], 0, " x"], GD: ["1", "011", "(?:473|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "473$1", 0, "473"], GE: ["995", "00", "(?:[3-57]\\d\\d|800)\\d{6}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["32"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[57]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[348]"], "0$1"]], "0"], GF: ["594", "00", "(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]|9[47]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], "0"], GG: ["44", "00", "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", [7, 9, 10], 0, "0", 0, "([25-9]\\d{5})$|0|180020", "1481$1", 0, 0, [["1481[25-9]\\d{5}", [10]], ["7(?:(?:781|839)\\d|911[17])\\d{5}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]]], GH: ["233", "00", "(?:[235]\\d{3}|800)\\d{5}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], "0"], GI: ["350", "00", "(?:[25]\\d|60)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["2"]]]], GL: ["299", "00", "(?:19|[2-689]\\d|70)\\d{4}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]]], GM: ["220", "00", "[2-9]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], GN: ["224", "00", "722\\d{6}|(?:3|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[67]"]]]], GP: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0", 0, 0, 0, 0, 0, [["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], GQ: ["240", "00", "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], ["(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]]], GR: ["30", "00", "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", [10, 11, 12], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["21|7"]], ["(\\d{4})(\\d{6})", "$1 $2", ["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2689]"]], ["(\\d{3})(\\d{3,4})(\\d{5})", "$1 $2 $3", ["8"]]]], GT: ["502", "00", "80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-8]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], GU: ["1", "011", "(?:[58]\\d\\d|671|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "671$1", 0, "671"], GW: ["245", "00", "[49]\\d{8}|4\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["40"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"]]]], GY: ["592", "001", "(?:[2-8]\\d{3}|9008)\\d{3}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], HK: ["852", "00(?:30|5[09]|[126-9]?)", "8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}", [5, 6, 7, 8, 9, 11], [["(\\d{3})(\\d{2,5})", "$1 $2", ["900", "9003"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{3})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]], 0, 0, 0, 0, 0, 0, 0, "00"], HN: ["504", "00", "8\\d{10}|[237-9]\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["[237-9]"]]]], HR: ["385", "00", "[2-69]\\d{8}|80\\d{5,7}|[1-79]\\d{7}|6\\d{6}", [7, 8, 9], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["6[01]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{4})(\\d{3})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6|7[245]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-57]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"]], "0"], HT: ["509", "00", "[2-589]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[2-589]"]]]], HU: ["36", "00", "[235-7]\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "06 $1"]], "06"], ID: ["62", "00[89]", "00[1-9]\\d{9,14}|(?:[1-36]|8\\d{5})\\d{6}|00\\d{9}|[1-9]\\d{8,10}|[2-9]\\d{7}", [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["15"]], ["(\\d{2})(\\d{5,9})", "$1 $2", ["2[124]|[36]1"], "(0$1)"], ["(\\d{3})(\\d{5,7})", "$1 $2", ["800"], "0$1"], ["(\\d{3})(\\d{5,8})", "$1 $2", ["[2-79]"], "(0$1)"], ["(\\d{3})(\\d{3,4})(\\d{3})", "$1-$2-$3", ["8[1-35-9]"], "0$1"], ["(\\d{3})(\\d{6,8})", "$1 $2", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["804"], "0$1"], ["(\\d{3})(\\d)(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["80"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1-$2-$3", ["8"], "0$1"]], "0"], IE: ["353", "00", "(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["2[24-9]|47|58|6[237-9]|9[35-9]"], "(0$1)"], ["(\\d{3})(\\d{5})", "$1 $2", ["[45]0"], "(0$1)"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2569]|4[1-69]|7[14]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["81"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["4"], "(0$1)"], ["(\\d{2})(\\d)(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], IL: ["972", "0(?:0|1[2-9])", "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", [7, 8, 9, 10, 11, 12], [["(\\d{4})(\\d{3})", "$1-$2", ["125"]], ["(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], ["(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], ["(\\d{4})(\\d{6})", "$1-$2", ["159"]], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3-$4", ["1[7-9]"]], ["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]], "0"], IM: ["44", "00", "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([25-8]\\d{5})$|0|180020", "1624$1", 0, "74576|(?:16|7[56])24"], IN: ["91", "00", "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", [8, 9, 10, 11, 12, 13], [["(\\d{8})", "$1", ["5(?:0|2[23]|3[03]|[67]1|88)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"], 0, 1], ["(\\d{4})(\\d{4,5})", "$1 $2", ["180", "1800"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["140"], 0, 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["11|2[02]|33|4[04]|79[1-7]|80[2-46]", "11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])", "11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"], "0$1", 1], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807", "1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]", "1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"], "0$1", 1], ["(\\d{5})(\\d{5})", "$1 $2", ["[6-9]"], "0$1", 1], ["(\\d{4})(\\d{2,4})(\\d{4})", "$1 $2 $3", ["1(?:6|8[06])", "1(?:6|8[06]0)"], 0, 1], ["(\\d{4})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["18"], 0, 1]], "0"], IO: ["246", "00", "3\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["3"]]]], IQ: ["964", "00", "(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-6]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"]], "0"], IR: ["98", "00", "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", [4, 5, 6, 7, 10], [["(\\d{4,5})", "$1", ["96"], "0$1"], ["(\\d{2})(\\d{4,5})", "$1 $2", ["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[1-8]"], "0$1"]], "0"], IS: ["354", "00|1(?:0(?:01|[12]0)|100)", "(?:38\\d|[4-9])\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["[4-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["3"]]], 0, 0, 0, 0, 0, 0, 0, "00"], IT: ["39", "00", "0\\d{5,11}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:43|55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?", [6, 7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{4,6})", "$1 $2", ["0[26]"]], ["(\\d{3})(\\d{3,6})", "$1 $2", ["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])", "0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]], ["(\\d{4})(\\d{2,6})", "$1 $2", ["0(?:[13-579][2-46-8]|8[236-8])"]], ["(\\d{4})(\\d{4})", "$1 $2", ["894"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[26]|5"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1(?:44|[679])|[378]|43"]], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[13-57-9][0159]|14"]], ["(\\d{2})(\\d{4})(\\d{5})", "$1 $2 $3", ["0[26]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[03]"]]], 0, 0, 0, 0, 0, 0, [["0(?:669[0-79]\\d{1,6}|831\\d{2,8})|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[2356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"], ["3[2-9]\\d{7,8}|(?:31|43)\\d{8}", [9, 10]], ["80(?:0\\d{3}|3)\\d{3}", [6, 9]], ["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}", [6, 8, 9, 10]], ["1(?:78\\d|99)\\d{6}", [9, 10]], ["3[2-8]\\d{9,10}", [11, 12]], 0, 0, ["55\\d{8}", [10]], ["84(?:[08]\\d{3}|[17])\\d{3}", [6, 9]]]], JE: ["44", "00", "1534\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([0-24-8]\\d{5})$|0|180020", "1534$1", 0, 0, [["1534[0-24-8]\\d{5}"], ["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97\\d))\\d{5}"], ["80(?:07(?:35|81)|8901)\\d{4}"], ["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"], ["701511\\d{4}"], 0, ["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"], ["56\\d{8}"]]], JM: ["1", "011", "(?:[58]\\d\\d|658|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "658|876"], JO: ["962", "00", "(?:(?:[2689]|7\\d)\\d|32|427|53)\\d{6}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2356]|87"], "(0$1)"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["70"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[47]"], "0$1"]], "0"], JP: ["81", "010", "00[1-9]\\d{6,14}|[25-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}", [8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3", ["(?:12|57|99)0"], "0$1"], ["(\\d{4})(\\d)(\\d{4})", "$1-$2-$3", ["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["60"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2-$3", ["3|4(?:2[09]|7[01])|6[1-9]", "3|4(?:2(?:0|9[02-69])|7(?:0[019]|1))|6[1-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3", ["[14]|[289][2-9]|5[3-9]|7[2-4679]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["800"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[25-9]"], "0$1"]], "0", 0, "(000[2569]\\d{4,6})$|(?:(?:003768)0?)|0", "$1"], KE: ["254", "000", "(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}", [7, 8, 9, 10], [["(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0"], KG: ["996", "00", "8\\d{9}|[235-9]\\d{8}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["3(?:1[346]|[24-79])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-79]|88"], "0$1"], ["(\\d{3})(\\d{3})(\\d)(\\d{2,3})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], KH: ["855", "00[14-9]", "1\\d{9}|[1-9]\\d{7,8}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], KI: ["686", "00", "(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}", [5, 8], 0, "0"], KM: ["269", "00", "[3478]\\d{6}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[3478]"]]]], KN: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "869$1", 0, "869"], KP: ["850", "00|99", "85\\d{6}|(?:19\\d|[2-7])\\d{7}", [8, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"]], "0"], KR: ["82", "00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", [5, 6, 8, 9, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3,4})", "$1-$2", ["(?:3[1-3]|[46][1-4]|5[1-5])1"], "0$1"], ["(\\d{4})(\\d{4})", "$1-$2", ["1"]], ["(\\d)(\\d{3,4})(\\d{4})", "$1-$2-$3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[36]0|8"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1-$2-$3", ["[1346]|5[1-5]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{2})(\\d{5})(\\d{4})", "$1-$2-$3", ["5"], "0$1"]], "0", 0, "0(8(?:[1-46-8]|5\\d\\d))?"], KW: ["965", "00", "18\\d{5}|(?:[2569]\\d|41)\\d{6}", [7, 8], [["(\\d{4})(\\d{3,4})", "$1 $2", ["[169]|2(?:[235]|4[1-35-9])|52"]], ["(\\d{3})(\\d{5})", "$1 $2", ["[245]"]]]], KY: ["1", "011", "(?:345|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "345$1", 0, "345"], KZ: ["7", "810", "(?:33622|8\\d{8})\\d{5}|[78]\\d{9}", [10, 14], 0, "8", 0, 0, 0, 0, "33622|7", 0, "8~10"], LA: ["856", "00", "[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2[13]|3[14]|[4-8]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["3"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0"], LB: ["961", "00", "[27-9]\\d{7}|[13-9]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[13-69]|7(?:[2-57]|62|8[0-6]|9[04-9])|8[02-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27-9]"]]], "0"], LC: ["1", "011", "(?:[58]\\d\\d|758|900)\\d{7}", [10], 0, "1", 0, "([2-8]\\d{6})$|1", "758$1", 0, "758"], LI: ["423", "00", "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", [7, 9], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2379]|8(?:0[09]|7)", "[2379]|8(?:0(?:02|9)|7)"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["69"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]], "0", 0, "(1001)|0"], LK: ["94", "00", "[1-9]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[1-689]"], "0$1"]], "0"], LR: ["231", "00", "(?:[2457]\\d|33|88)\\d{7}|(?:2\\d|[4-6])\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["4[67]|[56]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-578]"], "0$1"]], "0"], LS: ["266", "00", "(?:[256]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2568]"]]]], LT: ["370", "00", "(?:[3469]\\d|52|[78]0)\\d{6}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["52[0-7]"], "(0-$1)", 1], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0 $1", 1], ["(\\d{2})(\\d{6})", "$1 $2", ["37|4(?:[15]|6[1-8])"], "(0-$1)", 1], ["(\\d{3})(\\d{5})", "$1 $2", ["[3-6]"], "(0-$1)", 1]], "0", 0, "[08]"], LU: ["352", "00", "35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}", [4, 5, 6, 7, 8, 9, 10, 11], [["(\\d{2})(\\d{3})", "$1 $2", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["20[2-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4", ["2(?:[0367]|4[3-8])"]], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["80[01]|90[015]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["20"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4 $5", ["2(?:[0367]|4[3-8])"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})", "$1 $2 $3 $4", ["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]], 0, 0, "(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"], LV: ["371", "00", "(?:[268]\\d|78|90)\\d{6}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2679]|8[01]"]]]], LY: ["218", "00", "[2-9]\\d{8}", [9], [["(\\d{2})(\\d{7})", "$1-$2", ["[2-9]"], "0$1"]], "0"], MA: ["212", "00", "[5-8]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5[45]"], "0$1"], ["(\\d{4})(\\d{5})", "$1-$2", ["5(?:2[2-46-9]|3[3-9]|9)|8(?:0[89]|92)"], "0$1"], ["(\\d{2})(\\d{7})", "$1-$2", ["8"], "0$1"], ["(\\d{3})(\\d{6})", "$1-$2", ["[5-7]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["5(?:2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-7])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"], ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-8]|5[0-5]|8[0-7]))\\d{6}"], ["80[0-7]\\d{6}"], ["89\\d{7}"], 0, 0, 0, 0, ["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]], MC: ["377", "00", "(?:[3489]|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["4"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[389]"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["6"], "0$1"]], "0"], MD: ["373", "00", "(?:[235-7]\\d|[89]0)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["22|3"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[25-7]"], "0$1"]], "0"], ME: ["382", "00", "(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "0$1"]], "0"], MF: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], MG: ["261", "00", "[23]\\d{8}", [9], [["(\\d{2})(\\d{2})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0", 0, "([24-9]\\d{6})$|0", "20$1"], MH: ["692", "011", "329\\d{4}|(?:[256]\\d|45)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-6]"]]], "1"], MK: ["389", "00", "[2-578]\\d{7}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2|34[47]|4(?:[37]7|5[47]|64)"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[347]"], "0$1"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[58]"], "0$1"]], "0"], ML: ["223", "00", "[24-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-9]"]]]], MM: ["95", "00", "1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}", [6, 7, 8, 9, 10], [["(\\d)(\\d{2})(\\d{3})", "$1 $2 $3", ["16|2"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["4(?:[2-46]|5[3-5])|5|6(?:[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-5]|(?:60|86)[23]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]|452|678|86", "[12]|452|6788|86"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[4-7]|8[1-35]"], "0$1"], ["(\\d)(\\d{3})(\\d{4,6})", "$1 $2 $3", ["9(?:2[0-4]|[35-9]|4[137-9])"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["92"], "0$1"], ["(\\d)(\\d{5})(\\d{4})", "$1 $2 $3", ["9"], "0$1"]], "0"], MN: ["976", "001", "[12]\\d{7,9}|[5-9]\\d{7}", [8, 9, 10], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[12]1"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[5-9]"]], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[12]2[1-3]"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["[12](?:27|3[2-8]|4[2-68]|5[1-4689])", "[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["[12]"], "0$1"]], "0"], MO: ["853", "00", "0800\\d{3}|(?:28|[68]\\d)\\d{6}", [7, 8], [["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[268]"]]]], MP: ["1", "011", "[58]\\d{9}|(?:67|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "670$1", 0, "670"], MQ: ["596", "00", "(?:596\\d|7091)\\d{5}|(?:69|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|8(?:0[6-9]|[36])"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], MR: ["222", "00", "(?:[2-4]\\d\\d|800)\\d{5}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-48]"]]]], MS: ["1", "011", "(?:[58]\\d\\d|664|900)\\d{7}", [10], 0, "1", 0, "([34]\\d{6})$|1", "664$1", 0, "664"], MT: ["356", "00", "3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2357-9]"]]]], MU: ["230", "0(?:0|[24-7]0|3[03])", "(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-46]|8[013]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[57]"]], ["(\\d{5})(\\d{5})", "$1 $2", ["8"]]], 0, 0, 0, 0, 0, 0, 0, "020"], MV: ["960", "0(?:0|19)", "(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}", [7, 10], [["(\\d{3})(\\d{4})", "$1-$2", ["[34679]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], MW: ["265", "00", "(?:[1289]\\d|31|77)\\d{7}|1\\d{6}", [7, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["1[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[137-9]"], "0$1"]], "0"], MX: ["52", "0[09]", "[2-9]\\d{9}", [10], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["33|5[56]|81"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], MY: ["60", "00", "1\\d{8,9}|(?:3\\d|[4-9])\\d{7}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1-$2 $3", ["[4-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1-$2 $3", ["1(?:[02469]|[378][1-9]|53)|8", "1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2 $3", ["3"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3-$4", ["1(?:[367]|80)"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2 $3", ["15"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2 $3", ["1"], "0$1"]], "0"], MZ: ["258", "00", "(?:2|8\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2|8[2-79]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], NA: ["264", "00", "[68]\\d{7,8}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["87"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], NC: ["687", "00", "(?:050|[2-57-9]\\d\\d)\\d{3}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1.$2.$3", ["[02-57-9]"]]]], NE: ["227", "00", "[027-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["08"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[089]|2[013]|7[0467]"]]]], NF: ["672", "00", "[13]\\d{5}", [6], [["(\\d{2})(\\d{4})", "$1 $2", ["1[0-3]"]], ["(\\d)(\\d{5})", "$1 $2", ["[13]"]]], 0, 0, "([0-258]\\d{4})$", "3$1"], NG: ["234", "009", "(?:20|9\\d)\\d{8}|[78]\\d{9,13}", [10, 11, 12, 13, 14], [["(\\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"], ["(\\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"]], "0"], NI: ["505", "00", "(?:1800|[25-8]\\d{3})\\d{4}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]]], NL: ["31", "00", "(?:[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], [["(\\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"], ["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], "0"], NO: ["47", "00", "(?:0|[2-9]\\d{3})\\d{4}", [5, 8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]"]]], 0, 0, 0, 0, 0, "[02-689]|7[0-8]"], NP: ["977", "00", "(?:1\\d|9)\\d{9}|[1-9]\\d{7}", [8, 10, 11], [["(\\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"]]], "0"], NR: ["674", "00", "(?:222|444|(?:55|8\\d)\\d|666|777|999)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[24-9]"]]]], NU: ["683", "00", "(?:[4-7]|888\\d)\\d{3}", [4, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["8"]]]], NZ: ["64", "0(?:0|161)", "[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], [["(\\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"]], "0", 0, 0, 0, 0, 0, 0, "00"], OM: ["968", "00", "(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}", [7, 8, 9], [["(\\d{3})(\\d{4,6})", "$1 $2", ["[58]"]], ["(\\d{2})(\\d{6})", "$1 $2", ["2"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]]], PA: ["507", "00", "(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}", [7, 8, 10, 11], [["(\\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"]]]], PE: ["51", "00|19(?:1[124]|77|90)00", "(?:[14-8]|9\\d)\\d{7}", [8, 9], [["(\\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"]]], "0", 0, 0, 0, 0, 0, 0, "00", " Anexo "], PF: ["689", "00", "4\\d{5}(?:\\d{2})?|8\\d{7,8}", [6, 8, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["44"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4|8[7-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], PG: ["675", "00|140[1-3]", "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["18|[2-69]|85"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], PH: ["63", "00", "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", [6, 8, 9, 10, 11, 12, 13], [["(\\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)"], ["(\\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"]]], "0"], PK: ["92", "00", "122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,7})", "$1 $2 $3", ["[89]0"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["1"]], ["(\\d{3})(\\d{6,7})", "$1 $2", ["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])", "9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"], "(0$1)"], ["(\\d{2})(\\d{7,8})", "$1 $2", ["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"], "(0$1)"], ["(\\d{5})(\\d{5})", "$1 $2", ["58"], "(0$1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[24-9]"], "(0$1)"]], "0"], PL: ["48", "00", "(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{5})", "$1", ["19"]], ["(\\d{3})(\\d{3})", "$1 $2", ["11|20|64"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1", "(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["64"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]]], PM: ["508", "00", "[45]\\d{5}|(?:708|8\\d\\d)\\d{6}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[45]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], PR: ["1", "011", "(?:[589]\\d\\d|787)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "787|939"], PS: ["970", "00", "[2489]2\\d{6}|(?:1\\d|5)\\d{8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2489]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], PT: ["351", "00", "1693\\d{5}|(?:[26-9]\\d|30)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["2[12]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["16|[236-9]"]]]], PW: ["680", "01[12]", "(?:[24-8]\\d\\d|345|900)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], PY: ["595", "00", "59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3,6})", "$1 $2", ["[2-9]0"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"], "(0$1)"], ["(\\d{3})(\\d{4,5})", "$1 $2", ["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["87"]], ["(\\d{3})(\\d{6})", "$1 $2", ["9(?:[5-79]|8[1-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"]]], "0"], QA: ["974", "00", "800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}", [7, 8, 9, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["2[136]|8"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]]], RE: ["262", "00", "709\\d{6}|(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"], ["(?:69(?:2\\d\\d|3(?:[06][0-6]|1[0-3]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))|7092[0-3])\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-6]|76(?:2[278]|3[0-37]))\\d{4}"], ["8(?:1[019]|2[0156]|84|90)\\d{6}"]]], RO: ["40", "00", "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", [6, 9], [["(\\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"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[236-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, " int "], RS: ["381", "00", "38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}", [6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{3,9})", "$1 $2", ["(?:2[389]|39)0|[7-9]"], "0$1"], ["(\\d{2})(\\d{5,10})", "$1 $2", ["[1-36]"], "0$1"]], "0"], RU: ["7", "810", "8\\d{13}|[347-9]\\d{9}", [10, 14], [["(\\d{4})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-8]|2[1-9])", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"], "8 ($1)", 1], ["(\\d{5})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-68]|2[1-9])", "7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))", "7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[349]|8(?:[02-7]|1[1-8])"], "8 ($1)", 1], ["(\\d{4})(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["8"], "8 ($1)"]], "8", 0, 0, 0, 0, 0, [["336(?:[013-9]\\d|2[013-9])\\d{5}|(?:3(?:0[12]|4[1-35-79]|5[1-3]|65|8[1-58]|9[0145])|4(?:01|1[1356]|2[13467]|7[1-5]|8[1-7]|9[1-689])|8(?:1[1-8]|2[01]|3[13-6]|4[0-8]|5[15-7]|6[0-35-79]|7[1-37-9]))\\d{7}", [10]], ["9\\d{9}", [10]], ["8(?:0[04]|108\\d{3})\\d{7}"], ["80[39]\\d{7}", [10]], ["808\\d{7}", [10]]], "8~10"], RW: ["250", "00", "(?:06|[27]\\d\\d|[89]00)\\d{6}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0$1"]], "0"], SA: ["966", "00", "(?:[15]\\d|800|92)\\d{7}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["9"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], "0"], SB: ["677", "0[01]", "[6-9]\\d{6}|[1-6]\\d{4}", [5, 7], [["(\\d{2})(\\d{5})", "$1 $2", ["6[89]|7|8[4-9]|9(?:[1-8]|9[0-8])"]]]], SC: ["248", "010|0[0-2]", "(?:[2489]\\d|64)\\d{5}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[246]|9[57]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], SD: ["249", "00", "[19]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], SE: ["46", "00", "(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}", [6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1", 0, "$1 $2"], ["(\\d{2})(\\d{3})(\\d{2})", "$1-$2 $3", ["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3"], ["(\\d)(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{2,3})(\\d{3})", "$1-$2 $3", ["9(?:00|39|44)"], "0$1", 0, "$1 $2 $3"], ["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["10|7"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{3})", "$1-$2 $3 $4", ["9"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4 $5", ["[26]"], "0$1", 0, "$1 $2 $3 $4 $5"]], "0"], SG: ["65", "0[0-3]\\d", "(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[369]|8(?:0[1-9]|[1-9])"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{4})(\\d{4})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], SH: ["290", "00", "(?:[256]\\d|8)\\d{3}", [4, 5], 0, 0, 0, 0, 0, 0, "[256]"], SI: ["386", "00|10(?:22|66|88|99)", "[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}", [5, 6, 7, 8], [["(\\d{2})(\\d{3,6})", "$1 $2", ["8[09]|9"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["59|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37][01]|4[0139]|51|6"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-57]"], "(0$1)"]], "0", 0, 0, 0, 0, 0, 0, "00"], SJ: ["47", "00", "0\\d{4}|(?:[489]\\d|79)\\d{6}", [5, 8], 0, 0, 0, 0, 0, 0, "79"], SK: ["421", "00", "[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}", [6, 7, 9], [["(\\d)(\\d{2})(\\d{3,4})", "$1 $2 $3", ["21"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["[3-5][1-8]1", "[3-5][1-8]1[67]"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1/$2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[689]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1/$2 $3 $4", ["[3-5]"], "0$1"]], "0"], SL: ["232", "00", "(?:[237-9]\\d|66)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[236-9]"], "(0$1)"]], "0"], SM: ["378", "00", "(?:0549|[5-7]\\d)\\d{6}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]"]], ["(\\d{4})(\\d{6})", "$1 $2", ["0"]]], 0, 0, "([89]\\d{5})$", "0549$1"], SN: ["221", "00", "(?:[378]\\d|93)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[379]"]]]], SO: ["252", "00", "[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}", [6, 7, 8, 9], [["(\\d{2})(\\d{4})", "$1 $2", ["8[125]"]], ["(\\d{6})", "$1", ["[134]"]], ["(\\d)(\\d{6})", "$1 $2", ["[15]|2[0-79]|3[0-46-8]|4[0-7]"]], ["(\\d)(\\d{7})", "$1 $2", ["(?:2|90)4|[67]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[348]|64|79|90"]], ["(\\d{2})(\\d{5,7})", "$1 $2", ["1|28|6[0-35-9]|7[67]|9[2-9]"]]], "0"], SR: ["597", "00", "(?:[2-5]|[6-8]\\d|90)\\d{5}", [6, 7], [["(\\d{2})(\\d{2})(\\d{2})", "$1-$2-$3", ["56"]], ["(\\d{3})(\\d{3})", "$1-$2", ["[2-5]"]], ["(\\d{3})(\\d{4})", "$1-$2", ["[6-9]"]]]], SS: ["211", "00", "[19]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], ST: ["239", "00", "(?:22|9\\d)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[29]"]]]], SV: ["503", "00", "[267]\\d{7}|(?:80\\d|900)\\d{4}(?:\\d{4})?", [7, 8, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[89]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[267]"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[89]"]]]], SX: ["1", "011", "7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "(5\\d{6})$|1", "721$1", 0, "721"], SY: ["963", "00", "[1-359]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-4]|5[1-3]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[59]"], "0$1", 1]], "0"], SZ: ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], TA: ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], TC: ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], TD: ["235", "00|16", "(?:22|30|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[236-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], TG: ["228", "00", "[279]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]]], TH: ["66", "00[1-9]", "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", [8, 9, 10, 13], [["(\\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"]]], "0"], TJ: ["992", "810", "[0-57-9]\\d{8}", [9], [["(\\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]"]]], 0, 0, 0, 0, 0, 0, 0, "8~10"], TK: ["690", "00", "[2-47]\\d{3,6}", [4, 5, 6, 7]], TL: ["670", "00", "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-489]|70"]], ["(\\d{4})(\\d{4})", "$1 $2", ["7"]]]], TM: ["993", "810", "(?:[1-6]\\d|71)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["12"], "(8 $1)"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-5]"], "(8 $1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[67]"], "8 $1"]], "8", 0, 0, 0, 0, 0, 0, "8~10"], TN: ["216", "00", "[2-57-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-57-9]"]]]], TO: ["676", "00", "(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}", [5, 7], [["(\\d{2})(\\d{3})", "$1-$2", ["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], ["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[5-9]"]]]], TR: ["90", "00", "4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}", [7, 10, 12, 13], [["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["512|8[01589]|90"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5(?:[0-59]|61)", "5(?:[0-59]|61[06])", "5(?:[0-59]|61[06]1)"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24][1-8]|3[1-9]"], "(0$1)", 1], ["(\\d{3})(\\d{3})(\\d{6,7})", "$1 $2 $3", ["80"], "0$1", 1]], "0"], TT: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-46-8]\\d{6})$|1", "868$1", 0, "868"], TV: ["688", "00", "(?:2|7\\d\\d|90)\\d{4}", [5, 6, 7], [["(\\d{2})(\\d{3})", "$1 $2", ["2"]], ["(\\d{2})(\\d{4})", "$1 $2", ["90"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], TW: ["886", "0(?:0[25-79]|19)", "[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}", [7, 8, 9, 10, 11], [["(\\d{2})(\\d)(\\d{4})", "$1 $2 $3", ["202"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[258]0"], "0$1"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]", "[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, "#"], TZ: ["255", "00[056]", "(?:[25-8]\\d|41|90)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[24]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["5"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[67]"], "0$1"]], "0"], UA: ["380", "00", "[89]\\d{9}|[3-9]\\d{8}", [9, 10], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]", "6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])", "3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|89|9[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "0~0"], UG: ["256", "00[057]", "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", [9], [["(\\d{4})(\\d{5})", "$1 $2", ["202", "2024"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[27-9]|4(?:6[45]|[7-9])"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[34]"], "0$1"]], "0"], US: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [10], [["(\\d{3})(\\d{4})", "$1-$2", ["310"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "($1) $2-$3", ["[2-9]"], 0, 1, "$1-$2-$3"]], "1", 0, 0, 0, 0, 0, [["3052(?:0[0-8]|[1-9]\\d)\\d{4}|(?:2742|305[3-9])\\d{6}|(?:472|983)[2-47-9]\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[013-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-269])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[0-247]|4[0378]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[0168]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-3589]|8[04-69]))[2-9]\\d{6}"], [""], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"], ["900[2-9]\\d{6}"], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"], 0, 0, 0, ["305209\\d{4}"]]], UY: ["598", "0(?:0|1[3-9]\\d)", "0004\\d{2,9}|[1249]\\d{7}|2\\d{3,4}|(?:[49]\\d|80)\\d{5}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d{4,5})", "$1", ["21"]], ["(\\d{3})(\\d{3,4})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[49]0|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[124]"]], ["(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3 $4", ["0"]]], "0", 0, 0, 0, 0, 0, 0, "00", " int. "], UZ: ["998", "00", "(?:20|33|[5-9]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[235-9]"]]]], VA: ["39", "00", "0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}", [6, 7, 8, 9, 10, 11, 12], 0, 0, 0, 0, 0, 0, "06698"], VC: ["1", "011", "(?:[58]\\d\\d|784|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "784$1", 0, "784"], VE: ["58", "00", "[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}", [10], [["(\\d{3})(\\d{7})", "$1-$2", ["[24-689]"], "0$1"]], "0"], VG: ["1", "011", "(?:284|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-578]\\d{6})$|1", "284$1", 0, "284"], VI: ["1", "011", "[58]\\d{9}|(?:34|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "340$1", 0, "340"], VN: ["84", "00", "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["80"], "0$1", 1], ["(\\d{4})(\\d{4,6})", "$1 $2", ["1"], 0, 1], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["6"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[357-9]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["2[48]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["2"], "0$1", 1]], "0"], VU: ["678", "00", "[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}", [5, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["[57-9]"]]]], WF: ["681", "00", "(?:40|72|8\\d{4})\\d{4}|[89]\\d{5}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[47-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], WS: ["685", "0", "(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}", [5, 6, 7, 10], [["(\\d{5})", "$1", ["[2-5]|6[1-9]"]], ["(\\d{3})(\\d{3,7})", "$1 $2", ["[68]"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], XK: ["383", "00", "2\\d{7,8}|3\\d{7,11}|(?:4\\d\\d|[89]00)\\d{5}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2|39"], "0$1"], ["(\\d{2})(\\d{7,10})", "$1 $2", ["3"], "0$1"]], "0"], YE: ["967", "00", "(?:1|7\\d)\\d{7}|[1-7]\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-6]|7(?:[24-6]|8[0-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"], "0$1"]], "0"], YT: ["262", "00", "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", [9], 0, "0", 0, 0, 0, 0, 0, [["269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}"], ["(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}"], ["80\\d{7}"], 0, 0, 0, 0, 0, ["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]], ZA: ["27", "00", "[1-79]\\d{8}|8\\d{4,9}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,4})", "$1 $2", ["8[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["8[1-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["860"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], ZM: ["260", "00", "800\\d{6}|(?:21|[579]\\d|63)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[579]"], "0$1"]], "0"], ZW: ["263", "00", "2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}", [5, 6, 7, 8, 9, 10], [["(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"], ["(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"], ["(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]], "0"] }, nonGeographic: { 800: ["800", 0, "(?:00|[1-9]\\d)\\d{6}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["\\d"]]], 0, 0, 0, 0, 0, 0, [0, 0, ["(?:00|[1-9]\\d)\\d{6}"]]], 808: ["808", 0, "[1-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[1-9]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, 0, ["[1-9]\\d{7}"]]], 870: ["870", 0, "7\\d{11}|[235-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"], 0, 0, 0, 0, 0, 0, ["2\\d{8}", [9]]]], 878: ["878", 0, "10\\d{10}", [12], [["(\\d{2})(\\d{5})(\\d{5})", "$1 $2 $3", ["1"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["10\\d{10}"]]], 881: ["881", 0, "6\\d{9}|[0-36-9]\\d{8}", [9, 10], [["(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], ["(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]], 0, 0, 0, 0, 0, 0, [0, ["6\\d{9}|[0-36-9]\\d{8}"]]], 882: ["882", 0, "[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5})", "$1 $2", ["16|342"]], ["(\\d{2})(\\d{6})", "$1 $2", ["49"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["1[36]|9"]], ["(\\d{2})(\\d{4})(\\d{3})", "$1 $2 $3", ["3[23]"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["16"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|23|3(?:[15]|4[57])|4|51"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["34"]], ["(\\d{2})(\\d{4,5})(\\d{5})", "$1 $2 $3", ["[1-35]"]]], 0, 0, 0, 0, 0, 0, [0, ["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}", [7, 8, 9, 10, 12]], 0, 0, 0, ["348[57]\\d{7}", [11]], 0, 0, ["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]], 883: ["883", 0, "(?:[1-4]\\d|51)\\d{6,10}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,8})", "$1 $2 $3", ["[14]|2[24-689]|3[02-689]|51[24-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["510"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["21"]], ["(\\d{4})(\\d{4})(\\d{4})", "$1 $2 $3", ["51[13]"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[235]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]], 888: ["888", 0, "\\d{11}", [11], [["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, ["\\d{11}"]]], 979: ["979", 0, "[1359]\\d{8}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[1359]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, ["[1359]\\d{8}"]]] } };
|
|
14048
|
+
}, Symbol.toStringTag, { value: "Module" })), j7 = { version: 4, country_calling_codes: { 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"], 7: ["RU", "KZ"], 20: ["EG"], 27: ["ZA"], 30: ["GR"], 31: ["NL"], 32: ["BE"], 33: ["FR"], 34: ["ES"], 36: ["HU"], 39: ["IT", "VA"], 40: ["RO"], 41: ["CH"], 43: ["AT"], 44: ["GB", "GG", "IM", "JE"], 45: ["DK"], 46: ["SE"], 47: ["NO", "SJ"], 48: ["PL"], 49: ["DE"], 51: ["PE"], 52: ["MX"], 53: ["CU"], 54: ["AR"], 55: ["BR"], 56: ["CL"], 57: ["CO"], 58: ["VE"], 60: ["MY"], 61: ["AU", "CC", "CX"], 62: ["ID"], 63: ["PH"], 64: ["NZ"], 65: ["SG"], 66: ["TH"], 81: ["JP"], 82: ["KR"], 84: ["VN"], 86: ["CN"], 90: ["TR"], 91: ["IN"], 92: ["PK"], 93: ["AF"], 94: ["LK"], 95: ["MM"], 98: ["IR"], 211: ["SS"], 212: ["MA", "EH"], 213: ["DZ"], 216: ["TN"], 218: ["LY"], 220: ["GM"], 221: ["SN"], 222: ["MR"], 223: ["ML"], 224: ["GN"], 225: ["CI"], 226: ["BF"], 227: ["NE"], 228: ["TG"], 229: ["BJ"], 230: ["MU"], 231: ["LR"], 232: ["SL"], 233: ["GH"], 234: ["NG"], 235: ["TD"], 236: ["CF"], 237: ["CM"], 238: ["CV"], 239: ["ST"], 240: ["GQ"], 241: ["GA"], 242: ["CG"], 243: ["CD"], 244: ["AO"], 245: ["GW"], 246: ["IO"], 247: ["AC"], 248: ["SC"], 249: ["SD"], 250: ["RW"], 251: ["ET"], 252: ["SO"], 253: ["DJ"], 254: ["KE"], 255: ["TZ"], 256: ["UG"], 257: ["BI"], 258: ["MZ"], 260: ["ZM"], 261: ["MG"], 262: ["RE", "YT"], 263: ["ZW"], 264: ["NA"], 265: ["MW"], 266: ["LS"], 267: ["BW"], 268: ["SZ"], 269: ["KM"], 290: ["SH", "TA"], 291: ["ER"], 297: ["AW"], 298: ["FO"], 299: ["GL"], 350: ["GI"], 351: ["PT"], 352: ["LU"], 353: ["IE"], 354: ["IS"], 355: ["AL"], 356: ["MT"], 357: ["CY"], 358: ["FI", "AX"], 359: ["BG"], 370: ["LT"], 371: ["LV"], 372: ["EE"], 373: ["MD"], 374: ["AM"], 375: ["BY"], 376: ["AD"], 377: ["MC"], 378: ["SM"], 380: ["UA"], 381: ["RS"], 382: ["ME"], 383: ["XK"], 385: ["HR"], 386: ["SI"], 387: ["BA"], 389: ["MK"], 420: ["CZ"], 421: ["SK"], 423: ["LI"], 500: ["FK"], 501: ["BZ"], 502: ["GT"], 503: ["SV"], 504: ["HN"], 505: ["NI"], 506: ["CR"], 507: ["PA"], 508: ["PM"], 509: ["HT"], 590: ["GP", "BL", "MF"], 591: ["BO"], 592: ["GY"], 593: ["EC"], 594: ["GF"], 595: ["PY"], 596: ["MQ"], 597: ["SR"], 598: ["UY"], 599: ["CW", "BQ"], 670: ["TL"], 672: ["NF"], 673: ["BN"], 674: ["NR"], 675: ["PG"], 676: ["TO"], 677: ["SB"], 678: ["VU"], 679: ["FJ"], 680: ["PW"], 681: ["WF"], 682: ["CK"], 683: ["NU"], 685: ["WS"], 686: ["KI"], 687: ["NC"], 688: ["TV"], 689: ["PF"], 690: ["TK"], 691: ["FM"], 692: ["MH"], 850: ["KP"], 852: ["HK"], 853: ["MO"], 855: ["KH"], 856: ["LA"], 880: ["BD"], 886: ["TW"], 960: ["MV"], 961: ["LB"], 962: ["JO"], 963: ["SY"], 964: ["IQ"], 965: ["KW"], 966: ["SA"], 967: ["YE"], 968: ["OM"], 970: ["PS"], 971: ["AE"], 972: ["IL"], 973: ["BH"], 974: ["QA"], 975: ["BT"], 976: ["MN"], 977: ["NP"], 992: ["TJ"], 993: ["TM"], 994: ["AZ"], 995: ["GE"], 996: ["KG"], 998: ["UZ"] }, countries: { AC: ["247", "00", "(?:[01589]\\d|[46])\\d{4}", [5, 6]], AD: ["376", "00", "(?:1|6\\d)\\d{7}|[135-9]\\d{5}", [6, 8, 9], [["(\\d{3})(\\d{3})", "$1 $2", ["[135-9]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["1"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]]], AE: ["971", "00", "(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{2,9})", "$1 $2", ["60|8"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[236]|[479][2-8]"], "0$1"], ["(\\d{3})(\\d)(\\d{5})", "$1 $2 $3", ["[479]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"]], "0"], AF: ["93", "00", "[2-7]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"]], "0"], AG: ["1", "011", "(?:268|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([457]\\d{6})$|1", "268$1", 0, "268"], AI: ["1", "011", "(?:264|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2457]\\d{6})$|1", "264$1", 0, "264"], AL: ["355", "00", "(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}", [6, 7, 8, 9], [["(\\d{3})(\\d{3,4})", "$1 $2", ["80|9"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["4[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2358][2-5]|4"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["[23578]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["6"], "0$1"]], "0"], AM: ["374", "00", "(?:[1-489]\\d|55|60|77)\\d{6}", [8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[89]0"], "0 $1"], ["(\\d{3})(\\d{5})", "$1 $2", ["2|3[12]"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["1|47"], "(0$1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[3-9]"], "0$1"]], "0"], AO: ["244", "00", "[29]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[29]"]]]], AR: ["54", "00", "(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}", [10, 11], [["(\\d{4})(\\d{2})(\\d{4})", "$1 $2-$3", ["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])", "2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["1"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[68]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2-$3", ["[23]"], "0$1", 1], ["(\\d)(\\d{4})(\\d{2})(\\d{4})", "$2 15-$3-$4", ["9(?:2[2-469]|3[3-578])", "9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))", "9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]", "9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d)(\\d{2})(\\d{4})(\\d{4})", "$2 15-$3-$4", ["91"], "0$1", 0, "$1 $2 $3-$4"], ["(\\d{3})(\\d{3})(\\d{5})", "$1-$2-$3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{4})", "$2 15-$3-$4", ["9"], "0$1", 0, "$1 $2 $3-$4"]], "0", 0, "0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?", "9$1"], AS: ["1", "011", "(?:[58]\\d\\d|684|900)\\d{7}", [10], 0, "1", 0, "([267]\\d{6})$|1", "684$1", 0, "684"], AT: ["43", "00", "1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d)(\\d{3,12})", "$1 $2", ["1(?:11|[2-9])"], "0$1"], ["(\\d{3})(\\d{2})", "$1 $2", ["517"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["5[079]"], "0$1"], ["(\\d{3})(\\d{3,10})", "$1 $2", ["(?:31|4)6|51|6(?:48|5[0-3579]|[6-9])|7(?:20|32|8)|[89]", "(?:31|4)6|51|6(?:485|5[0-3579]|[6-9])|7(?:20|32|8)|[89]"], "0$1"], ["(\\d{4})(\\d{3,9})", "$1 $2", ["[2-467]|5[2-6]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,7})", "$1 $2 $3", ["5"], "0$1"]], "0"], AU: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}", [5, 6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{3,4})", "$1 $2", ["16"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["16"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["14|4"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[2378]"], "(0$1)"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:30|[89])"]]], "0", 0, "(183[12])|0", 0, 0, 0, [["(?:(?:241|349)0\\d\\d|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4])|[34]\\d\\d)|91(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79]))))\\d{3}|(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8])|8(?:55|6[0-8]|[78]\\d|9[02-9]))\\d{6}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, ["163\\d{2,6}", [5, 6, 7, 8, 9]], ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], AW: ["297", "00", "(?:[25-79]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[25-9]"]]]], AX: ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}", [5, 6, 7, 8, 9, 10, 11, 12], 0, "0", 0, 0, 0, 0, "18", 0, "00"], AZ: ["994", "00", "365\\d{6}|(?:[124579]\\d|60|88)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["90"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[28]|2|365|46", "1[28]|2|365[45]|46", "1[28]|2|365(?:4|5[02])|46"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[13-9]"], "0$1"]], "0"], BA: ["387", "00", "6\\d{8}|(?:[35689]\\d|49|70)\\d{6}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[1-3]|[7-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2-$3", ["[3-5]|6[56]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["6"], "0$1"]], "0"], BB: ["1", "011", "(?:246|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "246$1", 0, "246"], BD: ["880", "00", "[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{2})(\\d{4,6})", "$1-$2", ["31[5-8]|[459]1"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1-$2", ["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:[15]|28|4[14])|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"], "0$1"], ["(\\d{4})(\\d{3,6})", "$1-$2", ["[13-9]|2[23]"], "0$1"], ["(\\d)(\\d{7,8})", "$1-$2", ["2"], "0$1"]], "0"], BE: ["32", "00", "4\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:80|9)0"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[239]|4[23]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[15-8]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4"], "0$1"]], "0"], BF: ["226", "00", "(?:[025-7]\\d|44)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[024-7]"]]]], BG: ["359", "00", "00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}", [6, 7, 8, 9, 12], [["(\\d)(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["43[1-6]|70[1-9]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:70|8)0"], "0$1"], ["(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3", ["43[1-7]|7"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[48]|9[08]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"]], "0"], BH: ["973", "00", "[136-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[13679]|8[02-4679]"]]]], BI: ["257", "00", "(?:[267]\\d|31)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2367]"]]]], BJ: ["229", "00", "(?:01\\d|8)\\d{7}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["0"]]]], BL: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:2[7-9]|3[3-7]|5[12]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], BM: ["1", "011", "(?:441|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "441$1", 0, "441"], BN: ["673", "00", "[2-578]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-578]"]]]], BO: ["591", "00(?:1\\d)?", "8001\\d{5}|(?:[2-467]\\d|50)\\d{6}", [8, 9], [["(\\d)(\\d{7})", "$1 $2", ["[235]|4[46]"]], ["(\\d{8})", "$1", ["[67]"]], ["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["8"]]], "0", 0, "0(1\\d)?"], BQ: ["599", "00", "(?:[34]1|7\\d)\\d{5}", [7], 0, 0, 0, 0, 0, 0, "[347]"], BR: ["55", "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)", "[1-467]\\d{9,10}|55[0-46-9]\\d{8}|[34]\\d{7}|55\\d{7,8}|(?:5[0-46-9]|[89]\\d)\\d{7,9}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37|86)", "300|4(?:0(?:0|20)|370|864)"]], ["(\\d{3})(\\d{2,3})(\\d{4})", "$1 $2 $3", ["(?:[358]|90)0"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2-$3", ["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"], "($1)"], ["(\\d{2})(\\d{5})(\\d{4})", "$1 $2-$3", ["[16][1-9]|[2-57-9]"], "($1)"]], "0", 0, "(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?", "$2"], BS: ["1", "011", "(?:242|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([3-8]\\d{6})$|1", "242$1", 0, "242"], BT: ["975", "00", "[178]\\d{7}|[2-8]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-6]|7[246]|8[2-4]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[67]|[78]"]]]], BW: ["267", "00", "(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["90"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[24-6]|3[15-9]"]], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37]"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["8"]]]], BY: ["375", "810", "(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3})", "$1 $2", ["800"], "8 $1"], ["(\\d{3})(\\d{2})(\\d{2,4})", "$1 $2 $3", ["800"], "8 $1"], ["(\\d{4})(\\d{2})(\\d{3})", "$1 $2-$3", ["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])", "1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"], "8 0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["1(?:[56]|7[467])|2[1-3]"], "8 0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-4]"], "8 0$1"], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[89]"], "8 $1"]], "8", 0, "0|80?", 0, 0, 0, 0, "8~10"], BZ: ["501", "00", "(?:0800\\d|[2-8])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-8]"]], ["(\\d)(\\d{3})(\\d{4})(\\d{3})", "$1-$2-$3-$4", ["0"]]]], CA: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [7, 10], 0, "1", 0, 0, 0, 0, 0, [["(?:2(?:04|[23]6|[48]9|5[07]|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", [10]], ["", [10]], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}", [10]], ["900[2-9]\\d{6}", [10]], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:2[125-9]|33|44|66|77|88)|6(?:22|33))[2-9]\\d{6}", [10]], 0, ["310\\d{4}", [7]], 0, ["600[2-9]\\d{6}", [10]]]], CC: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], CD: ["243", "00", "(?:(?:[189]|5\\d)\\d|2)\\d{7}|[1-68]\\d{6}", [7, 8, 9, 10], [["(\\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"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["5"], "0$1"]], "0"], CF: ["236", "00", "(?:[27]\\d{3}|8776)\\d{4}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[278]"]]]], CG: ["242", "00", "222\\d{6}|(?:0\\d|80)\\d{7}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[02]"]]]], CH: ["41", "00", "8\\d{11}|[2-9]\\d{8}", [9, 12], [["(\\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"]], "0"], CI: ["225", "00", "[02]\\d{9}", [10], [["(\\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"]]]], CK: ["682", "00", "[2-578]\\d{4}", [5], [["(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]]], CL: ["56", "(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0", "12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}", [9, 10, 11], [["(\\d{5})(\\d{4})", "$1 $2", ["219", "2196"], "($1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["60|809"]], ["(\\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(?:10|[2-9])"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-8]|[1-9])"], "($1)"], ["(\\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"]]]], CM: ["237", "00", "[26]\\d{8}|88\\d{6,7}", [8, 9], [["(\\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"]]]], CN: ["86", "00|1(?:[12]\\d|79)\\d\\d00", "(?:(?: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], [["(\\d{2})(\\d{5,6})", "$1 $2", ["(?:10|2[0-57-9])[19]|3(?:[157]|35|49|9[1-68])|4(?:1[124-9]|2[179]|6[47-9]|7|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:07|1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3|4[13]|5[1-5]|7[0-79]|9[0-35-9])|(?:4[35]|59|85)[1-9]", "(?:10|2[0-57-9])(?:1[02]|9[56])|8078|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))1", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|80781|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))12", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|807812|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123", "10(?:1(?:0|23)|9[56])|2[0-57-9](?:1(?:00|23)|9[56])|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:1[124-9]|2[179]|[35][1-9]|6[47-9]|7\\d|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:078|1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|3\\d|4[13]|5[1-5]|7[0-79]|9[0-35-9]))123"], "0$1"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]", "(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]", "85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])", "85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["(?:4|80)0"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|2(?:[02-57-9]|1[1-9])", "10|2(?:[02-57-9]|1[1-9])", "10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"], "0$1", 1], ["(\\d{3})(\\d{7,8})", "$1 $2", ["9"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["80"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[3-578]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["1[3-9]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["[12]"], "0$1", 1]], "0", 0, "(1(?:[12]\\d|79)\\d\\d)|0", 0, 0, 0, 0, "00"], CO: ["57", "00(?:4(?:[14]4|56)|[579])", "(?:46|60\\d\\d)\\d{6}|(?:1\\d|[39])\\d{9}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["46"]], ["(\\d{3})(\\d{7})", "$1 $2", ["6|90"], "($1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3[0-357]|9[14]"]], ["(\\d)(\\d{3})(\\d{7})", "$1-$2-$3", ["1"], "0$1", 0, "$1 $2 $3"]], "0", 0, "0([3579]|4(?:[14]4|56))?"], CR: ["506", "00", "(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}", [8, 10], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[3-9]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["[89]"]]], 0, 0, "(19(?:0[0-2468]|1[09]|20|66|77|99))"], CU: ["53", "119", "(?:[2-7]|8\\d\\d)\\d{7}|[2-47]\\d{6}|[34]\\d{5}", [6, 7, 8, 10], [["(\\d{2})(\\d{4,6})", "$1 $2", ["2[1-4]|[34]"], "(0$1)"], ["(\\d)(\\d{6,7})", "$1 $2", ["7"], "(0$1)"], ["(\\d)(\\d{7})", "$1 $2", ["[56]"], "0$1"], ["(\\d{3})(\\d{7})", "$1 $2", ["8"], "0$1"]], "0"], CV: ["238", "0", "(?:[2-59]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-589]"]]]], CW: ["599", "00", "(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[3467]"]], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["9[4-8]"]]], 0, 0, 0, 0, 0, "[69]"], CX: ["61", "001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011", "1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}", [6, 7, 8, 9, 10, 12], 0, "0", 0, "([59]\\d{7})$|0", "8$1", 0, 0, [["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}", [9]], ["4(?:79[01]|83[0-36-9]|95[0-3])\\d{5}|4(?:[0-36]\\d|4[047-9]|[58][0-24-9]|7[02-8]|9[0-47-9])\\d{6}", [9]], ["180(?:0\\d{3}|2)\\d{3}", [7, 10]], ["190[0-26]\\d{6}", [10]], 0, 0, 0, 0, ["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}", [9]], ["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}", [6, 8, 10, 12]]], "0011"], CY: ["357", "00", "(?:[279]\\d|[58]0)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[257-9]"]]]], CZ: ["420", "00", "(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}", [9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]|9[015-7]"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["96"]], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]]], DE: ["49", "00", "[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [["(\\d{2})(\\d{3,13})", "$1 $2", ["3[02]|40|[68]9"], "0$1"], ["(\\d{3})(\\d{3,12})", "$1 $2", ["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1", "2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"], "0$1"], ["(\\d{4})(\\d{2,11})", "$1 $2", ["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]", "[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["138"], "0$1"], ["(\\d{5})(\\d{2,10})", "$1 $2", ["3"], "0$1"], ["(\\d{3})(\\d{5,11})", "$1 $2", ["181"], "0$1"], ["(\\d{3})(\\d)(\\d{4,10})", "$1 $2 $3", ["1(?:3|80)|9"], "0$1"], ["(\\d{3})(\\d{7,8})", "$1 $2", ["1[67]"], "0$1"], ["(\\d{3})(\\d{7,12})", "$1 $2", ["8"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["185", "1850", "18500"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["18[68]"], "0$1"], ["(\\d{4})(\\d{7})", "$1 $2", ["15[1279]"], "0$1"], ["(\\d{5})(\\d{6})", "$1 $2", ["15[03568]", "15(?:[0568]|3[13])"], "0$1"], ["(\\d{3})(\\d{8})", "$1 $2", ["18"], "0$1"], ["(\\d{3})(\\d{2})(\\d{7,8})", "$1 $2 $3", ["1(?:6[023]|7)"], "0$1"], ["(\\d{4})(\\d{2})(\\d{7})", "$1 $2 $3", ["15[279]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{8})", "$1 $2 $3", ["15"], "0$1"]], "0"], DJ: ["253", "00", "(?:2\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[27]"]]]], DK: ["45", "00", "[2-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-9]"]]]], DM: ["1", "011", "(?:[58]\\d\\d|767|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "767$1", 0, "767"], DO: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "8001|8[024]9"], DZ: ["213", "00", "(?:[1-4]|[5-79]\\d|80)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["9"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-8]"], "0$1"]], "0"], EC: ["593", "00", "1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}", [8, 9, 10, 11], [["(\\d)(\\d{3})(\\d{4})", "$1 $2-$3", ["[2-7]"], "(0$1)", 0, "$1-$2-$3"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1"]]], "0"], EE: ["372", "00", "8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88", "[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]], ["(\\d{4})(\\d{3,4})", "$1 $2", ["[45]|8(?:00|[1-49])", "[45]|8(?:00[1-9]|[1-49])"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], EG: ["20", "00", "[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}", [8, 9, 10], [["(\\d)(\\d{7,8})", "$1 $2", ["[23]"], "0$1"], ["(\\d{2})(\\d{6,7})", "$1 $2", ["1[35]|[4-6]|8[2468]|9[235-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{8})", "$1 $2", ["1"], "0$1"]], "0"], EH: ["212", "00", "[5-8]\\d{8}", [9], 0, "0", 0, 0, 0, 0, "528[89]"], ER: ["291", "00", "[178]\\d{6}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[178]"], "0$1"]], "0"], ES: ["34", "00", "[5-9]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[89]00"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-9]"]]]], ET: ["251", "00", "(?:11|[2-579]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-579]"], "0$1"]], "0"], FI: ["358", "00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))", "[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}", [5, 6, 7, 8, 9, 10, 11, 12], [["(\\d{5})", "$1", ["20[2-59]"], "0$1"], ["(\\d{3})(\\d{3,7})", "$1 $2", ["(?:[1-3]0|[68])0|70[07-9]"], "0$1"], ["(\\d{2})(\\d{4,8})", "$1 $2", ["[14]|2[09]|50|7[135]"], "0$1"], ["(\\d{2})(\\d{6,10})", "$1 $2", ["7"], "0$1"], ["(\\d)(\\d{4,9})", "$1 $2", ["(?:19|[2568])[1-8]|3(?:0[1-9]|[1-9])|9"], "0$1"]], "0", 0, 0, 0, 0, "1[03-79]|[2-9]", 0, "00"], FJ: ["679", "0(?:0|52)", "45\\d{5}|(?:0800\\d|[235-9])\\d{6}", [7, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[235-9]|45"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]]], 0, 0, 0, 0, 0, 0, 0, "00"], FK: ["500", "00", "[2-7]\\d{4}", [5]], FM: ["691", "00", "(?:[39]\\d\\d|820)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[389]"]]]], FO: ["298", "00", "[2-9]\\d{5}", [6], [["(\\d{6})", "$1", ["[2-9]"]]], 0, 0, "(10(?:01|[12]0|88))"], FR: ["33", "00", "[1-9]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0 $1"], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[1-79]"], "0$1"]], "0"], GA: ["241", "00", "(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}", [7, 8], [["(\\d)(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-7]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["11|[67]"], "0$1"]], 0, 0, "0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})", "$1"], GB: ["44", "00", "[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}", [7, 9, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["800", "8001", "80011", "800111", "8001111"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["845", "8454", "84546", "845464"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["800"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["1(?:38|5[23]|69|76|94)", "1(?:(?:38|69)7|5(?:24|39)|768|946)", "1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["1(?:[2-69][02-9]|[78])"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[25]|7(?:0|6[02-9])", "[25]|7(?:0|6(?:[03-9]|2[356]))"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1389]"], "0$1"]], "0", 0, "0|180020", 0, 0, 0, [["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0-5])|4(?:(?:[0-5]\\d|70)\\d|69[7-9])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|5[01]))\\d)|(?:2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d|1(?:[0-7]\\d|8[0-3]))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d)\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}", [9, 10]], ["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]], 0, " x"], GD: ["1", "011", "(?:473|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "473$1", 0, "473"], GE: ["995", "00", "(?:[3-57]\\d\\d|800)\\d{6}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["32"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[57]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[348]"], "0$1"]], "0"], GF: ["594", "00", "(?:[56]94\\d|7093)\\d{5}|(?:80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]|9[47]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[89]"], "0$1"]], "0"], GG: ["44", "00", "(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?", [7, 9, 10], 0, "0", 0, "([25-9]\\d{5})$|0|180020", "1481$1", 0, 0, [["1481[25-9]\\d{5}", [10]], ["7(?:(?:781|839)\\d|911[17])\\d{5}", [10]], ["80[08]\\d{7}|800\\d{6}|8001111"], ["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d", [7, 10]], ["70\\d{8}", [10]], 0, ["(?:3[0347]|55)\\d{8}", [10]], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}", [10]], ["56\\d{8}", [10]]]], GH: ["233", "00", "(?:[235]\\d{3}|800)\\d{5}", [8, 9], [["(\\d{3})(\\d{5})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[235]"], "0$1"]], "0"], GI: ["350", "00", "(?:[25]\\d|60)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["2"]]]], GL: ["299", "00", "(?:19|[2-689]\\d|70)\\d{4}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]]], GM: ["220", "00", "[2-9]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], GN: ["224", "00", "722\\d{6}|(?:3|6\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["3"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[67]"]]]], GP: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0", 0, 0, 0, 0, 0, [["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1-9]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], GQ: ["240", "00", "222\\d{6}|(?:3\\d|55|[89]0)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235]"]], ["(\\d{3})(\\d{6})", "$1 $2", ["[89]"]]]], GR: ["30", "00", "5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}", [10, 11, 12], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["21|7"]], ["(\\d{4})(\\d{6})", "$1 $2", ["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2689]"]], ["(\\d{3})(\\d{3,4})(\\d{5})", "$1 $2 $3", ["8"]]]], GT: ["502", "00", "80\\d{6}|(?:1\\d{3}|[2-7])\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[2-8]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], GU: ["1", "011", "(?:[58]\\d\\d|671|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "671$1", 0, "671"], GW: ["245", "00", "[49]\\d{8}|4\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["40"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"]]]], GY: ["592", "001", "(?:[2-8]\\d{3}|9008)\\d{3}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], HK: ["852", "00(?:30|5[09]|[126-9]?)", "8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}", [5, 6, 7, 8, 9, 11], [["(\\d{3})(\\d{2,5})", "$1 $2", ["900", "9003"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{3})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["9"]]], 0, 0, 0, 0, 0, 0, 0, "00"], HN: ["504", "00", "8\\d{10}|[237-9]\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["[237-9]"]]]], HR: ["385", "00", "[2-69]\\d{8}|80\\d{5,7}|[1-79]\\d{7}|6\\d{6}", [7, 8, 9], [["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["6[01]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{4})(\\d{3})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6|7[245]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-57]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"]], "0"], HT: ["509", "00", "[2-589]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[2-589]"]]]], HU: ["36", "00", "[235-7]\\d{8}|[1-9]\\d{7}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"], "(06 $1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "06 $1"]], "06"], ID: ["62", "00[89]", "00[1-9]\\d{9,14}|(?:[1-36]|8\\d{5})\\d{6}|00\\d{9}|[1-9]\\d{8,10}|[2-9]\\d{7}", [7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["15"]], ["(\\d{2})(\\d{5,9})", "$1 $2", ["2[124]|[36]1"], "(0$1)"], ["(\\d{3})(\\d{5,7})", "$1 $2", ["800"], "0$1"], ["(\\d{3})(\\d{5,8})", "$1 $2", ["[2-79]"], "(0$1)"], ["(\\d{3})(\\d{3,4})(\\d{3})", "$1-$2-$3", ["8[1-35-9]"], "0$1"], ["(\\d{3})(\\d{6,8})", "$1 $2", ["1"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["804"], "0$1"], ["(\\d{3})(\\d)(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["80"], "0$1"], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1-$2-$3", ["8"], "0$1"]], "0"], IE: ["353", "00", "(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["2[24-9]|47|58|6[237-9]|9[35-9]"], "(0$1)"], ["(\\d{3})(\\d{5})", "$1 $2", ["[45]0"], "(0$1)"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["1"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2569]|4[1-69]|7[14]"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["70"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["81"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[78]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["4"], "(0$1)"], ["(\\d{2})(\\d)(\\d{3})(\\d{4})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], IL: ["972", "0(?:0|1[2-9])", "1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}", [7, 8, 9, 10, 11, 12], [["(\\d{4})(\\d{3})", "$1-$2", ["125"]], ["(\\d{4})(\\d{2})(\\d{2})", "$1-$2-$3", ["121"]], ["(\\d)(\\d{3})(\\d{4})", "$1-$2-$3", ["[2-489]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1-$2-$3", ["12"]], ["(\\d{4})(\\d{6})", "$1-$2", ["159"]], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3-$4", ["1[7-9]"]], ["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})", "$1-$2 $3-$4", ["15"]]], "0"], IM: ["44", "00", "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([25-8]\\d{5})$|0|180020", "1624$1", 0, "74576|(?:16|7[56])24"], IN: ["91", "00", "(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}", [8, 9, 10, 11, 12, 13], [["(\\d{8})", "$1", ["5(?:0|2[23]|3[03]|[67]1|88)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)", "5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"], 0, 1], ["(\\d{4})(\\d{4,5})", "$1 $2", ["180", "1800"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["140"], 0, 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["11|2[02]|33|4[04]|79[1-7]|80[2-46]", "11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])", "11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]", "1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"], "0$1", 1], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807", "1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]", "1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|8(?:28[235-7]|3))|73179|807(?:1|9[1-3])|(?:1552|6(?:(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689])\\d|8(?:[14-6]\\d|2[0-79]))|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"], "0$1", 1], ["(\\d{5})(\\d{5})", "$1 $2", ["[6-9]"], "0$1", 1], ["(\\d{4})(\\d{2,4})(\\d{4})", "$1 $2 $3", ["1(?:6|8[06])", "1(?:6|8[06]0)"], 0, 1], ["(\\d{4})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["18"], 0, 1]], "0"], IO: ["246", "00", "3\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["3"]]]], IQ: ["964", "00", "(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-6]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"]], "0"], IR: ["98", "00", "[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}", [4, 5, 6, 7, 10], [["(\\d{4,5})", "$1", ["96"], "0$1"], ["(\\d{2})(\\d{4,5})", "$1 $2", ["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["[1-8]"], "0$1"]], "0"], IS: ["354", "00|1(?:0(?:01|[12]0)|100)", "(?:38\\d|[4-9])\\d{6}", [7, 9], [["(\\d{3})(\\d{4})", "$1 $2", ["[4-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["3"]]], 0, 0, 0, 0, 0, 0, 0, "00"], IT: ["39", "00", "0\\d{5,11}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:43|55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?", [6, 7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{4,6})", "$1 $2", ["0[26]"]], ["(\\d{3})(\\d{3,6})", "$1 $2", ["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])", "0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]], ["(\\d{4})(\\d{2,6})", "$1 $2", ["0(?:[13-579][2-46-8]|8[236-8])"]], ["(\\d{4})(\\d{4})", "$1 $2", ["894"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[26]|5"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["1(?:44|[679])|[378]|43"]], ["(\\d{3})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["0[13-57-9][0159]|14"]], ["(\\d{2})(\\d{4})(\\d{5})", "$1 $2 $3", ["0[26]"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["[03]"]]], 0, 0, 0, 0, 0, 0, [["0(?:669[0-79]\\d{1,6}|831\\d{2,8})|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[2356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"], ["3[2-9]\\d{7,8}|(?:31|43)\\d{8}", [9, 10]], ["80(?:0\\d{3}|3)\\d{3}", [6, 9]], ["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}", [6, 8, 9, 10]], ["1(?:78\\d|99)\\d{6}", [9, 10]], ["3[2-8]\\d{9,10}", [11, 12]], 0, 0, ["55\\d{8}", [10]], ["84(?:[08]\\d{3}|[17])\\d{3}", [6, 9]]]], JE: ["44", "00", "1534\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([0-24-8]\\d{5})$|0|180020", "1534$1", 0, 0, [["1534[0-24-8]\\d{5}"], ["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97\\d))\\d{5}"], ["80(?:07(?:35|81)|8901)\\d{4}"], ["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"], ["701511\\d{4}"], 0, ["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"], ["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"], ["56\\d{8}"]]], JM: ["1", "011", "(?:[58]\\d\\d|658|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "658|876"], JO: ["962", "00", "(?:(?:[2689]|7\\d)\\d|32|427|53)\\d{6}", [8, 9], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2356]|87"], "(0$1)"], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["70"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[47]"], "0$1"]], "0"], JP: ["81", "010", "00[1-9]\\d{6,14}|[25-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}", [8, 9, 10, 11, 12, 13, 14, 15, 16, 17], [["(\\d{3})(\\d{3})(\\d{3})", "$1-$2-$3", ["(?:12|57|99)0"], "0$1"], ["(\\d{4})(\\d)(\\d{4})", "$1-$2-$3", ["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51)|9(?:80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["60"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2-$3", ["3|4(?:2[09]|7[01])|6[1-9]", "3|4(?:2(?:0|9[02-69])|7(?:0[019]|1))|6[1-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[0459]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[26-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9]|9[29])|5(?:2|3(?:[045]|9[0-8])|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|3(?:[29]|60)|49|51|6(?:[0-24]|36|5[0-3589]|7[23]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3(?:[045]|9(?:[0-58]|6[4-9]|7[0-35689]))|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|60|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[2-57-9]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|7(?:2[2-468]|3[78])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"], "0$1"], ["(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3", ["[14]|[289][2-9]|5[3-9]|7[2-4679]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2-$3", ["800"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[25-9]"], "0$1"]], "0", 0, "(000[2569]\\d{4,6})$|(?:(?:003768)0?)|0", "$1"], KE: ["254", "000", "(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}", [7, 8, 9, 10], [["(\\d{2})(\\d{5,7})", "$1 $2", ["[24-6]"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[17]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0"], KG: ["996", "00", "8\\d{9}|[235-9]\\d{8}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["3(?:1[346]|[24-79])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-79]|88"], "0$1"], ["(\\d{3})(\\d{3})(\\d)(\\d{2,3})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], KH: ["855", "00[14-9]", "1\\d{9}|[1-9]\\d{7,8}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], KI: ["686", "00", "(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}", [5, 8], 0, "0"], KM: ["269", "00", "[3478]\\d{6}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[3478]"]]]], KN: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "869$1", 0, "869"], KP: ["850", "00|99", "85\\d{6}|(?:19\\d|[2-7])\\d{7}", [8, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"]], "0"], KR: ["82", "00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", [5, 6, 8, 9, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3,4})", "$1-$2", ["(?:3[1-3]|[46][1-4]|5[1-5])1"], "0$1"], ["(\\d{4})(\\d{4})", "$1-$2", ["1"]], ["(\\d)(\\d{3,4})(\\d{4})", "$1-$2-$3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1-$2-$3", ["[36]0|8"], "0$1"], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1-$2-$3", ["[1346]|5[1-5]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2-$3", ["[57]"], "0$1"], ["(\\d{2})(\\d{5})(\\d{4})", "$1-$2-$3", ["5"], "0$1"]], "0", 0, "0(8(?:[1-46-8]|5\\d\\d))?"], KW: ["965", "00", "18\\d{5}|(?:[2569]\\d|41)\\d{6}", [7, 8], [["(\\d{4})(\\d{3,4})", "$1 $2", ["[169]|2(?:[235]|4[1-35-9])|52"]], ["(\\d{3})(\\d{5})", "$1 $2", ["[245]"]]]], KY: ["1", "011", "(?:345|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "345$1", 0, "345"], KZ: ["7", "810", "(?:33622|8\\d{8})\\d{5}|[78]\\d{9}", [10, 14], 0, "8", 0, 0, 0, 0, "33622|7", 0, "8~10"], LA: ["856", "00", "[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}", [8, 9, 10], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2[13]|3[14]|[4-8]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["3"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0"], LB: ["961", "00", "[27-9]\\d{7}|[13-9]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[13-69]|7(?:[2-57]|62|8[0-6]|9[04-9])|8[02-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27-9]"]]], "0"], LC: ["1", "011", "(?:[58]\\d\\d|758|900)\\d{7}", [10], 0, "1", 0, "([2-8]\\d{6})$|1", "758$1", 0, "758"], LI: ["423", "00", "[68]\\d{8}|(?:[2378]\\d|90)\\d{5}", [7, 9], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2379]|8(?:0[09]|7)", "[2379]|8(?:0(?:02|9)|7)"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["69"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]]], "0", 0, "(1001)|0"], LK: ["94", "00", "[1-9]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[1-689]"], "0$1"]], "0"], LR: ["231", "00", "(?:[2457]\\d|33|88)\\d{7}|(?:2\\d|[4-6])\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["4[67]|[56]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-578]"], "0$1"]], "0"], LS: ["266", "00", "(?:[256]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2568]"]]]], LT: ["370", "00", "(?:[3469]\\d|52|[78]0)\\d{6}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["52[0-7]"], "(0-$1)", 1], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0 $1", 1], ["(\\d{2})(\\d{6})", "$1 $2", ["37|4(?:[15]|6[1-8])"], "(0-$1)", 1], ["(\\d{3})(\\d{5})", "$1 $2", ["[3-6]"], "(0-$1)", 1]], "0", 0, "[08]"], LU: ["352", "00", "35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}", [4, 5, 6, 7, 8, 9, 10, 11], [["(\\d{2})(\\d{3})", "$1 $2", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["20[2-689]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4", ["2(?:[0367]|4[3-8])"]], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["80[01]|90[015]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3 $4", ["20"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})", "$1 $2 $3 $4 $5", ["2(?:[0367]|4[3-8])"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})", "$1 $2 $3 $4", ["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]], 0, 0, "(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"], LV: ["371", "00", "(?:[268]\\d|78|90)\\d{6}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2679]|8[01]"]]]], LY: ["218", "00", "[2-9]\\d{8}", [9], [["(\\d{2})(\\d{7})", "$1-$2", ["[2-9]"], "0$1"]], "0"], MA: ["212", "00", "[5-8]\\d{8}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5[45]"], "0$1"], ["(\\d{4})(\\d{5})", "$1-$2", ["5(?:[19]|2[2-46-9]|3[3-9])|8(?:0[89]|92)"], "0$1"], ["(\\d{2})(\\d{7})", "$1-$2", ["8"], "0$1"], ["(\\d{3})(\\d{6})", "$1-$2", ["[5-7]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["5(?:(?:18|4[0679]|5[03])\\d|2(?:[0-25-79]\\d|3[1-578]|4[02-46-8]|8[0235-7])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[014-9]|9[3-9]))\\d{5}"], ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[016-8]\\d|2[0-8]|5[0-5]))\\d{6}"], ["80[0-7]\\d{6}"], ["89\\d{7}"], 0, 0, 0, 0, ["(?:592(?:4[0-2]|93)|80[89]\\d\\d)\\d{4}"]]], MC: ["377", "00", "(?:[3489]|[67]\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["4"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[389]"]], ["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4 $5", ["[67]"], "0$1"]], "0"], MD: ["373", "00", "(?:[235-7]\\d|[89]0)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["22|3"], "0$1"], ["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["[25-7]"], "0$1"]], "0"], ME: ["382", "00", "(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[2-9]"], "0$1"]], "0"], MF: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [["590(?:0[079]|[14]3|[27][79]|3[03-7]|5[0-268]|87)\\d{4}"], ["(?:69(?:0\\d\\d|1(?:2[2-9]|3[0-5])|4(?:0[89]|1[2-6]|9\\d)|6(?:1[016-9]|5[0-4]|[67]\\d))|7090[0-4])\\d{4}"], ["80[0-5]\\d{6}"], 0, 0, 0, 0, 0, ["9(?:(?:39[5-7]|76[018])\\d|475[0-6])\\d{4}"]]], MG: ["261", "00", "[23]\\d{8}", [9], [["(\\d{2})(\\d{2})(\\d{3})(\\d{2})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0", 0, "([24-9]\\d{6})$|0", "20$1"], MH: ["692", "011", "329\\d{4}|(?:[256]\\d|45)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-6]"]]], "1"], MK: ["389", "00", "[2-578]\\d{7}", [8], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["2|34[47]|4(?:[37]7|5[47]|64)"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[347]"], "0$1"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[58]"], "0$1"]], "0"], ML: ["223", "00", "[24-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-9]"]]]], MM: ["95", "00", "1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}", [6, 7, 8, 9, 10], [["(\\d)(\\d{2})(\\d{3})", "$1 $2 $3", ["16|2"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["4(?:[2-46]|5[3-5])|5|6(?:[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-5]|(?:60|86)[23]"], "0$1"], ["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[12]|452|678|86", "[12]|452|6788|86"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[4-7]|8[1-35]"], "0$1"], ["(\\d)(\\d{3})(\\d{4,6})", "$1 $2 $3", ["9(?:2[0-4]|[35-9]|4[137-9])"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["92"], "0$1"], ["(\\d)(\\d{5})(\\d{4})", "$1 $2 $3", ["9"], "0$1"]], "0"], MN: ["976", "001", "[12]\\d{7,9}|[5-9]\\d{7}", [8, 9, 10], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[12]1"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[5-9]"]], ["(\\d{3})(\\d{5,6})", "$1 $2", ["[12]2[1-3]"], "0$1"], ["(\\d{4})(\\d{5,6})", "$1 $2", ["[12](?:27|3[2-8]|4[2-68]|5[1-4689])", "[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"], "0$1"], ["(\\d{5})(\\d{4,5})", "$1 $2", ["[12]"], "0$1"]], "0"], MO: ["853", "00", "0800\\d{3}|(?:28|[68]\\d)\\d{6}", [7, 8], [["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[268]"]]]], MP: ["1", "011", "[58]\\d{9}|(?:67|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "670$1", 0, "670"], MQ: ["596", "00", "(?:596\\d|7091)\\d{5}|(?:69|[89]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-79]|8(?:0[6-9]|[36])"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], MR: ["222", "00", "(?:[2-4]\\d\\d|800)\\d{5}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-48]"]]]], MS: ["1", "011", "(?:[58]\\d\\d|664|900)\\d{7}", [10], 0, "1", 0, "([34]\\d{6})$|1", "664$1", 0, "664"], MT: ["356", "00", "3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2357-9]"]]]], MU: ["230", "0(?:0|[24-7]0|3[03])", "(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}", [7, 8, 10], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-46]|8[013]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[57]"]], ["(\\d{5})(\\d{5})", "$1 $2", ["8"]]], 0, 0, 0, 0, 0, 0, 0, "020"], MV: ["960", "0(?:0|19)", "(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}", [7, 10], [["(\\d{3})(\\d{4})", "$1-$2", ["[34679]"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[89]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], MW: ["265", "00", "(?:[1289]\\d|31|77)\\d{7}|1\\d{6}", [7, 9], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["1[2-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"], "0$1"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[137-9]"], "0$1"]], "0"], MX: ["52", "0[09]", "[2-9]\\d{9}", [10], [["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["33|5[56]|81"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], MY: ["60", "00", "1\\d{8,9}|(?:3\\d|[4-9])\\d{7}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1-$2 $3", ["[4-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1-$2 $3", ["1(?:[02469]|[378][1-9]|53)|8", "1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"], "0$1"], ["(\\d)(\\d{4})(\\d{4})", "$1-$2 $3", ["3"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{4})", "$1-$2-$3-$4", ["1(?:[367]|80)"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1-$2 $3", ["15"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4})", "$1-$2 $3", ["1"], "0$1"]], "0"], MZ: ["258", "00", "(?:2|8\\d)\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2|8[2-79]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["8"]]]], NA: ["264", "00", "[68]\\d{7,8}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["88"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["6"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["87"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], NC: ["687", "00", "(?:050|[2-57-9]\\d\\d)\\d{3}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1.$2.$3", ["[02-57-9]"]]]], NE: ["227", "00", "[027-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["08"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[089]|2[013]|7[0467]"]]]], NF: ["672", "00", "[13]\\d{5}", [6], [["(\\d{2})(\\d{4})", "$1 $2", ["1[0-3]"]], ["(\\d)(\\d{5})", "$1 $2", ["[13]"]]], 0, 0, "([0-258]\\d{4})$", "3$1"], NG: ["234", "009", "(?:20|9\\d)\\d{8}|[78]\\d{9,13}", [10, 11, 12, 13, 14], [["(\\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"], ["(\\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"]], "0"], NI: ["505", "00", "(?:1800|[25-8]\\d{3})\\d{4}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]]], NL: ["31", "00", "(?:[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], [["(\\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"], ["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3", ["9"], "0$1"]], "0"], NO: ["47", "00", "(?:0|[2-9]\\d{3})\\d{4}", [5, 8], [["(\\d{3})(\\d{2})(\\d{3})", "$1 $2 $3", ["8"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-79]"]]], 0, 0, 0, 0, 0, "[02-689]|7[0-8]"], NP: ["977", "00", "(?:1\\d|9)\\d{9}|[1-9]\\d{7}", [8, 10, 11], [["(\\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"]]], "0"], NR: ["674", "00", "(?:222|444|(?:55|8\\d)\\d|666|777|999)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[24-9]"]]]], NU: ["683", "00", "(?:[4-7]|888\\d)\\d{3}", [4, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["8"]]]], NZ: ["64", "0(?:0|161)", "[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], [["(\\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"]], "0", 0, 0, 0, 0, 0, 0, "00"], OM: ["968", "00", "(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}", [7, 8, 9], [["(\\d{3})(\\d{4,6})", "$1 $2", ["[58]"]], ["(\\d{2})(\\d{6})", "$1 $2", ["2"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[179]"]]]], PA: ["507", "00", "(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}", [7, 8, 10, 11], [["(\\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"]]]], PE: ["51", "00|19(?:1[124]|77|90)00", "(?:[14-8]|9\\d)\\d{7}", [8, 9], [["(\\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"]]], "0", 0, 0, 0, 0, 0, 0, "00", " Anexo "], PF: ["689", "00", "4\\d{5}(?:\\d{2})?|8\\d{7,8}", [6, 8, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["44"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["4|8[7-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], PG: ["675", "00|140[1-3]", "(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["18|[2-69]|85"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[78]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], PH: ["63", "00", "(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}", [6, 8, 9, 10, 11, 12, 13], [["(\\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)"], ["(\\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"]]], "0"], PK: ["92", "00", "122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,7})", "$1 $2 $3", ["[89]0"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["1"]], ["(\\d{3})(\\d{6,7})", "$1 $2", ["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])", "9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"], "(0$1)"], ["(\\d{2})(\\d{7,8})", "$1 $2", ["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"], "(0$1)"], ["(\\d{5})(\\d{5})", "$1 $2", ["58"], "(0$1)"], ["(\\d{3})(\\d{7})", "$1 $2", ["3"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"], "(0$1)"], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[24-9]"], "(0$1)"]], "0"], PL: ["48", "00", "(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}", [6, 7, 8, 9, 10], [["(\\d{5})", "$1", ["19"]], ["(\\d{3})(\\d{3})", "$1 $2", ["11|20|64"]], ["(\\d{2})(\\d{2})(\\d{3})", "$1 $2 $3", ["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1", "(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]], ["(\\d{3})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["64"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[2-8]|[2-7]|8[1-79]|9[145]"]], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["8"]]]], PM: ["508", "00", "[45]\\d{5}|(?:708|8\\d\\d)\\d{6}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[45]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"], "0$1"]], "0"], PR: ["1", "011", "(?:[589]\\d\\d|787)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "787|939"], PS: ["970", "00", "[2489]2\\d{6}|(?:1\\d|5)\\d{8}", [8, 9, 10], [["(\\d)(\\d{3})(\\d{4})", "$1 $2 $3", ["[2489]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3", ["1"]]], "0"], PT: ["351", "00", "1693\\d{5}|(?:[26-9]\\d|30)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["2[12]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["16|[236-9]"]]]], PW: ["680", "01[12]", "(?:[24-8]\\d\\d|345|900)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]]], PY: ["595", "00", "59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}", [6, 7, 8, 9, 10, 11], [["(\\d{3})(\\d{3,6})", "$1 $2", ["[2-9]0"], "0$1"], ["(\\d{2})(\\d{5})", "$1 $2", ["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"], "(0$1)"], ["(\\d{3})(\\d{4,5})", "$1 $2", ["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["87"]], ["(\\d{3})(\\d{6})", "$1 $2", ["9(?:[5-79]|8[1-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-8]"], "0$1"], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["9"]]], "0"], QA: ["974", "00", "800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}", [7, 8, 9, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["2[136]|8"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]]], RE: ["262", "00", "709\\d{6}|(?:26|[689]\\d)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, [["26(?:2\\d\\d|3(?:0\\d|1[0-6]))\\d{4}"], ["(?:69(?:2\\d\\d|3(?:[06][0-6]|1[0-3]|2[0-2]|3[0-39]|4\\d|5[0-5]|7[0-37]|8[0-8]|9[0-479]))|7092[0-3])\\d{4}"], ["80\\d{7}"], ["89[1-37-9]\\d{6}"], 0, 0, 0, 0, ["9(?:399[0-3]|479[0-6]|76(?:2[278]|3[0-37]))\\d{4}"], ["8(?:1[019]|2[0156]|84|90)\\d{6}"]]], RO: ["40", "00", "(?:[236-8]\\d|90)\\d{7}|[23]\\d{5}", [6, 9], [["(\\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"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[236-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, " int "], RS: ["381", "00", "38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}", [6, 7, 8, 9, 10, 11, 12], [["(\\d{3})(\\d{3,9})", "$1 $2", ["(?:2[389]|39)0|[7-9]"], "0$1"], ["(\\d{2})(\\d{5,10})", "$1 $2", ["[1-36]"], "0$1"]], "0"], RU: ["7", "810", "8\\d{13}|[347-9]\\d{9}", [10, 14], [["(\\d{4})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-8]|2[1-9])", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))", "7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"], "8 ($1)", 1], ["(\\d{5})(\\d)(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["7(?:1[0-68]|2[1-9])", "7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))", "7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "8 ($1)", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[349]|8(?:[02-7]|1[1-8])"], "8 ($1)", 1], ["(\\d{4})(\\d{4})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["8"], "8 ($1)"]], "8", 0, 0, 0, 0, 0, [["336(?:[013-9]\\d|2[013-9])\\d{5}|(?:3(?:0[12]|4[1-35-79]|5[1-3]|65|8[1-58]|9[0145])|4(?:01|1[1356]|2[13467]|7[1-5]|8[1-7]|9[1-689])|8(?:1[1-8]|2[01]|3[13-6]|4[0-8]|5[15-7]|6[0-35-79]|7[1-37-9]))\\d{7}", [10]], ["9\\d{9}", [10]], ["8(?:0[04]|108\\d{3})\\d{7}"], ["80[39]\\d{7}", [10]], ["808\\d{7}", [10]]], "8~10"], RW: ["250", "00", "(?:06|[27]\\d\\d|[89]00)\\d{6}", [8, 9], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[7-9]"], "0$1"]], "0"], SA: ["966", "00", "(?:[15]\\d|800|92)\\d{7}", [9, 10], [["(\\d{4})(\\d{5})", "$1 $2", ["9"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["5"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], "0"], SB: ["677", "0[01]", "[6-9]\\d{6}|[1-6]\\d{4}", [5, 7], [["(\\d{2})(\\d{5})", "$1 $2", ["6[89]|7|8[4-9]|9(?:[1-8]|9[0-8])"]]]], SC: ["248", "010|0[0-2]", "(?:[2489]\\d|64)\\d{5}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[246]|9[57]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], SD: ["249", "00", "[19]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], SE: ["46", "00", "(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}", [6, 7, 8, 9, 10, 12], [["(\\d{2})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["20"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{4})", "$1-$2", ["9(?:00|39|44|9)"], "0$1", 0, "$1 $2"], ["(\\d{2})(\\d{3})(\\d{2})", "$1-$2 $3", ["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3"], ["(\\d)(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2,3})(\\d{2})", "$1-$2 $3", ["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3"], ["(\\d{3})(\\d{2,3})(\\d{3})", "$1-$2 $3", ["9(?:00|39|44)"], "0$1", 0, "$1 $2 $3"], ["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["10|7"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1-$2 $3 $4", ["8"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1-$2 $3 $4", ["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{2})(\\d{3})", "$1-$2 $3 $4", ["9"], "0$1", 0, "$1 $2 $3 $4"], ["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1-$2 $3 $4 $5", ["[26]"], "0$1", 0, "$1 $2 $3 $4 $5"]], "0"], SG: ["65", "0[0-3]\\d", "(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}", [8, 10, 11], [["(\\d{4})(\\d{4})", "$1 $2", ["[369]|8(?:0[1-9]|[1-9])"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]], ["(\\d{4})(\\d{4})(\\d{3})", "$1 $2 $3", ["7"]], ["(\\d{4})(\\d{3})(\\d{4})", "$1 $2 $3", ["1"]]]], SH: ["290", "00", "(?:[256]\\d|8)\\d{3}", [4, 5], 0, 0, 0, 0, 0, 0, "[256]"], SI: ["386", "00|10(?:22|66|88|99)", "[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}", [5, 6, 7, 8], [["(\\d{2})(\\d{3,6})", "$1 $2", ["8[09]|9"], "0$1"], ["(\\d{3})(\\d{5})", "$1 $2", ["59|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[37][01]|4[0139]|51|6"], "0$1"], ["(\\d)(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[1-57]"], "(0$1)"]], "0", 0, 0, 0, 0, 0, 0, "00"], SJ: ["47", "00", "0\\d{4}|(?:[489]\\d|79)\\d{6}", [5, 8], 0, 0, 0, 0, 0, 0, "79"], SK: ["421", "00", "[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}", [6, 7, 9], [["(\\d)(\\d{2})(\\d{3,4})", "$1 $2 $3", ["21"], "0$1"], ["(\\d{2})(\\d{2})(\\d{2,3})", "$1 $2 $3", ["[3-5][1-8]1", "[3-5][1-8]1[67]"], "0$1"], ["(\\d)(\\d{3})(\\d{3})(\\d{2})", "$1/$2 $3 $4", ["2"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[689]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1/$2 $3 $4", ["[3-5]"], "0$1"]], "0"], SL: ["232", "00", "(?:[237-9]\\d|66)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[236-9]"], "(0$1)"]], "0"], SM: ["378", "00", "(?:0549|[5-7]\\d)\\d{6}", [8, 10], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[5-7]"]], ["(\\d{4})(\\d{6})", "$1 $2", ["0"]]], 0, 0, "([89]\\d{5})$", "0549$1"], SN: ["221", "00", "(?:[378]\\d|93)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[379]"]]]], SO: ["252", "00", "[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}", [6, 7, 8, 9], [["(\\d{2})(\\d{4})", "$1 $2", ["8[125]"]], ["(\\d{6})", "$1", ["[134]"]], ["(\\d)(\\d{6})", "$1 $2", ["[15]|2[0-79]|3[0-46-8]|4[0-7]"]], ["(\\d)(\\d{7})", "$1 $2", ["(?:2|90)4|[67]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[348]|64|79|90"]], ["(\\d{2})(\\d{5,7})", "$1 $2", ["1|28|6[0-35-9]|7[67]|9[2-9]"]]], "0"], SR: ["597", "00", "(?:[2-5]|[6-8]\\d|90)\\d{5}", [6, 7], [["(\\d{2})(\\d{2})(\\d{2})", "$1-$2-$3", ["56"]], ["(\\d{3})(\\d{3})", "$1-$2", ["[2-5]"]], ["(\\d{3})(\\d{4})", "$1-$2", ["[6-9]"]]]], SS: ["211", "00", "[19]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[19]"], "0$1"]], "0"], ST: ["239", "00", "(?:22|9\\d)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[29]"]]]], SV: ["503", "00", "[25-7]\\d{7}|(?:80\\d|900)\\d{4}(?:\\d{4})?", [7, 8, 11], [["(\\d{3})(\\d{4})", "$1 $2", ["[89]"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[25-7]"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["[89]"]]]], SX: ["1", "011", "7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "(5\\d{6})$|1", "721$1", 0, "721"], SY: ["963", "00", "[1-359]\\d{8}|[1-5]\\d{7}", [8, 9], [["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-4]|5[1-3]"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[59]"], "0$1", 1]], "0"], SZ: ["268", "00", "0800\\d{4}|(?:[237]\\d|900)\\d{6}", [8, 9], [["(\\d{4})(\\d{4})", "$1 $2", ["[0237]"]], ["(\\d{5})(\\d{4})", "$1 $2", ["9"]]]], TA: ["290", "00", "8\\d{3}", [4], 0, 0, 0, 0, 0, 0, "8"], TC: ["1", "011", "(?:[58]\\d\\d|649|900)\\d{7}", [10], 0, "1", 0, "([2-479]\\d{6})$|1", "649$1", 0, "649"], TD: ["235", "00|16", "(?:22|30|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[236-9]"]]], 0, 0, 0, 0, 0, 0, 0, "00"], TG: ["228", "00", "[279]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]]], TH: ["66", "00[1-9]", "(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}", [8, 9, 10, 13], [["(\\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"]]], "0"], TJ: ["992", "810", "(?:[0-57-9]\\d|66)\\d{7}", [9], [["(\\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", ["\\d"]]], 0, 0, 0, 0, 0, 0, 0, "8~10"], TK: ["690", "00", "[2-47]\\d{3,6}", [4, 5, 6, 7]], TL: ["670", "00", "7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}", [7, 8], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-489]|70"]], ["(\\d{4})(\\d{4})", "$1 $2", ["7"]]]], TM: ["993", "810", "(?:[1-6]\\d|71)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["12"], "(8 $1)"], ["(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4", ["[1-5]"], "(8 $1)"], ["(\\d{2})(\\d{6})", "$1 $2", ["[67]"], "8 $1"]], "8", 0, 0, 0, 0, 0, 0, "8~10"], TN: ["216", "00", "[2-57-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-57-9]"]]]], TO: ["676", "00", "(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}", [5, 7], [["(\\d{2})(\\d{3})", "$1-$2", ["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], ["(\\d{4})(\\d{3})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[5-9]"]]]], TR: ["90", "00", "4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}", [7, 10, 12, 13], [["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["512|8[01589]|90"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["5(?:[0-59]|61)", "5(?:[0-59]|61[06])", "5(?:[0-59]|61[06]1)"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24][1-8]|3[1-9]"], "(0$1)", 1], ["(\\d{3})(\\d{3})(\\d{6,7})", "$1 $2 $3", ["80"], "0$1", 1]], "0"], TT: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-46-8]\\d{6})$|1", "868$1", 0, "868"], TV: ["688", "00", "(?:2|7\\d\\d|90)\\d{4}", [5, 6, 7], [["(\\d{2})(\\d{3})", "$1 $2", ["2"]], ["(\\d{2})(\\d{4})", "$1 $2", ["90"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], TW: ["886", "0(?:0[25-79]|19)", "[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}", [7, 8, 9, 10, 11], [["(\\d{2})(\\d)(\\d{4})", "$1 $2 $3", ["202"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[258]0"], "0$1"], ["(\\d)(\\d{3,4})(\\d{4})", "$1 $2 $3", ["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]", "[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{2})(\\d{4})(\\d{4,5})", "$1 $2 $3", ["7"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, 0, "#"], TZ: ["255", "00[056]", "(?:[25-8]\\d|41|90)\\d{7}", [9], [["(\\d{3})(\\d{2})(\\d{4})", "$1 $2 $3", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[24]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["5"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[67]"], "0$1"]], "0"], UA: ["380", "00", "[89]\\d{9}|[3-9]\\d{8}", [9, 10], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]", "6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"], "0$1"], ["(\\d{4})(\\d{5})", "$1 $2", ["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])", "3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[3-7]|89|9[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[89]"], "0$1"]], "0", 0, 0, 0, 0, 0, 0, "0~0"], UG: ["256", "00[057]", "800\\d{6}|(?:[29]0|[347]\\d)\\d{7}", [9], [["(\\d{4})(\\d{5})", "$1 $2", ["202", "2024"], "0$1"], ["(\\d{3})(\\d{6})", "$1 $2", ["[27-9]|4(?:6[45]|[7-9])"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[34]"], "0$1"]], "0"], US: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [10], [["(\\d{3})(\\d{4})", "$1-$2", ["310"], 0, 1], ["(\\d{3})(\\d{3})(\\d{4})", "($1) $2-$3", ["[2-9]"], 0, 1, "$1-$2-$3"]], "1", 0, 0, 0, 0, 0, [["3052(?:0[0-8]|[1-9]\\d)\\d{4}|(?:2742|305[3-9])\\d{6}|(?:472|983)[2-47-9]\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[013-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-57-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-269])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[0-247]|4[0378]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[0168]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-3589]|8[04-69]))[2-9]\\d{6}"], [""], ["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"], ["900[2-9]\\d{6}"], ["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"], 0, 0, 0, ["305209\\d{4}"]]], UY: ["598", "0(?:0|1[3-9]\\d)", "0004\\d{2,9}|[1249]\\d{7}|2\\d{3,4}|(?:[49]\\d|80)\\d{5}", [4, 5, 6, 7, 8, 9, 10, 11, 12, 13], [["(\\d{4,5})", "$1", ["21"]], ["(\\d{3})(\\d{3,4})", "$1 $2", ["0"]], ["(\\d{3})(\\d{4})", "$1 $2", ["[49]0|8"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["9"], "0$1"], ["(\\d{4})(\\d{4})", "$1 $2", ["[124]"]], ["(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3", ["0"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{2,4})", "$1 $2 $3 $4", ["0"]]], "0", 0, 0, 0, 0, 0, 0, "00", " int. "], UZ: ["998", "00", "(?:20|33|[5-9]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[235-9]"]]]], VA: ["39", "00", "0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}", [6, 7, 8, 9, 10, 11, 12], 0, 0, 0, 0, 0, 0, "06698"], VC: ["1", "011", "(?:[58]\\d\\d|784|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "784$1", 0, "784"], VE: ["58", "00", "[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}", [10], [["(\\d{3})(\\d{7})", "$1-$2", ["[24-689]"], "0$1"]], "0"], VG: ["1", "011", "(?:284|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-578]\\d{6})$|1", "284$1", 0, "284"], VI: ["1", "011", "[58]\\d{9}|(?:34|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "340$1", 0, "340"], VN: ["84", "00", "[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}", [7, 8, 9, 10], [["(\\d{2})(\\d{5})", "$1 $2", ["80"], "0$1", 1], ["(\\d{4})(\\d{4,6})", "$1 $2", ["1"], 0, 1], ["(\\d{2})(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["6"], "0$1", 1], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[357-9]"], "0$1", 1], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["2[48]"], "0$1", 1], ["(\\d{3})(\\d{4})(\\d{3})", "$1 $2 $3", ["2"], "0$1", 1]], "0"], VU: ["678", "00", "[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}", [5, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["[57-9]"]]]], WF: ["681", "00", "(?:40|72|8\\d{4})\\d{4}|[89]\\d{5}", [6, 9], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["[47-9]"]], ["(\\d{3})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["8"]]]], WS: ["685", "0", "(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}", [5, 6, 7, 10], [["(\\d{5})", "$1", ["[2-5]|6[1-9]"]], ["(\\d{3})(\\d{3,7})", "$1 $2", ["[68]"]], ["(\\d{2})(\\d{5})", "$1 $2", ["7"]]]], XK: ["383", "00", "2\\d{7,8}|3\\d{7,11}|(?:4\\d\\d|[89]00)\\d{5}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{5})", "$1 $2", ["[89]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["2|39"], "0$1"], ["(\\d{2})(\\d{7,10})", "$1 $2", ["3"], "0$1"]], "0"], YE: ["967", "00", "(?:1|7\\d)\\d{7}|[1-7]\\d{6}", [7, 8, 9], [["(\\d)(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[1-6]|7(?:[24-6]|8[0-7])"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["7"], "0$1"]], "0"], YT: ["262", "00", "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", [9], 0, "0", 0, 0, 0, 0, 0, [["269(?:0[0-467]|15|5[0-4]|6\\d|[78]0)\\d{4}"], ["(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\d{4}"], ["80\\d{7}"], 0, 0, 0, 0, 0, ["9(?:(?:39|47)8[01]|769\\d)\\d{4}"]]], ZA: ["27", "00", "[1-79]\\d{8}|8\\d{4,9}", [5, 6, 7, 8, 9, 10], [["(\\d{2})(\\d{3,4})", "$1 $2", ["8[1-4]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["8[1-4]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["860"], "0$1"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"], "0$1"]], "0"], ZM: ["260", "00", "800\\d{6}|(?:21|[579]\\d|63)\\d{7}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[28]"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["[579]"], "0$1"]], "0"], ZW: ["263", "00", "2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}", [5, 6, 7, 8, 9, 10], [["(\\d{3})(\\d{3,5})", "$1 $2", ["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"], "0$1"], ["(\\d)(\\d{3})(\\d{2,4})", "$1 $2 $3", ["[49]"], "0$1"], ["(\\d{3})(\\d{4})", "$1 $2", ["80"], "0$1"], ["(\\d{2})(\\d{7})", "$1 $2", ["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2", "2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"], "(0$1)"], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["7"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)", "2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"], "0$1"], ["(\\d{4})(\\d{6})", "$1 $2", ["8"], "0$1"], ["(\\d{2})(\\d{3,5})", "$1 $2", ["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["29[013-9]|39|54"], "0$1"], ["(\\d{4})(\\d{3,5})", "$1 $2", ["(?:25|54)8", "258|5483"], "0$1"]], "0"] }, nonGeographic: { 800: ["800", 0, "(?:00|[1-9]\\d)\\d{6}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["\\d"]]], 0, 0, 0, 0, 0, 0, [0, 0, ["(?:00|[1-9]\\d)\\d{6}"]]], 808: ["808", 0, "[1-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[1-9]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, 0, ["[1-9]\\d{7}"]]], 870: ["870", 0, "7\\d{11}|[235-7]\\d{8}", [9, 12], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[235-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"], 0, 0, 0, 0, 0, 0, ["2\\d{8}", [9]]]], 878: ["878", 0, "10\\d{10}", [12], [["(\\d{2})(\\d{5})(\\d{5})", "$1 $2 $3", ["1"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["10\\d{10}"]]], 881: ["881", 0, "6\\d{9}|[0-36-9]\\d{8}", [9, 10], [["(\\d)(\\d{3})(\\d{5})", "$1 $2 $3", ["[0-37-9]"]], ["(\\d)(\\d{3})(\\d{5,6})", "$1 $2 $3", ["6"]]], 0, 0, 0, 0, 0, 0, [0, ["6\\d{9}|[0-36-9]\\d{8}"]]], 882: ["882", 0, "[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?", [7, 8, 9, 10, 11, 12], [["(\\d{2})(\\d{5})", "$1 $2", ["16|342"]], ["(\\d{2})(\\d{6})", "$1 $2", ["49"]], ["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["1[36]|9"]], ["(\\d{2})(\\d{4})(\\d{3})", "$1 $2 $3", ["3[23]"]], ["(\\d{2})(\\d{3,4})(\\d{4})", "$1 $2 $3", ["16"]], ["(\\d{2})(\\d{4})(\\d{4})", "$1 $2 $3", ["10|23|3(?:[15]|4[57])|4|51"]], ["(\\d{3})(\\d{4})(\\d{4})", "$1 $2 $3", ["34"]], ["(\\d{2})(\\d{4,5})(\\d{5})", "$1 $2 $3", ["[1-35]"]]], 0, 0, 0, 0, 0, 0, [0, ["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}", [7, 8, 9, 10, 12]], 0, 0, 0, ["348[57]\\d{7}", [11]], 0, 0, ["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]], 883: ["883", 0, "(?:[1-4]\\d|51)\\d{6,10}", [8, 9, 10, 11, 12], [["(\\d{3})(\\d{3})(\\d{2,8})", "$1 $2 $3", ["[14]|2[24-689]|3[02-689]|51[24-9]"]], ["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["510"]], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["21"]], ["(\\d{4})(\\d{4})(\\d{4})", "$1 $2 $3", ["51[13]"]], ["(\\d{3})(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[235]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, 0, 0, ["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[0-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]], 888: ["888", 0, "\\d{11}", [11], [["(\\d{3})(\\d{3})(\\d{5})", "$1 $2 $3"]], 0, 0, 0, 0, 0, 0, [0, 0, 0, 0, 0, 0, ["\\d{11}"]]], 979: ["979", 0, "[1359]\\d{8}", [9], [["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["[1359]"]]], 0, 0, 0, 0, 0, 0, [0, 0, 0, ["[1359]\\d{8}"]]] } };
|
|
14029
14049
|
function n0(e, t) {
|
|
14030
14050
|
var r = Array.prototype.slice.call(t);
|
|
14031
14051
|
return r.push(j7), e.apply(this, r);
|
|
@@ -15786,7 +15806,7 @@ const Gh = (e, t) => {
|
|
|
15786
15806
|
setSelectedCountry: g
|
|
15787
15807
|
};
|
|
15788
15808
|
};
|
|
15789
|
-
/*! countries-list v3.2.
|
|
15809
|
+
/*! countries-list v3.2.2 by Annexare | MIT */
|
|
15790
15810
|
var ya = { AD: { name: "Andorra", native: "Andorra", phone: [376], continent: "EU", capital: "Andorra la Vella", currency: ["EUR"], languages: ["ca"] }, AE: { name: "United Arab Emirates", native: "دولة الإمارات العربية المتحدة", phone: [971], continent: "AS", capital: "Abu Dhabi", currency: ["AED"], languages: ["ar"] }, AF: { name: "Afghanistan", native: "افغانستان", phone: [93], continent: "AS", capital: "Kabul", currency: ["AFN"], languages: ["ps", "fa", "uz", "tk"] }, AG: { name: "Antigua and Barbuda", native: "Antigua and Barbuda", phone: [1268], continent: "NA", capital: "Saint John's", currency: ["XCD"], languages: ["en"] }, AI: { name: "Anguilla", native: "Anguilla", phone: [1264], continent: "NA", capital: "The Valley", currency: ["XCD"], languages: ["en"] }, AL: { name: "Albania", native: "Shqipëria", phone: [355], continent: "EU", capital: "Tirana", currency: ["ALL"], languages: ["sq"] }, AM: { name: "Armenia", native: "Հայաստան", phone: [374], continent: "AS", capital: "Yerevan", currency: ["AMD"], languages: ["hy", "ru"] }, AO: { name: "Angola", native: "Angola", phone: [244], continent: "AF", capital: "Luanda", currency: ["AOA"], languages: ["pt"] }, AQ: { name: "Antarctica", native: "Antarctica", phone: [672], continent: "AN", capital: "", currency: [], languages: [] }, AR: { name: "Argentina", native: "Argentina", phone: [54], continent: "SA", capital: "Buenos Aires", currency: ["ARS"], languages: ["es", "gn"] }, AS: { name: "American Samoa", native: "American Samoa", phone: [1684], continent: "OC", capital: "Pago Pago", currency: ["USD"], languages: ["en", "sm"] }, AT: { name: "Austria", native: "Österreich", phone: [43], continent: "EU", capital: "Vienna", currency: ["EUR"], languages: ["de"] }, AU: { name: "Australia", native: "Australia", phone: [61], continent: "OC", capital: "Canberra", currency: ["AUD"], languages: ["en"] }, AW: { name: "Aruba", native: "Aruba", phone: [297], continent: "NA", capital: "Oranjestad", currency: ["AWG"], languages: ["nl", "pa"] }, AX: { name: "Aland", native: "Åland", phone: [358], continent: "EU", capital: "Mariehamn", currency: ["EUR"], languages: ["sv"], partOf: "FI" }, AZ: { name: "Azerbaijan", native: "Azərbaycan", phone: [994], continent: "AS", continents: ["AS", "EU"], capital: "Baku", currency: ["AZN"], languages: ["az"] }, BA: { name: "Bosnia and Herzegovina", native: "Bosna i Hercegovina", phone: [387], continent: "EU", capital: "Sarajevo", currency: ["BAM"], languages: ["bs", "hr", "sr"] }, BB: { name: "Barbados", native: "Barbados", phone: [1246], continent: "NA", capital: "Bridgetown", currency: ["BBD"], languages: ["en"] }, BD: { name: "Bangladesh", native: "Bangladesh", phone: [880], continent: "AS", capital: "Dhaka", currency: ["BDT"], languages: ["bn"] }, BE: { name: "Belgium", native: "België", phone: [32], continent: "EU", capital: "Brussels", currency: ["EUR"], languages: ["nl", "fr", "de"] }, BF: { name: "Burkina Faso", native: "Burkina Faso", phone: [226], continent: "AF", capital: "Ouagadougou", currency: ["XOF"], languages: ["fr", "ff"] }, BG: { name: "Bulgaria", native: "България", phone: [359], continent: "EU", capital: "Sofia", currency: ["BGN"], languages: ["bg"] }, BH: { name: "Bahrain", native: "البحرين", phone: [973], continent: "AS", capital: "Manama", currency: ["BHD"], languages: ["ar"] }, BI: { name: "Burundi", native: "Burundi", phone: [257], continent: "AF", capital: "Gitega", currency: ["BIF"], languages: ["fr", "rn"] }, BJ: { name: "Benin", native: "Bénin", phone: [229], continent: "AF", capital: "Porto-Novo", currency: ["XOF"], languages: ["fr"] }, BL: { name: "Saint Barthelemy", native: "Saint-Barthélemy", phone: [590], continent: "NA", capital: "Gustavia", currency: ["EUR"], languages: ["fr"] }, BM: { name: "Bermuda", native: "Bermuda", phone: [1441], continent: "NA", capital: "Hamilton", currency: ["BMD"], languages: ["en"] }, BN: { name: "Brunei", native: "Negara Brunei Darussalam", phone: [673], continent: "AS", capital: "Bandar Seri Begawan", currency: ["BND"], languages: ["ms"] }, BO: { name: "Bolivia", native: "Bolivia", phone: [591], continent: "SA", capital: "Sucre", currency: ["BOB", "BOV"], languages: ["es", "ay", "qu"] }, BQ: { name: "Bonaire", native: "Bonaire", phone: [5997], continent: "NA", capital: "Kralendijk", currency: ["USD"], languages: ["nl"] }, BR: { name: "Brazil", native: "Brasil", phone: [55], continent: "SA", capital: "Brasília", currency: ["BRL"], languages: ["pt"] }, BS: { name: "Bahamas", native: "Bahamas", phone: [1242], continent: "NA", capital: "Nassau", currency: ["BSD"], languages: ["en"] }, BT: { name: "Bhutan", native: "ʼbrug-yul", phone: [975], continent: "AS", capital: "Thimphu", currency: ["BTN", "INR"], languages: ["dz"] }, BV: { name: "Bouvet Island", native: "Bouvetøya", phone: [47], continent: "AN", capital: "", currency: ["NOK"], languages: ["no", "nb", "nn"] }, BW: { name: "Botswana", native: "Botswana", phone: [267], continent: "AF", capital: "Gaborone", currency: ["BWP"], languages: ["en", "tn"] }, BY: { name: "Belarus", native: "Беларусь", phone: [375], continent: "EU", capital: "Minsk", currency: ["BYN"], languages: ["be", "ru"] }, BZ: { name: "Belize", native: "Belize", phone: [501], continent: "NA", capital: "Belmopan", currency: ["BZD"], languages: ["en", "es"] }, CA: { name: "Canada", native: "Canada", phone: [1], continent: "NA", capital: "Ottawa", currency: ["CAD"], languages: ["en", "fr"] }, CC: { name: "Cocos (Keeling) Islands", native: "Cocos (Keeling) Islands", phone: [61], continent: "AS", capital: "West Island", currency: ["AUD"], languages: ["en"] }, CD: { name: "Democratic Republic of the Congo", native: "République démocratique du Congo", phone: [243], continent: "AF", capital: "Kinshasa", currency: ["CDF"], languages: ["fr", "ln", "kg", "sw", "lu"] }, CF: { name: "Central African Republic", native: "Ködörösêse tî Bêafrîka", phone: [236], continent: "AF", capital: "Bangui", currency: ["XAF"], languages: ["fr", "sg"] }, CG: { name: "Republic of the Congo", native: "République du Congo", phone: [242], continent: "AF", capital: "Brazzaville", currency: ["XAF"], languages: ["fr", "ln"] }, CH: { name: "Switzerland", native: "Schweiz", phone: [41], continent: "EU", capital: "Bern", currency: ["CHF", "CHE", "CHW"], languages: ["de", "fr", "it"] }, CI: { name: "Ivory Coast", native: "Côte d'Ivoire", phone: [225], continent: "AF", capital: "Yamoussoukro", currency: ["XOF"], languages: ["fr"] }, CK: { name: "Cook Islands", native: "Cook Islands", phone: [682], continent: "OC", capital: "Avarua", currency: ["NZD"], languages: ["en"] }, CL: { name: "Chile", native: "Chile", phone: [56], continent: "SA", capital: "Santiago", currency: ["CLF", "CLP"], languages: ["es"] }, CM: { name: "Cameroon", native: "Cameroon", phone: [237], continent: "AF", capital: "Yaoundé", currency: ["XAF"], languages: ["en", "fr"] }, CN: { name: "China", native: "中国", phone: [86], continent: "AS", capital: "Beijing", currency: ["CNY"], languages: ["zh"] }, CO: { name: "Colombia", native: "Colombia", phone: [57], continent: "SA", capital: "Bogotá", currency: ["COP"], languages: ["es"] }, CR: { name: "Costa Rica", native: "Costa Rica", phone: [506], continent: "NA", capital: "San José", currency: ["CRC"], languages: ["es"] }, CU: { name: "Cuba", native: "Cuba", phone: [53], continent: "NA", capital: "Havana", currency: ["CUP"], languages: ["es"] }, CV: { name: "Cape Verde", native: "Cabo Verde", phone: [238], continent: "AF", capital: "Praia", currency: ["CVE"], languages: ["pt"] }, CW: { name: "Curacao", native: "Curaçao", phone: [5999], continent: "NA", capital: "Willemstad", currency: ["ANG"], languages: ["nl", "pa", "en"] }, CX: { name: "Christmas Island", native: "Christmas Island", phone: [61], continent: "AS", capital: "Flying Fish Cove", currency: ["AUD"], languages: ["en"] }, CY: { name: "Cyprus", native: "Κύπρος", phone: [357], continent: "EU", capital: "Nicosia", currency: ["EUR"], languages: ["el", "tr", "hy"] }, CZ: { name: "Czech Republic", native: "Česká republika", phone: [420], continent: "EU", capital: "Prague", currency: ["CZK"], languages: ["cs"] }, DE: { name: "Germany", native: "Deutschland", phone: [49], continent: "EU", capital: "Berlin", currency: ["EUR"], languages: ["de"] }, DJ: { name: "Djibouti", native: "Djibouti", phone: [253], continent: "AF", capital: "Djibouti", currency: ["DJF"], languages: ["fr", "ar"] }, DK: { name: "Denmark", native: "Danmark", phone: [45], continent: "EU", continents: ["EU", "NA"], capital: "Copenhagen", currency: ["DKK"], languages: ["da"] }, DM: { name: "Dominica", native: "Dominica", phone: [1767], continent: "NA", capital: "Roseau", currency: ["XCD"], languages: ["en"] }, DO: { name: "Dominican Republic", native: "República Dominicana", phone: [1809, 1829, 1849], continent: "NA", capital: "Santo Domingo", currency: ["DOP"], languages: ["es"] }, DZ: { name: "Algeria", native: "الجزائر", phone: [213], continent: "AF", capital: "Algiers", currency: ["DZD"], languages: ["ar"] }, EC: { name: "Ecuador", native: "Ecuador", phone: [593], continent: "SA", capital: "Quito", currency: ["USD"], languages: ["es"] }, EE: { name: "Estonia", native: "Eesti", phone: [372], continent: "EU", capital: "Tallinn", currency: ["EUR"], languages: ["et"] }, EG: { name: "Egypt", native: "مصر", phone: [20], continent: "AF", continents: ["AF", "AS"], capital: "Cairo", currency: ["EGP"], languages: ["ar"] }, EH: { name: "Western Sahara", native: "الصحراء الغربية", phone: [212], continent: "AF", capital: "El Aaiún", currency: ["MAD", "DZD", "MRU"], languages: ["es"] }, ER: { name: "Eritrea", native: "ኤርትራ", phone: [291], continent: "AF", capital: "Asmara", currency: ["ERN"], languages: ["ti", "ar", "en"] }, ES: { name: "Spain", native: "España", phone: [34], continent: "EU", capital: "Madrid", currency: ["EUR"], languages: ["es", "eu", "ca", "gl", "oc"] }, ET: { name: "Ethiopia", native: "ኢትዮጵያ", phone: [251], continent: "AF", capital: "Addis Ababa", currency: ["ETB"], languages: ["am"] }, FI: { name: "Finland", native: "Suomi", phone: [358], continent: "EU", capital: "Helsinki", currency: ["EUR"], languages: ["fi", "sv"] }, FJ: { name: "Fiji", native: "Fiji", phone: [679], continent: "OC", capital: "Suva", currency: ["FJD"], languages: ["en", "fj", "hi", "ur"] }, FK: { name: "Falkland Islands", native: "Falkland Islands", phone: [500], continent: "SA", capital: "Stanley", currency: ["FKP"], languages: ["en"] }, FM: { name: "Micronesia", native: "Micronesia", phone: [691], continent: "OC", capital: "Palikir", currency: ["USD"], languages: ["en"] }, FO: { name: "Faroe Islands", native: "Føroyar", phone: [298], continent: "EU", capital: "Tórshavn", currency: ["DKK"], languages: ["fo"] }, FR: { name: "France", native: "France", phone: [33], continent: "EU", capital: "Paris", currency: ["EUR"], languages: ["fr"] }, GA: { name: "Gabon", native: "Gabon", phone: [241], continent: "AF", capital: "Libreville", currency: ["XAF"], languages: ["fr"] }, GB: { name: "United Kingdom", native: "United Kingdom", phone: [44], continent: "EU", capital: "London", currency: ["GBP"], languages: ["en"] }, GD: { name: "Grenada", native: "Grenada", phone: [1473], continent: "NA", capital: "St. George's", currency: ["XCD"], languages: ["en"] }, GE: { name: "Georgia", native: "საქართველო", phone: [995], continent: "AS", continents: ["AS", "EU"], capital: "Tbilisi", currency: ["GEL"], languages: ["ka"] }, GF: { name: "French Guiana", native: "Guyane française", phone: [594], continent: "SA", capital: "Cayenne", currency: ["EUR"], languages: ["fr"] }, GG: { name: "Guernsey", native: "Guernsey", phone: [44], continent: "EU", capital: "St. Peter Port", currency: ["GBP"], languages: ["en", "fr"] }, GH: { name: "Ghana", native: "Ghana", phone: [233], continent: "AF", capital: "Accra", currency: ["GHS"], languages: ["en"] }, GI: { name: "Gibraltar", native: "Gibraltar", phone: [350], continent: "EU", capital: "Gibraltar", currency: ["GIP"], languages: ["en"] }, GL: { name: "Greenland", native: "Kalaallit Nunaat", phone: [299], continent: "NA", capital: "Nuuk", currency: ["DKK"], languages: ["kl"] }, GM: { name: "Gambia", native: "Gambia", phone: [220], continent: "AF", capital: "Banjul", currency: ["GMD"], languages: ["en"] }, GN: { name: "Guinea", native: "Guinée", phone: [224], continent: "AF", capital: "Conakry", currency: ["GNF"], languages: ["fr", "ff"] }, GP: { name: "Guadeloupe", native: "Guadeloupe", phone: [590], continent: "NA", capital: "Basse-Terre", currency: ["EUR"], languages: ["fr"] }, GQ: { name: "Equatorial Guinea", native: "Guinea Ecuatorial", phone: [240], continent: "AF", capital: "Malabo", currency: ["XAF"], languages: ["es", "fr"] }, GR: { name: "Greece", native: "Ελλάδα", phone: [30], continent: "EU", capital: "Athens", currency: ["EUR"], languages: ["el"] }, GS: { name: "South Georgia and the South Sandwich Islands", native: "South Georgia", phone: [500], continent: "AN", capital: "King Edward Point", currency: ["GBP"], languages: ["en"] }, GT: { name: "Guatemala", native: "Guatemala", phone: [502], continent: "NA", capital: "Guatemala City", currency: ["GTQ"], languages: ["es"] }, GU: { name: "Guam", native: "Guam", phone: [1671], continent: "OC", capital: "Hagåtña", currency: ["USD"], languages: ["en", "ch", "es"] }, GW: { name: "Guinea-Bissau", native: "Guiné-Bissau", phone: [245], continent: "AF", capital: "Bissau", currency: ["XOF"], languages: ["pt"] }, GY: { name: "Guyana", native: "Guyana", phone: [592], continent: "SA", capital: "Georgetown", currency: ["GYD"], languages: ["en"] }, HK: { name: "Hong Kong", native: "香港", phone: [852], continent: "AS", capital: "City of Victoria", currency: ["HKD"], languages: ["zh", "en"] }, HM: { name: "Heard Island and McDonald Islands", native: "Heard Island and McDonald Islands", phone: [61], continent: "AN", capital: "", currency: ["AUD"], languages: ["en"] }, HN: { name: "Honduras", native: "Honduras", phone: [504], continent: "NA", capital: "Tegucigalpa", currency: ["HNL"], languages: ["es"] }, HR: { name: "Croatia", native: "Hrvatska", phone: [385], continent: "EU", capital: "Zagreb", currency: ["EUR"], languages: ["hr"] }, HT: { name: "Haiti", native: "Haïti", phone: [509], continent: "NA", capital: "Port-au-Prince", currency: ["HTG", "USD"], languages: ["fr", "ht"] }, HU: { name: "Hungary", native: "Magyarország", phone: [36], continent: "EU", capital: "Budapest", currency: ["HUF"], languages: ["hu"] }, ID: { name: "Indonesia", native: "Indonesia", phone: [62], continent: "AS", capital: "Jakarta", currency: ["IDR"], languages: ["id"] }, IE: { name: "Ireland", native: "Éire", phone: [353], continent: "EU", capital: "Dublin", currency: ["EUR"], languages: ["ga", "en"] }, IL: { name: "Israel", native: "יִשְׂרָאֵל", phone: [972], continent: "AS", capital: "Jerusalem", currency: ["ILS"], languages: ["he", "ar"] }, IM: { name: "Isle of Man", native: "Isle of Man", phone: [44], continent: "EU", capital: "Douglas", currency: ["GBP"], languages: ["en", "gv"] }, IN: { name: "India", native: "भारत", phone: [91], continent: "AS", capital: "New Delhi", currency: ["INR"], languages: ["hi", "en"] }, IO: { name: "British Indian Ocean Territory", native: "British Indian Ocean Territory", phone: [246], continent: "AS", capital: "Diego Garcia", currency: ["USD"], languages: ["en"] }, IQ: { name: "Iraq", native: "العراق", phone: [964], continent: "AS", capital: "Baghdad", currency: ["IQD"], languages: ["ar", "ku"] }, IR: { name: "Iran", native: "ایران", phone: [98], continent: "AS", capital: "Tehran", currency: ["IRR"], languages: ["fa"] }, IS: { name: "Iceland", native: "Ísland", phone: [354], continent: "EU", capital: "Reykjavik", currency: ["ISK"], languages: ["is"] }, IT: { name: "Italy", native: "Italia", phone: [39], continent: "EU", capital: "Rome", currency: ["EUR"], languages: ["it"] }, JE: { name: "Jersey", native: "Jersey", phone: [44], continent: "EU", capital: "Saint Helier", currency: ["GBP"], languages: ["en", "fr"] }, JM: { name: "Jamaica", native: "Jamaica", phone: [1876], continent: "NA", capital: "Kingston", currency: ["JMD"], languages: ["en"] }, JO: { name: "Jordan", native: "الأردن", phone: [962], continent: "AS", capital: "Amman", currency: ["JOD"], languages: ["ar"] }, JP: { name: "Japan", native: "日本", phone: [81], continent: "AS", capital: "Tokyo", currency: ["JPY"], languages: ["ja"] }, KE: { name: "Kenya", native: "Kenya", phone: [254], continent: "AF", capital: "Nairobi", currency: ["KES"], languages: ["en", "sw"] }, KG: { name: "Kyrgyzstan", native: "Кыргызстан", phone: [996], continent: "AS", capital: "Bishkek", currency: ["KGS"], languages: ["ky", "ru"] }, KH: { name: "Cambodia", native: "កម្ពុជា", phone: [855], continent: "AS", capital: "Phnom Penh", currency: ["KHR"], languages: ["km"] }, KI: { name: "Kiribati", native: "Kiribati", phone: [686], continent: "OC", capital: "South Tarawa", currency: ["AUD"], languages: ["en"] }, KM: { name: "Comoros", native: "Komori", phone: [269], continent: "AF", capital: "Moroni", currency: ["KMF"], languages: ["ar", "fr"] }, KN: { name: "Saint Kitts and Nevis", native: "Saint Kitts and Nevis", phone: [1869], continent: "NA", capital: "Basseterre", currency: ["XCD"], languages: ["en"] }, KP: { name: "North Korea", native: "북한", phone: [850], continent: "AS", capital: "Pyongyang", currency: ["KPW"], languages: ["ko"] }, KR: { name: "South Korea", native: "대한민국", phone: [82], continent: "AS", capital: "Seoul", currency: ["KRW"], languages: ["ko"] }, KW: { name: "Kuwait", native: "الكويت", phone: [965], continent: "AS", capital: "Kuwait City", currency: ["KWD"], languages: ["ar"] }, KY: { name: "Cayman Islands", native: "Cayman Islands", phone: [1345], continent: "NA", capital: "George Town", currency: ["KYD"], languages: ["en"] }, KZ: { name: "Kazakhstan", native: "Қазақстан", phone: [7], continent: "AS", continents: ["AS", "EU"], capital: "Astana", currency: ["KZT"], languages: ["kk", "ru"] }, LA: { name: "Laos", native: "ສປປລາວ", phone: [856], continent: "AS", capital: "Vientiane", currency: ["LAK"], languages: ["lo"] }, LB: { name: "Lebanon", native: "لبنان", phone: [961], continent: "AS", capital: "Beirut", currency: ["LBP"], languages: ["ar", "fr"] }, LC: { name: "Saint Lucia", native: "Saint Lucia", phone: [1758], continent: "NA", capital: "Castries", currency: ["XCD"], languages: ["en"] }, LI: { name: "Liechtenstein", native: "Liechtenstein", phone: [423], continent: "EU", capital: "Vaduz", currency: ["CHF"], languages: ["de"] }, LK: { name: "Sri Lanka", native: "śrī laṃkāva", phone: [94], continent: "AS", capital: "Colombo", currency: ["LKR"], languages: ["si", "ta"] }, LR: { name: "Liberia", native: "Liberia", phone: [231], continent: "AF", capital: "Monrovia", currency: ["LRD"], languages: ["en"] }, LS: { name: "Lesotho", native: "Lesotho", phone: [266], continent: "AF", capital: "Maseru", currency: ["LSL", "ZAR"], languages: ["en", "st"] }, LT: { name: "Lithuania", native: "Lietuva", phone: [370], continent: "EU", capital: "Vilnius", currency: ["EUR"], languages: ["lt"] }, LU: { name: "Luxembourg", native: "Luxembourg", phone: [352], continent: "EU", capital: "Luxembourg", currency: ["EUR"], languages: ["fr", "de", "lb"] }, LV: { name: "Latvia", native: "Latvija", phone: [371], continent: "EU", capital: "Riga", currency: ["EUR"], languages: ["lv"] }, LY: { name: "Libya", native: "ليبيا", phone: [218], continent: "AF", capital: "Tripoli", currency: ["LYD"], languages: ["ar"] }, MA: { name: "Morocco", native: "المغرب", phone: [212], continent: "AF", capital: "Rabat", currency: ["MAD"], languages: ["ar"] }, MC: { name: "Monaco", native: "Monaco", phone: [377], continent: "EU", capital: "Monaco", currency: ["EUR"], languages: ["fr"] }, MD: { name: "Moldova", native: "Moldova", phone: [373], continent: "EU", capital: "Chișinău", currency: ["MDL"], languages: ["ro"] }, ME: { name: "Montenegro", native: "Црна Гора", phone: [382], continent: "EU", capital: "Podgorica", currency: ["EUR"], languages: ["sr", "bs", "sq", "hr"] }, MF: { name: "Saint Martin", native: "Saint-Martin", phone: [590], continent: "NA", capital: "Marigot", currency: ["EUR"], languages: ["en", "fr", "nl"] }, MG: { name: "Madagascar", native: "Madagasikara", phone: [261], continent: "AF", capital: "Antananarivo", currency: ["MGA"], languages: ["fr", "mg"] }, MH: { name: "Marshall Islands", native: "M̧ajeļ", phone: [692], continent: "OC", capital: "Majuro", currency: ["USD"], languages: ["en", "mh"] }, MK: { name: "North Macedonia", native: "Северна Македонија", phone: [389], continent: "EU", capital: "Skopje", currency: ["MKD"], languages: ["mk"] }, ML: { name: "Mali", native: "Mali", phone: [223], continent: "AF", capital: "Bamako", currency: ["XOF"], languages: ["fr"] }, MM: { name: "Myanmar (Burma)", native: "မြန်မာ", phone: [95], continent: "AS", capital: "Naypyidaw", currency: ["MMK"], languages: ["my"] }, MN: { name: "Mongolia", native: "Монгол улс", phone: [976], continent: "AS", capital: "Ulan Bator", currency: ["MNT"], languages: ["mn"] }, MO: { name: "Macao", native: "澳門", phone: [853], continent: "AS", capital: "", currency: ["MOP"], languages: ["zh", "pt"] }, MP: { name: "Northern Mariana Islands", native: "Northern Mariana Islands", phone: [1670], continent: "OC", capital: "Saipan", currency: ["USD"], languages: ["en", "ch"] }, MQ: { name: "Martinique", native: "Martinique", phone: [596], continent: "NA", capital: "Fort-de-France", currency: ["EUR"], languages: ["fr"] }, MR: { name: "Mauritania", native: "موريتانيا", phone: [222], continent: "AF", capital: "Nouakchott", currency: ["MRU"], languages: ["ar"] }, MS: { name: "Montserrat", native: "Montserrat", phone: [1664], continent: "NA", capital: "Plymouth", currency: ["XCD"], languages: ["en"] }, MT: { name: "Malta", native: "Malta", phone: [356], continent: "EU", capital: "Valletta", currency: ["EUR"], languages: ["mt", "en"] }, MU: { name: "Mauritius", native: "Maurice", phone: [230], continent: "AF", capital: "Port Louis", currency: ["MUR"], languages: ["en"] }, MV: { name: "Maldives", native: "Maldives", phone: [960], continent: "AS", capital: "Malé", currency: ["MVR"], languages: ["dv"] }, MW: { name: "Malawi", native: "Malawi", phone: [265], continent: "AF", capital: "Lilongwe", currency: ["MWK"], languages: ["en", "ny"] }, MX: { name: "Mexico", native: "México", phone: [52], continent: "NA", capital: "Mexico City", currency: ["MXN"], languages: ["es"] }, MY: { name: "Malaysia", native: "Malaysia", phone: [60], continent: "AS", capital: "Kuala Lumpur", currency: ["MYR"], languages: ["ms"] }, MZ: { name: "Mozambique", native: "Moçambique", phone: [258], continent: "AF", capital: "Maputo", currency: ["MZN"], languages: ["pt"] }, NA: { name: "Namibia", native: "Namibia", phone: [264], continent: "AF", capital: "Windhoek", currency: ["NAD", "ZAR"], languages: ["en", "af"] }, NC: { name: "New Caledonia", native: "Nouvelle-Calédonie", phone: [687], continent: "OC", capital: "Nouméa", currency: ["XPF"], languages: ["fr"] }, NE: { name: "Niger", native: "Niger", phone: [227], continent: "AF", capital: "Niamey", currency: ["XOF"], languages: ["fr"] }, NF: { name: "Norfolk Island", native: "Norfolk Island", phone: [672], continent: "OC", capital: "Kingston", currency: ["AUD"], languages: ["en"] }, NG: { name: "Nigeria", native: "Nigeria", phone: [234], continent: "AF", capital: "Abuja", currency: ["NGN"], languages: ["en"] }, NI: { name: "Nicaragua", native: "Nicaragua", phone: [505], continent: "NA", capital: "Managua", currency: ["NIO"], languages: ["es"] }, NL: { name: "Netherlands", native: "Nederland", phone: [31], continent: "EU", capital: "Amsterdam", currency: ["EUR"], languages: ["nl"] }, NO: { name: "Norway", native: "Norge", phone: [47], continent: "EU", capital: "Oslo", currency: ["NOK"], languages: ["no", "nb", "nn"] }, NP: { name: "Nepal", native: "नेपाल", phone: [977], continent: "AS", capital: "Kathmandu", currency: ["NPR"], languages: ["ne"] }, NR: { name: "Nauru", native: "Nauru", phone: [674], continent: "OC", capital: "Yaren", currency: ["AUD"], languages: ["en", "na"] }, NU: { name: "Niue", native: "Niuē", phone: [683], continent: "OC", capital: "Alofi", currency: ["NZD"], languages: ["en"] }, NZ: { name: "New Zealand", native: "New Zealand", phone: [64], continent: "OC", capital: "Wellington", currency: ["NZD"], languages: ["en", "mi"] }, OM: { name: "Oman", native: "عمان", phone: [968], continent: "AS", capital: "Muscat", currency: ["OMR"], languages: ["ar"] }, PA: { name: "Panama", native: "Panamá", phone: [507], continent: "NA", capital: "Panama City", currency: ["PAB", "USD"], languages: ["es"] }, PE: { name: "Peru", native: "Perú", phone: [51], continent: "SA", capital: "Lima", currency: ["PEN"], languages: ["es"] }, PF: { name: "French Polynesia", native: "Polynésie française", phone: [689], continent: "OC", capital: "Papeetē", currency: ["XPF"], languages: ["fr"] }, PG: { name: "Papua New Guinea", native: "Papua Niugini", phone: [675], continent: "OC", capital: "Port Moresby", currency: ["PGK"], languages: ["en"] }, PH: { name: "Philippines", native: "Pilipinas", phone: [63], continent: "AS", capital: "Manila", currency: ["PHP"], languages: ["en", "tl"] }, PK: { name: "Pakistan", native: "Pakistan", phone: [92], continent: "AS", capital: "Islamabad", currency: ["PKR"], languages: ["en", "ur"] }, PL: { name: "Poland", native: "Polska", phone: [48], continent: "EU", capital: "Warsaw", currency: ["PLN"], languages: ["pl"] }, PM: { name: "Saint Pierre and Miquelon", native: "Saint-Pierre-et-Miquelon", phone: [508], continent: "NA", capital: "Saint-Pierre", currency: ["EUR"], languages: ["fr"] }, PN: { name: "Pitcairn Islands", native: "Pitcairn Islands", phone: [64], continent: "OC", capital: "Adamstown", currency: ["NZD"], languages: ["en"] }, PR: { name: "Puerto Rico", native: "Puerto Rico", phone: [1787, 1939], continent: "NA", capital: "San Juan", currency: ["USD"], languages: ["es", "en"] }, PS: { name: "Palestine", native: "فلسطين", phone: [970], continent: "AS", capital: "Ramallah", currency: ["ILS"], languages: ["ar"] }, PT: { name: "Portugal", native: "Portugal", phone: [351], continent: "EU", capital: "Lisbon", currency: ["EUR"], languages: ["pt"] }, PW: { name: "Palau", native: "Palau", phone: [680], continent: "OC", capital: "Ngerulmud", currency: ["USD"], languages: ["en"] }, PY: { name: "Paraguay", native: "Paraguay", phone: [595], continent: "SA", capital: "Asunción", currency: ["PYG"], languages: ["es", "gn"] }, QA: { name: "Qatar", native: "قطر", phone: [974], continent: "AS", capital: "Doha", currency: ["QAR"], languages: ["ar"] }, RE: { name: "Reunion", native: "La Réunion", phone: [262], continent: "AF", capital: "Saint-Denis", currency: ["EUR"], languages: ["fr"] }, RO: { name: "Romania", native: "România", phone: [40], continent: "EU", capital: "Bucharest", currency: ["RON"], languages: ["ro"] }, RS: { name: "Serbia", native: "Србија", phone: [381], continent: "EU", capital: "Belgrade", currency: ["RSD"], languages: ["sr"] }, RU: { name: "Russia", native: "Россия", phone: [7], continent: "AS", continents: ["AS", "EU"], capital: "Moscow", currency: ["RUB"], languages: ["ru"] }, RW: { name: "Rwanda", native: "Rwanda", phone: [250], continent: "AF", capital: "Kigali", currency: ["RWF"], languages: ["rw", "en", "fr"] }, SA: { name: "Saudi Arabia", native: "المملكة العربية السعودية", phone: [966], continent: "AS", capital: "Riyadh", currency: ["SAR"], languages: ["ar"] }, SB: { name: "Solomon Islands", native: "Solomon Islands", phone: [677], continent: "OC", capital: "Honiara", currency: ["SBD"], languages: ["en"] }, SC: { name: "Seychelles", native: "Seychelles", phone: [248], continent: "AF", capital: "Victoria", currency: ["SCR"], languages: ["fr", "en"] }, SD: { name: "Sudan", native: "السودان", phone: [249], continent: "AF", capital: "Khartoum", currency: ["SDG"], languages: ["ar", "en"] }, SE: { name: "Sweden", native: "Sverige", phone: [46], continent: "EU", capital: "Stockholm", currency: ["SEK"], languages: ["sv"] }, SG: { name: "Singapore", native: "Singapore", phone: [65], continent: "AS", capital: "Singapore", currency: ["SGD"], languages: ["en", "ms", "ta", "zh"] }, SH: { name: "Saint Helena", native: "Saint Helena", phone: [290], continent: "AF", capital: "Jamestown", currency: ["SHP"], languages: ["en"] }, SI: { name: "Slovenia", native: "Slovenija", phone: [386], continent: "EU", capital: "Ljubljana", currency: ["EUR"], languages: ["sl"] }, SJ: { name: "Svalbard and Jan Mayen", native: "Svalbard og Jan Mayen", phone: [4779], continent: "EU", capital: "Longyearbyen", currency: ["NOK"], languages: ["no"] }, SK: { name: "Slovakia", native: "Slovensko", phone: [421], continent: "EU", capital: "Bratislava", currency: ["EUR"], languages: ["sk"] }, SL: { name: "Sierra Leone", native: "Sierra Leone", phone: [232], continent: "AF", capital: "Freetown", currency: ["SLL"], languages: ["en"] }, SM: { name: "San Marino", native: "San Marino", phone: [378], continent: "EU", capital: "City of San Marino", currency: ["EUR"], languages: ["it"] }, SN: { name: "Senegal", native: "Sénégal", phone: [221], continent: "AF", capital: "Dakar", currency: ["XOF"], languages: ["fr"] }, SO: { name: "Somalia", native: "Soomaaliya", phone: [252], continent: "AF", capital: "Mogadishu", currency: ["SOS"], languages: ["so", "ar"] }, SR: { name: "Suriname", native: "Suriname", phone: [597], continent: "SA", capital: "Paramaribo", currency: ["SRD"], languages: ["nl"] }, SS: { name: "South Sudan", native: "South Sudan", phone: [211], continent: "AF", capital: "Juba", currency: ["SSP"], languages: ["en"] }, ST: { name: "Sao Tome and Principe", native: "São Tomé e Príncipe", phone: [239], continent: "AF", capital: "São Tomé", currency: ["STN"], languages: ["pt"] }, SV: { name: "El Salvador", native: "El Salvador", phone: [503], continent: "NA", capital: "San Salvador", currency: ["SVC", "USD"], languages: ["es"] }, SX: { name: "Sint Maarten", native: "Sint Maarten", phone: [1721], continent: "NA", capital: "Philipsburg", currency: ["ANG"], languages: ["nl", "en"] }, SY: { name: "Syria", native: "سوريا", phone: [963], continent: "AS", capital: "Damascus", currency: ["SYP"], languages: ["ar"] }, SZ: { name: "Eswatini", native: "Eswatini", phone: [268], continent: "AF", capital: "Lobamba", currency: ["SZL"], languages: ["en", "ss"] }, TC: { name: "Turks and Caicos Islands", native: "Turks and Caicos Islands", phone: [1649], continent: "NA", capital: "Cockburn Town", currency: ["USD"], languages: ["en"] }, TD: { name: "Chad", native: "Tchad", phone: [235], continent: "AF", capital: "N'Djamena", currency: ["XAF"], languages: ["fr", "ar"] }, TF: { name: "French Southern Territories", native: "Territoire des Terres australes et antarctiques fr", phone: [262], continent: "AN", capital: "Port-aux-Français", currency: ["EUR"], languages: ["fr"] }, TG: { name: "Togo", native: "Togo", phone: [228], continent: "AF", capital: "Lomé", currency: ["XOF"], languages: ["fr"] }, TH: { name: "Thailand", native: "ประเทศไทย", phone: [66], continent: "AS", capital: "Bangkok", currency: ["THB"], languages: ["th"] }, TJ: { name: "Tajikistan", native: "Тоҷикистон", phone: [992], continent: "AS", capital: "Dushanbe", currency: ["TJS"], languages: ["tg", "ru"] }, TK: { name: "Tokelau", native: "Tokelau", phone: [690], continent: "OC", capital: "Fakaofo", currency: ["NZD"], languages: ["en"] }, TL: { name: "East Timor", native: "Timor-Leste", phone: [670], continent: "OC", capital: "Dili", currency: ["USD"], languages: ["pt"] }, TM: { name: "Turkmenistan", native: "Türkmenistan", phone: [993], continent: "AS", capital: "Ashgabat", currency: ["TMT"], languages: ["tk", "ru"] }, TN: { name: "Tunisia", native: "تونس", phone: [216], continent: "AF", capital: "Tunis", currency: ["TND"], languages: ["ar"] }, TO: { name: "Tonga", native: "Tonga", phone: [676], continent: "OC", capital: "Nuku'alofa", currency: ["TOP"], languages: ["en", "to"] }, TR: { name: "Turkey", native: "Türkiye", phone: [90], continent: "AS", continents: ["AS", "EU"], capital: "Ankara", currency: ["TRY"], languages: ["tr"] }, TT: { name: "Trinidad and Tobago", native: "Trinidad and Tobago", phone: [1868], continent: "NA", capital: "Port of Spain", currency: ["TTD"], languages: ["en"] }, TV: { name: "Tuvalu", native: "Tuvalu", phone: [688], continent: "OC", capital: "Funafuti", currency: ["AUD"], languages: ["en"] }, TW: { name: "Taiwan", native: "臺灣", phone: [886], continent: "AS", capital: "Taipei", currency: ["TWD"], languages: ["zh"] }, TZ: { name: "Tanzania", native: "Tanzania", phone: [255], continent: "AF", capital: "Dodoma", currency: ["TZS"], languages: ["sw", "en"] }, UA: { name: "Ukraine", native: "Україна", phone: [380], continent: "EU", capital: "Kyiv", currency: ["UAH"], languages: ["uk"] }, UG: { name: "Uganda", native: "Uganda", phone: [256], continent: "AF", capital: "Kampala", currency: ["UGX"], languages: ["en", "sw"] }, UM: { name: "U.S. Minor Outlying Islands", native: "United States Minor Outlying Islands", phone: [1], continent: "OC", capital: "", currency: ["USD"], languages: ["en"] }, US: { name: "United States", native: "United States", phone: [1], continent: "NA", capital: "Washington D.C.", currency: ["USD", "USN", "USS"], languages: ["en"] }, UY: { name: "Uruguay", native: "Uruguay", phone: [598], continent: "SA", capital: "Montevideo", currency: ["UYI", "UYU"], languages: ["es"] }, UZ: { name: "Uzbekistan", native: "O'zbekiston", phone: [998], continent: "AS", capital: "Tashkent", currency: ["UZS"], languages: ["uz", "ru"] }, VA: { name: "Vatican City", native: "Vaticano", phone: [379], continent: "EU", capital: "Vatican City", currency: ["EUR"], languages: ["it", "la"] }, VC: { name: "Saint Vincent and the Grenadines", native: "Saint Vincent and the Grenadines", phone: [1784], continent: "NA", capital: "Kingstown", currency: ["XCD"], languages: ["en"] }, VE: { name: "Venezuela", native: "Venezuela", phone: [58], continent: "SA", capital: "Caracas", currency: ["VES"], languages: ["es"] }, VG: { name: "British Virgin Islands", native: "British Virgin Islands", phone: [1284], continent: "NA", capital: "Road Town", currency: ["USD"], languages: ["en"] }, VI: { name: "U.S. Virgin Islands", native: "United States Virgin Islands", phone: [1340], continent: "NA", capital: "Charlotte Amalie", currency: ["USD"], languages: ["en"] }, VN: { name: "Vietnam", native: "Việt Nam", phone: [84], continent: "AS", capital: "Hanoi", currency: ["VND"], languages: ["vi"] }, VU: { name: "Vanuatu", native: "Vanuatu", phone: [678], continent: "OC", capital: "Port Vila", currency: ["VUV"], languages: ["bi", "en", "fr"] }, WF: { name: "Wallis and Futuna", native: "Wallis et Futuna", phone: [681], continent: "OC", capital: "Mata-Utu", currency: ["XPF"], languages: ["fr"] }, WS: { name: "Samoa", native: "Samoa", phone: [685], continent: "OC", capital: "Apia", currency: ["WST"], languages: ["sm", "en"] }, XK: { name: "Kosovo", native: "Republika e Kosovës", phone: [377, 381, 383, 386], continent: "EU", capital: "Pristina", currency: ["EUR"], languages: ["sq", "sr"], userAssigned: !0 }, YE: { name: "Yemen", native: "اليَمَن", phone: [967], continent: "AS", capital: "Sana'a", currency: ["YER"], languages: ["ar"] }, YT: { name: "Mayotte", native: "Mayotte", phone: [262], continent: "AF", capital: "Mamoudzou", currency: ["EUR"], languages: ["fr"] }, ZA: { name: "South Africa", native: "South Africa", phone: [27], continent: "AF", capital: "Pretoria", currency: ["ZAR"], languages: ["af", "en", "nr", "st", "ss", "tn", "ts", "ve", "xh", "zu"] }, ZM: { name: "Zambia", native: "Zambia", phone: [260], continent: "AF", capital: "Lusaka", currency: ["ZMW"], languages: ["en"] }, ZW: { name: "Zimbabwe", native: "Zimbabwe", phone: [263], continent: "AF", capital: "Harare", currency: ["USD", "ZAR", "BWP", "GBP", "AUD", "CNY", "INR", "JPY"], languages: ["en", "sn", "nd"] } }, Zh = { AD: "AND", AE: "ARE", AF: "AFG", AG: "ATG", AI: "AIA", AL: "ALB", AM: "ARM", AO: "AGO", AQ: "ATA", AR: "ARG", AS: "ASM", AT: "AUT", AU: "AUS", AW: "ABW", AX: "ALA", AZ: "AZE", BA: "BIH", BB: "BRB", BD: "BGD", BE: "BEL", BF: "BFA", BG: "BGR", BH: "BHR", BI: "BDI", BJ: "BEN", BL: "BLM", BM: "BMU", BN: "BRN", BO: "BOL", BQ: "BES", BR: "BRA", BS: "BHS", BT: "BTN", BV: "BVT", BW: "BWA", BY: "BLR", BZ: "BLZ", CA: "CAN", CC: "CCK", CD: "COD", CF: "CAF", CG: "COG", CH: "CHE", CI: "CIV", CK: "COK", CL: "CHL", CM: "CMR", CN: "CHN", CO: "COL", CR: "CRI", CU: "CUB", CV: "CPV", CW: "CUW", CX: "CXR", CY: "CYP", CZ: "CZE", DE: "DEU", DJ: "DJI", DK: "DNK", DM: "DMA", DO: "DOM", DZ: "DZA", EC: "ECU", EE: "EST", EG: "EGY", EH: "ESH", ER: "ERI", ES: "ESP", ET: "ETH", FI: "FIN", FJ: "FJI", FK: "FLK", FM: "FSM", FO: "FRO", FR: "FRA", GA: "GAB", GB: "GBR", GD: "GRD", GE: "GEO", GF: "GUF", GG: "GGY", GH: "GHA", GI: "GIB", GL: "GRL", GM: "GMB", GN: "GIN", GP: "GLP", GQ: "GNQ", GR: "GRC", GS: "SGS", GT: "GTM", GU: "GUM", GW: "GNB", GY: "GUY", HK: "HKG", HM: "HMD", HN: "HND", HR: "HRV", HT: "HTI", HU: "HUN", ID: "IDN", IE: "IRL", IL: "ISR", IM: "IMN", IN: "IND", IO: "IOT", IQ: "IRQ", IR: "IRN", IS: "ISL", IT: "ITA", JE: "JEY", JM: "JAM", JO: "JOR", JP: "JPN", KE: "KEN", KG: "KGZ", KH: "KHM", KI: "KIR", KM: "COM", KN: "KNA", KP: "PRK", KR: "KOR", KW: "KWT", KY: "CYM", KZ: "KAZ", LA: "LAO", LB: "LBN", LC: "LCA", LI: "LIE", LK: "LKA", LR: "LBR", LS: "LSO", LT: "LTU", LU: "LUX", LV: "LVA", LY: "LBY", MA: "MAR", MC: "MCO", MD: "MDA", ME: "MNE", MF: "MAF", MG: "MDG", MH: "MHL", MK: "MKD", ML: "MLI", MM: "MMR", MN: "MNG", MO: "MAC", MP: "MNP", MQ: "MTQ", MR: "MRT", MS: "MSR", MT: "MLT", MU: "MUS", MV: "MDV", MW: "MWI", MX: "MEX", MY: "MYS", MZ: "MOZ", NA: "NAM", NC: "NCL", NE: "NER", NF: "NFK", NG: "NGA", NI: "NIC", NL: "NLD", NO: "NOR", NP: "NPL", NR: "NRU", NU: "NIU", NZ: "NZL", OM: "OMN", PA: "PAN", PE: "PER", PF: "PYF", PG: "PNG", PH: "PHL", PK: "PAK", PL: "POL", PM: "SPM", PN: "PCN", PR: "PRI", PS: "PSE", PT: "PRT", PW: "PLW", PY: "PRY", QA: "QAT", RE: "REU", RO: "ROU", RS: "SRB", RU: "RUS", RW: "RWA", SA: "SAU", SB: "SLB", SC: "SYC", SD: "SDN", SE: "SWE", SG: "SGP", SH: "SHN", SI: "SVN", SJ: "SJM", SK: "SVK", SL: "SLE", SM: "SMR", SN: "SEN", SO: "SOM", SR: "SUR", SS: "SSD", ST: "STP", SV: "SLV", SX: "SXM", SY: "SYR", SZ: "SWZ", TC: "TCA", TD: "TCD", TF: "ATF", TG: "TGO", TH: "THA", TJ: "TJK", TK: "TKL", TL: "TLS", TM: "TKM", TN: "TUN", TO: "TON", TR: "TUR", TT: "TTO", TV: "TUV", TW: "TWN", TZ: "TZA", UA: "UKR", UG: "UGA", UM: "UMI", US: "USA", UY: "URY", UZ: "UZB", VA: "VAT", VC: "VCT", VE: "VEN", VG: "VGB", VI: "VIR", VN: "VNM", VU: "VUT", WF: "WLF", WS: "WSM", XK: "XKX", YE: "YEM", YT: "MYT", ZA: "ZAF", ZM: "ZMB", ZW: "ZWE" }, Wh = (e) => ({ ...ya[e], iso2: e, iso3: Zh[e] }), Kh = () => Object.keys(ya).map((e) => Wh(e));
|
|
15791
15811
|
Kh();
|
|
15792
15812
|
const Jh = xu().map((e) => {
|
|
@@ -17888,6 +17908,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
17888
17908
|
description: {
|
|
17889
17909
|
type: String
|
|
17890
17910
|
},
|
|
17911
|
+
fullWidth: {
|
|
17912
|
+
type: Boolean,
|
|
17913
|
+
default: !1
|
|
17914
|
+
},
|
|
17891
17915
|
bordered: {
|
|
17892
17916
|
type: Boolean,
|
|
17893
17917
|
default: !1
|
|
@@ -17911,16 +17935,20 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
17911
17935
|
horizontalAlign: {
|
|
17912
17936
|
type: String,
|
|
17913
17937
|
default: "left"
|
|
17938
|
+
},
|
|
17939
|
+
choiceBox: {
|
|
17940
|
+
type: Boolean,
|
|
17941
|
+
default: !1
|
|
17914
17942
|
}
|
|
17915
17943
|
}, Om = ["update:modelValue"], jm = (e, t) => {
|
|
17916
|
-
const { disabled: r, horizontalAlign: n, displayHelper: s, error: a } = Oe(e),
|
|
17917
|
-
const
|
|
17944
|
+
const { disabled: r, horizontalAlign: n, displayHelper: s, error: a, choiceBox: l } = Oe(e), i = P(() => {
|
|
17945
|
+
const g = U("spr-flex spr-flex-col spr-gap-2", {
|
|
17918
17946
|
[{
|
|
17919
17947
|
left: "spr-justify-start",
|
|
17920
17948
|
center: "spr-justify-center",
|
|
17921
17949
|
right: "spr-justify-end"
|
|
17922
17950
|
}[n.value]]: !0
|
|
17923
|
-
}),
|
|
17951
|
+
}), f = U(
|
|
17924
17952
|
"spr-flex spr-items-center spr-gap-1 spr-mt-size-spacing-2xs spr-body-sm-regular",
|
|
17925
17953
|
{
|
|
17926
17954
|
"spr-text-mushroom-600": !a.value,
|
|
@@ -17928,29 +17956,30 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
17928
17956
|
}
|
|
17929
17957
|
);
|
|
17930
17958
|
return {
|
|
17931
|
-
containerClasses:
|
|
17932
|
-
helperClasses:
|
|
17959
|
+
containerClasses: g,
|
|
17960
|
+
helperClasses: f
|
|
17933
17961
|
};
|
|
17934
|
-
}),
|
|
17962
|
+
}), d = Re(e, "modelValue", t);
|
|
17935
17963
|
return {
|
|
17936
|
-
radioGroupedClasses:
|
|
17937
|
-
proxyValue:
|
|
17964
|
+
radioGroupedClasses: i,
|
|
17965
|
+
proxyValue: d,
|
|
17938
17966
|
renderOptions: () => e.options || [],
|
|
17939
|
-
isOptionDisabled: (
|
|
17967
|
+
isOptionDisabled: (p) => r.value || (p.disabled ?? !1),
|
|
17940
17968
|
disabled: r,
|
|
17941
17969
|
displayHelper: s,
|
|
17942
17970
|
horizontalAlign: n,
|
|
17943
|
-
error: a
|
|
17971
|
+
error: a,
|
|
17972
|
+
choiceBox: l
|
|
17944
17973
|
};
|
|
17945
|
-
}, Lm = {
|
|
17946
|
-
class: /* @__PURE__ */ w(["spr-relative"])
|
|
17947
|
-
}, zm = /* @__PURE__ */ De({
|
|
17974
|
+
}, Lm = /* @__PURE__ */ De({
|
|
17948
17975
|
__name: "radio-grouped",
|
|
17949
17976
|
props: km,
|
|
17950
17977
|
emits: Om,
|
|
17951
17978
|
setup(e, { emit: t }) {
|
|
17952
17979
|
const r = e, n = t, { radioGroupedClasses: s, proxyValue: a, renderOptions: l, isOptionDisabled: i } = jm(r, n);
|
|
17953
|
-
return (d, u) => (h(), b("div",
|
|
17980
|
+
return (d, u) => (h(), b("div", {
|
|
17981
|
+
class: w(["spr-relative", { "spr-w-full": r.choiceBox || r.fullWidth }])
|
|
17982
|
+
}, [
|
|
17954
17983
|
x("div", {
|
|
17955
17984
|
class: w(o(s).containerClasses)
|
|
17956
17985
|
}, [
|
|
@@ -17961,13 +17990,16 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
17961
17990
|
"onUpdate:modelValue": u[0] || (u[0] = (g) => Ie(a) ? a.value = g : null),
|
|
17962
17991
|
name: r.name,
|
|
17963
17992
|
value: c.value,
|
|
17964
|
-
disabled: o(i)(c)
|
|
17993
|
+
disabled: o(i)(c),
|
|
17994
|
+
"choice-box": r.choiceBox,
|
|
17995
|
+
"full-width": r.fullWidth || r.choiceBox,
|
|
17996
|
+
description: c.description
|
|
17965
17997
|
}, {
|
|
17966
17998
|
default: W(() => [
|
|
17967
17999
|
Be(q(c.text), 1)
|
|
17968
18000
|
]),
|
|
17969
18001
|
_: 2
|
|
17970
|
-
}, 1032, ["id", "modelValue", "name", "value", "disabled"]))), 128))
|
|
18002
|
+
}, 1032, ["id", "modelValue", "name", "value", "disabled", "choice-box", "full-width", "description"]))), 128))
|
|
17971
18003
|
], 2),
|
|
17972
18004
|
r.displayHelper ? (h(), b("div", {
|
|
17973
18005
|
key: 0,
|
|
@@ -17982,12 +18014,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
17982
18014
|
x("span", null, q(r.helperText), 1)
|
|
17983
18015
|
])
|
|
17984
18016
|
], 2)) : L("", !0)
|
|
17985
|
-
]));
|
|
18017
|
+
], 2));
|
|
17986
18018
|
}
|
|
17987
|
-
}),
|
|
18019
|
+
}), zm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
17988
18020
|
__proto__: null,
|
|
17989
|
-
default:
|
|
17990
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
18021
|
+
default: Lm
|
|
18022
|
+
}, Symbol.toStringTag, { value: "Module" })), Pm = [
|
|
17991
18023
|
"auto",
|
|
17992
18024
|
"auto-start",
|
|
17993
18025
|
"auto-end",
|
|
@@ -18003,7 +18035,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18003
18035
|
"left",
|
|
18004
18036
|
"left-start",
|
|
18005
18037
|
"left-end"
|
|
18006
|
-
],
|
|
18038
|
+
], Ym = ["fixed", "absolute"], J2 = ["click", "hover", "focus", "touch"], Fm = {
|
|
18007
18039
|
id: {
|
|
18008
18040
|
type: String,
|
|
18009
18041
|
required: !0
|
|
@@ -18079,7 +18111,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18079
18111
|
},
|
|
18080
18112
|
placement: {
|
|
18081
18113
|
type: String,
|
|
18082
|
-
validator: (e) =>
|
|
18114
|
+
validator: (e) => Pm.includes(e),
|
|
18083
18115
|
default: "bottom"
|
|
18084
18116
|
},
|
|
18085
18117
|
distance: {
|
|
@@ -18102,7 +18134,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18102
18134
|
},
|
|
18103
18135
|
popperStrategy: {
|
|
18104
18136
|
type: String,
|
|
18105
|
-
validator: (e) =>
|
|
18137
|
+
validator: (e) => Ym.includes(e),
|
|
18106
18138
|
default: "absolute"
|
|
18107
18139
|
},
|
|
18108
18140
|
popperWidth: {
|
|
@@ -18137,12 +18169,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18137
18169
|
type: Boolean,
|
|
18138
18170
|
default: !1
|
|
18139
18171
|
}
|
|
18140
|
-
},
|
|
18172
|
+
}, Um = {
|
|
18141
18173
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
18142
18174
|
"update:modelValue": (e) => !0,
|
|
18143
18175
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
18144
18176
|
"popper-state": (e) => !0
|
|
18145
|
-
},
|
|
18177
|
+
}, Bm = (e, t) => {
|
|
18146
18178
|
const { options: r, disabled: n, textSeperator: s, prependText: a } = Oe(e), l = P(() => ({
|
|
18147
18179
|
baseClasses: "spr-flex spr-flex-col spr-gap-size-spacing-4xs",
|
|
18148
18180
|
labelClasses: "spr-body-sm-regular spr-text-color-strong spr-flex spr-gap-2",
|
|
@@ -18247,13 +18279,13 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18247
18279
|
handleClear: C,
|
|
18248
18280
|
handleInputChange: I
|
|
18249
18281
|
};
|
|
18250
|
-
},
|
|
18282
|
+
}, Rm = ["for"], Vm = { key: 0 }, Hm = ["id"], Qm = {
|
|
18251
18283
|
key: 1,
|
|
18252
18284
|
class: "spr-flex spr-items-center spr-justify-center spr-p-2 spr-text-center"
|
|
18253
|
-
},
|
|
18285
|
+
}, Gm = /* @__PURE__ */ De({
|
|
18254
18286
|
__name: "select-ladderized",
|
|
18255
|
-
props:
|
|
18256
|
-
emits:
|
|
18287
|
+
props: Fm,
|
|
18288
|
+
emits: Um,
|
|
18257
18289
|
setup(e, { emit: t }) {
|
|
18258
18290
|
const r = e, n = t, {
|
|
18259
18291
|
ladderizedClasses: s,
|
|
@@ -18267,7 +18299,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18267
18299
|
handleSelectedLadderizedItem: g,
|
|
18268
18300
|
handleClear: f,
|
|
18269
18301
|
handleInputChange: v
|
|
18270
|
-
} =
|
|
18302
|
+
} = Bm(r, n);
|
|
18271
18303
|
return ($, m) => (h(), b("div", {
|
|
18272
18304
|
class: w(o(s).baseClasses)
|
|
18273
18305
|
}, [
|
|
@@ -18276,12 +18308,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18276
18308
|
for: r.id,
|
|
18277
18309
|
class: w(o(s).labelClasses)
|
|
18278
18310
|
}, [
|
|
18279
|
-
r.label ? (h(), b("span",
|
|
18311
|
+
r.label ? (h(), b("span", Vm, q(r.label), 1)) : L("", !0),
|
|
18280
18312
|
r.supportingLabel ? (h(), b("span", {
|
|
18281
18313
|
key: 1,
|
|
18282
18314
|
class: w(o(s).supportingLabelClasses)
|
|
18283
18315
|
}, q(r.supportingLabel), 3)) : L("", !0)
|
|
18284
|
-
], 10,
|
|
18316
|
+
], 10, Rm)) : L("", !0),
|
|
18285
18317
|
R(o(lt), {
|
|
18286
18318
|
shown: o(l),
|
|
18287
18319
|
"onUpdate:shown": m[3] || (m[3] = (y) => Ie(l) ? l.value = y : null),
|
|
@@ -18321,7 +18353,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18321
18353
|
"searchable-menu-placeholder": r.searchableOptionsPlaceholder,
|
|
18322
18354
|
loading: r.optionsLoader,
|
|
18323
18355
|
"infinite-scroll-loader": r.infiniteScrollLoader
|
|
18324
|
-
}, null, 8, ["modelValue", "menu-list", "menu-level", "remove-current-level-in-back-label", "searchable-menu", "searchable-menu-placeholder", "loading", "infinite-scroll-loader", "onUpdate:modelValue"])) : (h(), b("div",
|
|
18356
|
+
}, null, 8, ["modelValue", "menu-list", "menu-level", "remove-current-level-in-back-label", "searchable-menu", "searchable-menu-placeholder", "loading", "infinite-scroll-loader", "onUpdate:modelValue"])) : (h(), b("div", Qm, [...m[4] || (m[4] = [
|
|
18325
18357
|
x("span", { class: "spr-body-sm-regular spr-m-0" }, "No results found", -1)
|
|
18326
18358
|
])]))
|
|
18327
18359
|
], 512)
|
|
@@ -18383,17 +18415,17 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18383
18415
|
x("div", {
|
|
18384
18416
|
id: `ladderized-select-popper-${r.id}`,
|
|
18385
18417
|
style: Fe({ width: r.popperWidth })
|
|
18386
|
-
}, null, 12,
|
|
18418
|
+
}, null, 12, Hm)
|
|
18387
18419
|
], 512)
|
|
18388
18420
|
]),
|
|
18389
18421
|
_: 3
|
|
18390
18422
|
}, 8, ["shown", "distance", "placement", "triggers", "popper-triggers", "auto-hide", "disabled", "container", "strategy", "style"])
|
|
18391
18423
|
], 2));
|
|
18392
18424
|
}
|
|
18393
|
-
}),
|
|
18425
|
+
}), Zm = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18394
18426
|
__proto__: null,
|
|
18395
|
-
default:
|
|
18396
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
18427
|
+
default: Gm
|
|
18428
|
+
}, Symbol.toStringTag, { value: "Module" })), Wm = ["A-Z", "Z-A"], Km = [
|
|
18397
18429
|
"auto",
|
|
18398
18430
|
"auto-start",
|
|
18399
18431
|
"auto-end",
|
|
@@ -18409,7 +18441,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18409
18441
|
"left",
|
|
18410
18442
|
"left-start",
|
|
18411
18443
|
"left-end"
|
|
18412
|
-
],
|
|
18444
|
+
], Jm = ["fixed", "absolute"], X2 = ["click", "hover", "focus", "touch"], Xm = {
|
|
18413
18445
|
id: {
|
|
18414
18446
|
type: String,
|
|
18415
18447
|
required: !0
|
|
@@ -18429,7 +18461,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18429
18461
|
},
|
|
18430
18462
|
groupItemsBy: {
|
|
18431
18463
|
type: String,
|
|
18432
|
-
validator: (e) => e === void 0 ||
|
|
18464
|
+
validator: (e) => e === void 0 || Wm.includes(e)
|
|
18433
18465
|
},
|
|
18434
18466
|
textField: {
|
|
18435
18467
|
type: String,
|
|
@@ -18458,7 +18490,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18458
18490
|
},
|
|
18459
18491
|
placement: {
|
|
18460
18492
|
type: String,
|
|
18461
|
-
validator: (e) =>
|
|
18493
|
+
validator: (e) => Km.includes(e),
|
|
18462
18494
|
default: "bottom"
|
|
18463
18495
|
},
|
|
18464
18496
|
distance: {
|
|
@@ -18481,7 +18513,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18481
18513
|
},
|
|
18482
18514
|
popperStrategy: {
|
|
18483
18515
|
type: String,
|
|
18484
|
-
validator: (e) =>
|
|
18516
|
+
validator: (e) => Jm.includes(e),
|
|
18485
18517
|
default: "absolute"
|
|
18486
18518
|
},
|
|
18487
18519
|
popperWidth: {
|
|
@@ -18585,7 +18617,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18585
18617
|
type: Boolean,
|
|
18586
18618
|
default: !1
|
|
18587
18619
|
}
|
|
18588
|
-
},
|
|
18620
|
+
}, qm = {
|
|
18589
18621
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
18590
18622
|
"update:modelValue": (e) => !0,
|
|
18591
18623
|
"update:searchValue": (e) => typeof e == "string",
|
|
@@ -18595,7 +18627,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18595
18627
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
18596
18628
|
"get-selected-options": (e) => !0,
|
|
18597
18629
|
"get-single-selected-item": (e) => e
|
|
18598
|
-
},
|
|
18630
|
+
}, ey = (e, t) => {
|
|
18599
18631
|
const { displayText: r, persistentDisplayText: n, options: s, textField: a, valueField: l, active: i, disabled: d, error: u } = Oe(e), c = P(() => {
|
|
18600
18632
|
const F = U("spr-flex spr-flex-col spr-gap-size-spacing-4xs"), V = U("spr-body-sm-regular spr-text-color-strong spr-flex spr-gap-2", {
|
|
18601
18633
|
"spr-text-color-on-fill-disabled": d.value
|
|
@@ -18805,13 +18837,13 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18805
18837
|
handleClear: ee,
|
|
18806
18838
|
normalizedValue: S
|
|
18807
18839
|
};
|
|
18808
|
-
},
|
|
18840
|
+
}, ty = ["for"], ry = { key: 0 }, ny = { class: "spr-h-auto spr-w-full" }, sy = ["aria-label"], ay = {
|
|
18809
18841
|
key: 1,
|
|
18810
18842
|
class: "spr-placeholder spr-px-3 spr-text-gray-400"
|
|
18811
|
-
},
|
|
18843
|
+
}, oy = ["value"], ly = ["id"], iy = /* @__PURE__ */ De({
|
|
18812
18844
|
__name: "select-multiple",
|
|
18813
|
-
props:
|
|
18814
|
-
emits:
|
|
18845
|
+
props: Xm,
|
|
18846
|
+
emits: qm,
|
|
18815
18847
|
setup(e, { expose: t, emit: r }) {
|
|
18816
18848
|
const n = e, s = r, {
|
|
18817
18849
|
multiSelectClasses: a,
|
|
@@ -18827,7 +18859,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18827
18859
|
handleMultiSelectedItem: $,
|
|
18828
18860
|
handleChippedRemoveItem: m,
|
|
18829
18861
|
handleClear: y
|
|
18830
|
-
} =
|
|
18862
|
+
} = ey(n, s);
|
|
18831
18863
|
return t({
|
|
18832
18864
|
handleClear: y
|
|
18833
18865
|
}), (N, C) => (h(), b("div", {
|
|
@@ -18838,12 +18870,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18838
18870
|
for: n.id,
|
|
18839
18871
|
class: w(o(a).labelClasses)
|
|
18840
18872
|
}, [
|
|
18841
|
-
n.label ? (h(), b("span",
|
|
18873
|
+
n.label ? (h(), b("span", ry, q(n.label), 1)) : L("", !0),
|
|
18842
18874
|
n.supportingLabel ? (h(), b("span", {
|
|
18843
18875
|
key: 1,
|
|
18844
18876
|
class: w(o(a).supportingLabelClasses)
|
|
18845
18877
|
}, q(n.supportingLabel), 3)) : L("", !0)
|
|
18846
|
-
], 10,
|
|
18878
|
+
], 10, ty)) : L("", !0),
|
|
18847
18879
|
R(o(lt), {
|
|
18848
18880
|
shown: o(l),
|
|
18849
18881
|
"onUpdate:shown": C[7] || (C[7] = (I) => Ie(l) ? l.value = I : null),
|
|
@@ -18910,13 +18942,13 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18910
18942
|
ref: "chippedInputTextRef",
|
|
18911
18943
|
class: w(o(a).chippedInputTextClasses)
|
|
18912
18944
|
}, [
|
|
18913
|
-
x("div",
|
|
18945
|
+
x("div", ny, [
|
|
18914
18946
|
o(c).length > 0 ? (h(), b(fe, { key: 0 }, [
|
|
18915
18947
|
n.displaySelectedCountOnly ? (h(), b("span", {
|
|
18916
18948
|
key: 1,
|
|
18917
18949
|
class: "spr-text-color-supporting spr-px-3",
|
|
18918
18950
|
"aria-label": `${o(c).length} selected options`
|
|
18919
|
-
}, q(o(c).length) + " item" + q(o(c).length === 1 ? "" : "s") + " selected ", 9,
|
|
18951
|
+
}, q(o(c).length) + " item" + q(o(c).length === 1 ? "" : "s") + " selected ", 9, sy)) : (h(!0), b(fe, { key: 0 }, xe(o(c), (I) => (h(), oe(Qr, {
|
|
18920
18952
|
key: I.value,
|
|
18921
18953
|
class: "spr-m-1 spr-inline-block",
|
|
18922
18954
|
label: String(I.text),
|
|
@@ -18924,7 +18956,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
18924
18956
|
visible: "",
|
|
18925
18957
|
onClose: (_) => o(m)(String(I.value))
|
|
18926
18958
|
}, null, 8, ["label", "onClose"]))), 128))
|
|
18927
|
-
], 64)) : (h(), b("span",
|
|
18959
|
+
], 64)) : (h(), b("span", ay, q(n.placeholder), 1))
|
|
18928
18960
|
]),
|
|
18929
18961
|
x("div", {
|
|
18930
18962
|
class: w(o(a).chippedIconClasses)
|
|
@@ -19023,7 +19055,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19023
19055
|
(h(!0), b(fe, null, xe(o(u), (I) => (h(), b("option", {
|
|
19024
19056
|
key: I.value,
|
|
19025
19057
|
value: I.value
|
|
19026
|
-
}, q(I.text), 9,
|
|
19058
|
+
}, q(I.text), 9, oy))), 128))
|
|
19027
19059
|
], 512)), [
|
|
19028
19060
|
[ac, o(d)]
|
|
19029
19061
|
]) : L("", !0),
|
|
@@ -19032,17 +19064,17 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19032
19064
|
style: Fe({
|
|
19033
19065
|
width: n.popperWidth
|
|
19034
19066
|
})
|
|
19035
|
-
}, null, 12,
|
|
19067
|
+
}, null, 12, ly)
|
|
19036
19068
|
], 512)
|
|
19037
19069
|
]),
|
|
19038
19070
|
_: 3
|
|
19039
19071
|
}, 8, ["shown", "distance", "placement", "triggers", "popper-triggers", "auto-hide", "disabled", "container", "strategy", "style"])
|
|
19040
19072
|
], 2));
|
|
19041
19073
|
}
|
|
19042
|
-
}),
|
|
19074
|
+
}), uy = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19043
19075
|
__proto__: null,
|
|
19044
|
-
default:
|
|
19045
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
19076
|
+
default: iy
|
|
19077
|
+
}, Symbol.toStringTag, { value: "Module" })), dy = ["A-Z", "Z-A"], cy = [
|
|
19046
19078
|
"auto",
|
|
19047
19079
|
"auto-start",
|
|
19048
19080
|
"auto-end",
|
|
@@ -19058,7 +19090,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19058
19090
|
"left",
|
|
19059
19091
|
"left-start",
|
|
19060
19092
|
"left-end"
|
|
19061
|
-
],
|
|
19093
|
+
], py = ["fixed", "absolute"], q2 = ["click", "hover", "focus", "touch"], fy = {
|
|
19062
19094
|
id: {
|
|
19063
19095
|
type: String,
|
|
19064
19096
|
required: !0
|
|
@@ -19074,7 +19106,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19074
19106
|
},
|
|
19075
19107
|
groupItemsBy: {
|
|
19076
19108
|
type: String,
|
|
19077
|
-
validator: (e) => e === void 0 ||
|
|
19109
|
+
validator: (e) => e === void 0 || dy.includes(e)
|
|
19078
19110
|
},
|
|
19079
19111
|
textField: {
|
|
19080
19112
|
type: String,
|
|
@@ -19103,7 +19135,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19103
19135
|
},
|
|
19104
19136
|
placement: {
|
|
19105
19137
|
type: String,
|
|
19106
|
-
validator: (e) =>
|
|
19138
|
+
validator: (e) => cy.includes(e),
|
|
19107
19139
|
default: "bottom"
|
|
19108
19140
|
},
|
|
19109
19141
|
distance: {
|
|
@@ -19126,7 +19158,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19126
19158
|
},
|
|
19127
19159
|
popperStrategy: {
|
|
19128
19160
|
type: String,
|
|
19129
|
-
validator: (e) =>
|
|
19161
|
+
validator: (e) => py.includes(e),
|
|
19130
19162
|
default: "absolute"
|
|
19131
19163
|
},
|
|
19132
19164
|
popperWidth: {
|
|
@@ -19201,7 +19233,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19201
19233
|
type: String,
|
|
19202
19234
|
default: ""
|
|
19203
19235
|
}
|
|
19204
|
-
},
|
|
19236
|
+
}, gy = {
|
|
19205
19237
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
19206
19238
|
"update:modelValue": (e) => !0,
|
|
19207
19239
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
@@ -19210,7 +19242,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19210
19242
|
"search-string": (e) => !0,
|
|
19211
19243
|
"get-selected-option": Object,
|
|
19212
19244
|
"popper-state": Boolean
|
|
19213
|
-
},
|
|
19245
|
+
}, hy = (e, t) => {
|
|
19214
19246
|
const { displayText: r, options: n, disabled: s, textField: a, valueField: l, disabledLocalSearch: i } = Oe(e), d = P(() => {
|
|
19215
19247
|
const ee = U("spr-flex spr-flex-col spr-gap-size-spacing-4xs"), F = U("spr-body-sm-regular spr-text-color-strong spr-flex spr-gap-2", {
|
|
19216
19248
|
"spr-text-color-on-fill-disabled": s.value
|
|
@@ -19358,10 +19390,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19358
19390
|
handleSearch: S,
|
|
19359
19391
|
handleClear: re
|
|
19360
19392
|
};
|
|
19361
|
-
},
|
|
19393
|
+
}, vy = ["for"], my = { key: 0 }, yy = ["value"], by = ["value"], Cy = ["id"], My = /* @__PURE__ */ De({
|
|
19362
19394
|
__name: "select",
|
|
19363
|
-
props:
|
|
19364
|
-
emits:
|
|
19395
|
+
props: fy,
|
|
19396
|
+
emits: gy,
|
|
19365
19397
|
setup(e, { expose: t, emit: r }) {
|
|
19366
19398
|
const n = e, s = r, {
|
|
19367
19399
|
selectClasses: a,
|
|
@@ -19378,7 +19410,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19378
19410
|
handleSelectedItem: m,
|
|
19379
19411
|
handleSearch: y,
|
|
19380
19412
|
handleClear: N
|
|
19381
|
-
} =
|
|
19413
|
+
} = hy(n, s);
|
|
19382
19414
|
return t({
|
|
19383
19415
|
handleClear: N
|
|
19384
19416
|
}), (C, I) => (h(), b("div", {
|
|
@@ -19389,12 +19421,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19389
19421
|
for: n.id,
|
|
19390
19422
|
class: w(o(a).labelClasses)
|
|
19391
19423
|
}, [
|
|
19392
|
-
n.label ? (h(), b("span",
|
|
19424
|
+
n.label ? (h(), b("span", my, q(n.label), 1)) : L("", !0),
|
|
19393
19425
|
n.supportingLabel ? (h(), b("span", {
|
|
19394
19426
|
key: 1,
|
|
19395
19427
|
class: w(o(a).supportingLabelClasses)
|
|
19396
19428
|
}, q(n.supportingLabel), 3)) : L("", !0)
|
|
19397
|
-
], 10,
|
|
19429
|
+
], 10, vy)) : L("", !0),
|
|
19398
19430
|
R(o(lt), {
|
|
19399
19431
|
shown: o(l),
|
|
19400
19432
|
"onUpdate:shown": I[4] || (I[4] = (_) => Ie(l) ? l.value = _ : null),
|
|
@@ -19502,24 +19534,24 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19502
19534
|
(h(!0), b(fe, null, xe(o(c), (_) => (h(), b("option", {
|
|
19503
19535
|
key: _.value,
|
|
19504
19536
|
value: _.value
|
|
19505
|
-
}, q(_.text), 9,
|
|
19506
|
-
], 8,
|
|
19537
|
+
}, q(_.text), 9, by))), 128))
|
|
19538
|
+
], 8, yy)) : L("", !0)
|
|
19507
19539
|
]),
|
|
19508
19540
|
x("div", {
|
|
19509
19541
|
id: `select-popper-${n.id}`,
|
|
19510
19542
|
style: Fe({
|
|
19511
19543
|
width: n.popperWidth
|
|
19512
19544
|
})
|
|
19513
|
-
}, null, 12,
|
|
19545
|
+
}, null, 12, Cy)
|
|
19514
19546
|
], 512)
|
|
19515
19547
|
]),
|
|
19516
19548
|
_: 3
|
|
19517
19549
|
}, 8, ["shown", "distance", "placement", "triggers", "popper-triggers", "auto-hide", "disabled", "container", "strategy", "style"])
|
|
19518
19550
|
], 2));
|
|
19519
19551
|
}
|
|
19520
|
-
}),
|
|
19552
|
+
}), Dy = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19521
19553
|
__proto__: null,
|
|
19522
|
-
default:
|
|
19554
|
+
default: My
|
|
19523
19555
|
}, Symbol.toStringTag, { value: "Module" })), As = /* @__PURE__ */ De({
|
|
19524
19556
|
__name: "sidenav-loader",
|
|
19525
19557
|
props: {
|
|
@@ -19536,7 +19568,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19536
19568
|
x("div", { class: "spr-skeletal-loader spr-h-[24px] spr-w-[24px] spr-rounded" }, null, -1)
|
|
19537
19569
|
])]))), 128));
|
|
19538
19570
|
}
|
|
19539
|
-
}),
|
|
19571
|
+
}), Ny = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19540
19572
|
__proto__: null,
|
|
19541
19573
|
default: As
|
|
19542
19574
|
}, Symbol.toStringTag, { value: "Module" })), Iu = {
|
|
@@ -19720,13 +19752,13 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19720
19752
|
getLozengeLabel: m,
|
|
19721
19753
|
convertAttributesToArray: y
|
|
19722
19754
|
};
|
|
19723
|
-
},
|
|
19755
|
+
}, $y = ["id"], xy = ["src", "alt"], _y = ["src", "alt"], Iy = { class: "spr-border-color-weak spr-border-x-0 spr-border-b spr-border-t-0 spr-border-solid spr-p-2" }, Sy = { class: "spr-body-sm-regular-medium spr-m-0" }, wy = ["id"], Ay = {
|
|
19724
19756
|
key: 0,
|
|
19725
19757
|
class: "spr-background-color-brand-base spr-absolute spr-left-0 spr-top-0 spr-h-full spr-w-[2px]"
|
|
19726
|
-
},
|
|
19758
|
+
}, Ty = { class: "spr-flex spr-w-full spr-items-center spr-justify-between spr-gap-1" }, Ey = { class: "spr-flex spr-items-center spr-gap-2" }, ky = ["id", "onClick"], Oy = { class: "spr-background-color-brand-base spr-absolute spr-left-0 spr-top-0 spr-h-full spr-w-[2px]" }, jy = { class: "spr-flex spr-w-full spr-items-center spr-justify-between spr-gap-1" }, Ly = { class: "spr-flex spr-items-center spr-gap-2" }, zy = ["id", "onClick"], Py = {
|
|
19727
19759
|
key: 0,
|
|
19728
19760
|
class: "spr-background-color-brand-base spr-absolute spr-left-0 spr-top-0 spr-h-full spr-w-[2px]"
|
|
19729
|
-
},
|
|
19761
|
+
}, Yy = { class: "spr-flex spr-w-full spr-items-center spr-justify-between spr-gap-1" }, Fy = { class: "spr-flex spr-items-center spr-gap-2" }, Uy = ["id", "onClick"], By = ["src", "alt"], Ry = ["src", "alt"], Vy = {
|
|
19730
19762
|
key: 0,
|
|
19731
19763
|
class: "spr-background-color-hover spr-h-[2px] spr-w-full"
|
|
19732
19764
|
}, ho = /* @__PURE__ */ De({
|
|
@@ -19753,8 +19785,8 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19753
19785
|
delay: 0
|
|
19754
19786
|
}, {
|
|
19755
19787
|
popper: W(() => [
|
|
19756
|
-
x("div",
|
|
19757
|
-
x("h3",
|
|
19788
|
+
x("div", Iy, [
|
|
19789
|
+
x("h3", Sy, q(f.title), 1)
|
|
19758
19790
|
]),
|
|
19759
19791
|
(h(!0), b(fe, null, xe(f.menuLinks, ($, m) => (h(), b(fe, { key: m }, [
|
|
19760
19792
|
$.menuHeading ? (h(), b("h5", {
|
|
@@ -19807,12 +19839,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19807
19839
|
_.title
|
|
19808
19840
|
)
|
|
19809
19841
|
}, [
|
|
19810
|
-
ut(x("div",
|
|
19842
|
+
ut(x("div", Oy, null, 512), [
|
|
19811
19843
|
[bi, r.activeNav.submenu === _.title]
|
|
19812
19844
|
]),
|
|
19813
|
-
x("div",
|
|
19845
|
+
x("div", jy, [
|
|
19814
19846
|
x("span", null, q(_.title), 1),
|
|
19815
|
-
x("div",
|
|
19847
|
+
x("div", Ly, [
|
|
19816
19848
|
(h(!0), b(fe, null, xe(o(d)(_ == null ? void 0 : _.attributes), (M, S) => (h(), b(fe, { key: S }, [
|
|
19817
19849
|
(M == null ? void 0 : M.name) === "lozenge" && (M != null && M.value) ? (h(), oe(ur, {
|
|
19818
19850
|
key: 0,
|
|
@@ -19823,7 +19855,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19823
19855
|
], 64))), 128))
|
|
19824
19856
|
])
|
|
19825
19857
|
])
|
|
19826
|
-
], 10,
|
|
19858
|
+
], 10, ky))
|
|
19827
19859
|
], 64))), 128))
|
|
19828
19860
|
], 64))), 128))
|
|
19829
19861
|
]),
|
|
@@ -19840,10 +19872,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19840
19872
|
"active:spr-background-color-pressed": !0
|
|
19841
19873
|
})
|
|
19842
19874
|
}, [
|
|
19843
|
-
r.activeNav.menu === y.title ? (h(), b("div",
|
|
19844
|
-
x("div",
|
|
19875
|
+
r.activeNav.menu === y.title ? (h(), b("div", Ay)) : L("", !0),
|
|
19876
|
+
x("div", Ty, [
|
|
19845
19877
|
x("span", null, q(y.title), 1),
|
|
19846
|
-
x("div",
|
|
19878
|
+
x("div", Ey, [
|
|
19847
19879
|
(h(!0), b(fe, null, xe(o(d)(y == null ? void 0 : y.attributes), (C, I) => (h(), b(fe, { key: I }, [
|
|
19848
19880
|
(C == null ? void 0 : C.name) === "lozenge" && (C != null && C.value) ? (h(), oe(ur, {
|
|
19849
19881
|
key: 0,
|
|
@@ -19858,7 +19890,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19858
19890
|
})
|
|
19859
19891
|
])
|
|
19860
19892
|
])
|
|
19861
|
-
], 10,
|
|
19893
|
+
], 10, wy)
|
|
19862
19894
|
]),
|
|
19863
19895
|
_: 2
|
|
19864
19896
|
}, 1024)) : (h(), b(fe, { key: 1 }, [
|
|
@@ -19873,10 +19905,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19873
19905
|
}),
|
|
19874
19906
|
onClick: (C) => o(s)(y, f.title, y.title, "")
|
|
19875
19907
|
}, [
|
|
19876
|
-
r.activeNav.menu === y.title ? (h(), b("div",
|
|
19877
|
-
x("div",
|
|
19908
|
+
r.activeNav.menu === y.title ? (h(), b("div", Py)) : L("", !0),
|
|
19909
|
+
x("div", Yy, [
|
|
19878
19910
|
x("span", null, q(y.title), 1),
|
|
19879
|
-
x("div",
|
|
19911
|
+
x("div", Fy, [
|
|
19880
19912
|
(h(!0), b(fe, null, xe(o(d)(y == null ? void 0 : y.attributes), (C, I) => (h(), b(fe, { key: I }, [
|
|
19881
19913
|
(C == null ? void 0 : C.name) === "lozenge" && (C != null && C.value) ? (h(), oe(ur, {
|
|
19882
19914
|
key: 0,
|
|
@@ -19887,7 +19919,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19887
19919
|
], 64))), 128))
|
|
19888
19920
|
])
|
|
19889
19921
|
])
|
|
19890
|
-
], 10,
|
|
19922
|
+
], 10, zy))
|
|
19891
19923
|
], 64))
|
|
19892
19924
|
], 64))), 128))
|
|
19893
19925
|
], 64))), 128))
|
|
@@ -19908,12 +19940,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19908
19940
|
src: f.icon,
|
|
19909
19941
|
alt: `${f.title} icon`,
|
|
19910
19942
|
class: "spr-h-[1.25em] spr-w-[1.25em] spr-max-w-[1.25em]"
|
|
19911
|
-
}, null, 8,
|
|
19943
|
+
}, null, 8, xy)) : r.activeNav.parentNav === f.title ? (h(), b("img", {
|
|
19912
19944
|
key: 1,
|
|
19913
19945
|
src: f.icon.replace(/\.(svg|png|jpg)$/, "-fill.$1"),
|
|
19914
19946
|
alt: `${f.title} icon`,
|
|
19915
19947
|
class: "spr-h-[1.25em] spr-w-[1.25em] spr-max-w-[1.25em]"
|
|
19916
|
-
}, null, 8,
|
|
19948
|
+
}, null, 8, _y)) : L("", !0)
|
|
19917
19949
|
], 64)) : (h(), b(fe, { key: 1 }, [
|
|
19918
19950
|
f.icon && r.activeNav.parentNav !== f.title ? (h(), oe(o(ae), {
|
|
19919
19951
|
key: 0,
|
|
@@ -19928,7 +19960,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19928
19960
|
icon: "ph:globe"
|
|
19929
19961
|
}))
|
|
19930
19962
|
], 64))
|
|
19931
|
-
], 10,
|
|
19963
|
+
], 10, $y)
|
|
19932
19964
|
]),
|
|
19933
19965
|
_: 2
|
|
19934
19966
|
}, 1024)) : (h(), b(fe, { key: 1 }, [
|
|
@@ -19956,12 +19988,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19956
19988
|
src: f.icon,
|
|
19957
19989
|
alt: `${f.title} icon`,
|
|
19958
19990
|
class: "spr-h-[1.25em] spr-w-[1.25em] spr-max-w-[1.25em]"
|
|
19959
|
-
}, null, 8,
|
|
19991
|
+
}, null, 8, By)) : r.activeNav.parentNav === f.title ? (h(), b("img", {
|
|
19960
19992
|
key: 1,
|
|
19961
19993
|
src: f.icon.replace(/\.(svg|png|jpg)$/, "-fill.$1"),
|
|
19962
19994
|
alt: `${f.title} icon`,
|
|
19963
19995
|
class: "spr-h-[1.25em] spr-w-[1.25em] spr-max-w-[1.25em]"
|
|
19964
|
-
}, null, 8,
|
|
19996
|
+
}, null, 8, Ry)) : L("", !0)
|
|
19965
19997
|
], 64)) : (h(), b(fe, { key: 1 }, [
|
|
19966
19998
|
f.icon && r.activeNav.parentNav !== f.title ? (h(), oe(o(ae), {
|
|
19967
19999
|
key: 0,
|
|
@@ -19976,60 +20008,60 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
19976
20008
|
icon: "ph:globe"
|
|
19977
20009
|
}))
|
|
19978
20010
|
], 64))
|
|
19979
|
-
], 10,
|
|
20011
|
+
], 10, Uy)
|
|
19980
20012
|
]),
|
|
19981
20013
|
_: 2
|
|
19982
20014
|
}, 1032, ["text"]))
|
|
19983
20015
|
], 64))
|
|
19984
20016
|
], 64))), 128)),
|
|
19985
|
-
u.navLinks.length > 0 && g < u.navLinks.length - 1 ? (h(), b("div",
|
|
20017
|
+
u.navLinks.length > 0 && g < u.navLinks.length - 1 ? (h(), b("div", Vy)) : L("", !0)
|
|
19986
20018
|
]))), 128));
|
|
19987
20019
|
}
|
|
19988
|
-
}),
|
|
20020
|
+
}), Hy = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
19989
20021
|
__proto__: null,
|
|
19990
20022
|
default: ho
|
|
19991
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
20023
|
+
}, Symbol.toStringTag, { value: "Module" })), Qy = {
|
|
19992
20024
|
class: /* @__PURE__ */ w([
|
|
19993
20025
|
"spr-hidden-scrolls spr-fixed spr-bottom-0 spr-left-0 spr-top-0",
|
|
19994
20026
|
"spr-background-color spr-w-auto spr-overflow-y-auto spr-overflow-x-hidden",
|
|
19995
20027
|
"spr-border-color-weak spr-border-b-0 spr-border-l-0 spr-border-r spr-border-t-0 spr-border-solid",
|
|
19996
20028
|
"spr-z-10 spr-transition spr-duration-150 spr-ease-in-out"
|
|
19997
20029
|
])
|
|
19998
|
-
},
|
|
20030
|
+
}, Gy = { class: "spr-grid spr-justify-center spr-gap-2 spr-px-3 spr-pb-4 spr-pt-4" }, Zy = {
|
|
19999
20031
|
class: /* @__PURE__ */ w([
|
|
20000
20032
|
"spr-grid spr-justify-center spr-p-2",
|
|
20001
20033
|
"[&>img]:spr-mx-auto [&>img]:spr-h-[24px] [&>img]:spr-w-[24px] [&>img]:spr-object-cover"
|
|
20002
20034
|
])
|
|
20003
|
-
},
|
|
20035
|
+
}, Wy = {
|
|
20004
20036
|
class: /* @__PURE__ */ w([
|
|
20005
20037
|
"spr-px-4 spr-py-3",
|
|
20006
20038
|
"spr-border-color-weak spr-flex spr-justify-between spr-border-x-0 spr-border-b spr-border-t-0 spr-border-solid"
|
|
20007
20039
|
])
|
|
20008
|
-
},
|
|
20040
|
+
}, Ky = { class: "spr-max-h-[268px] spr-overflow-auto" }, Jy = ["onClick"], Xy = { class: "spr-grid spr-justify-between" }, qy = { class: "spr-body-sm-regular-medium spr-text-color-strong spr-m-0 spr-truncate" }, eb = { class: "spr-body-xs-regular spr-text-color-base spr-m-0 spr-truncate" }, tb = {
|
|
20009
20041
|
key: 0,
|
|
20010
20042
|
class: "spr-grid spr-justify-center spr-gap-2 spr-px-3 spr-pb-4 spr-pt-0"
|
|
20011
|
-
},
|
|
20043
|
+
}, rb = {
|
|
20012
20044
|
key: 0,
|
|
20013
20045
|
class: "spr-grid spr-gap-2 spr-py-6"
|
|
20014
|
-
},
|
|
20046
|
+
}, nb = {
|
|
20015
20047
|
key: 1,
|
|
20016
20048
|
class: /* @__PURE__ */ w([
|
|
20017
20049
|
"spr-border-color-weak spr-absolute spr-bottom-0 spr-p-3.5",
|
|
20018
20050
|
"spr-border-b-0 spr-border-l-0 spr-border-r-0 spr-border-t spr-border-solid",
|
|
20019
20051
|
"spr-flex spr-justify-center"
|
|
20020
20052
|
])
|
|
20021
|
-
},
|
|
20053
|
+
}, sb = {
|
|
20022
20054
|
class: /* @__PURE__ */ w([
|
|
20023
20055
|
"spr-px-2 spr-py-2",
|
|
20024
20056
|
"spr-border-color-weak spr-flex spr-justify-between spr-border-x-0 spr-border-b spr-border-t-0 spr-border-solid"
|
|
20025
20057
|
])
|
|
20026
|
-
},
|
|
20058
|
+
}, ab = { class: "spr-flex spr-items-center spr-gap-2" }, ob = { class: "spr-grid spr-justify-between spr-gap-1" }, lb = { class: "spr-body-sm-regular spr-m-0 spr-truncate" }, ib = { class: "spr-body-xs-regular spr-text-color-supporting spr-m-0 spr-truncate" }, ub = { class: "spr-max-h-[268px] spr-overflow-auto" }, db = ["id", "onClick"], cb = { class: "spr-body-sm-regular spr-text-color-strong spr-m-0 spr-truncate" }, pb = /* @__PURE__ */ De({
|
|
20027
20059
|
__name: "sidenav",
|
|
20028
20060
|
props: Iu,
|
|
20029
20061
|
emits: Su,
|
|
20030
20062
|
setup(e, { emit: t }) {
|
|
20031
20063
|
const r = e, n = t, { navLinks: s, isQuckActionMenuVisible: a, isUserMenuVisible: l, handleRedirect: i, generateId: d } = wu(r, n);
|
|
20032
|
-
return (u, c) => (h(), b("div",
|
|
20064
|
+
return (u, c) => (h(), b("div", Qy, [
|
|
20033
20065
|
x("div", {
|
|
20034
20066
|
class: w({
|
|
20035
20067
|
"spr-hidden-scrolls spr-flex spr-h-full spr-flex-col spr-justify-between spr-overflow-auto": !0,
|
|
@@ -20038,8 +20070,8 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20038
20070
|
"!spr-max-h-[calc(100vh-150px)]": r.requestCount === "" || r.notificationCount === ""
|
|
20039
20071
|
})
|
|
20040
20072
|
}, [
|
|
20041
|
-
x("div",
|
|
20042
|
-
x("div",
|
|
20073
|
+
x("div", Gy, [
|
|
20074
|
+
x("div", Zy, [
|
|
20043
20075
|
de(u.$slots, "logo-image")
|
|
20044
20076
|
]),
|
|
20045
20077
|
r.loading ? (h(), oe(As, {
|
|
@@ -20059,7 +20091,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20059
20091
|
delay: 0
|
|
20060
20092
|
}, {
|
|
20061
20093
|
popper: W(() => [
|
|
20062
|
-
x("div",
|
|
20094
|
+
x("div", Wy, [
|
|
20063
20095
|
c[9] || (c[9] = x("h3", { class: "spr-body-sm-regular-medium spr-m-0" }, "Quick Actions", -1)),
|
|
20064
20096
|
R(o(ae), {
|
|
20065
20097
|
icon: "ph:x",
|
|
@@ -20071,7 +20103,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20071
20103
|
onClick: c[1] || (c[1] = (p) => a.value = !o(a))
|
|
20072
20104
|
})
|
|
20073
20105
|
]),
|
|
20074
|
-
x("div",
|
|
20106
|
+
x("div", Ky, [
|
|
20075
20107
|
(h(!0), b(fe, null, xe(r.quickActions, (p, g) => (h(), b(fe, { key: g }, [
|
|
20076
20108
|
p.menuHeading ? (h(), b("h5", {
|
|
20077
20109
|
key: 0,
|
|
@@ -20105,11 +20137,11 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20105
20137
|
class: "spr-h-[1em] spr-w-[1em] spr-text-[20px]"
|
|
20106
20138
|
}, null, 8, ["icon"])) : L("", !0)
|
|
20107
20139
|
], 2),
|
|
20108
|
-
x("div",
|
|
20109
|
-
x("h5",
|
|
20110
|
-
x("p",
|
|
20140
|
+
x("div", Xy, [
|
|
20141
|
+
x("h5", qy, q(f.title), 1),
|
|
20142
|
+
x("p", eb, q(f.description), 1)
|
|
20111
20143
|
])
|
|
20112
|
-
], 8,
|
|
20144
|
+
], 8, Jy))
|
|
20113
20145
|
], 64))), 128))
|
|
20114
20146
|
], 64))), 128))
|
|
20115
20147
|
])
|
|
@@ -20156,7 +20188,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20156
20188
|
}, null, 8, ["nav-links", "active-nav"])
|
|
20157
20189
|
], 64))
|
|
20158
20190
|
]),
|
|
20159
|
-
o(s).bottom && o(s).bottom.length > 0 ? (h(), b("div",
|
|
20191
|
+
o(s).bottom && o(s).bottom.length > 0 ? (h(), b("div", tb, [
|
|
20160
20192
|
r.loading ? (h(), oe(As, {
|
|
20161
20193
|
key: 1,
|
|
20162
20194
|
count: 3
|
|
@@ -20168,7 +20200,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20168
20200
|
}, null, 8, ["nav-links", "active-nav"]))
|
|
20169
20201
|
])) : L("", !0)
|
|
20170
20202
|
], 2),
|
|
20171
|
-
r.notificationCount || r.requestCount || r.notificationCount === 0 || r.requestCount === 0 ? (h(), b("div",
|
|
20203
|
+
r.notificationCount || r.requestCount || r.notificationCount === 0 || r.requestCount === 0 ? (h(), b("div", rb, [
|
|
20172
20204
|
r.loading ? (h(), oe(As, { key: 1 })) : (h(), b(fe, { key: 0 }, [
|
|
20173
20205
|
R(Wn, {
|
|
20174
20206
|
text: "NOTIFICATIONS",
|
|
@@ -20254,7 +20286,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20254
20286
|
})
|
|
20255
20287
|
], 64))
|
|
20256
20288
|
])) : L("", !0),
|
|
20257
|
-
r.userMenu ? (h(), b("div",
|
|
20289
|
+
r.userMenu ? (h(), b("div", nb, [
|
|
20258
20290
|
R(o(lt), {
|
|
20259
20291
|
shown: o(l),
|
|
20260
20292
|
"onUpdate:shown": c[8] || (c[8] = (p) => Ie(l) ? l.value = p : null),
|
|
@@ -20266,8 +20298,8 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20266
20298
|
delay: 0
|
|
20267
20299
|
}, {
|
|
20268
20300
|
popper: W(() => [
|
|
20269
|
-
x("div",
|
|
20270
|
-
x("div",
|
|
20301
|
+
x("div", sb, [
|
|
20302
|
+
x("div", ab, [
|
|
20271
20303
|
r.userMenu.profileImage ? (h(), oe(Pt, {
|
|
20272
20304
|
key: 0,
|
|
20273
20305
|
variant: "image",
|
|
@@ -20279,13 +20311,13 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20279
20311
|
initial: r.userMenu.name,
|
|
20280
20312
|
size: "md"
|
|
20281
20313
|
}, null, 8, ["initial"])),
|
|
20282
|
-
x("div",
|
|
20283
|
-
x("h3",
|
|
20284
|
-
x("p",
|
|
20314
|
+
x("div", ob, [
|
|
20315
|
+
x("h3", lb, q(r.userMenu.name), 1),
|
|
20316
|
+
x("p", ib, q(r.userMenu.email), 1)
|
|
20285
20317
|
])
|
|
20286
20318
|
])
|
|
20287
20319
|
]),
|
|
20288
|
-
x("div",
|
|
20320
|
+
x("div", ub, [
|
|
20289
20321
|
(h(!0), b(fe, null, xe(r.userMenu.items, (p, g) => (h(), b(fe, { key: g }, [
|
|
20290
20322
|
p.hidden ? L("", !0) : (h(), b("div", {
|
|
20291
20323
|
key: 0,
|
|
@@ -20303,8 +20335,8 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20303
20335
|
icon: p.icon,
|
|
20304
20336
|
class: "spr-h-[1em] spr-w-[1em] spr-text-[20px]"
|
|
20305
20337
|
}, null, 8, ["icon"])) : L("", !0),
|
|
20306
|
-
x("h5",
|
|
20307
|
-
], 8,
|
|
20338
|
+
x("h5", cb, q(p.title), 1)
|
|
20339
|
+
], 8, db))
|
|
20308
20340
|
], 64))), 128))
|
|
20309
20341
|
])
|
|
20310
20342
|
]),
|
|
@@ -20328,10 +20360,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20328
20360
|
])) : L("", !0)
|
|
20329
20361
|
]));
|
|
20330
20362
|
}
|
|
20331
|
-
}),
|
|
20363
|
+
}), fb = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20332
20364
|
__proto__: null,
|
|
20333
|
-
default:
|
|
20334
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
20365
|
+
default: pb
|
|
20366
|
+
}, Symbol.toStringTag, { value: "Module" })), gb = (e, t) => {
|
|
20335
20367
|
const { size: r, position: n, isStacking: s, footerNoPadding: a, isExpanded: l, isActivePanel: i, footerNoTopBorder: d } = Oe(e), u = P(() => {
|
|
20336
20368
|
const m = U(
|
|
20337
20369
|
"spr-right-4 spr-top-1/2 spr-z-[1015] spr-flex spr-h-full spr-min-h-[200px] spr-translate-y-[-50%] spr-flex-col spr-rounded-border-radius-xl spr-bg-white-50 spr-drop-shadow spr-transition-all spr-ease-[ease-in-out] spr-duration-[150ms]",
|
|
@@ -20405,7 +20437,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20405
20437
|
handleClose: p,
|
|
20406
20438
|
handlePanelExpansion: g
|
|
20407
20439
|
};
|
|
20408
|
-
},
|
|
20440
|
+
}, hb = ["sm", "md", "lg", "xl"], vb = ["right"], mb = {
|
|
20409
20441
|
/**
|
|
20410
20442
|
* @description Controls whether the side panel is open.
|
|
20411
20443
|
* Set to `true` to display the side panel or `false` to hide it.
|
|
@@ -20432,7 +20464,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20432
20464
|
*/
|
|
20433
20465
|
size: {
|
|
20434
20466
|
type: String,
|
|
20435
|
-
validator: (e) =>
|
|
20467
|
+
validator: (e) => hb.includes(e),
|
|
20436
20468
|
default: "sm"
|
|
20437
20469
|
},
|
|
20438
20470
|
/**
|
|
@@ -20460,7 +20492,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20460
20492
|
*/
|
|
20461
20493
|
position: {
|
|
20462
20494
|
type: String,
|
|
20463
|
-
validator: (e) =>
|
|
20495
|
+
validator: (e) => vb.includes(e),
|
|
20464
20496
|
default: "right"
|
|
20465
20497
|
},
|
|
20466
20498
|
/**
|
|
@@ -20518,27 +20550,27 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20518
20550
|
type: Boolean,
|
|
20519
20551
|
default: !1
|
|
20520
20552
|
}
|
|
20521
|
-
},
|
|
20553
|
+
}, yb = {
|
|
20522
20554
|
close: Function,
|
|
20523
20555
|
onClose: Function,
|
|
20524
20556
|
shrink: Function,
|
|
20525
20557
|
expand: Function
|
|
20526
|
-
},
|
|
20558
|
+
}, bb = {
|
|
20527
20559
|
key: 0,
|
|
20528
20560
|
id: "headers"
|
|
20529
|
-
},
|
|
20561
|
+
}, Cb = { class: "spr-text-color-base" }, Mb = {
|
|
20530
20562
|
key: 1,
|
|
20531
20563
|
id: "header-loaders",
|
|
20532
20564
|
class: "spr-w-full spr-flex spr-flex-col spr-gap-size-spacing-4xs"
|
|
20533
|
-
},
|
|
20565
|
+
}, Db = {
|
|
20534
20566
|
key: 0,
|
|
20535
20567
|
class: "spr-skeletal-loader spr-h-8 spr-w-[95%] spr-rounded-md"
|
|
20536
|
-
},
|
|
20568
|
+
}, Nb = { class: "spr-flex spr-items-center spr-gap-size-spacing-3xs" }, $b = { key: 1 }, xb = /* @__PURE__ */ De({
|
|
20537
20569
|
__name: "sidepanel",
|
|
20538
|
-
props:
|
|
20539
|
-
emits:
|
|
20570
|
+
props: mb,
|
|
20571
|
+
emits: yb,
|
|
20540
20572
|
setup(e, { emit: t }) {
|
|
20541
|
-
const r = e, n = t, { sidepanelClasses: s, sidepanelRef: a, handleClose: l, isExpanded: i, handlePanelExpansion: d } =
|
|
20573
|
+
const r = e, n = t, { sidepanelClasses: s, sidepanelRef: a, handleClose: l, isExpanded: i, handlePanelExpansion: d } = gb(r, n);
|
|
20542
20574
|
return (u, c) => (h(), b(fe, null, [
|
|
20543
20575
|
!r.isStacking && u.isOpen && u.hasBackdrop ? (h(), b("div", {
|
|
20544
20576
|
key: 0,
|
|
@@ -20566,16 +20598,16 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20566
20598
|
style: Fe({ height: typeof u.height == "number" ? `${u.height}px` : u.height })
|
|
20567
20599
|
}, [
|
|
20568
20600
|
r.hideHeader ? L("", !0) : (h(), b(fe, { key: 0 }, [
|
|
20569
|
-
u.$slots.header ? (h(), b("div",
|
|
20601
|
+
u.$slots.header ? (h(), b("div", $b, [
|
|
20570
20602
|
de(u.$slots, "header")
|
|
20571
20603
|
])) : (h(), b("div", {
|
|
20572
20604
|
key: 0,
|
|
20573
20605
|
class: w(o(s).sidepanelHeaderClasses)
|
|
20574
20606
|
}, [
|
|
20575
|
-
u.isLoading ? (h(), b("div",
|
|
20607
|
+
u.isLoading ? (h(), b("div", Mb, [
|
|
20576
20608
|
c[0] || (c[0] = x("div", { class: "spr-skeletal-loader spr-h-4 spr-w-[90%] spr-rounded-md" }, null, -1)),
|
|
20577
|
-
u.headerSubtitle || u.$slots.subtitle ? (h(), b("div",
|
|
20578
|
-
])) : (h(), b("div",
|
|
20609
|
+
u.headerSubtitle || u.$slots.subtitle ? (h(), b("div", Db)) : L("", !0)
|
|
20610
|
+
])) : (h(), b("div", bb, [
|
|
20579
20611
|
x("div", {
|
|
20580
20612
|
id: "sidepanel-title",
|
|
20581
20613
|
class: w(o(s).sidepanelHeaderTitleClasses)
|
|
@@ -20585,11 +20617,11 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20585
20617
|
class: w(o(s).sidepanelHeaderSubtitleClasses)
|
|
20586
20618
|
}, [
|
|
20587
20619
|
de(u.$slots, "subtitle", {}, () => [
|
|
20588
|
-
x("span",
|
|
20620
|
+
x("span", Cb, q(u.headerSubtitle), 1)
|
|
20589
20621
|
])
|
|
20590
20622
|
], 2)
|
|
20591
20623
|
])),
|
|
20592
|
-
x("div",
|
|
20624
|
+
x("div", Nb, [
|
|
20593
20625
|
r.isExpandable ? (h(), oe(o(ae), {
|
|
20594
20626
|
key: 0,
|
|
20595
20627
|
class: w(o(s).sidepanelHeaderIconClasses),
|
|
@@ -20624,10 +20656,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20624
20656
|
}, 8, ["enter-active-class", "leave-active-class", "enter-from-class", "enter-to-class", "leave-from-class", "leave-to-class", "appear"])
|
|
20625
20657
|
], 64));
|
|
20626
20658
|
}
|
|
20627
|
-
}),
|
|
20659
|
+
}), _b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20628
20660
|
__proto__: null,
|
|
20629
|
-
default:
|
|
20630
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
20661
|
+
default: xb
|
|
20662
|
+
}, Symbol.toStringTag, { value: "Module" })), Ib = (e, t, r) => {
|
|
20631
20663
|
const n = Re(e, "stack", t, { deep: !0 }), s = B(""), a = B(!1), l = P(() => n.value[n.value.length - 1] || null);
|
|
20632
20664
|
Uo(n, (m) => {
|
|
20633
20665
|
t("update:stack", m);
|
|
@@ -20703,18 +20735,18 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20703
20735
|
handleExpandPanel: u,
|
|
20704
20736
|
activePanel: l
|
|
20705
20737
|
};
|
|
20706
|
-
},
|
|
20738
|
+
}, Sb = {
|
|
20707
20739
|
stack: {
|
|
20708
20740
|
type: Array,
|
|
20709
20741
|
default: [],
|
|
20710
20742
|
required: !0
|
|
20711
20743
|
}
|
|
20712
|
-
},
|
|
20744
|
+
}, wb = {
|
|
20713
20745
|
"update:stack": (e) => e
|
|
20714
|
-
},
|
|
20746
|
+
}, Ab = /* @__PURE__ */ De({
|
|
20715
20747
|
__name: "stacking-sidepanel",
|
|
20716
|
-
props:
|
|
20717
|
-
emits:
|
|
20748
|
+
props: Sb,
|
|
20749
|
+
emits: wb,
|
|
20718
20750
|
setup(e, { expose: t, emit: r }) {
|
|
20719
20751
|
const n = oc("stacking-sidepanel-base"), s = e, a = r, {
|
|
20720
20752
|
showPanel: l,
|
|
@@ -20725,7 +20757,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20725
20757
|
handleExpandPanel: p,
|
|
20726
20758
|
expandedPanel: g,
|
|
20727
20759
|
activePanel: f
|
|
20728
|
-
} =
|
|
20760
|
+
} = Ib(s, a, n);
|
|
20729
20761
|
return t({
|
|
20730
20762
|
showPanel: l,
|
|
20731
20763
|
hidePanel: i,
|
|
@@ -20760,10 +20792,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20760
20792
|
], 6)
|
|
20761
20793
|
], 64));
|
|
20762
20794
|
}
|
|
20763
|
-
}),
|
|
20795
|
+
}), Tb = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20764
20796
|
__proto__: null,
|
|
20765
|
-
default:
|
|
20766
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
20797
|
+
default: Ab
|
|
20798
|
+
}, Symbol.toStringTag, { value: "Module" })), Eb = (e, t) => {
|
|
20767
20799
|
const r = B(null), n = B(!1), s = B(e.modelValue), a = P(() => e.size === "sm" ? "spr-h-1" : "spr-h-2"), l = P(() => e.size === "sm" ? "spr-text-base" : "spr-text-[20px]"), i = P(() => e.max === e.min ? "0%" : `${(Math.min(e.max, Math.max(e.min, s.value)) - e.min) / (e.max - e.min) * 100}%`), d = (v) => {
|
|
20768
20800
|
const $ = Math.min(e.max, Math.max(e.min, v));
|
|
20769
20801
|
s.value = $, t("update:modelValue", $);
|
|
@@ -20817,10 +20849,10 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20817
20849
|
handleThumbStyle: g,
|
|
20818
20850
|
handleSliderStyle: f
|
|
20819
20851
|
};
|
|
20820
|
-
},
|
|
20852
|
+
}, kb = ["sm", "lg"], Ob = {
|
|
20821
20853
|
size: {
|
|
20822
20854
|
type: String,
|
|
20823
|
-
validator: (e) =>
|
|
20855
|
+
validator: (e) => kb.includes(e),
|
|
20824
20856
|
default: "lg"
|
|
20825
20857
|
},
|
|
20826
20858
|
min: {
|
|
@@ -20843,12 +20875,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20843
20875
|
type: Boolean,
|
|
20844
20876
|
default: !1
|
|
20845
20877
|
}
|
|
20846
|
-
},
|
|
20878
|
+
}, jb = ["aria-valuenow", "aria-valuemin", "aria-valuemax", "aria-disabled"], Lb = /* @__PURE__ */ De({
|
|
20847
20879
|
__name: "slider",
|
|
20848
|
-
props:
|
|
20880
|
+
props: Ob,
|
|
20849
20881
|
emits: ["update:modelValue", "slideend"],
|
|
20850
20882
|
setup(e, { emit: t }) {
|
|
20851
|
-
const r = e, n = t, { sliderRef: s, handleSliderSize: a, handleSliderThumbSize: l, startDrag: i, handleSliderStyle: d, handleThumbStyle: u } =
|
|
20883
|
+
const r = e, n = t, { sliderRef: s, handleSliderSize: a, handleSliderThumbSize: l, startDrag: i, handleSliderStyle: d, handleThumbStyle: u } = Eb(r, n);
|
|
20852
20884
|
return (c, p) => (h(), b("div", {
|
|
20853
20885
|
ref_key: "sliderRef",
|
|
20854
20886
|
ref: s,
|
|
@@ -20884,12 +20916,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20884
20916
|
style: Fe(o(u)),
|
|
20885
20917
|
onPointerdown: o(i)
|
|
20886
20918
|
}, null, 8, ["class", "style", "onPointerdown"])
|
|
20887
|
-
], 42,
|
|
20919
|
+
], 42, jb));
|
|
20888
20920
|
}
|
|
20889
|
-
}),
|
|
20921
|
+
}), zb = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20890
20922
|
__proto__: null,
|
|
20891
|
-
default:
|
|
20892
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
20923
|
+
default: Lb
|
|
20924
|
+
}, Symbol.toStringTag, { value: "Module" })), Pb = ["success", "information", "danger", "caution"], Yb = {
|
|
20893
20925
|
/**
|
|
20894
20926
|
* @description Text label shown in snack
|
|
20895
20927
|
*/
|
|
@@ -20902,7 +20934,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20902
20934
|
*/
|
|
20903
20935
|
tone: {
|
|
20904
20936
|
type: String,
|
|
20905
|
-
validator: (e) =>
|
|
20937
|
+
validator: (e) => Pb.includes(e),
|
|
20906
20938
|
default: "information"
|
|
20907
20939
|
},
|
|
20908
20940
|
/**
|
|
@@ -20943,9 +20975,9 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20943
20975
|
actionIconProps: {
|
|
20944
20976
|
type: Object
|
|
20945
20977
|
}
|
|
20946
|
-
},
|
|
20978
|
+
}, Fb = {
|
|
20947
20979
|
click: (e) => e instanceof MouseEvent
|
|
20948
|
-
},
|
|
20980
|
+
}, Ub = (e, t) => {
|
|
20949
20981
|
const r = B(null), { text: n, actionText: s, tone: a, showAction: l, showIcon: i, duration: d, actionIconProps: u } = e, c = P(() => ({
|
|
20950
20982
|
text: n,
|
|
20951
20983
|
actionText: s,
|
|
@@ -20969,12 +21001,12 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20969
21001
|
t("click", v);
|
|
20970
21002
|
}
|
|
20971
21003
|
};
|
|
20972
|
-
},
|
|
21004
|
+
}, Bb = { class: "spr-flex spr-flex-auto spr-items-center" }, el = "24px", Rb = /* @__PURE__ */ De({
|
|
20973
21005
|
__name: "snack",
|
|
20974
|
-
props:
|
|
20975
|
-
emits:
|
|
21006
|
+
props: Yb,
|
|
21007
|
+
emits: Fb,
|
|
20976
21008
|
setup(e, { emit: t }) {
|
|
20977
|
-
const r = e, n = t, { snackRef: s, snackProps: a, snackToneCssClass: l, snackIcon: i, handleClick: d } =
|
|
21009
|
+
const r = e, n = t, { snackRef: s, snackProps: a, snackToneCssClass: l, snackIcon: i, handleClick: d } = Ub(r, n);
|
|
20978
21010
|
return (u, c) => (h(), b("div", st(o(a), {
|
|
20979
21011
|
ref_key: "snackRef",
|
|
20980
21012
|
ref: s,
|
|
@@ -20982,7 +21014,7 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
20982
21014
|
onClick: c[1] || (c[1] = //@ts-ignore
|
|
20983
21015
|
(...p) => o(d) && o(d)(...p))
|
|
20984
21016
|
}), [
|
|
20985
|
-
x("div",
|
|
21017
|
+
x("div", Bb, [
|
|
20986
21018
|
de(u.$slots, "icon", {}, () => [
|
|
20987
21019
|
u.showIcon ? (h(), oe(o(ae), {
|
|
20988
21020
|
key: 0,
|
|
@@ -21026,30 +21058,30 @@ const gm = ["white", "dark", "gray", "green"], hm = [
|
|
|
21026
21058
|
], !0) : L("", !0)
|
|
21027
21059
|
], 16));
|
|
21028
21060
|
}
|
|
21029
|
-
}), Au = /* @__PURE__ */ nr(
|
|
21061
|
+
}), Au = /* @__PURE__ */ nr(Rb, [["__scopeId", "data-v-0821f487"]]), Vb = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
21030
21062
|
__proto__: null,
|
|
21031
21063
|
default: Au
|
|
21032
21064
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
21033
|
-
var
|
|
21065
|
+
var Hb = Object.create, Tu = Object.defineProperty, Qb = Object.getOwnPropertyDescriptor, f0 = Object.getOwnPropertyNames, Gb = Object.getPrototypeOf, Zb = Object.prototype.hasOwnProperty, Wb = (e, t) => function() {
|
|
21034
21066
|
return e && (t = (0, e[f0(e)[0]])(e = 0)), t;
|
|
21035
|
-
},
|
|
21067
|
+
}, Kb = (e, t) => function() {
|
|
21036
21068
|
return t || (0, e[f0(e)[0]])((t = { exports: {} }).exports, t), t.exports;
|
|
21037
|
-
},
|
|
21069
|
+
}, Jb = (e, t, r, n) => {
|
|
21038
21070
|
if (t && typeof t == "object" || typeof t == "function")
|
|
21039
21071
|
for (let s of f0(t))
|
|
21040
|
-
!
|
|
21072
|
+
!Zb.call(e, s) && s !== r && Tu(e, s, { get: () => t[s], enumerable: !(n = Qb(t, s)) || n.enumerable });
|
|
21041
21073
|
return e;
|
|
21042
|
-
},
|
|
21074
|
+
}, Xb = (e, t, r) => (r = e != null ? Hb(Gb(e)) : {}, Jb(
|
|
21043
21075
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
21044
21076
|
// file that has been converted to a CommonJS file using a Babel-
|
|
21045
21077
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
21046
21078
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21047
21079
|
Tu(r, "default", { value: e, enumerable: !0 }),
|
|
21048
21080
|
e
|
|
21049
|
-
)), cs =
|
|
21081
|
+
)), cs = Wb({
|
|
21050
21082
|
"../../node_modules/.pnpm/tsup@8.4.0_@microsoft+api-extractor@7.51.1_@types+node@22.13.14__jiti@2.4.2_postcss@8.5_96eb05a9d65343021e53791dd83f3773/node_modules/tsup/assets/esm_shims.js"() {
|
|
21051
21083
|
}
|
|
21052
|
-
}),
|
|
21084
|
+
}), qb = Kb({
|
|
21053
21085
|
"../../node_modules/.pnpm/rfdc@1.4.1/node_modules/rfdc/index.js"(e, t) {
|
|
21054
21086
|
cs(), t.exports = n;
|
|
21055
21087
|
function r(a) {
|
|
@@ -21178,14 +21210,14 @@ Eu && (_e.self, _e.top);
|
|
|
21178
21210
|
var tl;
|
|
21179
21211
|
typeof navigator < "u" && ((tl = navigator.userAgent) == null || tl.toLowerCase().includes("electron"));
|
|
21180
21212
|
cs();
|
|
21181
|
-
var
|
|
21182
|
-
function
|
|
21213
|
+
var eC = Xb(qb()), tC = /(?:^|[-_/])(\w)/g;
|
|
21214
|
+
function rC(e, t) {
|
|
21183
21215
|
return t ? t.toUpperCase() : "";
|
|
21184
21216
|
}
|
|
21185
|
-
function
|
|
21186
|
-
return e && `${e}`.replace(
|
|
21217
|
+
function nC(e) {
|
|
21218
|
+
return e && `${e}`.replace(tC, rC);
|
|
21187
21219
|
}
|
|
21188
|
-
function
|
|
21220
|
+
function sC(e, t) {
|
|
21189
21221
|
let r = e.replace(/^[a-z]:/i, "").replace(/\\/g, "/");
|
|
21190
21222
|
r.endsWith(`index${t}`) && (r = r.replace(`/index${t}`, t));
|
|
21191
21223
|
const n = r.lastIndexOf("/"), s = r.substring(n + 1);
|
|
@@ -21194,15 +21226,15 @@ function aC(e, t) {
|
|
|
21194
21226
|
return s.substring(0, a);
|
|
21195
21227
|
}
|
|
21196
21228
|
}
|
|
21197
|
-
var rl = (0,
|
|
21198
|
-
const
|
|
21229
|
+
var rl = (0, eC.default)({ circles: !0 });
|
|
21230
|
+
const aC = {
|
|
21199
21231
|
trailing: !0
|
|
21200
21232
|
};
|
|
21201
21233
|
function vn(e, t = 25, r = {}) {
|
|
21202
|
-
if (r = { ...
|
|
21234
|
+
if (r = { ...aC, ...r }, !Number.isFinite(t))
|
|
21203
21235
|
throw new TypeError("Expected `wait` to be a finite number");
|
|
21204
21236
|
let n, s, a = [], l, i;
|
|
21205
|
-
const d = (u, c) => (l =
|
|
21237
|
+
const d = (u, c) => (l = oC(e, u, c), l.finally(() => {
|
|
21206
21238
|
if (l = null, r.trailing && i && !s) {
|
|
21207
21239
|
const p = d(u, i);
|
|
21208
21240
|
return i = null, p;
|
|
@@ -21221,7 +21253,7 @@ function vn(e, t = 25, r = {}) {
|
|
|
21221
21253
|
});
|
|
21222
21254
|
};
|
|
21223
21255
|
}
|
|
21224
|
-
async function
|
|
21256
|
+
async function oC(e, t, r) {
|
|
21225
21257
|
return await e.apply(t, r);
|
|
21226
21258
|
}
|
|
21227
21259
|
function vo(e, t = {}, r) {
|
|
@@ -21231,15 +21263,15 @@ function vo(e, t = {}, r) {
|
|
|
21231
21263
|
}
|
|
21232
21264
|
return t;
|
|
21233
21265
|
}
|
|
21234
|
-
const
|
|
21235
|
-
function
|
|
21266
|
+
const lC = { run: (e) => e() }, iC = () => lC, ku = typeof console.createTask < "u" ? console.createTask : iC;
|
|
21267
|
+
function uC(e, t) {
|
|
21236
21268
|
const r = t.shift(), n = ku(r);
|
|
21237
21269
|
return e.reduce(
|
|
21238
21270
|
(s, a) => s.then(() => n.run(() => a(...t))),
|
|
21239
21271
|
Promise.resolve()
|
|
21240
21272
|
);
|
|
21241
21273
|
}
|
|
21242
|
-
function
|
|
21274
|
+
function dC(e, t) {
|
|
21243
21275
|
const r = t.shift(), n = ku(r);
|
|
21244
21276
|
return Promise.all(e.map((s) => n.run(() => s(...t))));
|
|
21245
21277
|
}
|
|
@@ -21247,7 +21279,7 @@ function Oa(e, t) {
|
|
|
21247
21279
|
for (const r of [...e])
|
|
21248
21280
|
r(t);
|
|
21249
21281
|
}
|
|
21250
|
-
class
|
|
21282
|
+
class cC {
|
|
21251
21283
|
constructor() {
|
|
21252
21284
|
this._hooks = {}, this._before = void 0, this._after = void 0, this._deprecatedMessages = void 0, this._deprecatedHooks = {}, this.hook = this.hook.bind(this), this.callHook = this.callHook.bind(this), this.callHookWith = this.callHookWith.bind(this);
|
|
21253
21285
|
}
|
|
@@ -21316,10 +21348,10 @@ class pC {
|
|
|
21316
21348
|
delete this._hooks[t];
|
|
21317
21349
|
}
|
|
21318
21350
|
callHook(t, ...r) {
|
|
21319
|
-
return r.unshift(t), this.callHookWith(
|
|
21351
|
+
return r.unshift(t), this.callHookWith(uC, t, ...r);
|
|
21320
21352
|
}
|
|
21321
21353
|
callHookParallel(t, ...r) {
|
|
21322
|
-
return r.unshift(t), this.callHookWith(
|
|
21354
|
+
return r.unshift(t), this.callHookWith(dC, t, ...r);
|
|
21323
21355
|
}
|
|
21324
21356
|
callHookWith(t, r, ...n) {
|
|
21325
21357
|
const s = this._before || this._after ? { name: r, args: n, context: {} } : void 0;
|
|
@@ -21350,28 +21382,28 @@ class pC {
|
|
|
21350
21382
|
}
|
|
21351
21383
|
}
|
|
21352
21384
|
function Ou() {
|
|
21353
|
-
return new
|
|
21385
|
+
return new cC();
|
|
21354
21386
|
}
|
|
21355
|
-
var
|
|
21387
|
+
var pC = Object.create, ju = Object.defineProperty, fC = Object.getOwnPropertyDescriptor, g0 = Object.getOwnPropertyNames, gC = Object.getPrototypeOf, hC = Object.prototype.hasOwnProperty, vC = (e, t) => function() {
|
|
21356
21388
|
return e && (t = (0, e[g0(e)[0]])(e = 0)), t;
|
|
21357
21389
|
}, Lu = (e, t) => function() {
|
|
21358
21390
|
return t || (0, e[g0(e)[0]])((t = { exports: {} }).exports, t), t.exports;
|
|
21359
|
-
},
|
|
21391
|
+
}, mC = (e, t, r, n) => {
|
|
21360
21392
|
if (t && typeof t == "object" || typeof t == "function")
|
|
21361
21393
|
for (let s of g0(t))
|
|
21362
|
-
!
|
|
21394
|
+
!hC.call(e, s) && s !== r && ju(e, s, { get: () => t[s], enumerable: !(n = fC(t, s)) || n.enumerable });
|
|
21363
21395
|
return e;
|
|
21364
|
-
},
|
|
21396
|
+
}, yC = (e, t, r) => (r = e != null ? pC(gC(e)) : {}, mC(
|
|
21365
21397
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
21366
21398
|
// file that has been converted to a CommonJS file using a Babel-
|
|
21367
21399
|
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
21368
21400
|
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21369
21401
|
ju(r, "default", { value: e, enumerable: !0 }),
|
|
21370
21402
|
e
|
|
21371
|
-
)), pe =
|
|
21403
|
+
)), pe = vC({
|
|
21372
21404
|
"../../node_modules/.pnpm/tsup@8.4.0_@microsoft+api-extractor@7.51.1_@types+node@22.13.14__jiti@2.4.2_postcss@8.5_96eb05a9d65343021e53791dd83f3773/node_modules/tsup/assets/esm_shims.js"() {
|
|
21373
21405
|
}
|
|
21374
|
-
}),
|
|
21406
|
+
}), bC = Lu({
|
|
21375
21407
|
"../../node_modules/.pnpm/speakingurl@14.0.1/node_modules/speakingurl/lib/speakingurl.js"(e, t) {
|
|
21376
21408
|
pe(), (function(r) {
|
|
21377
21409
|
var n = {
|
|
@@ -22755,9 +22787,9 @@ var fC = Object.create, ju = Object.defineProperty, gC = Object.getOwnPropertyDe
|
|
|
22755
22787
|
}
|
|
22756
22788
|
})(e);
|
|
22757
22789
|
}
|
|
22758
|
-
}),
|
|
22790
|
+
}), CC = Lu({
|
|
22759
22791
|
"../../node_modules/.pnpm/speakingurl@14.0.1/node_modules/speakingurl/index.js"(e, t) {
|
|
22760
|
-
pe(), t.exports =
|
|
22792
|
+
pe(), t.exports = bC();
|
|
22761
22793
|
}
|
|
22762
22794
|
});
|
|
22763
22795
|
pe();
|
|
@@ -22768,15 +22800,15 @@ pe();
|
|
|
22768
22800
|
pe();
|
|
22769
22801
|
pe();
|
|
22770
22802
|
pe();
|
|
22771
|
-
function
|
|
22803
|
+
function MC(e) {
|
|
22772
22804
|
var t;
|
|
22773
22805
|
const r = e.name || e._componentTag || e.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__ || e.__name;
|
|
22774
22806
|
return r === "index" && ((t = e.__file) != null && t.endsWith("index.vue")) ? "" : r;
|
|
22775
22807
|
}
|
|
22776
|
-
function
|
|
22808
|
+
function DC(e) {
|
|
22777
22809
|
const t = e.__file;
|
|
22778
22810
|
if (t)
|
|
22779
|
-
return sC(
|
|
22811
|
+
return nC(sC(t, ".vue"));
|
|
22780
22812
|
}
|
|
22781
22813
|
function nl(e, t) {
|
|
22782
22814
|
return e.type.__VUE_DEVTOOLS_COMPONENT_GUSSED_NAME__ = t, t;
|
|
@@ -22794,7 +22826,7 @@ function zu(e) {
|
|
|
22794
22826
|
}
|
|
22795
22827
|
function Ma(e) {
|
|
22796
22828
|
var t, r, n;
|
|
22797
|
-
const s =
|
|
22829
|
+
const s = MC((e == null ? void 0 : e.type) || {});
|
|
22798
22830
|
if (s)
|
|
22799
22831
|
return s;
|
|
22800
22832
|
if ((e == null ? void 0 : e.root) === e)
|
|
@@ -22805,10 +22837,10 @@ function Ma(e) {
|
|
|
22805
22837
|
for (const l in (n = e.appContext) == null ? void 0 : n.components)
|
|
22806
22838
|
if (e.appContext.components[l] === (e == null ? void 0 : e.type))
|
|
22807
22839
|
return nl(e, l);
|
|
22808
|
-
const a =
|
|
22840
|
+
const a = DC((e == null ? void 0 : e.type) || {});
|
|
22809
22841
|
return a || "Anonymous Component";
|
|
22810
22842
|
}
|
|
22811
|
-
function
|
|
22843
|
+
function NC(e) {
|
|
22812
22844
|
var t, r, n;
|
|
22813
22845
|
const s = (n = (r = (t = e == null ? void 0 : e.appContext) == null ? void 0 : t.app) == null ? void 0 : r.__VUE_DEVTOOLS_NEXT_APP_RECORD_ID__) != null ? n : 0, a = e === (e == null ? void 0 : e.root) ? "root" : e.uid;
|
|
22814
22846
|
return `${s}:${a}`;
|
|
@@ -22816,7 +22848,7 @@ function $C(e) {
|
|
|
22816
22848
|
function mo(e, t) {
|
|
22817
22849
|
return t = t || `${e.id}:root`, e.instanceMap.get(t) || e.instanceMap.get(":root");
|
|
22818
22850
|
}
|
|
22819
|
-
function
|
|
22851
|
+
function $C() {
|
|
22820
22852
|
const e = {
|
|
22821
22853
|
top: 0,
|
|
22822
22854
|
bottom: 0,
|
|
@@ -22832,11 +22864,11 @@ function xC() {
|
|
|
22832
22864
|
return e;
|
|
22833
22865
|
}
|
|
22834
22866
|
var vs;
|
|
22835
|
-
function
|
|
22867
|
+
function xC(e) {
|
|
22836
22868
|
return vs || (vs = document.createRange()), vs.selectNode(e), vs.getBoundingClientRect();
|
|
22837
22869
|
}
|
|
22838
|
-
function
|
|
22839
|
-
const t =
|
|
22870
|
+
function _C(e) {
|
|
22871
|
+
const t = $C();
|
|
22840
22872
|
if (!e.children)
|
|
22841
22873
|
return t;
|
|
22842
22874
|
for (let r = 0, n = e.children.length; r < n; r++) {
|
|
@@ -22846,13 +22878,13 @@ function IC(e) {
|
|
|
22846
22878
|
a = Kr(s.component);
|
|
22847
22879
|
else if (s.el) {
|
|
22848
22880
|
const l = s.el;
|
|
22849
|
-
l.nodeType === 1 || l.getBoundingClientRect ? a = l.getBoundingClientRect() : l.nodeType === 3 && l.data.trim() && (a =
|
|
22881
|
+
l.nodeType === 1 || l.getBoundingClientRect ? a = l.getBoundingClientRect() : l.nodeType === 3 && l.data.trim() && (a = xC(l));
|
|
22850
22882
|
}
|
|
22851
|
-
a &&
|
|
22883
|
+
a && IC(t, a);
|
|
22852
22884
|
}
|
|
22853
22885
|
return t;
|
|
22854
22886
|
}
|
|
22855
|
-
function
|
|
22887
|
+
function IC(e, t) {
|
|
22856
22888
|
return (!e.top || t.top < e.top) && (e.top = t.top), (!e.bottom || t.bottom > e.bottom) && (e.bottom = t.bottom), (!e.left || t.left < e.left) && (e.left = t.left), (!e.right || t.right > e.right) && (e.right = t.right), e;
|
|
22857
22889
|
}
|
|
22858
22890
|
var sl = {
|
|
@@ -22865,13 +22897,13 @@ var sl = {
|
|
|
22865
22897
|
};
|
|
22866
22898
|
function Kr(e) {
|
|
22867
22899
|
const t = e.subTree.el;
|
|
22868
|
-
return typeof window > "u" ? sl : zu(e) ?
|
|
22900
|
+
return typeof window > "u" ? sl : zu(e) ? _C(e.subTree) : (t == null ? void 0 : t.nodeType) === 1 ? t == null ? void 0 : t.getBoundingClientRect() : e.subTree.component ? Kr(e.subTree.component) : sl;
|
|
22869
22901
|
}
|
|
22870
22902
|
pe();
|
|
22871
22903
|
function v0(e) {
|
|
22872
|
-
return zu(e) ?
|
|
22904
|
+
return zu(e) ? SC(e.subTree) : e.subTree ? [e.subTree.el] : [];
|
|
22873
22905
|
}
|
|
22874
|
-
function
|
|
22906
|
+
function SC(e) {
|
|
22875
22907
|
if (!e.children)
|
|
22876
22908
|
return [];
|
|
22877
22909
|
const t = [];
|
|
@@ -22888,7 +22920,7 @@ var Pu = "__vue-devtools-component-inspector__", Yu = "__vue-devtools-component-
|
|
|
22888
22920
|
borderRadius: "5px",
|
|
22889
22921
|
transition: "all 0.1s ease-in",
|
|
22890
22922
|
pointerEvents: "none"
|
|
22891
|
-
},
|
|
22923
|
+
}, wC = {
|
|
22892
22924
|
fontFamily: "Arial, Helvetica, sans-serif",
|
|
22893
22925
|
padding: "5px 8px",
|
|
22894
22926
|
borderRadius: "4px",
|
|
@@ -22901,7 +22933,7 @@ var Pu = "__vue-devtools-component-inspector__", Yu = "__vue-devtools-component-
|
|
|
22901
22933
|
lineHeight: "24px",
|
|
22902
22934
|
backgroundColor: "#42b883",
|
|
22903
22935
|
boxShadow: "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)"
|
|
22904
|
-
},
|
|
22936
|
+
}, AC = {
|
|
22905
22937
|
display: "inline-block",
|
|
22906
22938
|
fontWeight: 400,
|
|
22907
22939
|
fontStyle: "normal",
|
|
@@ -22911,13 +22943,13 @@ var Pu = "__vue-devtools-component-inspector__", Yu = "__vue-devtools-component-
|
|
|
22911
22943
|
function Mn() {
|
|
22912
22944
|
return document.getElementById(Pu);
|
|
22913
22945
|
}
|
|
22914
|
-
function
|
|
22946
|
+
function TC() {
|
|
22915
22947
|
return document.getElementById(Yu);
|
|
22916
22948
|
}
|
|
22917
|
-
function
|
|
22949
|
+
function EC() {
|
|
22918
22950
|
return document.getElementById(Uu);
|
|
22919
22951
|
}
|
|
22920
|
-
function
|
|
22952
|
+
function kC() {
|
|
22921
22953
|
return document.getElementById(Fu);
|
|
22922
22954
|
}
|
|
22923
22955
|
function m0(e) {
|
|
@@ -22938,16 +22970,16 @@ function y0(e) {
|
|
|
22938
22970
|
});
|
|
22939
22971
|
const n = document.createElement("span");
|
|
22940
22972
|
n.id = Yu, Object.assign(n.style, {
|
|
22941
|
-
...
|
|
22973
|
+
...wC,
|
|
22942
22974
|
top: e.bounds.top < 35 ? 0 : "-35px"
|
|
22943
22975
|
});
|
|
22944
22976
|
const s = document.createElement("span");
|
|
22945
22977
|
s.id = Fu, s.innerHTML = `<${e.name}> `;
|
|
22946
22978
|
const a = document.createElement("i");
|
|
22947
|
-
return a.id = Uu, a.innerHTML = `${Math.round(e.bounds.width * 100) / 100} x ${Math.round(e.bounds.height * 100) / 100}`, Object.assign(a.style,
|
|
22979
|
+
return a.id = Uu, a.innerHTML = `${Math.round(e.bounds.width * 100) / 100} x ${Math.round(e.bounds.height * 100) / 100}`, Object.assign(a.style, AC), n.appendChild(s), n.appendChild(a), r.appendChild(n), document.body.appendChild(r), r;
|
|
22948
22980
|
}
|
|
22949
22981
|
function b0(e) {
|
|
22950
|
-
const t = Mn(), r =
|
|
22982
|
+
const t = Mn(), r = TC(), n = kC(), s = EC();
|
|
22951
22983
|
t && (Object.assign(t.style, {
|
|
22952
22984
|
...Bu,
|
|
22953
22985
|
...m0(e.bounds)
|
|
@@ -22955,7 +22987,7 @@ function b0(e) {
|
|
|
22955
22987
|
top: e.bounds.top < 35 ? 0 : "-35px"
|
|
22956
22988
|
}), n.innerHTML = `<${e.name}> `, s.innerHTML = `${Math.round(e.bounds.width * 100) / 100} x ${Math.round(e.bounds.height * 100) / 100}`);
|
|
22957
22989
|
}
|
|
22958
|
-
function
|
|
22990
|
+
function OC(e) {
|
|
22959
22991
|
const t = Kr(e);
|
|
22960
22992
|
if (!t.width && !t.height)
|
|
22961
22993
|
return;
|
|
@@ -22977,20 +23009,20 @@ function bo(e) {
|
|
|
22977
23009
|
}
|
|
22978
23010
|
}
|
|
22979
23011
|
}
|
|
22980
|
-
function
|
|
23012
|
+
function jC(e, t) {
|
|
22981
23013
|
if (e.preventDefault(), e.stopPropagation(), yo) {
|
|
22982
|
-
const r =
|
|
23014
|
+
const r = NC(yo);
|
|
22983
23015
|
t(r);
|
|
22984
23016
|
}
|
|
22985
23017
|
}
|
|
22986
23018
|
var Js = null;
|
|
22987
|
-
function
|
|
23019
|
+
function LC() {
|
|
22988
23020
|
Ru(), window.removeEventListener("mouseover", bo), window.removeEventListener("click", Js, !0), Js = null;
|
|
22989
23021
|
}
|
|
22990
|
-
function
|
|
23022
|
+
function zC() {
|
|
22991
23023
|
return window.addEventListener("mouseover", bo), new Promise((e) => {
|
|
22992
23024
|
function t(r) {
|
|
22993
|
-
r.preventDefault(), r.stopPropagation(),
|
|
23025
|
+
r.preventDefault(), r.stopPropagation(), jC(r, (n) => {
|
|
22994
23026
|
window.removeEventListener("click", t, !0), Js = null, window.removeEventListener("mouseover", bo);
|
|
22995
23027
|
const s = Mn();
|
|
22996
23028
|
s && (s.style.display = "none"), e(JSON.stringify({ id: n }));
|
|
@@ -22999,7 +23031,7 @@ function PC() {
|
|
|
22999
23031
|
Js = t, window.addEventListener("click", t, !0);
|
|
23000
23032
|
});
|
|
23001
23033
|
}
|
|
23002
|
-
function
|
|
23034
|
+
function PC(e) {
|
|
23003
23035
|
const t = mo(bt.value, e.id);
|
|
23004
23036
|
if (t) {
|
|
23005
23037
|
const [r] = v0(t);
|
|
@@ -23032,36 +23064,36 @@ function YC(e) {
|
|
|
23032
23064
|
pe();
|
|
23033
23065
|
var al, ol;
|
|
23034
23066
|
(ol = (al = _e).__VUE_DEVTOOLS_COMPONENT_INSPECTOR_ENABLED__) != null || (al.__VUE_DEVTOOLS_COMPONENT_INSPECTOR_ENABLED__ = !0);
|
|
23035
|
-
function
|
|
23067
|
+
function YC(e) {
|
|
23036
23068
|
let t = 0;
|
|
23037
23069
|
const r = setInterval(() => {
|
|
23038
23070
|
_e.__VUE_INSPECTOR__ && (clearInterval(r), t += 30, e()), t >= /* 5s */
|
|
23039
23071
|
5e3 && clearInterval(r);
|
|
23040
23072
|
}, 30);
|
|
23041
23073
|
}
|
|
23042
|
-
function
|
|
23074
|
+
function FC() {
|
|
23043
23075
|
const e = _e.__VUE_INSPECTOR__, t = e.openInEditor;
|
|
23044
23076
|
e.openInEditor = async (...r) => {
|
|
23045
23077
|
e.disable(), t(...r);
|
|
23046
23078
|
};
|
|
23047
23079
|
}
|
|
23048
|
-
function
|
|
23080
|
+
function UC() {
|
|
23049
23081
|
return new Promise((e) => {
|
|
23050
23082
|
function t() {
|
|
23051
|
-
|
|
23083
|
+
FC(), e(_e.__VUE_INSPECTOR__);
|
|
23052
23084
|
}
|
|
23053
|
-
_e.__VUE_INSPECTOR__ ? t() :
|
|
23085
|
+
_e.__VUE_INSPECTOR__ ? t() : YC(() => {
|
|
23054
23086
|
t();
|
|
23055
23087
|
});
|
|
23056
23088
|
});
|
|
23057
23089
|
}
|
|
23058
23090
|
pe();
|
|
23059
23091
|
pe();
|
|
23060
|
-
function
|
|
23092
|
+
function BC(e) {
|
|
23061
23093
|
return !!(e && e.__v_isReadonly);
|
|
23062
23094
|
}
|
|
23063
23095
|
function Vu(e) {
|
|
23064
|
-
return
|
|
23096
|
+
return BC(e) ? Vu(e.__v_raw) : !!(e && e.__v_isReactive);
|
|
23065
23097
|
}
|
|
23066
23098
|
function ja(e) {
|
|
23067
23099
|
return !!(e && e.__v_isRef === !0);
|
|
@@ -23070,9 +23102,9 @@ function Sn(e) {
|
|
|
23070
23102
|
const t = e && e.__v_raw;
|
|
23071
23103
|
return t ? Sn(t) : e;
|
|
23072
23104
|
}
|
|
23073
|
-
var
|
|
23105
|
+
var RC = class {
|
|
23074
23106
|
constructor() {
|
|
23075
|
-
this.refEditor = new
|
|
23107
|
+
this.refEditor = new VC();
|
|
23076
23108
|
}
|
|
23077
23109
|
set(e, t, r, n) {
|
|
23078
23110
|
const s = Array.isArray(t) ? t : t.split(".");
|
|
@@ -23108,7 +23140,7 @@ var VC = class {
|
|
|
23108
23140
|
}
|
|
23109
23141
|
};
|
|
23110
23142
|
}
|
|
23111
|
-
},
|
|
23143
|
+
}, VC = class {
|
|
23112
23144
|
set(e, t) {
|
|
23113
23145
|
if (ja(e))
|
|
23114
23146
|
e.value = t;
|
|
@@ -23141,9 +23173,9 @@ var VC = class {
|
|
|
23141
23173
|
pe();
|
|
23142
23174
|
pe();
|
|
23143
23175
|
pe();
|
|
23144
|
-
var
|
|
23145
|
-
function
|
|
23146
|
-
if (!Eu || typeof localStorage > "u" || localStorage === null)
|
|
23176
|
+
var HC = "__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS_STATE__";
|
|
23177
|
+
function QC() {
|
|
23178
|
+
if (typeof window > "u" || !Eu || typeof localStorage > "u" || localStorage === null)
|
|
23147
23179
|
return {
|
|
23148
23180
|
recordingState: !1,
|
|
23149
23181
|
mouseEventEnabled: !1,
|
|
@@ -23152,7 +23184,7 @@ function GC() {
|
|
|
23152
23184
|
performanceEventEnabled: !1,
|
|
23153
23185
|
selected: ""
|
|
23154
23186
|
};
|
|
23155
|
-
const e = localStorage.getItem(
|
|
23187
|
+
const e = typeof localStorage.getItem < "u" ? localStorage.getItem(HC) : null;
|
|
23156
23188
|
return e ? JSON.parse(e) : {
|
|
23157
23189
|
recordingState: !1,
|
|
23158
23190
|
mouseEventEnabled: !1,
|
|
@@ -23167,13 +23199,13 @@ pe();
|
|
|
23167
23199
|
pe();
|
|
23168
23200
|
var ll, il;
|
|
23169
23201
|
(il = (ll = _e).__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS) != null || (ll.__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS = []);
|
|
23170
|
-
var
|
|
23202
|
+
var GC = new Proxy(_e.__VUE_DEVTOOLS_KIT_TIMELINE_LAYERS, {
|
|
23171
23203
|
get(e, t, r) {
|
|
23172
23204
|
return Reflect.get(e, t, r);
|
|
23173
23205
|
}
|
|
23174
23206
|
});
|
|
23175
|
-
function
|
|
23176
|
-
nt.timelineLayersState[t.id] = !1,
|
|
23207
|
+
function ZC(e, t) {
|
|
23208
|
+
nt.timelineLayersState[t.id] = !1, GC.push({
|
|
23177
23209
|
...e,
|
|
23178
23210
|
descriptorId: t.id,
|
|
23179
23211
|
appRecord: h0(t.app)
|
|
@@ -23188,7 +23220,7 @@ var C0 = new Proxy(_e.__VUE_DEVTOOLS_KIT_INSPECTOR__, {
|
|
|
23188
23220
|
}), Hu = vn(() => {
|
|
23189
23221
|
Dn.hooks.callHook("sendInspectorToClient", Qu());
|
|
23190
23222
|
});
|
|
23191
|
-
function
|
|
23223
|
+
function WC(e, t) {
|
|
23192
23224
|
var r, n;
|
|
23193
23225
|
C0.push({
|
|
23194
23226
|
options: e,
|
|
@@ -23218,10 +23250,10 @@ function Qu() {
|
|
|
23218
23250
|
function Ts(e, t) {
|
|
23219
23251
|
return C0.find((r) => r.options.id === e && (t ? r.descriptor.app === t : !0));
|
|
23220
23252
|
}
|
|
23221
|
-
function
|
|
23253
|
+
function KC() {
|
|
23222
23254
|
const e = Ou();
|
|
23223
23255
|
e.hook("addInspector", ({ inspector: n, plugin: s }) => {
|
|
23224
|
-
|
|
23256
|
+
WC(n, s.descriptor);
|
|
23225
23257
|
});
|
|
23226
23258
|
const t = vn(async ({ inspectorId: n, plugin: s }) => {
|
|
23227
23259
|
var a;
|
|
@@ -23289,7 +23321,7 @@ function JC() {
|
|
|
23289
23321
|
const l = Ts(n, a.descriptor.app);
|
|
23290
23322
|
l && (l.selectedNodeId = s);
|
|
23291
23323
|
}), e.hook("timelineLayerAdded", ({ options: n, plugin: s }) => {
|
|
23292
|
-
|
|
23324
|
+
ZC(n, s.descriptor);
|
|
23293
23325
|
}), e.hook("timelineEventAdded", ({ options: n, plugin: s }) => {
|
|
23294
23326
|
var a;
|
|
23295
23327
|
const l = ["performance", "component-event", "keyboard", "mouse"];
|
|
@@ -23308,7 +23340,7 @@ function JC() {
|
|
|
23308
23340
|
return [...s.instanceMap].filter(([i]) => i.split(":")[0] === a).map(([, i]) => i);
|
|
23309
23341
|
}), e.hook("getComponentBounds", async ({ instance: n }) => Kr(n)), e.hook("getComponentName", ({ instance: n }) => Ma(n)), e.hook("componentHighlight", ({ uid: n }) => {
|
|
23310
23342
|
const s = bt.value.instanceMap.get(n);
|
|
23311
|
-
s &&
|
|
23343
|
+
s && OC(s);
|
|
23312
23344
|
}), e.hook("componentUnhighlight", () => {
|
|
23313
23345
|
Ru();
|
|
23314
23346
|
}), e;
|
|
@@ -23324,7 +23356,7 @@ var ml, yl;
|
|
|
23324
23356
|
var bl, Cl;
|
|
23325
23357
|
(Cl = (bl = _e).__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__) != null || (bl.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__ = []);
|
|
23326
23358
|
var Rr = "__VUE_DEVTOOLS_KIT_GLOBAL_STATE__";
|
|
23327
|
-
function
|
|
23359
|
+
function JC() {
|
|
23328
23360
|
return {
|
|
23329
23361
|
connected: !1,
|
|
23330
23362
|
clientConnected: !1,
|
|
@@ -23336,12 +23368,12 @@ function XC() {
|
|
|
23336
23368
|
highPerfModeEnabled: !0,
|
|
23337
23369
|
devtoolsClientDetected: {},
|
|
23338
23370
|
perfUniqueGroupId: 0,
|
|
23339
|
-
timelineLayersState:
|
|
23371
|
+
timelineLayersState: QC()
|
|
23340
23372
|
};
|
|
23341
23373
|
}
|
|
23342
23374
|
var Ml, Dl;
|
|
23343
|
-
(Dl = (Ml = _e)[Rr]) != null || (Ml[Rr] =
|
|
23344
|
-
var
|
|
23375
|
+
(Dl = (Ml = _e)[Rr]) != null || (Ml[Rr] = JC());
|
|
23376
|
+
var XC = vn((e) => {
|
|
23345
23377
|
Dn.hooks.callHook("devtoolsStateUpdated", { state: e });
|
|
23346
23378
|
});
|
|
23347
23379
|
vn((e, t) => {
|
|
@@ -23357,7 +23389,7 @@ var Da = new Proxy(_e.__VUE_DEVTOOLS_KIT_APP_RECORDS__, {
|
|
|
23357
23389
|
}
|
|
23358
23390
|
});
|
|
23359
23391
|
function Gu() {
|
|
23360
|
-
|
|
23392
|
+
XC({
|
|
23361
23393
|
..._e[Rr],
|
|
23362
23394
|
appRecords: Da.value,
|
|
23363
23395
|
activeAppRecordId: bt.id,
|
|
@@ -23365,10 +23397,10 @@ function Gu() {
|
|
|
23365
23397
|
commands: _e.__VUE_DEVTOOLS_KIT_CUSTOM_COMMANDS__
|
|
23366
23398
|
});
|
|
23367
23399
|
}
|
|
23368
|
-
function
|
|
23400
|
+
function qC(e) {
|
|
23369
23401
|
_e.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD__ = e, Gu();
|
|
23370
23402
|
}
|
|
23371
|
-
function
|
|
23403
|
+
function eM(e) {
|
|
23372
23404
|
_e.__VUE_DEVTOOLS_KIT_ACTIVE_APP_RECORD_ID__ = e, Gu();
|
|
23373
23405
|
}
|
|
23374
23406
|
var nt = new Proxy(_e[Rr], {
|
|
@@ -23382,7 +23414,7 @@ var nt = new Proxy(_e[Rr], {
|
|
|
23382
23414
|
return { ..._e[Rr] }, e[t] = r, _e[Rr][t] = r, !0;
|
|
23383
23415
|
}
|
|
23384
23416
|
});
|
|
23385
|
-
function
|
|
23417
|
+
function tM(e = {}) {
|
|
23386
23418
|
var t, r, n;
|
|
23387
23419
|
const { file: s, host: a, baseUrl: l = window.location.origin, line: i = 0, column: d = 0 } = e;
|
|
23388
23420
|
if (s) {
|
|
@@ -23421,7 +23453,7 @@ function Co(e) {
|
|
|
23421
23453
|
function D0(e) {
|
|
23422
23454
|
return `__VUE_DEVTOOLS_NEXT_PLUGIN_SETTINGS__${e}__`;
|
|
23423
23455
|
}
|
|
23424
|
-
function
|
|
23456
|
+
function rM(e) {
|
|
23425
23457
|
var t, r, n;
|
|
23426
23458
|
const s = (r = (t = M0.find((a) => {
|
|
23427
23459
|
var l;
|
|
@@ -23443,11 +23475,11 @@ function Zu(e, t) {
|
|
|
23443
23475
|
}
|
|
23444
23476
|
return Co(t);
|
|
23445
23477
|
}
|
|
23446
|
-
function
|
|
23478
|
+
function nM(e, t) {
|
|
23447
23479
|
const r = D0(e);
|
|
23448
23480
|
localStorage.getItem(r) || localStorage.setItem(r, JSON.stringify(Co(t)));
|
|
23449
23481
|
}
|
|
23450
|
-
function
|
|
23482
|
+
function sM(e, t, r) {
|
|
23451
23483
|
const n = D0(e), s = localStorage.getItem(n), a = JSON.parse(s || "{}"), l = {
|
|
23452
23484
|
...a,
|
|
23453
23485
|
[t]: r
|
|
@@ -23477,7 +23509,7 @@ pe();
|
|
|
23477
23509
|
pe();
|
|
23478
23510
|
pe();
|
|
23479
23511
|
pe();
|
|
23480
|
-
var xl, _l, Tt = (_l = (xl = _e).__VUE_DEVTOOLS_HOOK) != null ? _l : xl.__VUE_DEVTOOLS_HOOK = Ou(),
|
|
23512
|
+
var xl, _l, Tt = (_l = (xl = _e).__VUE_DEVTOOLS_HOOK) != null ? _l : xl.__VUE_DEVTOOLS_HOOK = Ou(), aM = {
|
|
23481
23513
|
vueAppInit(e) {
|
|
23482
23514
|
Tt.hook("app:init", e);
|
|
23483
23515
|
},
|
|
@@ -23509,11 +23541,11 @@ var xl, _l, Tt = (_l = (xl = _e).__VUE_DEVTOOLS_HOOK) != null ? _l : xl.__VUE_DE
|
|
|
23509
23541
|
return Tt.hook("perf:end", e);
|
|
23510
23542
|
}
|
|
23511
23543
|
}, Wu = {
|
|
23512
|
-
on:
|
|
23544
|
+
on: aM,
|
|
23513
23545
|
setupDevToolsPlugin(e, t) {
|
|
23514
23546
|
return Tt.callHook("devtools-plugin:setup", e, t);
|
|
23515
23547
|
}
|
|
23516
|
-
},
|
|
23548
|
+
}, oM = class {
|
|
23517
23549
|
constructor({ plugin: e, ctx: t }) {
|
|
23518
23550
|
this.hooks = t.hooks, this.plugin = e;
|
|
23519
23551
|
}
|
|
@@ -23577,7 +23609,7 @@ var xl, _l, Tt = (_l = (xl = _e).__VUE_DEVTOOLS_HOOK) != null ? _l : xl.__VUE_DE
|
|
|
23577
23609
|
}
|
|
23578
23610
|
// custom inspector
|
|
23579
23611
|
addInspector(e) {
|
|
23580
|
-
this.hooks.callHook("addInspector", { inspector: e, plugin: this.plugin }), this.plugin.descriptor.settings &&
|
|
23612
|
+
this.hooks.callHook("addInspector", { inspector: e, plugin: this.plugin }), this.plugin.descriptor.settings && nM(e.id, this.plugin.descriptor.settings);
|
|
23581
23613
|
}
|
|
23582
23614
|
sendInspectorTree(e) {
|
|
23583
23615
|
nt.highPerfModeEnabled || this.hooks.callHook("sendInspectorTree", { inspectorId: e, plugin: this.plugin });
|
|
@@ -23625,21 +23657,21 @@ var xl, _l, Tt = (_l = (xl = _e).__VUE_DEVTOOLS_HOOK) != null ? _l : xl.__VUE_DE
|
|
|
23625
23657
|
/* COMPONENT_UNHIGHLIGHT */
|
|
23626
23658
|
);
|
|
23627
23659
|
}
|
|
23628
|
-
},
|
|
23660
|
+
}, lM = oM;
|
|
23629
23661
|
pe();
|
|
23630
23662
|
pe();
|
|
23631
23663
|
pe();
|
|
23632
23664
|
pe();
|
|
23633
|
-
var
|
|
23665
|
+
var iM = "__vue_devtool_undefined__", uM = "__vue_devtool_infinity__", dM = "__vue_devtool_negative_infinity__", cM = "__vue_devtool_nan__";
|
|
23634
23666
|
pe();
|
|
23635
23667
|
pe();
|
|
23636
|
-
var
|
|
23637
|
-
[
|
|
23638
|
-
[
|
|
23639
|
-
[
|
|
23640
|
-
[
|
|
23668
|
+
var pM = {
|
|
23669
|
+
[iM]: "undefined",
|
|
23670
|
+
[cM]: "NaN",
|
|
23671
|
+
[uM]: "Infinity",
|
|
23672
|
+
[dM]: "-Infinity"
|
|
23641
23673
|
};
|
|
23642
|
-
Object.entries(
|
|
23674
|
+
Object.entries(pM).reduce((e, [t, r]) => (e[r] = t, e), {});
|
|
23643
23675
|
pe();
|
|
23644
23676
|
pe();
|
|
23645
23677
|
pe();
|
|
@@ -23650,11 +23682,11 @@ var Il, Sl;
|
|
|
23650
23682
|
function Ku(e, t) {
|
|
23651
23683
|
return Wu.setupDevToolsPlugin(e, t);
|
|
23652
23684
|
}
|
|
23653
|
-
function
|
|
23685
|
+
function fM(e, t) {
|
|
23654
23686
|
const [r, n] = e;
|
|
23655
23687
|
if (r.app !== t)
|
|
23656
23688
|
return;
|
|
23657
|
-
const s = new
|
|
23689
|
+
const s = new lM({
|
|
23658
23690
|
plugin: {
|
|
23659
23691
|
setupFn: n,
|
|
23660
23692
|
descriptor: r
|
|
@@ -23667,7 +23699,7 @@ function gM(e, t) {
|
|
|
23667
23699
|
}
|
|
23668
23700
|
function Ju(e, t) {
|
|
23669
23701
|
_e.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.has(e) || nt.highPerfModeEnabled && !(t != null && t.inspectingComponent) || (_e.__VUE_DEVTOOLS_KIT__REGISTERED_PLUGIN_APPS__.add(e), M0.forEach((r) => {
|
|
23670
|
-
|
|
23702
|
+
fM(r, e);
|
|
23671
23703
|
}));
|
|
23672
23704
|
}
|
|
23673
23705
|
pe();
|
|
@@ -23690,7 +23722,7 @@ new Proxy(_e[ns], {
|
|
|
23690
23722
|
return _e[ns];
|
|
23691
23723
|
}
|
|
23692
23724
|
});
|
|
23693
|
-
function
|
|
23725
|
+
function gM(e) {
|
|
23694
23726
|
const t = /* @__PURE__ */ new Map();
|
|
23695
23727
|
return ((e == null ? void 0 : e.getRoutes()) || []).filter((r) => !t.has(r.path) && t.set(r.path, 1));
|
|
23696
23728
|
}
|
|
@@ -23705,7 +23737,7 @@ function N0(e) {
|
|
|
23705
23737
|
};
|
|
23706
23738
|
});
|
|
23707
23739
|
}
|
|
23708
|
-
function
|
|
23740
|
+
function hM(e) {
|
|
23709
23741
|
if (e) {
|
|
23710
23742
|
const { fullPath: t, hash: r, href: n, path: s, name: a, matched: l, params: i, query: d } = e;
|
|
23711
23743
|
return {
|
|
@@ -23721,10 +23753,10 @@ function vM(e) {
|
|
|
23721
23753
|
}
|
|
23722
23754
|
return e;
|
|
23723
23755
|
}
|
|
23724
|
-
function
|
|
23756
|
+
function vM(e, t) {
|
|
23725
23757
|
function r() {
|
|
23726
23758
|
var n;
|
|
23727
|
-
const s = (n = e.app) == null ? void 0 : n.config.globalProperties.$router, a =
|
|
23759
|
+
const s = (n = e.app) == null ? void 0 : n.config.globalProperties.$router, a = hM(s == null ? void 0 : s.currentRoute.value), l = N0(gM(s)), i = console.warn;
|
|
23728
23760
|
console.warn = () => {
|
|
23729
23761
|
}, _e[mn] = {
|
|
23730
23762
|
currentRoute: a ? rl(a) : {},
|
|
@@ -23736,7 +23768,7 @@ function mM(e, t) {
|
|
|
23736
23768
|
((n = t.value) == null ? void 0 : n.app) === e.app && (r(), !nt.highPerfModeEnabled && Dn.hooks.callHook("routerInfoUpdated", { state: _e[mn] }));
|
|
23737
23769
|
}, 200));
|
|
23738
23770
|
}
|
|
23739
|
-
function
|
|
23771
|
+
function mM(e) {
|
|
23740
23772
|
return {
|
|
23741
23773
|
// get inspector tree
|
|
23742
23774
|
async getInspectorTree(t) {
|
|
@@ -23776,7 +23808,7 @@ function yM(e) {
|
|
|
23776
23808
|
},
|
|
23777
23809
|
// edit inspector state
|
|
23778
23810
|
editInspectorState(t) {
|
|
23779
|
-
const r = new
|
|
23811
|
+
const r = new RC(), n = {
|
|
23780
23812
|
...t,
|
|
23781
23813
|
app: bt.value.app,
|
|
23782
23814
|
set: (s, a = t.path, l = t.state.value, i) => {
|
|
@@ -23801,11 +23833,11 @@ function yM(e) {
|
|
|
23801
23833
|
},
|
|
23802
23834
|
// inspect component inspector
|
|
23803
23835
|
inspectComponentInspector() {
|
|
23804
|
-
return
|
|
23836
|
+
return zC();
|
|
23805
23837
|
},
|
|
23806
23838
|
// cancel inspect component inspector
|
|
23807
23839
|
cancelInspectComponentInspector() {
|
|
23808
|
-
return
|
|
23840
|
+
return LC();
|
|
23809
23841
|
},
|
|
23810
23842
|
// get component render code
|
|
23811
23843
|
getComponentRenderCode(t) {
|
|
@@ -23815,16 +23847,16 @@ function yM(e) {
|
|
|
23815
23847
|
},
|
|
23816
23848
|
// scroll to component
|
|
23817
23849
|
scrollToComponent(t) {
|
|
23818
|
-
return
|
|
23850
|
+
return PC({ id: t });
|
|
23819
23851
|
},
|
|
23820
23852
|
// open in editor
|
|
23821
|
-
openInEditor:
|
|
23853
|
+
openInEditor: tM,
|
|
23822
23854
|
// get vue inspector
|
|
23823
|
-
getVueInspector:
|
|
23855
|
+
getVueInspector: UC,
|
|
23824
23856
|
// toggle app
|
|
23825
23857
|
toggleApp(t, r) {
|
|
23826
23858
|
const n = Da.value.find((s) => s.id === t);
|
|
23827
|
-
n && (
|
|
23859
|
+
n && (eM(t), qC(n), vM(n, bt), Hu(), Ju(n.app, r));
|
|
23828
23860
|
},
|
|
23829
23861
|
// inspect dom
|
|
23830
23862
|
inspectDOM(t) {
|
|
@@ -23835,11 +23867,11 @@ function yM(e) {
|
|
|
23835
23867
|
}
|
|
23836
23868
|
},
|
|
23837
23869
|
updatePluginSettings(t, r, n) {
|
|
23838
|
-
|
|
23870
|
+
sM(t, r, n);
|
|
23839
23871
|
},
|
|
23840
23872
|
getPluginSettings(t) {
|
|
23841
23873
|
return {
|
|
23842
|
-
options:
|
|
23874
|
+
options: rM(t),
|
|
23843
23875
|
values: Zu(t)
|
|
23844
23876
|
};
|
|
23845
23877
|
}
|
|
@@ -23850,7 +23882,7 @@ var kl, Ol;
|
|
|
23850
23882
|
(Ol = (kl = _e).__VUE_DEVTOOLS_ENV__) != null || (kl.__VUE_DEVTOOLS_ENV__ = {
|
|
23851
23883
|
vitePluginDetected: !1
|
|
23852
23884
|
});
|
|
23853
|
-
var jl =
|
|
23885
|
+
var jl = KC(), Ll, zl;
|
|
23854
23886
|
(zl = (Ll = _e).__VUE_DEVTOOLS_KIT_CONTEXT__) != null || (Ll.__VUE_DEVTOOLS_KIT_CONTEXT__ = {
|
|
23855
23887
|
hooks: jl,
|
|
23856
23888
|
get state() {
|
|
@@ -23861,11 +23893,11 @@ var jl = JC(), Ll, zl;
|
|
|
23861
23893
|
appRecords: Da.value
|
|
23862
23894
|
};
|
|
23863
23895
|
},
|
|
23864
|
-
api:
|
|
23896
|
+
api: mM(jl)
|
|
23865
23897
|
});
|
|
23866
23898
|
var Dn = _e.__VUE_DEVTOOLS_KIT_CONTEXT__;
|
|
23867
23899
|
pe();
|
|
23868
|
-
|
|
23900
|
+
yC(CC());
|
|
23869
23901
|
var Pl, Yl;
|
|
23870
23902
|
(Yl = (Pl = _e).__VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__) != null || (Pl.__VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__ = {
|
|
23871
23903
|
id: 0,
|
|
@@ -23873,22 +23905,22 @@ var Pl, Yl;
|
|
|
23873
23905
|
});
|
|
23874
23906
|
pe();
|
|
23875
23907
|
pe();
|
|
23876
|
-
function
|
|
23908
|
+
function yM(e) {
|
|
23877
23909
|
nt.highPerfModeEnabled = e ?? !nt.highPerfModeEnabled, !e && bt.value && Ju(bt.value.app);
|
|
23878
23910
|
}
|
|
23879
23911
|
pe();
|
|
23880
23912
|
pe();
|
|
23881
23913
|
pe();
|
|
23882
|
-
function
|
|
23914
|
+
function bM(e) {
|
|
23883
23915
|
nt.devtoolsClientDetected = {
|
|
23884
23916
|
...nt.devtoolsClientDetected,
|
|
23885
23917
|
...e
|
|
23886
23918
|
};
|
|
23887
23919
|
const t = Object.values(nt.devtoolsClientDetected).some(Boolean);
|
|
23888
|
-
|
|
23920
|
+
yM(!t);
|
|
23889
23921
|
}
|
|
23890
23922
|
var Fl, Ul;
|
|
23891
|
-
(Ul = (Fl = _e).__VUE_DEVTOOLS_UPDATE_CLIENT_DETECTED__) != null || (Fl.__VUE_DEVTOOLS_UPDATE_CLIENT_DETECTED__ =
|
|
23923
|
+
(Ul = (Fl = _e).__VUE_DEVTOOLS_UPDATE_CLIENT_DETECTED__) != null || (Fl.__VUE_DEVTOOLS_UPDATE_CLIENT_DETECTED__ = bM);
|
|
23892
23924
|
pe();
|
|
23893
23925
|
pe();
|
|
23894
23926
|
pe();
|
|
@@ -23896,7 +23928,7 @@ pe();
|
|
|
23896
23928
|
pe();
|
|
23897
23929
|
pe();
|
|
23898
23930
|
pe();
|
|
23899
|
-
var
|
|
23931
|
+
var CM = class {
|
|
23900
23932
|
constructor() {
|
|
23901
23933
|
this.keyToValue = /* @__PURE__ */ new Map(), this.valueToKey = /* @__PURE__ */ new Map();
|
|
23902
23934
|
}
|
|
@@ -23914,7 +23946,7 @@ var MM = class {
|
|
|
23914
23946
|
}
|
|
23915
23947
|
}, Xu = class {
|
|
23916
23948
|
constructor(e) {
|
|
23917
|
-
this.generateIdentifier = e, this.kv = new
|
|
23949
|
+
this.generateIdentifier = e, this.kv = new CM();
|
|
23918
23950
|
}
|
|
23919
23951
|
register(e, t) {
|
|
23920
23952
|
this.kv.getByValue(e) || (t || (t = this.generateIdentifier(e)), this.kv.set(t, e));
|
|
@@ -23928,7 +23960,7 @@ var MM = class {
|
|
|
23928
23960
|
getValue(e) {
|
|
23929
23961
|
return this.kv.getByKey(e);
|
|
23930
23962
|
}
|
|
23931
|
-
},
|
|
23963
|
+
}, MM = class extends Xu {
|
|
23932
23964
|
constructor() {
|
|
23933
23965
|
super((e) => e.name), this.classToAllowedProps = /* @__PURE__ */ new Map();
|
|
23934
23966
|
}
|
|
@@ -23941,7 +23973,7 @@ var MM = class {
|
|
|
23941
23973
|
};
|
|
23942
23974
|
pe();
|
|
23943
23975
|
pe();
|
|
23944
|
-
function
|
|
23976
|
+
function DM(e) {
|
|
23945
23977
|
if ("values" in Object)
|
|
23946
23978
|
return Object.values(e);
|
|
23947
23979
|
const t = [];
|
|
@@ -23949,8 +23981,8 @@ function NM(e) {
|
|
|
23949
23981
|
e.hasOwnProperty(r) && t.push(e[r]);
|
|
23950
23982
|
return t;
|
|
23951
23983
|
}
|
|
23952
|
-
function
|
|
23953
|
-
const r =
|
|
23984
|
+
function NM(e, t) {
|
|
23985
|
+
const r = DM(e);
|
|
23954
23986
|
if ("find" in r)
|
|
23955
23987
|
return r.find(t);
|
|
23956
23988
|
const n = r;
|
|
@@ -23973,7 +24005,7 @@ function Bl(e, t) {
|
|
|
23973
24005
|
return n;
|
|
23974
24006
|
}
|
|
23975
24007
|
}
|
|
23976
|
-
var
|
|
24008
|
+
var $M = class {
|
|
23977
24009
|
constructor() {
|
|
23978
24010
|
this.transfomers = {};
|
|
23979
24011
|
}
|
|
@@ -23981,7 +24013,7 @@ var xM = class {
|
|
|
23981
24013
|
this.transfomers[e.name] = e;
|
|
23982
24014
|
}
|
|
23983
24015
|
findApplicable(e) {
|
|
23984
|
-
return
|
|
24016
|
+
return NM(this.transfomers, (t) => t.isApplicable(e));
|
|
23985
24017
|
}
|
|
23986
24018
|
findByName(e) {
|
|
23987
24019
|
return this.transfomers[e];
|
|
@@ -23989,7 +24021,7 @@ var xM = class {
|
|
|
23989
24021
|
};
|
|
23990
24022
|
pe();
|
|
23991
24023
|
pe();
|
|
23992
|
-
var
|
|
24024
|
+
var xM = (e) => Object.prototype.toString.call(e).slice(8, -1), qu = (e) => typeof e > "u", _M = (e) => e === null, ss = (e) => typeof e != "object" || e === null || e === Object.prototype ? !1 : Object.getPrototypeOf(e) === null ? !0 : Object.getPrototypeOf(e) === Object.prototype, Mo = (e) => ss(e) && Object.keys(e).length === 0, Er = (e) => Array.isArray(e), IM = (e) => typeof e == "string", SM = (e) => typeof e == "number" && !isNaN(e), wM = (e) => typeof e == "boolean", AM = (e) => e instanceof RegExp, as = (e) => e instanceof Map, os = (e) => e instanceof Set, ed = (e) => xM(e) === "Symbol", TM = (e) => e instanceof Date && !isNaN(e.valueOf()), EM = (e) => e instanceof Error, Rl = (e) => typeof e == "number" && isNaN(e), kM = (e) => wM(e) || _M(e) || qu(e) || SM(e) || IM(e) || ed(e), OM = (e) => typeof e == "bigint", jM = (e) => e === 1 / 0 || e === -1 / 0, LM = (e) => ArrayBuffer.isView(e) && !(e instanceof DataView), zM = (e) => e instanceof URL;
|
|
23993
24025
|
pe();
|
|
23994
24026
|
var td = (e) => e.replace(/\./g, "\\."), La = (e) => e.map(String).map(td).join("."), zn = (e) => {
|
|
23995
24027
|
const t = [];
|
|
@@ -24021,9 +24053,9 @@ function Zt(e, t, r, n) {
|
|
|
24021
24053
|
var rd = [
|
|
24022
24054
|
Zt(qu, "undefined", () => null, () => {
|
|
24023
24055
|
}),
|
|
24024
|
-
Zt(
|
|
24025
|
-
Zt(
|
|
24026
|
-
Zt(
|
|
24056
|
+
Zt(OM, "bigint", (e) => e.toString(), (e) => typeof BigInt < "u" ? BigInt(e) : (console.error("Please add a BigInt polyfill."), e)),
|
|
24057
|
+
Zt(TM, "Date", (e) => e.toISOString(), (e) => new Date(e)),
|
|
24058
|
+
Zt(EM, "Error", (e, t) => {
|
|
24027
24059
|
const r = {
|
|
24028
24060
|
name: e.name,
|
|
24029
24061
|
message: e.message
|
|
@@ -24037,7 +24069,7 @@ var rd = [
|
|
|
24037
24069
|
r[n] = e[n];
|
|
24038
24070
|
}), r;
|
|
24039
24071
|
}),
|
|
24040
|
-
Zt(
|
|
24072
|
+
Zt(AM, "regexp", (e) => "" + e, (e) => {
|
|
24041
24073
|
const t = e.slice(1, e.lastIndexOf("/")), r = e.slice(e.lastIndexOf("/") + 1);
|
|
24042
24074
|
return new RegExp(t, r);
|
|
24043
24075
|
}),
|
|
@@ -24050,9 +24082,9 @@ var rd = [
|
|
|
24050
24082
|
(e) => new Set(e)
|
|
24051
24083
|
),
|
|
24052
24084
|
Zt(as, "map", (e) => [...e.entries()], (e) => new Map(e)),
|
|
24053
|
-
Zt((e) => Rl(e) ||
|
|
24085
|
+
Zt((e) => Rl(e) || jM(e), "number", (e) => Rl(e) ? "NaN" : e > 0 ? "Infinity" : "-Infinity", Number),
|
|
24054
24086
|
Zt((e) => e === 0 && 1 / e === -1 / 0, "number", () => "-0", Number),
|
|
24055
|
-
Zt(
|
|
24087
|
+
Zt(zM, "URL", (e) => e.toString(), (e) => new URL(e))
|
|
24056
24088
|
];
|
|
24057
24089
|
function Na(e, t, r, n) {
|
|
24058
24090
|
return {
|
|
@@ -24067,7 +24099,7 @@ var nd = Na((e, t) => ed(e) ? !!t.symbolRegistry.getIdentifier(e) : !1, (e, t) =
|
|
|
24067
24099
|
if (!n)
|
|
24068
24100
|
throw new Error("Trying to deserialize unknown symbol");
|
|
24069
24101
|
return n;
|
|
24070
|
-
}),
|
|
24102
|
+
}), PM = [
|
|
24071
24103
|
Int8Array,
|
|
24072
24104
|
Uint8Array,
|
|
24073
24105
|
Int16Array,
|
|
@@ -24077,8 +24109,8 @@ var nd = Na((e, t) => ed(e) ? !!t.symbolRegistry.getIdentifier(e) : !1, (e, t) =
|
|
|
24077
24109
|
Float32Array,
|
|
24078
24110
|
Float64Array,
|
|
24079
24111
|
Uint8ClampedArray
|
|
24080
|
-
].reduce((e, t) => (e[t.name] = t, e), {}), sd = Na(
|
|
24081
|
-
const r =
|
|
24112
|
+
].reduce((e, t) => (e[t.name] = t, e), {}), sd = Na(LM, (e) => ["typed-array", e.constructor.name], (e) => [...e], (e, t) => {
|
|
24113
|
+
const r = PM[t[1]];
|
|
24082
24114
|
if (!r)
|
|
24083
24115
|
throw new Error("Trying to deserialize unknown typed array");
|
|
24084
24116
|
return new r(e);
|
|
@@ -24104,8 +24136,8 @@ var od = Na(ad, (e, t) => ["class", t.classRegistry.getIdentifier(e.constructor)
|
|
|
24104
24136
|
if (!n)
|
|
24105
24137
|
throw new Error("Trying to deserialize unknown custom value");
|
|
24106
24138
|
return n.deserialize(e);
|
|
24107
|
-
}),
|
|
24108
|
-
const r = Bl(
|
|
24139
|
+
}), YM = [od, nd, ld, sd], Vl = (e, t) => {
|
|
24140
|
+
const r = Bl(YM, (s) => s.isApplicable(e, t));
|
|
24109
24141
|
if (r)
|
|
24110
24142
|
return {
|
|
24111
24143
|
value: r.transform(e, t),
|
|
@@ -24121,7 +24153,7 @@ var od = Na(ad, (e, t) => ["class", t.classRegistry.getIdentifier(e.constructor)
|
|
|
24121
24153
|
rd.forEach((e) => {
|
|
24122
24154
|
id[e.annotation] = e;
|
|
24123
24155
|
});
|
|
24124
|
-
var
|
|
24156
|
+
var FM = (e, t, r) => {
|
|
24125
24157
|
if (Er(t))
|
|
24126
24158
|
switch (t[0]) {
|
|
24127
24159
|
case "symbol":
|
|
@@ -24159,7 +24191,7 @@ function ud(e) {
|
|
|
24159
24191
|
if (Es(e, "constructor"))
|
|
24160
24192
|
throw new Error("constructor is not allowed as a property");
|
|
24161
24193
|
}
|
|
24162
|
-
var
|
|
24194
|
+
var UM = (e, t) => {
|
|
24163
24195
|
ud(t);
|
|
24164
24196
|
for (let r = 0; r < t.length; r++) {
|
|
24165
24197
|
const n = t[r];
|
|
@@ -24240,14 +24272,14 @@ function No(e, t, r = []) {
|
|
|
24240
24272
|
No(a, t, [...r, ...zn(l)]);
|
|
24241
24273
|
}), t(n, r);
|
|
24242
24274
|
}
|
|
24243
|
-
function
|
|
24275
|
+
function BM(e, t, r) {
|
|
24244
24276
|
return No(t, (n, s) => {
|
|
24245
|
-
e = Do(e, s, (a) =>
|
|
24277
|
+
e = Do(e, s, (a) => FM(a, n, r));
|
|
24246
24278
|
}), e;
|
|
24247
24279
|
}
|
|
24248
|
-
function
|
|
24280
|
+
function RM(e, t) {
|
|
24249
24281
|
function r(n, s) {
|
|
24250
|
-
const a =
|
|
24282
|
+
const a = UM(e, zn(s));
|
|
24251
24283
|
n.map(zn).forEach((l) => {
|
|
24252
24284
|
e = Do(e, l, () => a);
|
|
24253
24285
|
});
|
|
@@ -24261,12 +24293,12 @@ function VM(e, t) {
|
|
|
24261
24293
|
yn(t, r);
|
|
24262
24294
|
return e;
|
|
24263
24295
|
}
|
|
24264
|
-
var
|
|
24265
|
-
function
|
|
24296
|
+
var VM = (e, t) => ss(e) || Er(e) || as(e) || os(e) || ad(e, t);
|
|
24297
|
+
function HM(e, t, r) {
|
|
24266
24298
|
const n = r.get(e);
|
|
24267
24299
|
n ? n.push(t) : r.set(e, [t]);
|
|
24268
24300
|
}
|
|
24269
|
-
function
|
|
24301
|
+
function QM(e, t) {
|
|
24270
24302
|
const r = {};
|
|
24271
24303
|
let n;
|
|
24272
24304
|
return e.forEach((s) => {
|
|
@@ -24279,16 +24311,16 @@ function GM(e, t) {
|
|
|
24279
24311
|
}
|
|
24280
24312
|
var dd = (e, t, r, n, s = [], a = [], l = /* @__PURE__ */ new Map()) => {
|
|
24281
24313
|
var i;
|
|
24282
|
-
const d =
|
|
24314
|
+
const d = kM(e);
|
|
24283
24315
|
if (!d) {
|
|
24284
|
-
|
|
24316
|
+
HM(e, s, t);
|
|
24285
24317
|
const v = l.get(e);
|
|
24286
24318
|
if (v)
|
|
24287
24319
|
return n ? {
|
|
24288
24320
|
transformedValue: null
|
|
24289
24321
|
} : v;
|
|
24290
24322
|
}
|
|
24291
|
-
if (!
|
|
24323
|
+
if (!VM(e, r)) {
|
|
24292
24324
|
const v = Vl(e, r), $ = v ? {
|
|
24293
24325
|
transformedValue: v.value,
|
|
24294
24326
|
annotations: [v.type]
|
|
@@ -24327,13 +24359,13 @@ function cd(e) {
|
|
|
24327
24359
|
function Hl(e) {
|
|
24328
24360
|
return cd(e) === "Array";
|
|
24329
24361
|
}
|
|
24330
|
-
function
|
|
24362
|
+
function GM(e) {
|
|
24331
24363
|
if (cd(e) !== "Object")
|
|
24332
24364
|
return !1;
|
|
24333
24365
|
const t = Object.getPrototypeOf(e);
|
|
24334
24366
|
return !!t && t.constructor === Object && t === Object.prototype;
|
|
24335
24367
|
}
|
|
24336
|
-
function
|
|
24368
|
+
function ZM(e, t, r, n, s) {
|
|
24337
24369
|
const a = {}.propertyIsEnumerable.call(n, t) ? "enumerable" : "nonenumerable";
|
|
24338
24370
|
a === "enumerable" && (e[t] = r), s && a === "nonenumerable" && Object.defineProperty(e, t, {
|
|
24339
24371
|
value: r,
|
|
@@ -24345,14 +24377,14 @@ function WM(e, t, r, n, s) {
|
|
|
24345
24377
|
function $o(e, t = {}) {
|
|
24346
24378
|
if (Hl(e))
|
|
24347
24379
|
return e.map((s) => $o(s, t));
|
|
24348
|
-
if (!
|
|
24380
|
+
if (!GM(e))
|
|
24349
24381
|
return e;
|
|
24350
24382
|
const r = Object.getOwnPropertyNames(e), n = Object.getOwnPropertySymbols(e);
|
|
24351
24383
|
return [...r, ...n].reduce((s, a) => {
|
|
24352
24384
|
if (Hl(t.props) && !t.props.includes(a))
|
|
24353
24385
|
return s;
|
|
24354
24386
|
const l = e[a], i = $o(l, t);
|
|
24355
|
-
return
|
|
24387
|
+
return ZM(s, a, i, e, t.nonenumerable), s;
|
|
24356
24388
|
}, {});
|
|
24357
24389
|
}
|
|
24358
24390
|
var He = class {
|
|
@@ -24360,10 +24392,10 @@ var He = class {
|
|
|
24360
24392
|
* @param dedupeReferentialEqualities If true, SuperJSON will make sure only one instance of referentially equal objects are serialized and the rest are replaced with `null`.
|
|
24361
24393
|
*/
|
|
24362
24394
|
constructor({ dedupe: e = !1 } = {}) {
|
|
24363
|
-
this.classRegistry = new
|
|
24395
|
+
this.classRegistry = new MM(), this.symbolRegistry = new Xu((t) => {
|
|
24364
24396
|
var r;
|
|
24365
24397
|
return (r = t.description) != null ? r : "";
|
|
24366
|
-
}), this.customTransformerRegistry = new
|
|
24398
|
+
}), this.customTransformerRegistry = new $M(), this.allowedErrorProps = [], this.dedupe = e;
|
|
24367
24399
|
}
|
|
24368
24400
|
serialize(e) {
|
|
24369
24401
|
const t = /* @__PURE__ */ new Map(), r = dd(e, t, this, this.dedupe), n = {
|
|
@@ -24373,7 +24405,7 @@ var He = class {
|
|
|
24373
24405
|
...n.meta,
|
|
24374
24406
|
values: r.annotations
|
|
24375
24407
|
});
|
|
24376
|
-
const s =
|
|
24408
|
+
const s = QM(t, this.dedupe);
|
|
24377
24409
|
return s && (n.meta = {
|
|
24378
24410
|
...n.meta,
|
|
24379
24411
|
referentialEqualities: s
|
|
@@ -24382,7 +24414,7 @@ var He = class {
|
|
|
24382
24414
|
deserialize(e) {
|
|
24383
24415
|
const { json: t, meta: r } = e;
|
|
24384
24416
|
let n = $o(t);
|
|
24385
|
-
return r != null && r.values && (n =
|
|
24417
|
+
return r != null && r.values && (n = BM(n, r.values, this)), r != null && r.referentialEqualities && (n = RM(n, r.referentialEqualities)), n;
|
|
24386
24418
|
}
|
|
24387
24419
|
stringify(e) {
|
|
24388
24420
|
return JSON.stringify(this.serialize(e));
|
|
@@ -24478,7 +24510,7 @@ var Jt;
|
|
|
24478
24510
|
e.direct = "direct", e.patchObject = "patch object", e.patchFunction = "patch function";
|
|
24479
24511
|
})(Jt || (Jt = {}));
|
|
24480
24512
|
const si = typeof window == "object" && window.window === window ? window : typeof self == "object" && self.self === self ? self : typeof global == "object" && global.global === global ? global : typeof globalThis == "object" ? globalThis : { HTMLElement: null };
|
|
24481
|
-
function
|
|
24513
|
+
function WM(e, { autoBom: t = !1 } = {}) {
|
|
24482
24514
|
return t && /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type) ? new Blob(["\uFEFF", e], { type: e.type }) : e;
|
|
24483
24515
|
}
|
|
24484
24516
|
function $0(e, t, r) {
|
|
@@ -24523,16 +24555,16 @@ function ks(e) {
|
|
|
24523
24555
|
}
|
|
24524
24556
|
const Os = typeof navigator == "object" ? navigator : { userAgent: "" }, fd = /Macintosh/.test(Os.userAgent) && /AppleWebKit/.test(Os.userAgent) && !/Safari/.test(Os.userAgent), gd = ir ? (
|
|
24525
24557
|
// Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program
|
|
24526
|
-
typeof HTMLAnchorElement < "u" && "download" in HTMLAnchorElement.prototype && !fd ?
|
|
24558
|
+
typeof HTMLAnchorElement < "u" && "download" in HTMLAnchorElement.prototype && !fd ? KM : (
|
|
24527
24559
|
// Use msSaveOrOpenBlob as a second approach
|
|
24528
|
-
"msSaveOrOpenBlob" in Os ?
|
|
24560
|
+
"msSaveOrOpenBlob" in Os ? JM : (
|
|
24529
24561
|
// Fallback to using FileReader and a popup
|
|
24530
|
-
|
|
24562
|
+
XM
|
|
24531
24563
|
)
|
|
24532
24564
|
)
|
|
24533
24565
|
) : () => {
|
|
24534
24566
|
};
|
|
24535
|
-
function
|
|
24567
|
+
function KM(e, t = "download", r) {
|
|
24536
24568
|
const n = document.createElement("a");
|
|
24537
24569
|
n.download = t, n.rel = "noopener", typeof e == "string" ? (n.href = e, n.origin !== location.origin ? pd(n.href) ? $0(e, t, r) : (n.target = "_blank", ks(n)) : ks(n)) : (n.href = URL.createObjectURL(e), setTimeout(function() {
|
|
24538
24570
|
URL.revokeObjectURL(n.href);
|
|
@@ -24540,7 +24572,7 @@ function JM(e, t = "download", r) {
|
|
|
24540
24572
|
ks(n);
|
|
24541
24573
|
}, 0));
|
|
24542
24574
|
}
|
|
24543
|
-
function
|
|
24575
|
+
function JM(e, t = "download", r) {
|
|
24544
24576
|
if (typeof e == "string")
|
|
24545
24577
|
if (pd(e))
|
|
24546
24578
|
$0(e, t, r);
|
|
@@ -24551,9 +24583,9 @@ function XM(e, t = "download", r) {
|
|
|
24551
24583
|
});
|
|
24552
24584
|
}
|
|
24553
24585
|
else
|
|
24554
|
-
navigator.msSaveOrOpenBlob(
|
|
24586
|
+
navigator.msSaveOrOpenBlob(WM(e, r), t);
|
|
24555
24587
|
}
|
|
24556
|
-
function
|
|
24588
|
+
function XM(e, t, r, n) {
|
|
24557
24589
|
if (n = n || open("", "_blank"), n && (n.document.title = n.document.body.innerText = "downloading..."), typeof e == "string")
|
|
24558
24590
|
return $0(e, t, r);
|
|
24559
24591
|
const s = e.type === "application/octet-stream", a = /constructor/i.test(String(si.HTMLElement)) || "safari" in si, l = /CriOS\/[\d]+/.test(navigator.userAgent);
|
|
@@ -24586,7 +24618,7 @@ function hd() {
|
|
|
24586
24618
|
function vd(e) {
|
|
24587
24619
|
return e instanceof Error && e.message.toLowerCase().includes("document is not focused") ? (ot('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.', "warn"), !0) : !1;
|
|
24588
24620
|
}
|
|
24589
|
-
async function
|
|
24621
|
+
async function qM(e) {
|
|
24590
24622
|
if (!hd())
|
|
24591
24623
|
try {
|
|
24592
24624
|
await navigator.clipboard.writeText(JSON.stringify(e.state.value)), ot("Global state copied to clipboard.");
|
|
@@ -24596,7 +24628,7 @@ async function eD(e) {
|
|
|
24596
24628
|
ot("Failed to serialize the state. Check the console for more details.", "error"), console.error(t);
|
|
24597
24629
|
}
|
|
24598
24630
|
}
|
|
24599
|
-
async function
|
|
24631
|
+
async function eD(e) {
|
|
24600
24632
|
if (!hd())
|
|
24601
24633
|
try {
|
|
24602
24634
|
md(e, JSON.parse(await navigator.clipboard.readText())), ot("Global state pasted from clipboard.");
|
|
@@ -24606,7 +24638,7 @@ async function tD(e) {
|
|
|
24606
24638
|
ot("Failed to deserialize the state from clipboard. Check the console for more details.", "error"), console.error(t);
|
|
24607
24639
|
}
|
|
24608
24640
|
}
|
|
24609
|
-
async function
|
|
24641
|
+
async function tD(e) {
|
|
24610
24642
|
try {
|
|
24611
24643
|
gd(new Blob([JSON.stringify(e.state.value)], {
|
|
24612
24644
|
type: "text/plain;charset=utf-8"
|
|
@@ -24616,7 +24648,7 @@ async function rD(e) {
|
|
|
24616
24648
|
}
|
|
24617
24649
|
}
|
|
24618
24650
|
let ar;
|
|
24619
|
-
function
|
|
24651
|
+
function rD() {
|
|
24620
24652
|
ar || (ar = document.createElement("input"), ar.type = "file", ar.accept = ".json");
|
|
24621
24653
|
function e() {
|
|
24622
24654
|
return new Promise((t, r) => {
|
|
@@ -24631,9 +24663,9 @@ function nD() {
|
|
|
24631
24663
|
}
|
|
24632
24664
|
return e;
|
|
24633
24665
|
}
|
|
24634
|
-
async function
|
|
24666
|
+
async function nD(e) {
|
|
24635
24667
|
try {
|
|
24636
|
-
const r = await
|
|
24668
|
+
const r = await rD()();
|
|
24637
24669
|
if (!r)
|
|
24638
24670
|
return;
|
|
24639
24671
|
const { text: n, file: s } = r;
|
|
@@ -24656,7 +24688,7 @@ function Ut(e) {
|
|
|
24656
24688
|
};
|
|
24657
24689
|
}
|
|
24658
24690
|
const yd = "🍍 Pinia (root)", js = "_root";
|
|
24659
|
-
function
|
|
24691
|
+
function sD(e) {
|
|
24660
24692
|
return x0(e) ? {
|
|
24661
24693
|
id: js,
|
|
24662
24694
|
label: yd
|
|
@@ -24665,7 +24697,7 @@ function aD(e) {
|
|
|
24665
24697
|
label: e.$id
|
|
24666
24698
|
};
|
|
24667
24699
|
}
|
|
24668
|
-
function
|
|
24700
|
+
function aD(e) {
|
|
24669
24701
|
if (x0(e)) {
|
|
24670
24702
|
const r = Array.from(e._s.keys()), n = e._s;
|
|
24671
24703
|
return {
|
|
@@ -24701,7 +24733,7 @@ function oD(e) {
|
|
|
24701
24733
|
value: e[r]
|
|
24702
24734
|
}))), t;
|
|
24703
24735
|
}
|
|
24704
|
-
function
|
|
24736
|
+
function oD(e) {
|
|
24705
24737
|
return e ? Array.isArray(e) ? e.reduce((t, r) => (t.keys.push(r.key), t.operations.push(r.type), t.oldValue[r.key] = r.oldValue, t.newValue[r.key] = r.newValue, t), {
|
|
24706
24738
|
oldValue: {},
|
|
24707
24739
|
keys: [],
|
|
@@ -24714,7 +24746,7 @@ function lD(e) {
|
|
|
24714
24746
|
newValue: e.newValue
|
|
24715
24747
|
} : {};
|
|
24716
24748
|
}
|
|
24717
|
-
function
|
|
24749
|
+
function lD(e) {
|
|
24718
24750
|
switch (e) {
|
|
24719
24751
|
case Jt.direct:
|
|
24720
24752
|
return "mutation";
|
|
@@ -24727,8 +24759,8 @@ function iD(e) {
|
|
|
24727
24759
|
}
|
|
24728
24760
|
}
|
|
24729
24761
|
let ln = !0;
|
|
24730
|
-
const Ls = [], Ur = "pinia:mutations", gt = "pinia", { assign:
|
|
24731
|
-
function
|
|
24762
|
+
const Ls = [], Ur = "pinia:mutations", gt = "pinia", { assign: iD } = Object, qs = (e) => "🍍 " + e;
|
|
24763
|
+
function uD(e, t) {
|
|
24732
24764
|
Ku({
|
|
24733
24765
|
id: "dev.esm.pinia",
|
|
24734
24766
|
label: "Pinia 🍍",
|
|
@@ -24751,28 +24783,28 @@ function dD(e, t) {
|
|
|
24751
24783
|
{
|
|
24752
24784
|
icon: "content_copy",
|
|
24753
24785
|
action: () => {
|
|
24754
|
-
|
|
24786
|
+
qM(t);
|
|
24755
24787
|
},
|
|
24756
24788
|
tooltip: "Serialize and copy the state"
|
|
24757
24789
|
},
|
|
24758
24790
|
{
|
|
24759
24791
|
icon: "content_paste",
|
|
24760
24792
|
action: async () => {
|
|
24761
|
-
await
|
|
24793
|
+
await eD(t), r.sendInspectorTree(gt), r.sendInspectorState(gt);
|
|
24762
24794
|
},
|
|
24763
24795
|
tooltip: "Replace the state with the content of your clipboard"
|
|
24764
24796
|
},
|
|
24765
24797
|
{
|
|
24766
24798
|
icon: "save",
|
|
24767
24799
|
action: () => {
|
|
24768
|
-
|
|
24800
|
+
tD(t);
|
|
24769
24801
|
},
|
|
24770
24802
|
tooltip: "Save the state as a JSON file"
|
|
24771
24803
|
},
|
|
24772
24804
|
{
|
|
24773
24805
|
icon: "folder_open",
|
|
24774
24806
|
action: async () => {
|
|
24775
|
-
await
|
|
24807
|
+
await nD(t), r.sendInspectorTree(gt), r.sendInspectorState(gt);
|
|
24776
24808
|
},
|
|
24777
24809
|
tooltip: "Import the state from a JSON file"
|
|
24778
24810
|
}
|
|
@@ -24829,14 +24861,14 @@ function dD(e, t) {
|
|
|
24829
24861
|
}), r.on.getInspectorTree((n) => {
|
|
24830
24862
|
if (n.app === e && n.inspectorId === gt) {
|
|
24831
24863
|
let s = [t];
|
|
24832
|
-
s = s.concat(Array.from(t._s.values())), n.rootNodes = (n.filter ? s.filter((a) => "$id" in a ? a.$id.toLowerCase().includes(n.filter.toLowerCase()) : yd.toLowerCase().includes(n.filter.toLowerCase())) : s).map(
|
|
24864
|
+
s = s.concat(Array.from(t._s.values())), n.rootNodes = (n.filter ? s.filter((a) => "$id" in a ? a.$id.toLowerCase().includes(n.filter.toLowerCase()) : yd.toLowerCase().includes(n.filter.toLowerCase())) : s).map(sD);
|
|
24833
24865
|
}
|
|
24834
24866
|
}), globalThis.$pinia = t, r.on.getInspectorState((n) => {
|
|
24835
24867
|
if (n.app === e && n.inspectorId === gt) {
|
|
24836
24868
|
const s = n.nodeId === js ? t : t._s.get(n.nodeId);
|
|
24837
24869
|
if (!s)
|
|
24838
24870
|
return;
|
|
24839
|
-
s && (n.nodeId !== js && (globalThis.$store = Rn(s)), n.state =
|
|
24871
|
+
s && (n.nodeId !== js && (globalThis.$store = Rn(s)), n.state = aD(s));
|
|
24840
24872
|
}
|
|
24841
24873
|
}), r.on.editInspectorState((n) => {
|
|
24842
24874
|
if (n.app === e && n.inspectorId === gt) {
|
|
@@ -24861,7 +24893,7 @@ Only state can be modified.`);
|
|
|
24861
24893
|
});
|
|
24862
24894
|
});
|
|
24863
24895
|
}
|
|
24864
|
-
function
|
|
24896
|
+
function dD(e, t) {
|
|
24865
24897
|
Ls.includes(qs(t.$id)) || Ls.push(qs(t.$id)), Ku({
|
|
24866
24898
|
id: "dev.esm.pinia",
|
|
24867
24899
|
label: "Pinia 🍍",
|
|
@@ -24954,8 +24986,8 @@ function cD(e, t) {
|
|
|
24954
24986
|
return;
|
|
24955
24987
|
const u = {
|
|
24956
24988
|
time: n(),
|
|
24957
|
-
title:
|
|
24958
|
-
data:
|
|
24989
|
+
title: lD(i),
|
|
24990
|
+
data: iD({ store: Ut(t.$id) }, oD(l)),
|
|
24959
24991
|
groupId: Nr
|
|
24960
24992
|
};
|
|
24961
24993
|
i === Jt.patchFunction ? u.subtitle = "⤵️" : i === Jt.patchObject ? u.subtitle = "🧩" : l && !Array.isArray(l) && (u.subtitle = l.type), l && (u.data["rawEvent(s)"] = {
|
|
@@ -25009,7 +25041,7 @@ function ai(e, t, r) {
|
|
|
25009
25041
|
return Nr = void 0, i;
|
|
25010
25042
|
};
|
|
25011
25043
|
}
|
|
25012
|
-
function
|
|
25044
|
+
function cD({ app: e, store: t, options: r }) {
|
|
25013
25045
|
if (!t.$id.startsWith("__hot:")) {
|
|
25014
25046
|
if (t._isOptionsAPI = !!r.state, !t._p._testing) {
|
|
25015
25047
|
ai(t, Object.keys(r.actions), t._isOptionsAPI);
|
|
@@ -25018,19 +25050,19 @@ function pD({ app: e, store: t, options: r }) {
|
|
|
25018
25050
|
n.apply(this, arguments), ai(t, Object.keys(s._hmrPayload.actions), !!t._isOptionsAPI);
|
|
25019
25051
|
};
|
|
25020
25052
|
}
|
|
25021
|
-
|
|
25053
|
+
dD(
|
|
25022
25054
|
e,
|
|
25023
25055
|
// FIXME: is there a way to allow the assignment from Store<Id, S, G, A> to StoreGeneric?
|
|
25024
25056
|
t
|
|
25025
25057
|
);
|
|
25026
25058
|
}
|
|
25027
25059
|
}
|
|
25028
|
-
function
|
|
25060
|
+
function pD() {
|
|
25029
25061
|
const e = xi(!0), t = e.run(() => B({}));
|
|
25030
25062
|
let r = [], n = [];
|
|
25031
25063
|
const s = Dr({
|
|
25032
25064
|
install(a) {
|
|
25033
|
-
ls(s), s._a = a, a.provide(Xs, s), a.config.globalProperties.$pinia = s, process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" && ir &&
|
|
25065
|
+
ls(s), s._a = a, a.provide(Xs, s), a.config.globalProperties.$pinia = s, process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" && ir && uD(a, s), n.forEach((l) => r.push(l)), n = [];
|
|
25034
25066
|
},
|
|
25035
25067
|
use(a) {
|
|
25036
25068
|
return this._a ? r.push(a) : n.push(a), this;
|
|
@@ -25043,7 +25075,7 @@ function fD() {
|
|
|
25043
25075
|
_s: /* @__PURE__ */ new Map(),
|
|
25044
25076
|
state: t
|
|
25045
25077
|
});
|
|
25046
|
-
return process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" && ir && typeof Proxy < "u" && s.use(
|
|
25078
|
+
return process.env.NODE_ENV !== "production" && process.env.NODE_ENV !== "test" && ir && typeof Proxy < "u" && s.use(cD), s;
|
|
25047
25079
|
}
|
|
25048
25080
|
function Cd(e, t) {
|
|
25049
25081
|
for (const r in t) {
|
|
@@ -25069,7 +25101,7 @@ function rn(e, ...t) {
|
|
|
25069
25101
|
r(...t);
|
|
25070
25102
|
});
|
|
25071
25103
|
}
|
|
25072
|
-
const
|
|
25104
|
+
const fD = (e) => e(), li = Symbol(), za = Symbol();
|
|
25073
25105
|
function xo(e, t) {
|
|
25074
25106
|
e instanceof Map && t instanceof Map ? t.forEach((r, n) => e.set(n, r)) : e instanceof Set && t instanceof Set && t.forEach(e.add, e);
|
|
25075
25107
|
for (const r in t) {
|
|
@@ -25080,12 +25112,12 @@ function xo(e, t) {
|
|
|
25080
25112
|
}
|
|
25081
25113
|
return e;
|
|
25082
25114
|
}
|
|
25083
|
-
const
|
|
25115
|
+
const gD = process.env.NODE_ENV !== "production" ? Symbol("pinia:skipHydration") : (
|
|
25084
25116
|
/* istanbul ignore next */
|
|
25085
25117
|
Symbol()
|
|
25086
25118
|
);
|
|
25087
|
-
function
|
|
25088
|
-
return !Jr(e) || !Object.prototype.hasOwnProperty.call(e,
|
|
25119
|
+
function hD(e) {
|
|
25120
|
+
return !Jr(e) || !Object.prototype.hasOwnProperty.call(e, gD);
|
|
25089
25121
|
}
|
|
25090
25122
|
const { assign: Ot } = Object;
|
|
25091
25123
|
function ii(e) {
|
|
@@ -25215,11 +25247,11 @@ function _o(e, t, r = {}, n, s, a) {
|
|
|
25215
25247
|
// setupStore
|
|
25216
25248
|
) : D);
|
|
25217
25249
|
n._s.set(e, M);
|
|
25218
|
-
const A = (n._a && n._a.runWithContext ||
|
|
25250
|
+
const A = (n._a && n._a.runWithContext || fD)(() => n._e.run(() => (l = xi()).run(() => t({ action: I }))));
|
|
25219
25251
|
for (const j in A) {
|
|
25220
25252
|
const Y = A[j];
|
|
25221
25253
|
if (Ie(Y) && !ii(Y) || ko(Y))
|
|
25222
|
-
process.env.NODE_ENV !== "production" && s ? $.value[j] = dn(A, j) : a || (v &&
|
|
25254
|
+
process.env.NODE_ENV !== "production" && s ? $.value[j] = dn(A, j) : a || (v && hD(Y) && (Ie(Y) ? Y.value = v[j] : xo(Y, v[j])), n.state.value[e][j] = Y), process.env.NODE_ENV !== "production" && _.state.push(j);
|
|
25223
25255
|
else if (typeof Y == "function") {
|
|
25224
25256
|
const re = process.env.NODE_ENV !== "production" && s ? Y : I(Y, j);
|
|
25225
25257
|
A[j] = re, process.env.NODE_ENV !== "production" && (_.actions[j] = Y), i.actions[j] = Y;
|
|
@@ -25301,7 +25333,7 @@ Found in store "${M.$id}".`), v && a && r.hydrate && r.hydrate(M.$state, v), u =
|
|
|
25301
25333
|
}
|
|
25302
25334
|
/*! #__NO_SIDE_EFFECTS__ */
|
|
25303
25335
|
// @__NO_SIDE_EFFECTS__
|
|
25304
|
-
function
|
|
25336
|
+
function vD(e, t, r) {
|
|
25305
25337
|
let n;
|
|
25306
25338
|
const s = typeof t == "function";
|
|
25307
25339
|
n = s ? r : t;
|
|
@@ -25331,14 +25363,14 @@ This will fail in production.`);
|
|
|
25331
25363
|
}
|
|
25332
25364
|
return a.$id = e, a;
|
|
25333
25365
|
}
|
|
25334
|
-
const
|
|
25366
|
+
const mD = (e) => ({
|
|
25335
25367
|
...e,
|
|
25336
25368
|
id: Math.random() * 1e3
|
|
25337
|
-
}), Dd = /* @__PURE__ */
|
|
25369
|
+
}), Dd = /* @__PURE__ */ vD("snackbar-store", () => {
|
|
25338
25370
|
const e = B([]), t = (s) => {
|
|
25339
25371
|
e.value = e.value.filter((a) => a.id !== s.id);
|
|
25340
25372
|
}, r = (s) => {
|
|
25341
|
-
const a =
|
|
25373
|
+
const a = mD(s);
|
|
25342
25374
|
e.value.push({ ...a, defaultAction: () => t(a) }), setTimeout(() => {
|
|
25343
25375
|
t(a);
|
|
25344
25376
|
}, s.duration || 4e3);
|
|
@@ -25350,7 +25382,7 @@ const yD = (e) => ({
|
|
|
25350
25382
|
r({ ...s });
|
|
25351
25383
|
}
|
|
25352
25384
|
};
|
|
25353
|
-
}),
|
|
25385
|
+
}), yD = () => {
|
|
25354
25386
|
const e = Dd();
|
|
25355
25387
|
return {
|
|
25356
25388
|
showSnackbar: (l) => {
|
|
@@ -25369,13 +25401,13 @@ const yD = (e) => ({
|
|
|
25369
25401
|
e.message({ ...l, tone: "caution" });
|
|
25370
25402
|
}
|
|
25371
25403
|
};
|
|
25372
|
-
},
|
|
25404
|
+
}, bD = {
|
|
25373
25405
|
key: 0,
|
|
25374
25406
|
class: "snackbar-wrapper slide-in-element"
|
|
25375
|
-
},
|
|
25407
|
+
}, CD = /* @__PURE__ */ De({
|
|
25376
25408
|
__name: "snackbar",
|
|
25377
25409
|
setup(e, { expose: t }) {
|
|
25378
|
-
const r =
|
|
25410
|
+
const r = pD(), n = Dd(r), { showSnackbar: s, showSuccess: a, showInformation: l, showDanger: i, showCaution: d } = yD();
|
|
25379
25411
|
return t({
|
|
25380
25412
|
showSnackbar: (u) => s(u),
|
|
25381
25413
|
showSuccess: (u) => a(u),
|
|
@@ -25385,7 +25417,7 @@ const yD = (e) => ({
|
|
|
25385
25417
|
}), (u, c) => (h(), oe(lc, { to: "body" }, [
|
|
25386
25418
|
R(wr, { name: "snackbar" }, {
|
|
25387
25419
|
default: W(() => [
|
|
25388
|
-
o(n).snacks.length > 0 ? (h(), b("div",
|
|
25420
|
+
o(n).snacks.length > 0 ? (h(), b("div", bD, [
|
|
25389
25421
|
R($i, {
|
|
25390
25422
|
name: "snackbar",
|
|
25391
25423
|
tag: "ul"
|
|
@@ -25422,16 +25454,16 @@ const yD = (e) => ({
|
|
|
25422
25454
|
})
|
|
25423
25455
|
]));
|
|
25424
25456
|
}
|
|
25425
|
-
}),
|
|
25457
|
+
}), MD = /* @__PURE__ */ nr(CD, [["__scopeId", "data-v-06cc3101"]]), DD = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25426
25458
|
__proto__: null,
|
|
25427
|
-
default:
|
|
25428
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
25459
|
+
default: MD
|
|
25460
|
+
}, Symbol.toStringTag, { value: "Module" })), ND = ["horizontal", "vertical"], Nd = ["compact", "solid"], $D = {
|
|
25429
25461
|
/**
|
|
25430
25462
|
* @description Variant of the stepper
|
|
25431
25463
|
*/
|
|
25432
25464
|
variant: {
|
|
25433
25465
|
type: String,
|
|
25434
|
-
validator: (e) =>
|
|
25466
|
+
validator: (e) => ND.includes(e),
|
|
25435
25467
|
default: "vertical"
|
|
25436
25468
|
},
|
|
25437
25469
|
/**
|
|
@@ -25461,7 +25493,7 @@ const yD = (e) => ({
|
|
|
25461
25493
|
validator: (e) => Nd.includes(e),
|
|
25462
25494
|
default: "compact"
|
|
25463
25495
|
}
|
|
25464
|
-
},
|
|
25496
|
+
}, xD = ["pending", "active", "completed"], _D = {
|
|
25465
25497
|
/**
|
|
25466
25498
|
* @description Step number
|
|
25467
25499
|
*/
|
|
@@ -25485,7 +25517,7 @@ const yD = (e) => ({
|
|
|
25485
25517
|
*/
|
|
25486
25518
|
status: {
|
|
25487
25519
|
type: String,
|
|
25488
|
-
validator: (e) =>
|
|
25520
|
+
validator: (e) => xD.includes(e),
|
|
25489
25521
|
default: "pending"
|
|
25490
25522
|
},
|
|
25491
25523
|
/**
|
|
@@ -25495,9 +25527,9 @@ const yD = (e) => ({
|
|
|
25495
25527
|
type: String,
|
|
25496
25528
|
validator: (e) => Nd.includes(e)
|
|
25497
25529
|
}
|
|
25498
|
-
},
|
|
25530
|
+
}, ID = {
|
|
25499
25531
|
click: (e) => e instanceof MouseEvent
|
|
25500
|
-
},
|
|
25532
|
+
}, SD = (e, t) => ({
|
|
25501
25533
|
stepClasses: P(() => {
|
|
25502
25534
|
const s = U(
|
|
25503
25535
|
"spr-flex spr-gap-2 spr-items-top",
|
|
@@ -25547,10 +25579,10 @@ const yD = (e) => ({
|
|
|
25547
25579
|
}
|
|
25548
25580
|
}), $d = /* @__PURE__ */ De({
|
|
25549
25581
|
__name: "step",
|
|
25550
|
-
props:
|
|
25551
|
-
emits:
|
|
25582
|
+
props: _D,
|
|
25583
|
+
emits: ID,
|
|
25552
25584
|
setup(e, { emit: t }) {
|
|
25553
|
-
const r = e, n = t, { stepClasses: s } =
|
|
25585
|
+
const r = e, n = t, { stepClasses: s } = SD(r, n);
|
|
25554
25586
|
return (a, l) => (h(), b("div", {
|
|
25555
25587
|
class: w(o(s).baseClass)
|
|
25556
25588
|
}, [
|
|
@@ -25582,10 +25614,10 @@ const yD = (e) => ({
|
|
|
25582
25614
|
], 2)
|
|
25583
25615
|
], 2));
|
|
25584
25616
|
}
|
|
25585
|
-
}),
|
|
25617
|
+
}), wD = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25586
25618
|
__proto__: null,
|
|
25587
25619
|
default: $d
|
|
25588
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
25620
|
+
}, Symbol.toStringTag, { value: "Module" })), AD = (e) => ({
|
|
25589
25621
|
stepperClasses: P(() => {
|
|
25590
25622
|
const n = U("spr-flex spr-gap-size-spacing-xs ", {
|
|
25591
25623
|
"spr-flex-col spr-mb-size-spacing-xs": e.variant === "vertical",
|
|
@@ -25608,11 +25640,11 @@ const yD = (e) => ({
|
|
|
25608
25640
|
};
|
|
25609
25641
|
}),
|
|
25610
25642
|
getLineColorClass: (n) => n.status === "completed" ? "spr-bg-kangkong-700" : "spr-bg-mushroom-200"
|
|
25611
|
-
}),
|
|
25643
|
+
}), TD = /* @__PURE__ */ De({
|
|
25612
25644
|
__name: "stepper",
|
|
25613
|
-
props:
|
|
25645
|
+
props: $D,
|
|
25614
25646
|
setup(e) {
|
|
25615
|
-
const t = e, { stepperClasses: r, getLineColorClass: n } =
|
|
25647
|
+
const t = e, { stepperClasses: r, getLineColorClass: n } = AD(t);
|
|
25616
25648
|
return (s, a) => (h(), b("div", {
|
|
25617
25649
|
class: w(o(r).baseClass)
|
|
25618
25650
|
}, [
|
|
@@ -25638,16 +25670,16 @@ const yD = (e) => ({
|
|
|
25638
25670
|
], 2))), 128))
|
|
25639
25671
|
], 2));
|
|
25640
25672
|
}
|
|
25641
|
-
}),
|
|
25673
|
+
}), ED = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25642
25674
|
__proto__: null,
|
|
25643
|
-
default:
|
|
25644
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
25675
|
+
default: TD
|
|
25676
|
+
}, Symbol.toStringTag, { value: "Module" })), kD = ["default", "hover", "pressed", "disabled"], OD = {
|
|
25645
25677
|
/**
|
|
25646
25678
|
* @description Switch UI state when hovered, pressed, disabled
|
|
25647
25679
|
*/
|
|
25648
25680
|
state: {
|
|
25649
25681
|
type: String,
|
|
25650
|
-
validator: (e) =>
|
|
25682
|
+
validator: (e) => kD.includes(e),
|
|
25651
25683
|
default: "default"
|
|
25652
25684
|
},
|
|
25653
25685
|
/**
|
|
@@ -25672,7 +25704,7 @@ const yD = (e) => ({
|
|
|
25672
25704
|
type: String,
|
|
25673
25705
|
default: ""
|
|
25674
25706
|
}
|
|
25675
|
-
},
|
|
25707
|
+
}, jD = ["update:modelValue"], LD = (e) => {
|
|
25676
25708
|
const t = B(null), r = B(null), n = Vo(t), { pressed: s } = Bi({ target: r }), { disabled: a, state: l, modelValue: i } = Oe(e), d = Qt(), u = (!d.default || d.default().length === 0) && !d.leftText, c = !d.rightText, p = P(() => ({
|
|
25677
25709
|
...a.value && { ariaDisabled: !0 },
|
|
25678
25710
|
disabled: a.value,
|
|
@@ -25715,10 +25747,10 @@ const yD = (e) => ({
|
|
|
25715
25747
|
isLeftTextLabel: u,
|
|
25716
25748
|
isRightTextLabel: c
|
|
25717
25749
|
};
|
|
25718
|
-
},
|
|
25750
|
+
}, zD = ["for"], PD = ["id", "disabled"], YD = ["for"], FD = /* @__PURE__ */ De({
|
|
25719
25751
|
__name: "switch",
|
|
25720
|
-
props:
|
|
25721
|
-
emits:
|
|
25752
|
+
props: OD,
|
|
25753
|
+
emits: jD,
|
|
25722
25754
|
setup(e, { emit: t }) {
|
|
25723
25755
|
const r = e, n = t, s = r.id ? r.id + "_" + Math.random().toString(36).substring(2, 8) : "switch_input_" + Math.random().toString(36).substring(2, 8), a = Re(r, "modelValue", n), {
|
|
25724
25756
|
switchWrapperRef: l,
|
|
@@ -25729,7 +25761,7 @@ const yD = (e) => ({
|
|
|
25729
25761
|
switchInputClass: p,
|
|
25730
25762
|
isLeftTextLabel: g,
|
|
25731
25763
|
isRightTextLabel: f
|
|
25732
|
-
} =
|
|
25764
|
+
} = LD(r);
|
|
25733
25765
|
return (v, $) => (h(), b("div", st(o(d), {
|
|
25734
25766
|
class: ["spr-flex spr-items-center spr-gap-2", o(c)]
|
|
25735
25767
|
}), [
|
|
@@ -25741,7 +25773,7 @@ const yD = (e) => ({
|
|
|
25741
25773
|
de(v.$slots, "leftText", {}, () => [
|
|
25742
25774
|
de(v.$slots, "default", {}, void 0, !0)
|
|
25743
25775
|
], !0)
|
|
25744
|
-
], 8,
|
|
25776
|
+
], 8, zD)),
|
|
25745
25777
|
x("div", {
|
|
25746
25778
|
ref_key: "switchWrapperRef",
|
|
25747
25779
|
ref: l,
|
|
@@ -25762,7 +25794,7 @@ const yD = (e) => ({
|
|
|
25762
25794
|
o(p)
|
|
25763
25795
|
]),
|
|
25764
25796
|
disabled: r.disabled
|
|
25765
|
-
}, null, 10,
|
|
25797
|
+
}, null, 10, PD), [
|
|
25766
25798
|
[ic, o(a)]
|
|
25767
25799
|
]),
|
|
25768
25800
|
x("span", {
|
|
@@ -25778,20 +25810,20 @@ const yD = (e) => ({
|
|
|
25778
25810
|
class: "spr-cursor-pointer"
|
|
25779
25811
|
}, [
|
|
25780
25812
|
de(v.$slots, "rightText", {}, void 0, !0)
|
|
25781
|
-
], 8,
|
|
25813
|
+
], 8, YD))
|
|
25782
25814
|
], 16));
|
|
25783
25815
|
}
|
|
25784
|
-
}),
|
|
25816
|
+
}), UD = /* @__PURE__ */ nr(FD, [["__scopeId", "data-v-57bd4d3a"]]), BD = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25785
25817
|
__proto__: null,
|
|
25786
|
-
default:
|
|
25787
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
25818
|
+
default: UD
|
|
25819
|
+
}, Symbol.toStringTag, { value: "Module" })), RD = (e) => ({
|
|
25788
25820
|
tableActionsBaseClasses: "spr-h-max spr-p-size-spacing-2xs spr-flex spr-justify-between",
|
|
25789
25821
|
inputSearchClasses: "spr-w-full",
|
|
25790
25822
|
searchFilterClasses: "spr-size-[30%] spr-flex spr-gap-size-spacing-2xs",
|
|
25791
25823
|
updateSearchField: (a) => {
|
|
25792
25824
|
e("update:searchModel", a);
|
|
25793
25825
|
}
|
|
25794
|
-
}),
|
|
25826
|
+
}), VD = {
|
|
25795
25827
|
/**
|
|
25796
25828
|
* @description Toggle Search field,
|
|
25797
25829
|
*/
|
|
@@ -25820,19 +25852,19 @@ const yD = (e) => ({
|
|
|
25820
25852
|
type: String,
|
|
25821
25853
|
default: ""
|
|
25822
25854
|
}
|
|
25823
|
-
},
|
|
25855
|
+
}, HD = {
|
|
25824
25856
|
"update:searchModel": (e) => typeof e == "string"
|
|
25825
25857
|
}, xd = /* @__PURE__ */ De({
|
|
25826
25858
|
__name: "table-actions",
|
|
25827
|
-
props:
|
|
25828
|
-
emits:
|
|
25859
|
+
props: VD,
|
|
25860
|
+
emits: HD,
|
|
25829
25861
|
setup(e, { emit: t }) {
|
|
25830
25862
|
const r = t, n = e, {
|
|
25831
25863
|
tableActionsBaseClasses: s,
|
|
25832
25864
|
inputSearchClasses: a,
|
|
25833
25865
|
searchFilterClasses: l,
|
|
25834
25866
|
updateSearchField: i
|
|
25835
|
-
} =
|
|
25867
|
+
} = RD(r);
|
|
25836
25868
|
return (d, u) => (h(), b("div", {
|
|
25837
25869
|
class: w(o(s))
|
|
25838
25870
|
}, [
|
|
@@ -25867,18 +25899,18 @@ const yD = (e) => ({
|
|
|
25867
25899
|
])
|
|
25868
25900
|
], 2));
|
|
25869
25901
|
}
|
|
25870
|
-
}),
|
|
25902
|
+
}), QD = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25871
25903
|
__proto__: null,
|
|
25872
25904
|
default: xd
|
|
25873
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
25905
|
+
}, Symbol.toStringTag, { value: "Module" })), GD = (e) => e, ZD = {
|
|
25874
25906
|
/**
|
|
25875
25907
|
* @description Cell Content,
|
|
25876
25908
|
*/
|
|
25877
25909
|
cell: {
|
|
25878
|
-
type:
|
|
25910
|
+
type: GD(Object),
|
|
25879
25911
|
required: !0
|
|
25880
25912
|
}
|
|
25881
|
-
},
|
|
25913
|
+
}, WD = (e) => {
|
|
25882
25914
|
const t = P(() => {
|
|
25883
25915
|
var d;
|
|
25884
25916
|
return ((d = e.cell) == null ? void 0 : d.icon) || "";
|
|
@@ -25912,7 +25944,7 @@ const yD = (e) => ({
|
|
|
25912
25944
|
};
|
|
25913
25945
|
}, Io = /* @__PURE__ */ De({
|
|
25914
25946
|
__name: "table-chips-title",
|
|
25915
|
-
props:
|
|
25947
|
+
props: ZD,
|
|
25916
25948
|
setup(e) {
|
|
25917
25949
|
const t = e, {
|
|
25918
25950
|
computeIcon: r,
|
|
@@ -25922,7 +25954,7 @@ const yD = (e) => ({
|
|
|
25922
25954
|
computeBadgeVariant: l,
|
|
25923
25955
|
computeAvatarUrl: i,
|
|
25924
25956
|
computeAvatarVariant: d
|
|
25925
|
-
} =
|
|
25957
|
+
} = WD(t);
|
|
25926
25958
|
return (u, c) => {
|
|
25927
25959
|
var p;
|
|
25928
25960
|
return h(), oe(Qr, {
|
|
@@ -25937,13 +25969,13 @@ const yD = (e) => ({
|
|
|
25937
25969
|
}, null, 8, ["label", "icon", "icon-weight", "badge", "badge-text", "badge-variant", "avatar-url", "avatar-variant"]);
|
|
25938
25970
|
};
|
|
25939
25971
|
}
|
|
25940
|
-
}),
|
|
25972
|
+
}), KD = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
25941
25973
|
__proto__: null,
|
|
25942
25974
|
default: Io
|
|
25943
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
25975
|
+
}, Symbol.toStringTag, { value: "Module" })), JD = B([
|
|
25944
25976
|
{ text: "Sort Ascending", value: "asc", icon: "ph:sort-ascending", iconColor: "spr-text-color-supporting" },
|
|
25945
25977
|
{ text: "Sort Descending", value: "desc", icon: "ph:sort-descending", iconColor: "spr-text-color-supporting" }
|
|
25946
|
-
]),
|
|
25978
|
+
]), XD = {
|
|
25947
25979
|
id: {
|
|
25948
25980
|
type: String,
|
|
25949
25981
|
required: !0
|
|
@@ -25962,20 +25994,20 @@ const yD = (e) => ({
|
|
|
25962
25994
|
},
|
|
25963
25995
|
sortOptions: {
|
|
25964
25996
|
type: Array,
|
|
25965
|
-
default: () =>
|
|
25997
|
+
default: () => JD.value
|
|
25966
25998
|
}
|
|
25967
|
-
},
|
|
25999
|
+
}, qD = {
|
|
25968
26000
|
onApplyFilter: (e) => !!e,
|
|
25969
26001
|
onSelectAll: () => !0,
|
|
25970
26002
|
"update:selectedSort": (e) => Array.isArray(e),
|
|
25971
26003
|
"update:selectedFilters": (e) => Array.isArray(e)
|
|
25972
|
-
},
|
|
26004
|
+
}, eN = { class: "spr-w-full spr-border-0 spr-border-b spr-border-solid spr-border-color-weak spr-p-size-spacing-xs spr-flex spr-flex-row spr-justify-between spr-items-center" }, tN = { class: "spr-subheading-xs spr-capitalize" }, rN = {
|
|
25973
26005
|
key: 0,
|
|
25974
26006
|
class: "spr-border-0 spr-border-b spr-border-solid spr-border-color-weak"
|
|
25975
|
-
},
|
|
26007
|
+
}, nN = { key: 1 }, sN = { class: "spr-ms-auto spr-flex spr-items-center spr-py-size-spacing-5xs" }, _d = /* @__PURE__ */ De({
|
|
25976
26008
|
__name: "table-header-dropdown",
|
|
25977
|
-
props:
|
|
25978
|
-
emits:
|
|
26009
|
+
props: XD,
|
|
26010
|
+
emits: qD,
|
|
25979
26011
|
setup(e, { expose: t, emit: r }) {
|
|
25980
26012
|
const n = B(null), s = () => {
|
|
25981
26013
|
var p;
|
|
@@ -26010,8 +26042,8 @@ const yD = (e) => ({
|
|
|
26010
26042
|
"show-header": ""
|
|
26011
26043
|
}, {
|
|
26012
26044
|
header: W(() => [
|
|
26013
|
-
x("div",
|
|
26014
|
-
x("span",
|
|
26045
|
+
x("div", eN, [
|
|
26046
|
+
x("span", tN, q(a.header.name), 1),
|
|
26015
26047
|
R(Ee, {
|
|
26016
26048
|
size: "small",
|
|
26017
26049
|
variant: "secondary",
|
|
@@ -26025,7 +26057,7 @@ const yD = (e) => ({
|
|
|
26025
26057
|
])
|
|
26026
26058
|
]),
|
|
26027
26059
|
content: W(() => [
|
|
26028
|
-
a.isSortable ? (h(), b("div",
|
|
26060
|
+
a.isSortable ? (h(), b("div", rN, [
|
|
26029
26061
|
R(Tr, {
|
|
26030
26062
|
modelValue: i.value,
|
|
26031
26063
|
"onUpdate:modelValue": g[0] || (g[0] = (f) => i.value = f),
|
|
@@ -26034,7 +26066,7 @@ const yD = (e) => ({
|
|
|
26034
26066
|
"allow-deselect": !0
|
|
26035
26067
|
}, null, 8, ["modelValue", "menu-list"])
|
|
26036
26068
|
])) : L("", !0),
|
|
26037
|
-
a.header.filterList && a.header.filterList.length > 0 ? (h(), b("div",
|
|
26069
|
+
a.header.filterList && a.header.filterList.length > 0 ? (h(), b("div", nN, [
|
|
26038
26070
|
R(Tr, {
|
|
26039
26071
|
modelValue: d.value,
|
|
26040
26072
|
"onUpdate:modelValue": g[1] || (g[1] = (f) => d.value = f),
|
|
@@ -26045,7 +26077,7 @@ const yD = (e) => ({
|
|
|
26045
26077
|
])) : L("", !0)
|
|
26046
26078
|
]),
|
|
26047
26079
|
footer: W(() => [
|
|
26048
|
-
x("div",
|
|
26080
|
+
x("div", sN, [
|
|
26049
26081
|
R(Ee, {
|
|
26050
26082
|
tone: "success",
|
|
26051
26083
|
onClick: u
|
|
@@ -26079,18 +26111,18 @@ const yD = (e) => ({
|
|
|
26079
26111
|
_: 1
|
|
26080
26112
|
}, 8, ["id"]));
|
|
26081
26113
|
}
|
|
26082
|
-
}),
|
|
26114
|
+
}), aN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26083
26115
|
__proto__: null,
|
|
26084
26116
|
default: _d
|
|
26085
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
26117
|
+
}, Symbol.toStringTag, { value: "Module" })), oN = (e) => e, lN = {
|
|
26086
26118
|
/**
|
|
26087
26119
|
* @description Cell Content,
|
|
26088
26120
|
*/
|
|
26089
26121
|
cell: {
|
|
26090
|
-
type:
|
|
26122
|
+
type: oN(Object),
|
|
26091
26123
|
required: !0
|
|
26092
26124
|
}
|
|
26093
|
-
},
|
|
26125
|
+
}, iN = (e) => {
|
|
26094
26126
|
const t = P(() => {
|
|
26095
26127
|
var n;
|
|
26096
26128
|
return ((n = e.cell) == null ? void 0 : n.tone) || "plain";
|
|
@@ -26104,9 +26136,9 @@ const yD = (e) => ({
|
|
|
26104
26136
|
};
|
|
26105
26137
|
}, So = /* @__PURE__ */ De({
|
|
26106
26138
|
__name: "table-lozenge-title",
|
|
26107
|
-
props:
|
|
26139
|
+
props: lN,
|
|
26108
26140
|
setup(e) {
|
|
26109
|
-
const t = e, { computeTone: r, computeFill: n } =
|
|
26141
|
+
const t = e, { computeTone: r, computeFill: n } = iN(t);
|
|
26110
26142
|
return (s, a) => {
|
|
26111
26143
|
var l, i, d;
|
|
26112
26144
|
return h(), oe(ur, {
|
|
@@ -26130,10 +26162,10 @@ const yD = (e) => ({
|
|
|
26130
26162
|
]), 1032, ["label", "tone", "url", "fill"]);
|
|
26131
26163
|
};
|
|
26132
26164
|
}
|
|
26133
|
-
}),
|
|
26165
|
+
}), uN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26134
26166
|
__proto__: null,
|
|
26135
26167
|
default: So
|
|
26136
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
26168
|
+
}, Symbol.toStringTag, { value: "Module" })), dN = {
|
|
26137
26169
|
/**
|
|
26138
26170
|
* @description Toggle Search field,
|
|
26139
26171
|
*/
|
|
@@ -26189,12 +26221,12 @@ const yD = (e) => ({
|
|
|
26189
26221
|
type: Boolean,
|
|
26190
26222
|
default: !0
|
|
26191
26223
|
}
|
|
26192
|
-
},
|
|
26224
|
+
}, cN = {
|
|
26193
26225
|
"update:selectedRowCount": (e) => typeof e == "number",
|
|
26194
26226
|
"update:currentPage": (e) => typeof e == "number",
|
|
26195
26227
|
previous: () => !0,
|
|
26196
26228
|
next: () => !0
|
|
26197
|
-
},
|
|
26229
|
+
}, pN = (e, t) => {
|
|
26198
26230
|
const { selectedRowCount: r, totalItems: n, bordered: s, editableCurrentPage: a, showNumberOfRowsDropdown: l } = Oe(e), i = Re(e, "currentPage", t), d = P(() => {
|
|
26199
26231
|
const I = U("spr-p-size-spacing-xs spr-flex spr-justify-between spr-bg-white-50 spr-h-max", {
|
|
26200
26232
|
"spr-border spr-border-solid spr-border-color-weak": s.value,
|
|
@@ -26252,16 +26284,16 @@ const yD = (e) => ({
|
|
|
26252
26284
|
totalPages: C,
|
|
26253
26285
|
showNumberOfRowsDropdown: l
|
|
26254
26286
|
};
|
|
26255
|
-
},
|
|
26287
|
+
}, fN = {
|
|
26256
26288
|
key: 0,
|
|
26257
26289
|
class: "spr-flex spr-flex-row spr-items-center spr-gap-size-spacing-4xs"
|
|
26258
|
-
},
|
|
26290
|
+
}, gN = ["max"], hN = { class: "spr-body-xs-regular spr-text-color-base" }, vN = {
|
|
26259
26291
|
key: 1,
|
|
26260
26292
|
id: "table_pagination_actions_slot"
|
|
26261
|
-
},
|
|
26293
|
+
}, mN = /* @__PURE__ */ De({
|
|
26262
26294
|
__name: "table-pagination",
|
|
26263
|
-
props:
|
|
26264
|
-
emits:
|
|
26295
|
+
props: dN,
|
|
26296
|
+
emits: cN,
|
|
26265
26297
|
setup(e, { emit: t }) {
|
|
26266
26298
|
const r = t, n = Qt(), s = e, {
|
|
26267
26299
|
paginationClasses: a,
|
|
@@ -26277,7 +26309,7 @@ const yD = (e) => ({
|
|
|
26277
26309
|
currentPage: $,
|
|
26278
26310
|
totalPages: m,
|
|
26279
26311
|
showNumberOfRowsDropdown: y
|
|
26280
|
-
} =
|
|
26312
|
+
} = pN(s, r);
|
|
26281
26313
|
return (N, C) => (h(), b("div", st({
|
|
26282
26314
|
class: o(a).baseClass
|
|
26283
26315
|
}, N.$attrs), [
|
|
@@ -26313,7 +26345,7 @@ const yD = (e) => ({
|
|
|
26313
26345
|
x("div", {
|
|
26314
26346
|
class: w(o(a).rightSideClass)
|
|
26315
26347
|
}, [
|
|
26316
|
-
N.editableCurrentPage ? (h(), b("div",
|
|
26348
|
+
N.editableCurrentPage ? (h(), b("div", fN, [
|
|
26317
26349
|
C[2] || (C[2] = x("span", { class: "spr-body-xs-regular spr-text-color-base" }, "Page", -1)),
|
|
26318
26350
|
ut(x("input", {
|
|
26319
26351
|
"onUpdate:modelValue": C[1] || (C[1] = (I) => Ie($) ? $.value = I : null),
|
|
@@ -26321,10 +26353,10 @@ const yD = (e) => ({
|
|
|
26321
26353
|
min: "1",
|
|
26322
26354
|
max: o(m),
|
|
26323
26355
|
class: "number-input spr-text-center spr-font-main spr-font-medium spr-font-size-200 spr-font-height-300 sp-text-color-strong spr-p-size-spacing-3xs spr-rounded-border-radius-md spr-border spr-border-solid spr-border-color-base spr-outline-none spr-min-w-[48px] spr-max-h-[36px] spr-w-[48px] spr-h-[32px] spr-box-border"
|
|
26324
|
-
}, null, 8,
|
|
26356
|
+
}, null, 8, gN), [
|
|
26325
26357
|
[Lt, o($)]
|
|
26326
26358
|
]),
|
|
26327
|
-
x("span",
|
|
26359
|
+
x("span", hN, "of " + q(o(m)), 1)
|
|
26328
26360
|
])) : (h(), b("div", {
|
|
26329
26361
|
key: 1,
|
|
26330
26362
|
class: w(o(a).computeRowRangeClass)
|
|
@@ -26358,15 +26390,15 @@ const yD = (e) => ({
|
|
|
26358
26390
|
}, 8, ["class", "disabled", "onClick"])
|
|
26359
26391
|
], 2)
|
|
26360
26392
|
], 2),
|
|
26361
|
-
o(n).actions ? (h(), b("div",
|
|
26393
|
+
o(n).actions ? (h(), b("div", vN, [
|
|
26362
26394
|
de(N.$slots, "actions", {}, void 0, !0)
|
|
26363
26395
|
])) : L("", !0)
|
|
26364
26396
|
], 16));
|
|
26365
26397
|
}
|
|
26366
|
-
}),
|
|
26398
|
+
}), yN = /* @__PURE__ */ nr(mN, [["__scopeId", "data-v-4459cdc9"]]), bN = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
26367
26399
|
__proto__: null,
|
|
26368
|
-
default:
|
|
26369
|
-
}, Symbol.toStringTag, { value: "Module" })), Id = ["asc", "desc"],
|
|
26400
|
+
default: yN
|
|
26401
|
+
}, Symbol.toStringTag, { value: "Module" })), Id = ["asc", "desc"], CN = ["surface", "white"], MN = {
|
|
26370
26402
|
/**
|
|
26371
26403
|
* @description Action Column,
|
|
26372
26404
|
*/
|
|
@@ -26436,7 +26468,7 @@ const yD = (e) => ({
|
|
|
26436
26468
|
},
|
|
26437
26469
|
variant: {
|
|
26438
26470
|
type: String,
|
|
26439
|
-
validator: (e) =>
|
|
26471
|
+
validator: (e) => CN.includes(e),
|
|
26440
26472
|
default: "surface"
|
|
26441
26473
|
},
|
|
26442
26474
|
isRowClickable: {
|
|
@@ -26479,7 +26511,7 @@ const yD = (e) => ({
|
|
|
26479
26511
|
type: Boolean,
|
|
26480
26512
|
default: !1
|
|
26481
26513
|
}
|
|
26482
|
-
},
|
|
26514
|
+
}, DN = {
|
|
26483
26515
|
"update:searchModel": (e) => typeof e == "string",
|
|
26484
26516
|
onSort: (e) => typeof e.field == "string" && Id.includes(e.sortOrder),
|
|
26485
26517
|
onRowClick: (e, t) => typeof e == "object" && typeof t == "number",
|
|
@@ -26490,7 +26522,7 @@ const yD = (e) => ({
|
|
|
26490
26522
|
onDragAdd: (e) => e !== void 0 && Array.isArray(e.updatedList),
|
|
26491
26523
|
onDragRemove: (e) => e !== void 0 && Array.isArray(e.updatedList),
|
|
26492
26524
|
onApplyFilter: (e) => !!e
|
|
26493
|
-
},
|
|
26525
|
+
}, NN = (e, t, r) => {
|
|
26494
26526
|
const {
|
|
26495
26527
|
dataTable: n,
|
|
26496
26528
|
action: s,
|
|
@@ -26709,7 +26741,7 @@ function er(e) {
|
|
|
26709
26741
|
for (var t = 1; t < arguments.length; t++) {
|
|
26710
26742
|
var r = arguments[t] != null ? arguments[t] : {};
|
|
26711
26743
|
t % 2 ? di(Object(r), !0).forEach(function(n) {
|
|
26712
|
-
|
|
26744
|
+
$N(e, n, r[n]);
|
|
26713
26745
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(r)) : di(Object(r)).forEach(function(n) {
|
|
26714
26746
|
Object.defineProperty(e, n, Object.getOwnPropertyDescriptor(r, n));
|
|
26715
26747
|
});
|
|
@@ -26724,7 +26756,7 @@ function zs(e) {
|
|
|
26724
26756
|
return t && typeof Symbol == "function" && t.constructor === Symbol && t !== Symbol.prototype ? "symbol" : typeof t;
|
|
26725
26757
|
}, zs(e);
|
|
26726
26758
|
}
|
|
26727
|
-
function
|
|
26759
|
+
function $N(e, t, r) {
|
|
26728
26760
|
return t in e ? Object.defineProperty(e, t, {
|
|
26729
26761
|
value: r,
|
|
26730
26762
|
enumerable: !0,
|
|
@@ -26742,16 +26774,16 @@ function fr() {
|
|
|
26742
26774
|
return e;
|
|
26743
26775
|
}, fr.apply(this, arguments);
|
|
26744
26776
|
}
|
|
26745
|
-
function
|
|
26777
|
+
function xN(e, t) {
|
|
26746
26778
|
if (e == null) return {};
|
|
26747
26779
|
var r = {}, n = Object.keys(e), s, a;
|
|
26748
26780
|
for (a = 0; a < n.length; a++)
|
|
26749
26781
|
s = n[a], !(t.indexOf(s) >= 0) && (r[s] = e[s]);
|
|
26750
26782
|
return r;
|
|
26751
26783
|
}
|
|
26752
|
-
function
|
|
26784
|
+
function _N(e, t) {
|
|
26753
26785
|
if (e == null) return {};
|
|
26754
|
-
var r =
|
|
26786
|
+
var r = xN(e, t), n, s;
|
|
26755
26787
|
if (Object.getOwnPropertySymbols) {
|
|
26756
26788
|
var a = Object.getOwnPropertySymbols(e);
|
|
26757
26789
|
for (s = 0; s < a.length; s++)
|
|
@@ -26759,7 +26791,7 @@ function IN(e, t) {
|
|
|
26759
26791
|
}
|
|
26760
26792
|
return r;
|
|
26761
26793
|
}
|
|
26762
|
-
var
|
|
26794
|
+
var IN = "1.15.6";
|
|
26763
26795
|
function dr(e) {
|
|
26764
26796
|
if (typeof window < "u" && window.navigator)
|
|
26765
26797
|
return !!/* @__PURE__ */ navigator.userAgent.match(e);
|
|
@@ -26915,7 +26947,7 @@ function gi(e) {
|
|
|
26915
26947
|
} while (e !== n && (e = e.parentNode));
|
|
26916
26948
|
return [t, r];
|
|
26917
26949
|
}
|
|
26918
|
-
function
|
|
26950
|
+
function SN(e, t) {
|
|
26919
26951
|
for (var r in e)
|
|
26920
26952
|
if (e.hasOwnProperty(r)) {
|
|
26921
26953
|
for (var n in t)
|
|
@@ -26938,7 +26970,7 @@ function $r(e, t) {
|
|
|
26938
26970
|
while (r = r.parentNode);
|
|
26939
26971
|
return Xt();
|
|
26940
26972
|
}
|
|
26941
|
-
function
|
|
26973
|
+
function wN(e, t) {
|
|
26942
26974
|
if (e && t)
|
|
26943
26975
|
for (var r in t)
|
|
26944
26976
|
t.hasOwnProperty(r) && (e[r] = t[r]);
|
|
@@ -26958,7 +26990,7 @@ function Ed(e, t) {
|
|
|
26958
26990
|
}
|
|
26959
26991
|
};
|
|
26960
26992
|
}
|
|
26961
|
-
function
|
|
26993
|
+
function AN() {
|
|
26962
26994
|
clearTimeout(Yn), Yn = void 0;
|
|
26963
26995
|
}
|
|
26964
26996
|
function kd(e, t, r) {
|
|
@@ -26979,7 +27011,7 @@ function jd(e, t, r) {
|
|
|
26979
27011
|
}), n.width = n.right - n.left, n.height = n.bottom - n.top, n.x = n.left, n.y = n.top, n;
|
|
26980
27012
|
}
|
|
26981
27013
|
var Nt = "Sortable" + (/* @__PURE__ */ new Date()).getTime();
|
|
26982
|
-
function
|
|
27014
|
+
function TN() {
|
|
26983
27015
|
var e = [], t;
|
|
26984
27016
|
return {
|
|
26985
27017
|
captureAnimationState: function() {
|
|
@@ -27005,7 +27037,7 @@ function EN() {
|
|
|
27005
27037
|
e.push(n);
|
|
27006
27038
|
},
|
|
27007
27039
|
removeAnimationState: function(n) {
|
|
27008
|
-
e.splice(
|
|
27040
|
+
e.splice(SN(e, {
|
|
27009
27041
|
target: n
|
|
27010
27042
|
}), 1);
|
|
27011
27043
|
},
|
|
@@ -27019,7 +27051,7 @@ function EN() {
|
|
|
27019
27051
|
e.forEach(function(i) {
|
|
27020
27052
|
var d = 0, u = i.target, c = u.fromRect, p = qe(u), g = u.prevFromRect, f = u.prevToRect, v = i.rect, $ = fn(u, !0);
|
|
27021
27053
|
$ && (p.top -= $.f, p.left -= $.e), u.toRect = p, u.thisAnimationDuration && Pa(g, p) && !Pa(c, p) && // Make sure animatingRect is on line between toRect & fromRect
|
|
27022
|
-
(v.top - p.top) / (v.left - p.left) === (c.top - p.top) / (c.left - p.left) && (d =
|
|
27054
|
+
(v.top - p.top) / (v.left - p.left) === (c.top - p.top) / (c.left - p.left) && (d = kN(v, g, f, s.options)), Pa(p, c) || (u.prevFromRect = c, u.prevToRect = p, d || (d = s.options.animation), s.animate(u, v, p, d)), d && (a = !0, l = Math.max(l, d), clearTimeout(u.animationResetTimer), u.animationResetTimer = setTimeout(function() {
|
|
27023
27055
|
u.animationTime = 0, u.prevFromRect = null, u.fromRect = null, u.prevToRect = null, u.thisAnimationDuration = null;
|
|
27024
27056
|
}, d), u.thisAnimationDuration = d);
|
|
27025
27057
|
}), clearTimeout(t), a ? t = setTimeout(function() {
|
|
@@ -27030,17 +27062,17 @@ function EN() {
|
|
|
27030
27062
|
if (l) {
|
|
27031
27063
|
we(n, "transition", ""), we(n, "transform", "");
|
|
27032
27064
|
var i = fn(this.el), d = i && i.a, u = i && i.d, c = (s.left - a.left) / (d || 1), p = (s.top - a.top) / (u || 1);
|
|
27033
|
-
n.animatingX = !!c, n.animatingY = !!p, we(n, "transform", "translate3d(" + c + "px," + p + "px,0)"), this.forRepaintDummy =
|
|
27065
|
+
n.animatingX = !!c, n.animatingY = !!p, we(n, "transform", "translate3d(" + c + "px," + p + "px,0)"), this.forRepaintDummy = EN(n), we(n, "transition", "transform " + l + "ms" + (this.options.easing ? " " + this.options.easing : "")), we(n, "transform", "translate3d(0,0,0)"), typeof n.animated == "number" && clearTimeout(n.animated), n.animated = setTimeout(function() {
|
|
27034
27066
|
we(n, "transition", ""), we(n, "transform", ""), n.animated = !1, n.animatingX = !1, n.animatingY = !1;
|
|
27035
27067
|
}, l);
|
|
27036
27068
|
}
|
|
27037
27069
|
}
|
|
27038
27070
|
};
|
|
27039
27071
|
}
|
|
27040
|
-
function
|
|
27072
|
+
function EN(e) {
|
|
27041
27073
|
return e.offsetWidth;
|
|
27042
27074
|
}
|
|
27043
|
-
function
|
|
27075
|
+
function kN(e, t, r, n) {
|
|
27044
27076
|
return Math.sqrt(Math.pow(t.top - e.top, 2) + Math.pow(t.left - e.left, 2)) / Math.sqrt(Math.pow(t.top - r.top, 2) + Math.pow(t.left - r.left, 2)) * n.animation;
|
|
27045
27077
|
}
|
|
27046
27078
|
var nn = [], Ya = {
|
|
@@ -27095,7 +27127,7 @@ var nn = [], Ya = {
|
|
|
27095
27127
|
}), s;
|
|
27096
27128
|
}
|
|
27097
27129
|
};
|
|
27098
|
-
function
|
|
27130
|
+
function ON(e) {
|
|
27099
27131
|
var t = e.sortable, r = e.rootEl, n = e.name, s = e.targetEl, a = e.cloneEl, l = e.toEl, i = e.fromEl, d = e.oldIndex, u = e.newIndex, c = e.oldDraggableIndex, p = e.newDraggableIndex, g = e.originalEvent, f = e.putSortable, v = e.extraEventProperties;
|
|
27100
27132
|
if (t = t || r && r[Nt], !!t) {
|
|
27101
27133
|
var $, m = t.options, y = "on" + n.charAt(0).toUpperCase() + n.substr(1);
|
|
@@ -27109,8 +27141,8 @@ function jN(e) {
|
|
|
27109
27141
|
r && r.dispatchEvent($), m[y] && m[y].call(t, $);
|
|
27110
27142
|
}
|
|
27111
27143
|
}
|
|
27112
|
-
var
|
|
27113
|
-
var n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, s = n.evt, a =
|
|
27144
|
+
var jN = ["evt"], Dt = function(t, r) {
|
|
27145
|
+
var n = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, s = n.evt, a = _N(n, jN);
|
|
27114
27146
|
fs.pluginEvent.bind(Ae)(t, r, er({
|
|
27115
27147
|
dragEl: Ce,
|
|
27116
27148
|
parentEl: Ke,
|
|
@@ -27146,7 +27178,7 @@ var LN = ["evt"], Dt = function(t, r) {
|
|
|
27146
27178
|
}, a));
|
|
27147
27179
|
};
|
|
27148
27180
|
function yt(e) {
|
|
27149
|
-
|
|
27181
|
+
ON(er({
|
|
27150
27182
|
putSortable: it,
|
|
27151
27183
|
cloneEl: We,
|
|
27152
27184
|
targetEl: Ce,
|
|
@@ -27157,7 +27189,7 @@ function yt(e) {
|
|
|
27157
27189
|
newDraggableIndex: Cr
|
|
27158
27190
|
}, e));
|
|
27159
27191
|
}
|
|
27160
|
-
var Ce, Ke, ke, Ge, Br, Ps, We, Mr, un, At, Fn, Cr, ms, it, an = !1, ta = !1, ra = [], Pr, Ft, Fa, Ua, hi, vi, wn, sn, Un, Bn = !1, ys = !1, Ys, ft, Ba = [], wo = !1, na = [], $a = typeof document < "u", bs = _0, mi = ps || gr ? "cssFloat" : "float",
|
|
27192
|
+
var Ce, Ke, ke, Ge, Br, Ps, We, Mr, un, At, Fn, Cr, ms, it, an = !1, ta = !1, ra = [], Pr, Ft, Fa, Ua, hi, vi, wn, sn, Un, Bn = !1, ys = !1, Ys, ft, Ba = [], wo = !1, na = [], $a = typeof document < "u", bs = _0, mi = ps || gr ? "cssFloat" : "float", LN = $a && !Sd && !_0 && "draggable" in document.createElement("div"), Ld = (function() {
|
|
27161
27193
|
if ($a) {
|
|
27162
27194
|
if (gr)
|
|
27163
27195
|
return !1;
|
|
@@ -27175,10 +27207,10 @@ var Ce, Ke, ke, Ge, Br, Ps, We, Mr, un, At, Fn, Cr, ms, it, an = !1, ta = !1, ra
|
|
|
27175
27207
|
return l && (d.clear === "both" || d.clear === p) ? "vertical" : "horizontal";
|
|
27176
27208
|
}
|
|
27177
27209
|
return a && (i.display === "block" || i.display === "flex" || i.display === "table" || i.display === "grid" || u >= s && n[mi] === "none" || l && n[mi] === "none" && u + c > s) ? "vertical" : "horizontal";
|
|
27178
|
-
},
|
|
27210
|
+
}, zN = function(t, r, n) {
|
|
27179
27211
|
var s = n ? t.left : t.top, a = n ? t.right : t.bottom, l = n ? t.width : t.height, i = n ? r.left : r.top, d = n ? r.right : r.bottom, u = n ? r.width : r.height;
|
|
27180
27212
|
return s === i || a === d || s + l / 2 === i + u / 2;
|
|
27181
|
-
},
|
|
27213
|
+
}, PN = function(t, r) {
|
|
27182
27214
|
var n;
|
|
27183
27215
|
return ra.some(function(s) {
|
|
27184
27216
|
var a = s[Nt].options.emptyInsertThreshold;
|
|
@@ -27220,7 +27252,7 @@ $a && !Sd && document.addEventListener("click", function(e) {
|
|
|
27220
27252
|
var Yr = function(t) {
|
|
27221
27253
|
if (Ce) {
|
|
27222
27254
|
t = t.touches ? t.touches[0] : t;
|
|
27223
|
-
var r =
|
|
27255
|
+
var r = PN(t.clientX, t.clientY);
|
|
27224
27256
|
if (r) {
|
|
27225
27257
|
var n = {};
|
|
27226
27258
|
for (var s in t)
|
|
@@ -27228,7 +27260,7 @@ var Yr = function(t) {
|
|
|
27228
27260
|
n.target = n.rootEl = r, n.preventDefault = void 0, n.stopPropagation = void 0, r[Nt]._onDragOver(n);
|
|
27229
27261
|
}
|
|
27230
27262
|
}
|
|
27231
|
-
},
|
|
27263
|
+
}, YN = function(t) {
|
|
27232
27264
|
Ce && Ce.parentNode[Nt]._isOutsideThisEl(t.target);
|
|
27233
27265
|
};
|
|
27234
27266
|
function Ae(e, t) {
|
|
@@ -27287,7 +27319,7 @@ function Ae(e, t) {
|
|
|
27287
27319
|
Pd(t);
|
|
27288
27320
|
for (var s in this)
|
|
27289
27321
|
s.charAt(0) === "_" && typeof this[s] == "function" && (this[s] = this[s].bind(this));
|
|
27290
|
-
this.nativeDraggable = t.forceFallback ? !1 :
|
|
27322
|
+
this.nativeDraggable = t.forceFallback ? !1 : LN, this.nativeDraggable && (this.options.touchStartThreshold = 1), t.supportPointer ? ze(e, "pointerdown", this._onTapStart) : (ze(e, "mousedown", this._onTapStart), ze(e, "touchstart", this._onTapStart)), this.nativeDraggable && (ze(e, "dragover", this), ze(e, "dragenter", this)), ra.push(this.el), t.store && t.store.get && this.sort(t.store.get(this) || []), fr(this, TN());
|
|
27291
27323
|
}
|
|
27292
27324
|
Ae.prototype = /** @lends Sortable.prototype */
|
|
27293
27325
|
{
|
|
@@ -27301,7 +27333,7 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27301
27333
|
_onTapStart: function(t) {
|
|
27302
27334
|
if (t.cancelable) {
|
|
27303
27335
|
var r = this, n = this.el, s = this.options, a = s.preventOnFilter, l = t.type, i = t.touches && t.touches[0] || t.pointerType && t.pointerType === "touch" && t, d = (i || t).target, u = t.target.shadowRoot && (t.path && t.path[0] || t.composedPath && t.composedPath()[0]) || d, c = s.filter;
|
|
27304
|
-
if (
|
|
27336
|
+
if (GN(n), !Ce && !(/mousedown|pointerdown/.test(l) && t.button !== 0 || s.disabled) && !u.isContentEditable && !(!this.nativeDraggable && Pn && d && d.tagName.toUpperCase() === "SELECT") && (d = Bt(d, s.draggable, n, !1), !(d && d.animated) && Ps !== d)) {
|
|
27305
27337
|
if (un = jt(d), Fn = jt(d, s.draggable), typeof c == "function") {
|
|
27306
27338
|
if (c.call(this, t, d, this)) {
|
|
27307
27339
|
yt({
|
|
@@ -27394,7 +27426,7 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27394
27426
|
if (an = !1, Ge && Ce) {
|
|
27395
27427
|
Dt("dragStarted", this, {
|
|
27396
27428
|
evt: r
|
|
27397
|
-
}), this.nativeDraggable && ze(document, "dragover",
|
|
27429
|
+
}), this.nativeDraggable && ze(document, "dragover", YN);
|
|
27398
27430
|
var n = this.options;
|
|
27399
27431
|
!t && wt(Ce, n.dragClass, !1), wt(Ce, n.ghostClass, !0), Ae.active = this, t && this._appendGhost(), yt({
|
|
27400
27432
|
sortable: this,
|
|
@@ -27525,12 +27557,12 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27525
27557
|
if (l)
|
|
27526
27558
|
return Ke = Ge, y(), this._hideClone(), m("revert"), Ae.eventCanceled || (Br ? Ge.insertBefore(Ce, Br) : Ge.appendChild(Ce)), N(!0);
|
|
27527
27559
|
var I = I0(r, i.draggable);
|
|
27528
|
-
if (!I ||
|
|
27560
|
+
if (!I || RN(t, f, this) && !I.animated) {
|
|
27529
27561
|
if (I === Ce)
|
|
27530
27562
|
return N(!1);
|
|
27531
27563
|
if (I && r === t.target && (n = I), n && (a = qe(n)), Cs(Ge, r, Ce, s, n, a, t, !!n) !== !1)
|
|
27532
27564
|
return y(), I && I.nextSibling ? r.insertBefore(Ce, I.nextSibling) : r.appendChild(Ce), Ke = r, C(), N(!0);
|
|
27533
|
-
} else if (I &&
|
|
27565
|
+
} else if (I && BN(t, f, this)) {
|
|
27534
27566
|
var _ = bn(r, 0, i, !0);
|
|
27535
27567
|
if (_ === Ce)
|
|
27536
27568
|
return N(!1);
|
|
@@ -27538,8 +27570,8 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27538
27570
|
return y(), r.insertBefore(Ce, _), Ke = r, C(), N(!0);
|
|
27539
27571
|
} else if (n.parentNode === r) {
|
|
27540
27572
|
a = qe(n);
|
|
27541
|
-
var D = 0, M, S = Ce.parentNode !== r, A = !
|
|
27542
|
-
sn !== n && (M = a[j], Bn = !1, ys = !A && i.invertSwap || S), D =
|
|
27573
|
+
var D = 0, M, S = Ce.parentNode !== r, A = !zN(Ce.animated && Ce.toRect || s, n.animated && n.toRect || a, f), j = f ? "top" : "left", Y = fi(n, "top", "top") || fi(Ce, "top", "top"), re = Y ? Y.scrollTop : void 0;
|
|
27574
|
+
sn !== n && (M = a[j], Bn = !1, ys = !A && i.invertSwap || S), D = VN(t, n, a, f, A ? 1 : i.swapThreshold, i.invertedSwapThreshold == null ? i.swapThreshold : i.invertedSwapThreshold, ys, sn === n);
|
|
27543
27575
|
var ee;
|
|
27544
27576
|
if (D !== 0) {
|
|
27545
27577
|
var F = jt(Ce);
|
|
@@ -27554,7 +27586,7 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27554
27586
|
z = D === 1;
|
|
27555
27587
|
var T = Cs(Ge, r, Ce, s, n, a, t, z);
|
|
27556
27588
|
if (T !== !1)
|
|
27557
|
-
return (T === 1 || T === -1) && (z = T === 1), wo = !0, setTimeout(
|
|
27589
|
+
return (T === 1 || T === -1) && (z = T === 1), wo = !0, setTimeout(UN, 30), y(), z && !V ? r.appendChild(Ce) : n.parentNode.insertBefore(Ce, z ? V : n), Y && kd(Y, 0, re - Y.scrollTop), Ke = Ce.parentNode, M !== void 0 && !ys && (Ys = Math.abs(M - qe(n)[j])), C(), N(!0);
|
|
27558
27590
|
}
|
|
27559
27591
|
if (r.contains(Ce))
|
|
27560
27592
|
return N(!1);
|
|
@@ -27636,7 +27668,7 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27636
27668
|
break;
|
|
27637
27669
|
case "dragenter":
|
|
27638
27670
|
case "dragover":
|
|
27639
|
-
Ce && (this._onDragOver(t),
|
|
27671
|
+
Ce && (this._onDragOver(t), FN(t));
|
|
27640
27672
|
break;
|
|
27641
27673
|
case "selectstart":
|
|
27642
27674
|
t.preventDefault();
|
|
@@ -27649,7 +27681,7 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27649
27681
|
*/
|
|
27650
27682
|
toArray: function() {
|
|
27651
27683
|
for (var t = [], r, n = this.el.children, s = 0, a = n.length, l = this.options; s < a; s++)
|
|
27652
|
-
r = n[s], Bt(r, l.draggable, this.el, !1) && t.push(r.getAttribute(l.dataIdAttr) ||
|
|
27684
|
+
r = n[s], Bt(r, l.draggable, this.el, !1) && t.push(r.getAttribute(l.dataIdAttr) || QN(r));
|
|
27653
27685
|
return t;
|
|
27654
27686
|
},
|
|
27655
27687
|
/**
|
|
@@ -27721,7 +27753,7 @@ Ae.prototype = /** @lends Sortable.prototype */
|
|
|
27721
27753
|
}
|
|
27722
27754
|
}
|
|
27723
27755
|
};
|
|
27724
|
-
function
|
|
27756
|
+
function FN(e) {
|
|
27725
27757
|
e.dataTransfer && (e.dataTransfer.dropEffect = "move"), e.cancelable && e.preventDefault();
|
|
27726
27758
|
}
|
|
27727
27759
|
function Cs(e, t, r, n, s, a, l, i) {
|
|
@@ -27734,18 +27766,18 @@ function Cs(e, t, r, n, s, a, l, i) {
|
|
|
27734
27766
|
function Ra(e) {
|
|
27735
27767
|
e.draggable = !1;
|
|
27736
27768
|
}
|
|
27737
|
-
function
|
|
27769
|
+
function UN() {
|
|
27738
27770
|
wo = !1;
|
|
27739
27771
|
}
|
|
27740
|
-
function
|
|
27772
|
+
function BN(e, t, r) {
|
|
27741
27773
|
var n = qe(bn(r.el, 0, r.options, !0)), s = jd(r.el, r.options, ke), a = 10;
|
|
27742
27774
|
return t ? e.clientX < s.left - a || e.clientY < n.top && e.clientX < n.right : e.clientY < s.top - a || e.clientY < n.bottom && e.clientX < n.left;
|
|
27743
27775
|
}
|
|
27744
|
-
function
|
|
27776
|
+
function RN(e, t, r) {
|
|
27745
27777
|
var n = qe(I0(r.el, r.options.draggable)), s = jd(r.el, r.options, ke), a = 10;
|
|
27746
27778
|
return t ? e.clientX > s.right + a || e.clientY > n.bottom && e.clientX > n.left : e.clientY > s.bottom + a || e.clientX > n.right && e.clientY > n.top;
|
|
27747
27779
|
}
|
|
27748
|
-
function
|
|
27780
|
+
function VN(e, t, r, n, s, a, l, i) {
|
|
27749
27781
|
var d = n ? e.clientY : e.clientX, u = n ? r.height : r.width, c = n ? r.top : r.left, p = n ? r.bottom : r.right, g = !1;
|
|
27750
27782
|
if (!l) {
|
|
27751
27783
|
if (i && Ys < u * s) {
|
|
@@ -27754,19 +27786,19 @@ function HN(e, t, r, n, s, a, l, i) {
|
|
|
27754
27786
|
else if (Un === 1 ? d < c + Ys : d > p - Ys)
|
|
27755
27787
|
return -Un;
|
|
27756
27788
|
} else if (d > c + u * (1 - s) / 2 && d < p - u * (1 - s) / 2)
|
|
27757
|
-
return
|
|
27789
|
+
return HN(t);
|
|
27758
27790
|
}
|
|
27759
27791
|
return g = g || l, g && (d < c + u * a / 2 || d > p - u * a / 2) ? d > c + u / 2 ? 1 : -1 : 0;
|
|
27760
27792
|
}
|
|
27761
|
-
function
|
|
27793
|
+
function HN(e) {
|
|
27762
27794
|
return jt(Ce) < jt(e) ? 1 : -1;
|
|
27763
27795
|
}
|
|
27764
|
-
function
|
|
27796
|
+
function QN(e) {
|
|
27765
27797
|
for (var t = e.tagName + e.className + e.src + e.href + e.textContent, r = t.length, n = 0; r--; )
|
|
27766
27798
|
n += t.charCodeAt(r);
|
|
27767
27799
|
return n.toString(36);
|
|
27768
27800
|
}
|
|
27769
|
-
function
|
|
27801
|
+
function GN(e) {
|
|
27770
27802
|
na.length = 0;
|
|
27771
27803
|
for (var t = e.getElementsByTagName("input"), r = t.length; r--; ) {
|
|
27772
27804
|
var n = t[r];
|
|
@@ -27790,7 +27822,7 @@ Ae.utils = {
|
|
|
27790
27822
|
is: function(t, r) {
|
|
27791
27823
|
return !!Bt(t, r, t, !1);
|
|
27792
27824
|
},
|
|
27793
|
-
extend:
|
|
27825
|
+
extend: wN,
|
|
27794
27826
|
throttle: Ed,
|
|
27795
27827
|
closest: Bt,
|
|
27796
27828
|
toggleClass: wt,
|
|
@@ -27817,9 +27849,9 @@ Ae.mount = function() {
|
|
|
27817
27849
|
Ae.create = function(e, t) {
|
|
27818
27850
|
return new Ae(e, t);
|
|
27819
27851
|
};
|
|
27820
|
-
Ae.version =
|
|
27852
|
+
Ae.version = IN;
|
|
27821
27853
|
var Xe = [], An, To, Eo = !1, Va, Ha, sa, Tn;
|
|
27822
|
-
function
|
|
27854
|
+
function ZN() {
|
|
27823
27855
|
function e() {
|
|
27824
27856
|
this.defaults = {
|
|
27825
27857
|
scroll: !0,
|
|
@@ -27841,7 +27873,7 @@ function WN() {
|
|
|
27841
27873
|
!this.options.dragOverBubble && !n.rootEl && this._handleAutoScroll(n);
|
|
27842
27874
|
},
|
|
27843
27875
|
drop: function() {
|
|
27844
|
-
this.sortable.nativeDraggable ? Le(document, "dragover", this._handleAutoScroll) : (Le(document, "pointermove", this._handleFallbackAutoScroll), Le(document, "touchmove", this._handleFallbackAutoScroll), Le(document, "mousemove", this._handleFallbackAutoScroll)), yi(), Us(),
|
|
27876
|
+
this.sortable.nativeDraggable ? Le(document, "dragover", this._handleAutoScroll) : (Le(document, "pointermove", this._handleFallbackAutoScroll), Le(document, "touchmove", this._handleFallbackAutoScroll), Le(document, "mousemove", this._handleFallbackAutoScroll)), yi(), Us(), AN();
|
|
27845
27877
|
},
|
|
27846
27878
|
nulling: function() {
|
|
27847
27879
|
sa = To = An = Eo = Tn = Va = Ha = null, Xe.length = 0;
|
|
@@ -27944,9 +27976,9 @@ w0.prototype = {
|
|
|
27944
27976
|
fr(w0, {
|
|
27945
27977
|
pluginName: "removeOnSpill"
|
|
27946
27978
|
});
|
|
27947
|
-
Ae.mount(new
|
|
27979
|
+
Ae.mount(new ZN());
|
|
27948
27980
|
Ae.mount(w0, S0);
|
|
27949
|
-
const
|
|
27981
|
+
const WN = (e, t) => {
|
|
27950
27982
|
const r = B(!1);
|
|
27951
27983
|
let n = null;
|
|
27952
27984
|
const s = () => {
|
|
@@ -27968,40 +28000,40 @@ const KN = (e, t) => {
|
|
|
27968
28000
|
isDragging: r,
|
|
27969
28001
|
reinitializeSortable: l
|
|
27970
28002
|
};
|
|
27971
|
-
},
|
|
28003
|
+
}, KN = { key: 0 }, JN = { class: "spr-flex spr-items-center spr-justify-center" }, XN = ["onClick"], qN = ["onClick"], e$ = { key: 0 }, t$ = ["onClick"], r$ = { key: 2 }, n$ = ["data-id", "onClick", "onMouseover", "onMouseleave"], s$ = { class: "spr-flex spr-items-center spr-justify-center" }, a$ = {
|
|
27972
28004
|
key: 0,
|
|
27973
28005
|
class: "spr-flex spr-flex-row spr-items-center spr-gap-2"
|
|
27974
|
-
},
|
|
28006
|
+
}, o$ = {
|
|
27975
28007
|
key: 1,
|
|
27976
28008
|
class: "spr-flex spr-items-center spr-rounded-full spr-bg-mushroom-200 spr-p-1"
|
|
27977
|
-
},
|
|
28009
|
+
}, l$ = {
|
|
27978
28010
|
key: 0,
|
|
27979
28011
|
class: "spr-flex spr-flex-wrap spr-gap-2"
|
|
27980
|
-
},
|
|
28012
|
+
}, i$ = {
|
|
27981
28013
|
key: 0,
|
|
27982
28014
|
class: "spr-mt-1"
|
|
27983
|
-
},
|
|
28015
|
+
}, u$ = {
|
|
27984
28016
|
key: 1,
|
|
27985
28017
|
class: "spr-mt-1"
|
|
27986
|
-
},
|
|
28018
|
+
}, d$ = { key: 1 }, c$ = {
|
|
27987
28019
|
key: 0,
|
|
27988
28020
|
class: "spr-mt-1"
|
|
27989
|
-
},
|
|
28021
|
+
}, p$ = {
|
|
27990
28022
|
key: 1,
|
|
27991
28023
|
class: "spr-mt-1"
|
|
27992
|
-
},
|
|
28024
|
+
}, f$ = {
|
|
27993
28025
|
key: 2,
|
|
27994
28026
|
class: "spr-text-color-strong spr-font-size-200 spr-font-normal"
|
|
27995
|
-
},
|
|
28027
|
+
}, g$ = {
|
|
27996
28028
|
key: 2,
|
|
27997
28029
|
class: "spr-text-color-base spr-text-xs spr-font-normal"
|
|
27998
|
-
},
|
|
28030
|
+
}, h$ = { class: "spr-flex spr-items-center" }, v$ = { class: "table-row-drag-icon spr-flex spr-items-center spr-justify-center" }, m$ = {
|
|
27999
28031
|
key: 0,
|
|
28000
28032
|
class: "spr-h-full"
|
|
28001
|
-
},
|
|
28033
|
+
}, y$ = ["colspan"], b$ = { key: 1 }, C$ = ["colspan"], M$ = /* @__PURE__ */ De({
|
|
28002
28034
|
__name: "table",
|
|
28003
|
-
props:
|
|
28004
|
-
emits:
|
|
28035
|
+
props: MN,
|
|
28036
|
+
emits: DN,
|
|
28005
28037
|
setup(e, { expose: t, emit: r }) {
|
|
28006
28038
|
const n = e, s = r, a = Qt(), l = B({}), i = (E, Z) => {
|
|
28007
28039
|
E && (l.value[String(Z)] = E);
|
|
@@ -28032,7 +28064,7 @@ const KN = (e, t) => {
|
|
|
28032
28064
|
getSortIcon: F,
|
|
28033
28065
|
getRowKey: V,
|
|
28034
28066
|
clearSelectedData: z
|
|
28035
|
-
} =
|
|
28067
|
+
} = NN(n, s, a), { reinitializeSortable: T } = WN(u, I);
|
|
28036
28068
|
return t({
|
|
28037
28069
|
clearSelectedData: z
|
|
28038
28070
|
}), $e(_, () => {
|
|
@@ -28077,12 +28109,12 @@ const KN = (e, t) => {
|
|
|
28077
28109
|
cellpadding: "0"
|
|
28078
28110
|
}, [
|
|
28079
28111
|
x("thead", null, [
|
|
28080
|
-
n.removeHeaderOnEmpty && o(N).length <= 0 ? L("", !0) : (h(), b("tr",
|
|
28112
|
+
n.removeHeaderOnEmpty && o(N).length <= 0 ? L("", !0) : (h(), b("tr", KN, [
|
|
28081
28113
|
n.isMultiSelect ? (h(), b("th", {
|
|
28082
28114
|
key: 0,
|
|
28083
28115
|
class: w([o(f).multiselectClass, o(f).headerClasses(null)])
|
|
28084
28116
|
}, [
|
|
28085
|
-
x("div",
|
|
28117
|
+
x("div", JN, [
|
|
28086
28118
|
R(Wr, {
|
|
28087
28119
|
label: "",
|
|
28088
28120
|
checked: o($) || o(m),
|
|
@@ -28100,7 +28132,7 @@ const KN = (e, t) => {
|
|
|
28100
28132
|
key: 0,
|
|
28101
28133
|
class: "hover:spr-background-color-hover active:spr-background-color-pressed spr-absolute spr-inset-0 spr-z-[2] spr-cursor-pointer",
|
|
28102
28134
|
onClick: (H) => d(Q)
|
|
28103
|
-
}, null, 8,
|
|
28135
|
+
}, null, 8, XN)) : L("", !0),
|
|
28104
28136
|
n.showHeaderFilter ? (h(), oe(_d, {
|
|
28105
28137
|
key: 1,
|
|
28106
28138
|
id: `th-dropdown-${Q}`,
|
|
@@ -28118,8 +28150,8 @@ const KN = (e, t) => {
|
|
|
28118
28150
|
x("span", {
|
|
28119
28151
|
class: w([{ "spr-cursor-pointer": O.sort }]),
|
|
28120
28152
|
onClick: (H) => O.sort && o(S)(O.field)
|
|
28121
|
-
}, q(O.name), 11,
|
|
28122
|
-
O.badgeText ? (h(), b("span",
|
|
28153
|
+
}, q(O.name), 11, qN),
|
|
28154
|
+
O.badgeText ? (h(), b("span", e$, [
|
|
28123
28155
|
R(Zr, {
|
|
28124
28156
|
text: O.badgeText,
|
|
28125
28157
|
variant: O.badgeVariant,
|
|
@@ -28141,8 +28173,8 @@ const KN = (e, t) => {
|
|
|
28141
28173
|
width: "16",
|
|
28142
28174
|
class: w([{ "spr-text-kangkong-700": o(y) === O.field }])
|
|
28143
28175
|
}, null, 8, ["icon", "class"])
|
|
28144
|
-
], 10,
|
|
28145
|
-
n.showHeaderFilter ? (h(), b("span",
|
|
28176
|
+
], 10, t$)) : L("", !0),
|
|
28177
|
+
n.showHeaderFilter ? (h(), b("span", r$, [
|
|
28146
28178
|
R(o(ae), {
|
|
28147
28179
|
icon: "ph:funnel-simple",
|
|
28148
28180
|
height: "20",
|
|
@@ -28186,7 +28218,7 @@ const KN = (e, t) => {
|
|
|
28186
28218
|
key: 0,
|
|
28187
28219
|
class: w([o(f).multiselectClass, o(f).multiselectRowClass])
|
|
28188
28220
|
}, [
|
|
28189
|
-
x("div",
|
|
28221
|
+
x("div", s$, [
|
|
28190
28222
|
R(Wr, {
|
|
28191
28223
|
label: "",
|
|
28192
28224
|
checked: o(M)(O),
|
|
@@ -28204,7 +28236,7 @@ const KN = (e, t) => {
|
|
|
28204
28236
|
row: O,
|
|
28205
28237
|
rowIndex: Q
|
|
28206
28238
|
}) : (h(), b(fe, { key: 1 }, [
|
|
28207
|
-
o(N)[Q][H.field] ? (h(), b("div",
|
|
28239
|
+
o(N)[Q][H.field] ? (h(), b("div", a$, [
|
|
28208
28240
|
H.hasAvatar ? (h(), oe(Pt, {
|
|
28209
28241
|
key: 0,
|
|
28210
28242
|
size: "lg",
|
|
@@ -28213,36 +28245,36 @@ const KN = (e, t) => {
|
|
|
28213
28245
|
variant: H.avatarVariant ? H.avatarVariant : "initial",
|
|
28214
28246
|
initial: o(ee)(Q, H.field).title
|
|
28215
28247
|
}, null, 8, ["src", "variant", "initial"])) : L("", !0),
|
|
28216
|
-
H.hasIcon ? (h(), b("div",
|
|
28248
|
+
H.hasIcon ? (h(), b("div", o$, [
|
|
28217
28249
|
R(o(ae), {
|
|
28218
28250
|
icon: o(ee)(Q, H.field).icon || ""
|
|
28219
28251
|
}, null, 8, ["icon"])
|
|
28220
28252
|
])) : L("", !0),
|
|
28221
28253
|
x("div", null, [
|
|
28222
|
-
Array.isArray(o(ee)(Q, H.field).title) ? (h(), b("div",
|
|
28254
|
+
Array.isArray(o(ee)(Q, H.field).title) ? (h(), b("div", l$, [
|
|
28223
28255
|
(h(!0), b(fe, null, xe(o(ee)(Q, H.field).title, (k, G) => (h(), b("div", { key: G }, [
|
|
28224
|
-
H.hasLozengeTitle ? (h(), b("div",
|
|
28256
|
+
H.hasLozengeTitle ? (h(), b("div", i$, [
|
|
28225
28257
|
R(So, {
|
|
28226
28258
|
cell: k
|
|
28227
28259
|
}, null, 8, ["cell"])
|
|
28228
|
-
])) : H.hasChipTitle ? (h(), b("div",
|
|
28260
|
+
])) : H.hasChipTitle ? (h(), b("div", u$, [
|
|
28229
28261
|
R(Io, {
|
|
28230
28262
|
cell: k
|
|
28231
28263
|
}, null, 8, ["cell"])
|
|
28232
28264
|
])) : L("", !0)
|
|
28233
28265
|
]))), 128))
|
|
28234
|
-
])) : (h(), b("div",
|
|
28235
|
-
H.hasLozengeTitle ? (h(), b("div",
|
|
28266
|
+
])) : (h(), b("div", d$, [
|
|
28267
|
+
H.hasLozengeTitle ? (h(), b("div", c$, [
|
|
28236
28268
|
R(So, {
|
|
28237
28269
|
cell: o(ee)(Q, H.field).title
|
|
28238
28270
|
}, null, 8, ["cell"])
|
|
28239
|
-
])) : H.hasChipTitle ? (h(), b("div",
|
|
28271
|
+
])) : H.hasChipTitle ? (h(), b("div", p$, [
|
|
28240
28272
|
R(Io, {
|
|
28241
28273
|
cell: o(ee)(Q, H.field).title
|
|
28242
28274
|
}, null, 8, ["cell"])
|
|
28243
|
-
])) : (h(), b("div",
|
|
28275
|
+
])) : (h(), b("div", f$, q(o(ee)(Q, H.field).title), 1))
|
|
28244
28276
|
])),
|
|
28245
|
-
H.hasSubtext ? (h(), b("div",
|
|
28277
|
+
H.hasSubtext ? (h(), b("div", g$, q(o(ee)(Q, H.field).subtext), 1)) : L("", !0)
|
|
28246
28278
|
])
|
|
28247
28279
|
])) : L("", !0)
|
|
28248
28280
|
], 64))
|
|
@@ -28251,7 +28283,7 @@ const KN = (e, t) => {
|
|
|
28251
28283
|
key: 1,
|
|
28252
28284
|
class: w(o(f).tableRowActionClasses)
|
|
28253
28285
|
}, [
|
|
28254
|
-
x("div",
|
|
28286
|
+
x("div", h$, [
|
|
28255
28287
|
de(E.$slots, "action", { row: O })
|
|
28256
28288
|
])
|
|
28257
28289
|
], 2)) : L("", !0),
|
|
@@ -28259,7 +28291,7 @@ const KN = (e, t) => {
|
|
|
28259
28291
|
key: 2,
|
|
28260
28292
|
class: w(o(f).tableRowDragIconClasses)
|
|
28261
28293
|
}, [
|
|
28262
|
-
x("div",
|
|
28294
|
+
x("div", v$, [
|
|
28263
28295
|
R(o(ae), {
|
|
28264
28296
|
icon: "ph:dots-six-vertical",
|
|
28265
28297
|
width: "16px",
|
|
@@ -28267,7 +28299,7 @@ const KN = (e, t) => {
|
|
|
28267
28299
|
})
|
|
28268
28300
|
])
|
|
28269
28301
|
], 2)) : L("", !0)
|
|
28270
|
-
], 42,
|
|
28302
|
+
], 42, n$))), 128))
|
|
28271
28303
|
], 2)) : (h(), b("tbody", {
|
|
28272
28304
|
key: 1,
|
|
28273
28305
|
id: "tbody_empty_state",
|
|
@@ -28275,7 +28307,7 @@ const KN = (e, t) => {
|
|
|
28275
28307
|
ref: u,
|
|
28276
28308
|
class: w(o(f).emptyStateClasses)
|
|
28277
28309
|
}, [
|
|
28278
|
-
E.loading ? (h(), b("tr",
|
|
28310
|
+
E.loading ? (h(), b("tr", b$, [
|
|
28279
28311
|
x("td", {
|
|
28280
28312
|
colspan: o(c),
|
|
28281
28313
|
class: "spr-overflow-hidden"
|
|
@@ -28283,8 +28315,8 @@ const KN = (e, t) => {
|
|
|
28283
28315
|
de(E.$slots, "loading", {}, () => [
|
|
28284
28316
|
Z[2] || (Z[2] = x("div", { class: "spr-flex spr-items-center spr-justify-center" }, "Loading...", -1))
|
|
28285
28317
|
])
|
|
28286
|
-
], 8,
|
|
28287
|
-
])) : (h(), b("tr",
|
|
28318
|
+
], 8, C$)
|
|
28319
|
+
])) : (h(), b("tr", m$, [
|
|
28288
28320
|
x("td", {
|
|
28289
28321
|
colspan: o(c),
|
|
28290
28322
|
class: "spr-flex spr-h-full spr-items-center spr-justify-center"
|
|
@@ -28292,7 +28324,7 @@ const KN = (e, t) => {
|
|
|
28292
28324
|
de(E.$slots, "empty-state", {}, () => [
|
|
28293
28325
|
R(e0, { size: o(v) }, null, 8, ["size"])
|
|
28294
28326
|
])
|
|
28295
|
-
], 8,
|
|
28327
|
+
], 8, y$)
|
|
28296
28328
|
]))
|
|
28297
28329
|
], 2))
|
|
28298
28330
|
]))
|
|
@@ -28305,10 +28337,10 @@ const KN = (e, t) => {
|
|
|
28305
28337
|
], 2)) : L("", !0)
|
|
28306
28338
|
], 2));
|
|
28307
28339
|
}
|
|
28308
|
-
}),
|
|
28340
|
+
}), D$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
28309
28341
|
__proto__: null,
|
|
28310
|
-
default:
|
|
28311
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
28342
|
+
default: M$
|
|
28343
|
+
}, Symbol.toStringTag, { value: "Module" })), N$ = {
|
|
28312
28344
|
/**
|
|
28313
28345
|
* @description Tabs List,
|
|
28314
28346
|
* option list: label, icon, iconFill, disabled
|
|
@@ -28331,9 +28363,9 @@ const KN = (e, t) => {
|
|
|
28331
28363
|
type: String,
|
|
28332
28364
|
default: ""
|
|
28333
28365
|
}
|
|
28334
|
-
},
|
|
28366
|
+
}, $$ = {
|
|
28335
28367
|
tabIndex: (e) => typeof e == "number"
|
|
28336
|
-
},
|
|
28368
|
+
}, x$ = (e, t) => {
|
|
28337
28369
|
const r = P(() => U({
|
|
28338
28370
|
"spr-relative spr-px-size-spacing-xs spr-body-sm spr-text-color-strong spr-group": !0,
|
|
28339
28371
|
"spr-transition-left spr-duration-150 spr-ease-in-out": !0,
|
|
@@ -28378,13 +28410,13 @@ const KN = (e, t) => {
|
|
|
28378
28410
|
tabElements: a,
|
|
28379
28411
|
updateSelectedTabIndex: l
|
|
28380
28412
|
};
|
|
28381
|
-
},
|
|
28413
|
+
}, _$ = { class: "spr-relative spr-flex" }, I$ = ["onClick"], S$ = { key: 0 }, w$ = { key: 1 }, A$ = /* @__PURE__ */ De({
|
|
28382
28414
|
__name: "tabs",
|
|
28383
|
-
props:
|
|
28384
|
-
emits:
|
|
28415
|
+
props: N$,
|
|
28416
|
+
emits: $$,
|
|
28385
28417
|
setup(e, { emit: t }) {
|
|
28386
|
-
const r = t, n = e, { tabsClasses: s, activeTab: a, tabElements: l, updateSelectedTabIndex: i } =
|
|
28387
|
-
return (d, u) => (h(), b("div",
|
|
28418
|
+
const r = t, n = e, { tabsClasses: s, activeTab: a, tabElements: l, updateSelectedTabIndex: i } = x$(n, r);
|
|
28419
|
+
return (d, u) => (h(), b("div", _$, [
|
|
28388
28420
|
(h(!0), b(fe, null, xe(d.list, (c, p) => (h(), b("div", {
|
|
28389
28421
|
key: p,
|
|
28390
28422
|
ref_for: !0,
|
|
@@ -28429,7 +28461,7 @@ const KN = (e, t) => {
|
|
|
28429
28461
|
"spr-cursor-not-allowed": c.disabled
|
|
28430
28462
|
})
|
|
28431
28463
|
}, [
|
|
28432
|
-
c.icon ? (h(), b("div",
|
|
28464
|
+
c.icon ? (h(), b("div", S$, [
|
|
28433
28465
|
R(o(ae), {
|
|
28434
28466
|
class: w({
|
|
28435
28467
|
"spr-body-sm-regular": !0,
|
|
@@ -28438,9 +28470,9 @@ const KN = (e, t) => {
|
|
|
28438
28470
|
icon: o(a).index === p && typeof c.iconFill == "string" ? c.iconFill : c.icon
|
|
28439
28471
|
}, null, 8, ["class", "icon"])
|
|
28440
28472
|
])) : L("", !0),
|
|
28441
|
-
c.label ? (h(), b("div",
|
|
28473
|
+
c.label ? (h(), b("div", w$, q(c.label), 1)) : L("", !0)
|
|
28442
28474
|
], 2)
|
|
28443
|
-
], 10,
|
|
28475
|
+
], 10, I$))), 128)),
|
|
28444
28476
|
d.underlined ? (h(), b("div", {
|
|
28445
28477
|
key: 0,
|
|
28446
28478
|
class: w([
|
|
@@ -28454,10 +28486,10 @@ const KN = (e, t) => {
|
|
|
28454
28486
|
}, null, 4)) : L("", !0)
|
|
28455
28487
|
]));
|
|
28456
28488
|
}
|
|
28457
|
-
}),
|
|
28489
|
+
}), T$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
28458
28490
|
__proto__: null,
|
|
28459
|
-
default:
|
|
28460
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
28491
|
+
default: A$
|
|
28492
|
+
}, Symbol.toStringTag, { value: "Module" })), E$ = {
|
|
28461
28493
|
id: {
|
|
28462
28494
|
type: String,
|
|
28463
28495
|
default: ""
|
|
@@ -28520,9 +28552,9 @@ const KN = (e, t) => {
|
|
|
28520
28552
|
type: Boolean,
|
|
28521
28553
|
default: !1
|
|
28522
28554
|
}
|
|
28523
|
-
},
|
|
28555
|
+
}, k$ = {
|
|
28524
28556
|
"update:modelValue": (e) => typeof e == "string"
|
|
28525
|
-
},
|
|
28557
|
+
}, O$ = (e, t) => {
|
|
28526
28558
|
const { error: r, disabled: n, readonly: s } = Oe(e), a = Re(e, "modelValue", t);
|
|
28527
28559
|
return {
|
|
28528
28560
|
textareaClasses: P(() => {
|
|
@@ -28556,12 +28588,12 @@ const KN = (e, t) => {
|
|
|
28556
28588
|
a.value = d.target.value;
|
|
28557
28589
|
}
|
|
28558
28590
|
};
|
|
28559
|
-
},
|
|
28591
|
+
}, j$ = ["for"], L$ = { key: 0 }, z$ = ["id", "rows", "placeholder", "value", "minlength", "maxlength", "readonly", "disabled"], P$ = /* @__PURE__ */ De({
|
|
28560
28592
|
__name: "textarea",
|
|
28561
|
-
props:
|
|
28562
|
-
emits:
|
|
28593
|
+
props: E$,
|
|
28594
|
+
emits: k$,
|
|
28563
28595
|
setup(e, { emit: t }) {
|
|
28564
|
-
const r = e, n = t, { onInput: s, textareaClasses: a } =
|
|
28596
|
+
const r = e, n = t, { onInput: s, textareaClasses: a } = O$(r, n);
|
|
28565
28597
|
return (l, i) => (h(), b("div", {
|
|
28566
28598
|
class: w(o(a).wrapperClasses)
|
|
28567
28599
|
}, [
|
|
@@ -28570,12 +28602,12 @@ const KN = (e, t) => {
|
|
|
28570
28602
|
for: r.id,
|
|
28571
28603
|
class: w(o(a).labelClasses)
|
|
28572
28604
|
}, [
|
|
28573
|
-
r.label ? (h(), b("span",
|
|
28605
|
+
r.label ? (h(), b("span", L$, q(r.label), 1)) : L("", !0),
|
|
28574
28606
|
r.supportingLabel ? (h(), b("span", {
|
|
28575
28607
|
key: 1,
|
|
28576
28608
|
class: w(o(a).supportingLabelClasses)
|
|
28577
28609
|
}, q(r.supportingLabel), 3)) : L("", !0)
|
|
28578
|
-
], 10,
|
|
28610
|
+
], 10, j$)) : L("", !0),
|
|
28579
28611
|
x("textarea", st(l.$attrs, {
|
|
28580
28612
|
id: r.id,
|
|
28581
28613
|
class: o(a).textAreaClasses,
|
|
@@ -28588,7 +28620,7 @@ const KN = (e, t) => {
|
|
|
28588
28620
|
disabled: r.disabled,
|
|
28589
28621
|
onInput: i[0] || (i[0] = //@ts-ignore
|
|
28590
28622
|
(...d) => o(s) && o(s)(...d))
|
|
28591
|
-
}), null, 16,
|
|
28623
|
+
}), null, 16, z$),
|
|
28592
28624
|
x("div", {
|
|
28593
28625
|
class: w(o(a).slotWrapperClasses)
|
|
28594
28626
|
}, [
|
|
@@ -28618,10 +28650,10 @@ const KN = (e, t) => {
|
|
|
28618
28650
|
], 2)
|
|
28619
28651
|
], 2));
|
|
28620
28652
|
}
|
|
28621
|
-
}),
|
|
28653
|
+
}), Y$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
28622
28654
|
__proto__: null,
|
|
28623
|
-
default:
|
|
28624
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
28655
|
+
default: P$
|
|
28656
|
+
}, Symbol.toStringTag, { value: "Module" })), F$ = {
|
|
28625
28657
|
modelValue: {
|
|
28626
28658
|
type: String,
|
|
28627
28659
|
required: !0
|
|
@@ -28678,9 +28710,9 @@ const KN = (e, t) => {
|
|
|
28678
28710
|
type: String,
|
|
28679
28711
|
default: "time-picker"
|
|
28680
28712
|
}
|
|
28681
|
-
},
|
|
28713
|
+
}, U$ = {
|
|
28682
28714
|
"update:modelValue": (e) => e instanceof MouseEvent
|
|
28683
|
-
},
|
|
28715
|
+
}, B$ = (e, t) => {
|
|
28684
28716
|
const { format: r, interval: n, fullWidth: s } = Oe(e), a = B(!1), l = Re(e, "modelValue", t), i = B(`time-picker-${K().valueOf()}-${Math.floor(Math.random() * 1e3)}`), d = P(() => U("spr-max-h-[300px] spr-p-size-spacing-3xs spr-overflow-y-auto", {
|
|
28685
28717
|
"spr-w-[240px]": !s.value
|
|
28686
28718
|
})), u = (m) => {
|
|
@@ -28716,18 +28748,18 @@ const KN = (e, t) => {
|
|
|
28716
28748
|
filterInput: u,
|
|
28717
28749
|
selectOption: v
|
|
28718
28750
|
};
|
|
28719
|
-
},
|
|
28751
|
+
}, R$ = ["id"], V$ = { key: 0 }, H$ = ["onMousedown"], Q$ = {
|
|
28720
28752
|
key: 0,
|
|
28721
28753
|
class: "spr-text-color-brand-base spr-font-bold"
|
|
28722
|
-
},
|
|
28754
|
+
}, G$ = {
|
|
28723
28755
|
key: 1,
|
|
28724
28756
|
class: "spr-px-3 spr-py-2 spr-text-gray-500"
|
|
28725
|
-
},
|
|
28757
|
+
}, Z$ = /* @__PURE__ */ De({
|
|
28726
28758
|
__name: "time-picker",
|
|
28727
|
-
props:
|
|
28728
|
-
emits:
|
|
28759
|
+
props: F$,
|
|
28760
|
+
emits: U$,
|
|
28729
28761
|
setup(e, { emit: t }) {
|
|
28730
|
-
const r = e, n = t, { optionClasses: s, isOpen: a, filteredOptions: l, selectedValue: i, getPlaceHolder: d, selectOption: u, filterInput: c, uniqueId: p } =
|
|
28762
|
+
const r = e, n = t, { optionClasses: s, isOpen: a, filteredOptions: l, selectedValue: i, getPlaceHolder: d, selectOption: u, filterInput: c, uniqueId: p } = B$(r, n);
|
|
28731
28763
|
return (g, f) => (h(), oe(o(lt), {
|
|
28732
28764
|
shown: o(a),
|
|
28733
28765
|
"onUpdate:shown": f[1] || (f[1] = (v) => Ie(a) ? a.value = v : null),
|
|
@@ -28746,7 +28778,7 @@ const KN = (e, t) => {
|
|
|
28746
28778
|
x("div", {
|
|
28747
28779
|
class: w(o(s))
|
|
28748
28780
|
}, [
|
|
28749
|
-
o(l).length > 0 ? (h(), b("div",
|
|
28781
|
+
o(l).length > 0 ? (h(), b("div", V$, [
|
|
28750
28782
|
(h(!0), b(fe, null, xe(o(l), (v) => {
|
|
28751
28783
|
var $, m;
|
|
28752
28784
|
return h(), b("div", {
|
|
@@ -28761,12 +28793,12 @@ const KN = (e, t) => {
|
|
|
28761
28793
|
onMousedown: cr((y) => o(u)(v), ["prevent"])
|
|
28762
28794
|
}, [
|
|
28763
28795
|
Be(q(v) + " ", 1),
|
|
28764
|
-
v.toUpperCase() === ((m = o(i)) == null ? void 0 : m.toUpperCase()) ? (h(), b("span",
|
|
28796
|
+
v.toUpperCase() === ((m = o(i)) == null ? void 0 : m.toUpperCase()) ? (h(), b("span", Q$, [
|
|
28765
28797
|
R(o(ae), { icon: "ph:check" })
|
|
28766
28798
|
])) : L("", !0)
|
|
28767
|
-
], 42,
|
|
28799
|
+
], 42, H$);
|
|
28768
28800
|
}), 128))
|
|
28769
|
-
])) : (h(), b("div",
|
|
28801
|
+
])) : (h(), b("div", G$, "No matching options found"))
|
|
28770
28802
|
], 2)
|
|
28771
28803
|
]),
|
|
28772
28804
|
default: W(() => [
|
|
@@ -28795,29 +28827,29 @@ const KN = (e, t) => {
|
|
|
28795
28827
|
]),
|
|
28796
28828
|
_: 1
|
|
28797
28829
|
}, 8, ["id", "modelValue", "placeholder", "readonly", "disabled", "label", "error", "display-helper", "helper-text", "onInput"])
|
|
28798
|
-
], 8,
|
|
28830
|
+
], 8, R$)
|
|
28799
28831
|
]),
|
|
28800
28832
|
_: 1
|
|
28801
28833
|
}, 8, ["shown", "aria-id", "container"]));
|
|
28802
28834
|
}
|
|
28803
|
-
}),
|
|
28835
|
+
}), W$ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
28804
28836
|
__proto__: null,
|
|
28805
|
-
default:
|
|
28806
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
28807
|
-
version:
|
|
28808
|
-
},
|
|
28809
|
-
Object.entries(
|
|
28837
|
+
default: Z$
|
|
28838
|
+
}, Symbol.toStringTag, { value: "Module" })), K$ = "2.26.3", J$ = {
|
|
28839
|
+
version: K$
|
|
28840
|
+
}, X$ = "spr-", q$ = /* @__PURE__ */ Object.assign({ "../src/components/accordion/accordion.vue": ip, "../src/components/attribute-filter/attribute-filter.vue": W4, "../src/components/audit-trail/audit-trail.vue": p6, "../src/components/avatar/avatar.vue": E3, "../src/components/badge/badge.vue": D3, "../src/components/banner/banner.vue": C6, "../src/components/button/button-dropdown/button-dropdown.vue": V6, "../src/components/button/button.vue": ep, "../src/components/calendar-cell/calendar-cell.vue": t5, "../src/components/calendar/calendar.vue": h9, "../src/components/card/card.vue": d5, "../src/components/checkbox/checkbox.vue": t4, "../src/components/chips/chips.vue": Y3, "../src/components/collapsible/collapsible.vue": g1, "../src/components/date-picker/date-calendar-picker/date-calendar-picker.vue": H9, "../src/components/date-picker/date-picker.vue": Df, "../src/components/date-picker/date-range-picker/date-range-picker.vue": a8, "../src/components/date-picker/month-year-picker/month-year-picker.vue": S8, "../src/components/date-picker/tabs/DatePickerCalendarTab.vue": _9, "../src/components/date-picker/tabs/DatePickerMonthTab.vue": A9, "../src/components/date-picker/tabs/DatePickerYearTab.vue": O9, "../src/components/dropdown/dropdown.vue": U6, "../src/components/empty-state/empty-state.vue": w5, "../src/components/file-upload/file-upload.vue": o7, "../src/components/filter/filter.vue": D7, "../src/components/floating-action/floating-action.vue": S7, "../src/components/icon/icon.vue": O7, "../src/components/input/input-contact-number/input-contact-number.vue": tv, "../src/components/input/input-currency/input-currency.vue": ov, "../src/components/input/input-dropdown/input-dropdown.vue": iv, "../src/components/input/input-email/input-email.vue": dv, "../src/components/input/input-password/input-password.vue": fv, "../src/components/input/input-search/input-search.vue": Z3, "../src/components/input/input-url/input-url.vue": hv, "../src/components/input/input-username/input-username.vue": mv, "../src/components/input/input.vue": G3, "../src/components/list/ladderized-list/ladderized-list-back.vue": k6, "../src/components/list/ladderized-list/ladderized-list.vue": L6, "../src/components/list/list-item/list-item.vue": _4, "../src/components/list/list.vue": B4, "../src/components/logo/logo.vue": bm, "../src/components/lozenge/lozenge.vue": y4, "../src/components/modal/modal.vue": Im, "../src/components/popper/popper.vue": Em, "../src/components/progress-bar/progress-bar.vue": R8, "../src/components/radio/radio-grouped/radio-grouped.vue": zm, "../src/components/radio/radio.vue": u4, "../src/components/select/select-ladderized/select-ladderized.vue": Zm, "../src/components/select/select-multiple/select-multiple.vue": uy, "../src/components/select/select.vue": Dy, "../src/components/sidenav/sidenav-loader.vue": Ny, "../src/components/sidenav/sidenav-menu-links.vue": Hy, "../src/components/sidenav/sidenav.vue": fb, "../src/components/sidepanel/sidepanel.vue": _b, "../src/components/sidepanel/stacking-sidepanel/stacking-sidepanel.vue": Tb, "../src/components/slider/slider.vue": zb, "../src/components/snackbar/snack/snack.vue": Vb, "../src/components/snackbar/snackbar.vue": DD, "../src/components/status/status.vue": q6, "../src/components/stepper/step/step.vue": wD, "../src/components/stepper/stepper.vue": ED, "../src/components/switch/switch.vue": BD, "../src/components/table/table-actions/table-actions.vue": QD, "../src/components/table/table-chips-title/table-chips-title.vue": KD, "../src/components/table/table-header-dropdown/table-header-dropdown.vue": aN, "../src/components/table/table-lozenge-title/table-lozenge-title.vue": uN, "../src/components/table/table-pagination/table-pagination.vue": bN, "../src/components/table/table.vue": D$, "../src/components/tabs/tabs.vue": T$, "../src/components/textarea/textarea.vue": Y$, "../src/components/time-picker/time-picker.vue": W$, "../src/components/tooltip/tooltip.vue": r6 }), ex = ["sidenav-menu-links.vue"], tx = (e) => {
|
|
28841
|
+
Object.entries(q$).filter(([t]) => {
|
|
28810
28842
|
const r = t.split("/").pop();
|
|
28811
|
-
return r && !
|
|
28843
|
+
return r && !ex.includes(r);
|
|
28812
28844
|
}).forEach(([t, r]) => {
|
|
28813
28845
|
var s;
|
|
28814
28846
|
const n = (s = t.split("/").pop()) == null ? void 0 : s.replace(".vue", "");
|
|
28815
|
-
n && e.component(`${
|
|
28847
|
+
n && e.component(`${X$}${n}`, r.default);
|
|
28816
28848
|
}), console.info(
|
|
28817
|
-
`%c🌱 Design System Next Installed v${
|
|
28849
|
+
`%c🌱 Design System Next Installed v${J$.version} 🌱`,
|
|
28818
28850
|
"font-weight: bold; font-size: 14px; color: green; padding: 16px 8px; border: 1px dashed green; border-radius: 4px; margin: 10px auto;"
|
|
28819
28851
|
);
|
|
28820
|
-
},
|
|
28852
|
+
}, ox = { install: tx };
|
|
28821
28853
|
export {
|
|
28822
28854
|
lp as Accordion,
|
|
28823
28855
|
Z4 as AttributeFilter,
|
|
@@ -28865,28 +28897,28 @@ export {
|
|
|
28865
28897
|
Tm as Popper,
|
|
28866
28898
|
hu as ProgressBar,
|
|
28867
28899
|
Jo as Radio,
|
|
28868
|
-
|
|
28869
|
-
|
|
28870
|
-
|
|
28871
|
-
|
|
28872
|
-
|
|
28873
|
-
|
|
28874
|
-
|
|
28900
|
+
Lm as RadioGrouped,
|
|
28901
|
+
My as Select,
|
|
28902
|
+
Gm as SelectLadderized,
|
|
28903
|
+
iy as SelectMultiple,
|
|
28904
|
+
pb as Sidenav,
|
|
28905
|
+
xb as Sidepanel,
|
|
28906
|
+
Lb as Slider,
|
|
28875
28907
|
Au as Snack,
|
|
28876
|
-
|
|
28877
|
-
|
|
28908
|
+
MD as Snackbar,
|
|
28909
|
+
Ab as StackingSidepanel,
|
|
28878
28910
|
du as Status,
|
|
28879
28911
|
$d as Step,
|
|
28880
|
-
|
|
28881
|
-
|
|
28882
|
-
|
|
28912
|
+
TD as Stepper,
|
|
28913
|
+
UD as Switch,
|
|
28914
|
+
M$ as Table,
|
|
28883
28915
|
xd as TableActions,
|
|
28884
28916
|
Io as TableChipsTitle,
|
|
28885
28917
|
So as TableLozengeTitle,
|
|
28886
|
-
|
|
28887
|
-
|
|
28888
|
-
|
|
28889
|
-
|
|
28918
|
+
yN as TablePagination,
|
|
28919
|
+
A$ as Tabs,
|
|
28920
|
+
P$ as Textarea,
|
|
28921
|
+
Z$ as TimePicker,
|
|
28890
28922
|
Wn as Tooltip,
|
|
28891
|
-
|
|
28923
|
+
ox as default
|
|
28892
28924
|
};
|