@ahmadmubarak98/namozaj 1.6.21 → 1.6.22
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/namozaj.js +561 -553
- package/package.json +1 -1
package/dist/namozaj.js
CHANGED
|
@@ -453,13 +453,13 @@ var getValueAndMessage = (e) => isObject$4(e) && !isRegex(e) ? e : {
|
|
|
453
453
|
return {};
|
|
454
454
|
const D = u ? u[0] : d, N = (te) => {
|
|
455
455
|
c && D.reportValidity && (D.setCustomValidity(isBoolean(te) ? "" : te || ""), D.reportValidity());
|
|
456
|
-
}, I = {}, k = isRadioInput(d), H = isCheckBoxInput(d), G = k || H, Y = (S || isFileInput(d)) && isUndefined$1(d.value) && isUndefined$1(L) || isHTMLElement$2(d) && d.value === "" || L === "" || Array.isArray(L) && !L.length, B = appendErrors.bind(null, w, l, I), j = (te, Z,
|
|
457
|
-
const ve = te ? Z :
|
|
456
|
+
}, I = {}, k = isRadioInput(d), H = isCheckBoxInput(d), G = k || H, Y = (S || isFileInput(d)) && isUndefined$1(d.value) && isUndefined$1(L) || isHTMLElement$2(d) && d.value === "" || L === "" || Array.isArray(L) && !L.length, B = appendErrors.bind(null, w, l, I), j = (te, Z, oe, re = INPUT_VALIDATION_RULES.maxLength, be = INPUT_VALIDATION_RULES.minLength) => {
|
|
457
|
+
const ve = te ? Z : oe;
|
|
458
458
|
I[w] = {
|
|
459
|
-
type: te ?
|
|
459
|
+
type: te ? re : be,
|
|
460
460
|
message: ve,
|
|
461
461
|
ref: d,
|
|
462
|
-
...B(te ?
|
|
462
|
+
...B(te ? re : be, ve)
|
|
463
463
|
};
|
|
464
464
|
};
|
|
465
465
|
if (p ? !Array.isArray(L) || !L.length : b && (!G && (Y || isNullOrUndefined(L)) || isBoolean(L) && !L || H && !getCheckboxValue(u).isValid || k && !getRadioValue(u).isValid)) {
|
|
@@ -474,20 +474,20 @@ var getValueAndMessage = (e) => isObject$4(e) && !isRegex(e) ? e : {
|
|
|
474
474
|
}
|
|
475
475
|
if (!Y && (!isNullOrUndefined(m) || !isNullOrUndefined(y))) {
|
|
476
476
|
let te, Z;
|
|
477
|
-
const
|
|
477
|
+
const oe = getValueAndMessage(y), re = getValueAndMessage(m);
|
|
478
478
|
if (!isNullOrUndefined(L) && !isNaN(L)) {
|
|
479
479
|
const be = d.valueAsNumber || L && +L;
|
|
480
|
-
isNullOrUndefined(
|
|
480
|
+
isNullOrUndefined(oe.value) || (te = be > oe.value), isNullOrUndefined(re.value) || (Z = be < re.value);
|
|
481
481
|
} else {
|
|
482
482
|
const be = d.valueAsDate || new Date(L), ve = (ye) => /* @__PURE__ */ new Date((/* @__PURE__ */ new Date()).toDateString() + " " + ye), Re = d.type == "time", we = d.type == "week";
|
|
483
|
-
isString$1(
|
|
483
|
+
isString$1(oe.value) && L && (te = Re ? ve(L) > ve(oe.value) : we ? L > oe.value : be > new Date(oe.value)), isString$1(re.value) && L && (Z = Re ? ve(L) < ve(re.value) : we ? L < re.value : be < new Date(re.value));
|
|
484
484
|
}
|
|
485
|
-
if ((te || Z) && (j(!!te,
|
|
485
|
+
if ((te || Z) && (j(!!te, oe.message, re.message, INPUT_VALIDATION_RULES.max, INPUT_VALIDATION_RULES.min), !l))
|
|
486
486
|
return N(I[w].message), I;
|
|
487
487
|
}
|
|
488
488
|
if ((h || g) && !Y && (isString$1(L) || p && Array.isArray(L))) {
|
|
489
|
-
const te = getValueAndMessage(h), Z = getValueAndMessage(g),
|
|
490
|
-
if ((
|
|
489
|
+
const te = getValueAndMessage(h), Z = getValueAndMessage(g), oe = !isNullOrUndefined(te.value) && L.length > +te.value, re = !isNullOrUndefined(Z.value) && L.length < +Z.value;
|
|
490
|
+
if ((oe || re) && (j(oe, te.message, Z.message), !l))
|
|
491
491
|
return N(I[w].message), I;
|
|
492
492
|
}
|
|
493
493
|
if (C && !Y && isString$1(L)) {
|
|
@@ -513,11 +513,11 @@ var getValueAndMessage = (e) => isObject$4(e) && !isRegex(e) ? e : {
|
|
|
513
513
|
for (const Z in v) {
|
|
514
514
|
if (!isEmptyObject(te) && !l)
|
|
515
515
|
break;
|
|
516
|
-
const
|
|
517
|
-
|
|
518
|
-
...
|
|
519
|
-
...B(Z,
|
|
520
|
-
}, N(
|
|
516
|
+
const oe = getValidateError(await v[Z](L, a), D, Z);
|
|
517
|
+
oe && (te = {
|
|
518
|
+
...oe,
|
|
519
|
+
...B(Z, oe.message)
|
|
520
|
+
}, N(oe.message), l && (I[w] = te));
|
|
521
521
|
}
|
|
522
522
|
if (!isEmptyObject(te) && (I[w] = {
|
|
523
523
|
ref: D,
|
|
@@ -704,9 +704,9 @@ function createFormControl(e = {}) {
|
|
|
704
704
|
Je && (Je._f.refs ? Je._f.refs.every((_e) => !live(_e)) : !live(Je._f.ref)) && Ne(ze);
|
|
705
705
|
}
|
|
706
706
|
u.unMount = /* @__PURE__ */ new Set();
|
|
707
|
-
}, Z = (ze, Je) => !t.disabled && (ze && Je && set$2(p, ze, Je), !deepEqual(t0(), c)),
|
|
707
|
+
}, Z = (ze, Je) => !t.disabled && (ze && Je && set$2(p, ze, Je), !deepEqual(t0(), c)), oe = (ze, Je, _e) => generateWatchOutput(ze, u, {
|
|
708
708
|
...d.mount ? p : isUndefined$1(Je) ? c : isString$1(ze) ? { [ze]: Je } : Je
|
|
709
|
-
}, _e, Je),
|
|
709
|
+
}, _e, Je), re = (ze) => compact(get$3(d.mount ? p : c, ze, t.shouldUnregister ? get$3(c, ze, []) : [])), be = (ze, Je, _e = {}) => {
|
|
710
710
|
const a0 = get$3(l, ze);
|
|
711
711
|
let d0 = Je;
|
|
712
712
|
if (a0) {
|
|
@@ -808,8 +808,8 @@ function createFormControl(e = {}) {
|
|
|
808
808
|
isValid: !1
|
|
809
809
|
}), _e && _e.shouldFocus && a0 && a0.focus && a0.focus();
|
|
810
810
|
}, Qe = (ze, Je) => isFunction$1(ze) ? y.state.subscribe({
|
|
811
|
-
next: (_e) => ze(
|
|
812
|
-
}) :
|
|
811
|
+
next: (_e) => ze(oe(void 0, Je), _e)
|
|
812
|
+
}) : oe(ze, Je, !0), Ze = (ze) => y.state.subscribe({
|
|
813
813
|
next: (Je) => {
|
|
814
814
|
shouldSubscribeByName(ze.name, Je.name, ze.exact) && shouldRenderFormState(Je, ze.formState || g, i0, ze.reRenderRoot) && ze.callback({
|
|
815
815
|
values: { ...p },
|
|
@@ -998,13 +998,13 @@ function createFormControl(e = {}) {
|
|
|
998
998
|
setError: Xe,
|
|
999
999
|
_subscribe: Ze,
|
|
1000
1000
|
_runSchema: Y,
|
|
1001
|
-
_getWatch:
|
|
1001
|
+
_getWatch: oe,
|
|
1002
1002
|
_getDirty: Z,
|
|
1003
1003
|
_setValid: x,
|
|
1004
1004
|
_setFieldArray: D,
|
|
1005
1005
|
_setDisabledField: je,
|
|
1006
1006
|
_setErrors: I,
|
|
1007
|
-
_getFieldArray:
|
|
1007
|
+
_getFieldArray: re,
|
|
1008
1008
|
_reset: Ge,
|
|
1009
1009
|
_resetDefaultValues: () => isFunction$1(t.defaultValues) && t.defaultValues().then((ze) => {
|
|
1010
1010
|
Fe(ze, t.resetOptions), y.state.next({
|
|
@@ -2890,7 +2890,7 @@ function createValidation(e) {
|
|
|
2890
2890
|
spec: d.spec,
|
|
2891
2891
|
disableStackTrace: j.disableStackTrace || x
|
|
2892
2892
|
}, m, j.params);
|
|
2893
|
-
for (const
|
|
2893
|
+
for (const oe of Object.keys(te)) te[oe] = L(te[oe]);
|
|
2894
2894
|
const Z = new ValidationError(ValidationError.formatError(j.message || y, te), a, te.path, j.type || h, te.disableStackTrace);
|
|
2895
2895
|
return Z.params = te, Z;
|
|
2896
2896
|
}
|
|
@@ -4953,7 +4953,7 @@ function requireReactIs_development() {
|
|
|
4953
4953
|
}
|
|
4954
4954
|
}
|
|
4955
4955
|
}
|
|
4956
|
-
var I = b, k = h, H = u, G = d, Y = t, B = g, j = l, te = v, Z = C,
|
|
4956
|
+
var I = b, k = h, H = u, G = d, Y = t, B = g, j = l, te = v, Z = C, oe = a, re = p, be = c, ve = m, Re = !1;
|
|
4957
4957
|
function we(Be) {
|
|
4958
4958
|
return Re || (Re = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), ye(Be) || N(Be) === b;
|
|
4959
4959
|
}
|
|
@@ -4993,7 +4993,7 @@ function requireReactIs_development() {
|
|
|
4993
4993
|
function n0(Be) {
|
|
4994
4994
|
return N(Be) === m;
|
|
4995
4995
|
}
|
|
4996
|
-
reactIs_development.AsyncMode = I, reactIs_development.ConcurrentMode = k, reactIs_development.ContextConsumer = H, reactIs_development.ContextProvider = G, reactIs_development.Element = Y, reactIs_development.ForwardRef = B, reactIs_development.Fragment = j, reactIs_development.Lazy = te, reactIs_development.Memo = Z, reactIs_development.Portal =
|
|
4996
|
+
reactIs_development.AsyncMode = I, reactIs_development.ConcurrentMode = k, reactIs_development.ContextConsumer = H, reactIs_development.ContextProvider = G, reactIs_development.Element = Y, reactIs_development.ForwardRef = B, reactIs_development.Fragment = j, reactIs_development.Lazy = te, reactIs_development.Memo = Z, reactIs_development.Portal = oe, reactIs_development.Profiler = re, reactIs_development.StrictMode = be, reactIs_development.Suspense = ve, reactIs_development.isAsyncMode = we, reactIs_development.isConcurrentMode = ye, reactIs_development.isContextConsumer = De, reactIs_development.isContextProvider = t0, reactIs_development.isElement = Ye, reactIs_development.isForwardRef = Ke, reactIs_development.isFragment = Xe, reactIs_development.isLazy = Qe, reactIs_development.isMemo = Ze, reactIs_development.isPortal = Ve, reactIs_development.isProfiler = Ne, reactIs_development.isStrictMode = je, reactIs_development.isSuspense = n0, reactIs_development.isValidElementType = D, reactIs_development.typeOf = N;
|
|
4997
4997
|
}()), reactIs_development;
|
|
4998
4998
|
}
|
|
4999
4999
|
var hasRequiredReactIs;
|
|
@@ -5311,7 +5311,7 @@ function requireFactoryWithTypeCheckers() {
|
|
|
5311
5311
|
}
|
|
5312
5312
|
function B() {
|
|
5313
5313
|
function ye(De, t0, Ye, Ke, Xe) {
|
|
5314
|
-
return
|
|
5314
|
+
return oe(De[t0]) ? null : new w("Invalid " + Ke + " `" + Xe + "` supplied to " + ("`" + Ye + "`, expected a ReactNode."));
|
|
5315
5315
|
}
|
|
5316
5316
|
return S(ye);
|
|
5317
5317
|
}
|
|
@@ -5360,7 +5360,7 @@ Valid keys: ` + JSON.stringify(Object.keys(ye), null, " ")
|
|
|
5360
5360
|
}
|
|
5361
5361
|
return S(De);
|
|
5362
5362
|
}
|
|
5363
|
-
function
|
|
5363
|
+
function oe(ye) {
|
|
5364
5364
|
switch (typeof ye) {
|
|
5365
5365
|
case "number":
|
|
5366
5366
|
case "string":
|
|
@@ -5370,7 +5370,7 @@ Valid keys: ` + JSON.stringify(Object.keys(ye), null, " ")
|
|
|
5370
5370
|
return !ye;
|
|
5371
5371
|
case "object":
|
|
5372
5372
|
if (Array.isArray(ye))
|
|
5373
|
-
return ye.every(
|
|
5373
|
+
return ye.every(oe);
|
|
5374
5374
|
if (ye === null || u(ye))
|
|
5375
5375
|
return !0;
|
|
5376
5376
|
var De = m(ye);
|
|
@@ -5378,12 +5378,12 @@ Valid keys: ` + JSON.stringify(Object.keys(ye), null, " ")
|
|
|
5378
5378
|
var t0 = De.call(ye), Ye;
|
|
5379
5379
|
if (De !== ye.entries) {
|
|
5380
5380
|
for (; !(Ye = t0.next()).done; )
|
|
5381
|
-
if (!
|
|
5381
|
+
if (!oe(Ye.value))
|
|
5382
5382
|
return !1;
|
|
5383
5383
|
} else
|
|
5384
5384
|
for (; !(Ye = t0.next()).done; ) {
|
|
5385
5385
|
var Ke = Ye.value;
|
|
5386
|
-
if (Ke && !
|
|
5386
|
+
if (Ke && !oe(Ke[1]))
|
|
5387
5387
|
return !1;
|
|
5388
5388
|
}
|
|
5389
5389
|
} else
|
|
@@ -5393,12 +5393,12 @@ Valid keys: ` + JSON.stringify(Object.keys(ye), null, " ")
|
|
|
5393
5393
|
return !1;
|
|
5394
5394
|
}
|
|
5395
5395
|
}
|
|
5396
|
-
function
|
|
5396
|
+
function re(ye, De) {
|
|
5397
5397
|
return ye === "symbol" ? !0 : De ? De["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && De instanceof Symbol : !1;
|
|
5398
5398
|
}
|
|
5399
5399
|
function be(ye) {
|
|
5400
5400
|
var De = typeof ye;
|
|
5401
|
-
return Array.isArray(ye) ? "array" : ye instanceof RegExp ? "object" :
|
|
5401
|
+
return Array.isArray(ye) ? "array" : ye instanceof RegExp ? "object" : re(De, ye) ? "symbol" : De;
|
|
5402
5402
|
}
|
|
5403
5403
|
function ve(ye) {
|
|
5404
5404
|
if (typeof ye > "u" || ye === null)
|
|
@@ -7257,21 +7257,21 @@ function createStyled(e = {}) {
|
|
|
7257
7257
|
const k = [], H = I.map(D), G = [];
|
|
7258
7258
|
if (k.push(p), h && C && G.push(function(te) {
|
|
7259
7259
|
var be, ve;
|
|
7260
|
-
const
|
|
7261
|
-
if (!
|
|
7260
|
+
const oe = (ve = (be = te.theme.components) == null ? void 0 : be[h]) == null ? void 0 : ve.styleOverrides;
|
|
7261
|
+
if (!oe)
|
|
7262
7262
|
return null;
|
|
7263
|
-
const
|
|
7264
|
-
for (const Re in
|
|
7265
|
-
|
|
7266
|
-
return C(te,
|
|
7263
|
+
const re = {};
|
|
7264
|
+
for (const Re in oe)
|
|
7265
|
+
re[Re] = processStyle(te, oe[Re]);
|
|
7266
|
+
return C(te, re);
|
|
7267
7267
|
}), h && !w && G.push(function(te) {
|
|
7268
|
-
var
|
|
7269
|
-
const Z = te.theme,
|
|
7270
|
-
return
|
|
7268
|
+
var re, be;
|
|
7269
|
+
const Z = te.theme, oe = (be = (re = Z == null ? void 0 : Z.components) == null ? void 0 : re[h]) == null ? void 0 : be.variants;
|
|
7270
|
+
return oe ? processStyleVariants(te, oe) : null;
|
|
7271
7271
|
}), S || G.push(styleFunctionSx), Array.isArray(H[0])) {
|
|
7272
7272
|
const j = H.shift(), te = new Array(k.length).fill(""), Z = new Array(G.length).fill("");
|
|
7273
|
-
let
|
|
7274
|
-
|
|
7273
|
+
let oe;
|
|
7274
|
+
oe = [...te, ...j, ...Z], oe.raw = [...te, ...j.raw, ...Z], k.unshift(oe);
|
|
7275
7275
|
}
|
|
7276
7276
|
const Y = [...k, ...H, ...G], B = L(...Y);
|
|
7277
7277
|
return u.muiName && (B.muiName = u.muiName), process.env.NODE_ENV !== "production" && (B.displayName = generateDisplayName(h, g, u)), B;
|
|
@@ -7697,8 +7697,8 @@ function prepareCssVars(e, t = {}) {
|
|
|
7697
7697
|
return Object.entries(H).forEach(([B, {
|
|
7698
7698
|
css: j
|
|
7699
7699
|
}]) => {
|
|
7700
|
-
var
|
|
7701
|
-
const te = (
|
|
7700
|
+
var oe, re;
|
|
7701
|
+
const te = (re = (oe = p[B]) == null ? void 0 : oe.palette) == null ? void 0 : re.mode, Z = !l && te ? {
|
|
7702
7702
|
colorScheme: te,
|
|
7703
7703
|
...j
|
|
7704
7704
|
} : {
|
|
@@ -8461,8 +8461,8 @@ function createThemeWithVars(e = {}, ...t) {
|
|
|
8461
8461
|
};
|
|
8462
8462
|
Object.keys(N.colorSchemes).forEach((Y) => {
|
|
8463
8463
|
const B = N.colorSchemes[Y].palette, j = (te) => {
|
|
8464
|
-
const Z = te.split("-"),
|
|
8465
|
-
return y(te, B[
|
|
8464
|
+
const Z = te.split("-"), oe = Z[1], re = Z[2];
|
|
8465
|
+
return y(te, B[oe][re]);
|
|
8466
8466
|
};
|
|
8467
8467
|
if (B.mode === "light" && (setColor(B.common, "background", "#fff"), setColor(B.common, "onBackground", "#000")), B.mode === "dark" && (setColor(B.common, "background", "#000"), setColor(B.common, "onBackground", "#fff")), assignNode(B, ["Alert", "AppBar", "Avatar", "Button", "Chip", "FilledInput", "LinearProgress", "Skeleton", "Slider", "SnackbarContent", "SpeedDialAction", "StepConnector", "StepContent", "Switch", "TableCell", "Tooltip"]), B.mode === "light") {
|
|
8468
8468
|
setColor(B.Alert, "errorColor", private_safeDarken(B.error.light, 0.6)), setColor(B.Alert, "infoColor", private_safeDarken(B.info.light, 0.6)), setColor(B.Alert, "successColor", private_safeDarken(B.success.light, 0.6)), setColor(B.Alert, "warningColor", private_safeDarken(B.warning.light, 0.6)), setColor(B.Alert, "errorFilledBg", j("palette-error-main")), setColor(B.Alert, "infoFilledBg", j("palette-info-main")), setColor(B.Alert, "successFilledBg", j("palette-success-main")), setColor(B.Alert, "warningFilledBg", j("palette-warning-main")), setColor(B.Alert, "errorFilledColor", silent(() => B.getContrastText(B.error.main))), setColor(B.Alert, "infoFilledColor", silent(() => B.getContrastText(B.info.main))), setColor(B.Alert, "successFilledColor", silent(() => B.getContrastText(B.success.main))), setColor(B.Alert, "warningFilledColor", silent(() => B.getContrastText(B.warning.main))), setColor(B.Alert, "errorStandardBg", private_safeLighten(B.error.light, 0.9)), setColor(B.Alert, "infoStandardBg", private_safeLighten(B.info.light, 0.9)), setColor(B.Alert, "successStandardBg", private_safeLighten(B.success.light, 0.9)), setColor(B.Alert, "warningStandardBg", private_safeLighten(B.warning.light, 0.9)), setColor(B.Alert, "errorIconColor", j("palette-error-main")), setColor(B.Alert, "infoIconColor", j("palette-info-main")), setColor(B.Alert, "successIconColor", j("palette-success-main")), setColor(B.Alert, "warningIconColor", j("palette-warning-main")), setColor(B.AppBar, "defaultBg", j("palette-grey-100")), setColor(B.Avatar, "defaultBg", j("palette-grey-400")), setColor(B.Button, "inheritContainedBg", j("palette-grey-300")), setColor(B.Button, "inheritContainedHoverBg", j("palette-grey-A100")), setColor(B.Chip, "defaultBorder", j("palette-grey-400")), setColor(B.Chip, "defaultAvatarColor", j("palette-grey-700")), setColor(B.Chip, "defaultIconColor", j("palette-grey-700")), setColor(B.FilledInput, "bg", "rgba(0, 0, 0, 0.06)"), setColor(B.FilledInput, "hoverBg", "rgba(0, 0, 0, 0.09)"), setColor(B.FilledInput, "disabledBg", "rgba(0, 0, 0, 0.12)"), setColor(B.LinearProgress, "primaryBg", private_safeLighten(B.primary.main, 0.62)), setColor(B.LinearProgress, "secondaryBg", private_safeLighten(B.secondary.main, 0.62)), setColor(B.LinearProgress, "errorBg", private_safeLighten(B.error.main, 0.62)), setColor(B.LinearProgress, "infoBg", private_safeLighten(B.info.main, 0.62)), setColor(B.LinearProgress, "successBg", private_safeLighten(B.success.main, 0.62)), setColor(B.LinearProgress, "warningBg", private_safeLighten(B.warning.main, 0.62)), setColor(B.Skeleton, "bg", `rgba(${j("palette-text-primaryChannel")} / 0.11)`), setColor(B.Slider, "primaryTrack", private_safeLighten(B.primary.main, 0.62)), setColor(B.Slider, "secondaryTrack", private_safeLighten(B.secondary.main, 0.62)), setColor(B.Slider, "errorTrack", private_safeLighten(B.error.main, 0.62)), setColor(B.Slider, "infoTrack", private_safeLighten(B.info.main, 0.62)), setColor(B.Slider, "successTrack", private_safeLighten(B.success.main, 0.62)), setColor(B.Slider, "warningTrack", private_safeLighten(B.warning.main, 0.62));
|
|
@@ -14905,28 +14905,28 @@ const touchRippleClasses = generateUtilityClasses("MuiTouchRipple", ["root", "ri
|
|
|
14905
14905
|
left: 0,
|
|
14906
14906
|
top: 0
|
|
14907
14907
|
};
|
|
14908
|
-
let te, Z,
|
|
14908
|
+
let te, Z, oe;
|
|
14909
14909
|
if (G || N === void 0 || N.clientX === 0 && N.clientY === 0 || !N.clientX && !N.touches)
|
|
14910
14910
|
te = Math.round(j.width / 2), Z = Math.round(j.height / 2);
|
|
14911
14911
|
else {
|
|
14912
14912
|
const {
|
|
14913
|
-
clientX:
|
|
14913
|
+
clientX: re,
|
|
14914
14914
|
clientY: be
|
|
14915
14915
|
} = N.touches && N.touches.length > 0 ? N.touches[0] : N;
|
|
14916
|
-
te = Math.round(
|
|
14916
|
+
te = Math.round(re - j.left), Z = Math.round(be - j.top);
|
|
14917
14917
|
}
|
|
14918
14918
|
if (G)
|
|
14919
|
-
|
|
14919
|
+
oe = Math.sqrt((2 * j.width ** 2 + j.height ** 2) / 3), oe % 2 === 0 && (oe += 1);
|
|
14920
14920
|
else {
|
|
14921
|
-
const
|
|
14922
|
-
|
|
14921
|
+
const re = Math.max(Math.abs((B ? B.clientWidth : 0) - te), te) * 2 + 2, be = Math.max(Math.abs((B ? B.clientHeight : 0) - Z), Z) * 2 + 2;
|
|
14922
|
+
oe = Math.sqrt(re ** 2 + be ** 2);
|
|
14923
14923
|
}
|
|
14924
14924
|
N != null && N.touches ? v.current === null && (v.current = () => {
|
|
14925
14925
|
S({
|
|
14926
14926
|
pulsate: H,
|
|
14927
14927
|
rippleX: te,
|
|
14928
14928
|
rippleY: Z,
|
|
14929
|
-
rippleSize:
|
|
14929
|
+
rippleSize: oe,
|
|
14930
14930
|
cb: k
|
|
14931
14931
|
});
|
|
14932
14932
|
}, C.start(DELAY_RIPPLE, () => {
|
|
@@ -14935,7 +14935,7 @@ const touchRippleClasses = generateUtilityClasses("MuiTouchRipple", ["root", "ri
|
|
|
14935
14935
|
pulsate: H,
|
|
14936
14936
|
rippleX: te,
|
|
14937
14937
|
rippleY: Z,
|
|
14938
|
-
rippleSize:
|
|
14938
|
+
rippleSize: oe,
|
|
14939
14939
|
cb: k
|
|
14940
14940
|
});
|
|
14941
14941
|
}, [c, S, C]), L = React.useCallback(() => {
|
|
@@ -15068,11 +15068,11 @@ const buttonBaseClasses = generateUtilityClasses("MuiButtonBase", ["root", "disa
|
|
|
15068
15068
|
onTouchMove: j,
|
|
15069
15069
|
onTouchStart: te,
|
|
15070
15070
|
tabIndex: Z = 0,
|
|
15071
|
-
TouchRippleProps:
|
|
15072
|
-
touchRippleRef:
|
|
15071
|
+
TouchRippleProps: oe,
|
|
15072
|
+
touchRippleRef: re,
|
|
15073
15073
|
type: be,
|
|
15074
15074
|
...ve
|
|
15075
|
-
} = l, Re = React.useRef(null), we = useLazyRipple(), ye = useForkRef(we.ref,
|
|
15075
|
+
} = l, Re = React.useRef(null), we = useLazyRipple(), ye = useForkRef(we.ref, re), [De, t0] = React.useState(!1);
|
|
15076
15076
|
h && De && t0(!1), React.useImperativeHandle(c, () => ({
|
|
15077
15077
|
focusVisible: () => {
|
|
15078
15078
|
t0(!0), Re.current.focus();
|
|
@@ -15140,7 +15140,7 @@ const buttonBaseClasses = generateUtilityClasses("MuiButtonBase", ["root", "disa
|
|
|
15140
15140
|
children: [d, Ye ? /* @__PURE__ */ jsx(TouchRipple, {
|
|
15141
15141
|
ref: ye,
|
|
15142
15142
|
center: p,
|
|
15143
|
-
...
|
|
15143
|
+
...oe
|
|
15144
15144
|
}) : null]
|
|
15145
15145
|
});
|
|
15146
15146
|
});
|
|
@@ -15871,13 +15871,13 @@ const styles$3 = {
|
|
|
15871
15871
|
// eslint-disable-next-line react/prop-types
|
|
15872
15872
|
TransitionComponent: S = Transition,
|
|
15873
15873
|
...x
|
|
15874
|
-
} = t, L = useTimeout(), D = React.useRef(), N = useTheme(), I = React.useRef(null), k = useForkRef(I, getReactElementRef(p), a), H = (
|
|
15875
|
-
if (
|
|
15874
|
+
} = t, L = useTimeout(), D = React.useRef(), N = useTheme(), I = React.useRef(null), k = useForkRef(I, getReactElementRef(p), a), H = (re) => (be) => {
|
|
15875
|
+
if (re) {
|
|
15876
15876
|
const ve = I.current;
|
|
15877
|
-
be === void 0 ?
|
|
15877
|
+
be === void 0 ? re(ve) : re(ve, be);
|
|
15878
15878
|
}
|
|
15879
|
-
}, G = H(g), Y = H((
|
|
15880
|
-
reflow(
|
|
15879
|
+
}, G = H(g), Y = H((re, be) => {
|
|
15880
|
+
reflow(re);
|
|
15881
15881
|
const {
|
|
15882
15882
|
duration: ve,
|
|
15883
15883
|
delay: Re,
|
|
@@ -15890,15 +15890,15 @@ const styles$3 = {
|
|
|
15890
15890
|
mode: "enter"
|
|
15891
15891
|
});
|
|
15892
15892
|
let ye;
|
|
15893
|
-
w === "auto" ? (ye = N.transitions.getAutoHeightDuration(
|
|
15893
|
+
w === "auto" ? (ye = N.transitions.getAutoHeightDuration(re.clientHeight), D.current = ye) : ye = ve, re.style.transition = [N.transitions.create("opacity", {
|
|
15894
15894
|
duration: ye,
|
|
15895
15895
|
delay: Re
|
|
15896
15896
|
}), N.transitions.create("transform", {
|
|
15897
15897
|
duration: isWebKit154 ? ye : ye * 0.666,
|
|
15898
15898
|
delay: Re,
|
|
15899
15899
|
easing: we
|
|
15900
|
-
})].join(","), b && b(
|
|
15901
|
-
}), B = H(h), j = H(C), te = H((
|
|
15900
|
+
})].join(","), b && b(re, be);
|
|
15901
|
+
}), B = H(h), j = H(C), te = H((re) => {
|
|
15902
15902
|
const {
|
|
15903
15903
|
duration: be,
|
|
15904
15904
|
delay: ve,
|
|
@@ -15911,14 +15911,14 @@ const styles$3 = {
|
|
|
15911
15911
|
mode: "exit"
|
|
15912
15912
|
});
|
|
15913
15913
|
let we;
|
|
15914
|
-
w === "auto" ? (we = N.transitions.getAutoHeightDuration(
|
|
15914
|
+
w === "auto" ? (we = N.transitions.getAutoHeightDuration(re.clientHeight), D.current = we) : we = be, re.style.transition = [N.transitions.create("opacity", {
|
|
15915
15915
|
duration: we,
|
|
15916
15916
|
delay: ve
|
|
15917
15917
|
}), N.transitions.create("transform", {
|
|
15918
15918
|
duration: isWebKit154 ? we : we * 0.666,
|
|
15919
15919
|
delay: isWebKit154 ? ve : ve || we * 0.333,
|
|
15920
15920
|
easing: Re
|
|
15921
|
-
})].join(","),
|
|
15921
|
+
})].join(","), re.style.opacity = 0, re.style.transform = getScale(0.75), m && m(re);
|
|
15922
15922
|
}), Z = H(y);
|
|
15923
15923
|
return /* @__PURE__ */ jsx(S, {
|
|
15924
15924
|
appear: c,
|
|
@@ -15930,20 +15930,20 @@ const styles$3 = {
|
|
|
15930
15930
|
onExit: te,
|
|
15931
15931
|
onExited: Z,
|
|
15932
15932
|
onExiting: j,
|
|
15933
|
-
addEndListener: (
|
|
15934
|
-
w === "auto" && L.start(D.current || 0,
|
|
15933
|
+
addEndListener: (re) => {
|
|
15934
|
+
w === "auto" && L.start(D.current || 0, re), l && l(I.current, re);
|
|
15935
15935
|
},
|
|
15936
15936
|
timeout: w === "auto" ? null : w,
|
|
15937
15937
|
...x,
|
|
15938
|
-
children: (
|
|
15938
|
+
children: (re, {
|
|
15939
15939
|
ownerState: be,
|
|
15940
15940
|
...ve
|
|
15941
15941
|
}) => /* @__PURE__ */ React.cloneElement(p, {
|
|
15942
15942
|
style: {
|
|
15943
15943
|
opacity: 0,
|
|
15944
15944
|
transform: getScale(0.75),
|
|
15945
|
-
visibility:
|
|
15946
|
-
...styles$3[
|
|
15945
|
+
visibility: re === "exited" && !u ? "hidden" : void 0,
|
|
15946
|
+
...styles$3[re],
|
|
15947
15947
|
...v,
|
|
15948
15948
|
...p.props.style
|
|
15949
15949
|
},
|
|
@@ -16055,13 +16055,13 @@ const styles$2 = {
|
|
|
16055
16055
|
// eslint-disable-next-line react/prop-types
|
|
16056
16056
|
TransitionComponent: L = Transition,
|
|
16057
16057
|
...D
|
|
16058
|
-
} = t, N = React.useRef(null), I = useForkRef(N, getReactElementRef(u), a), k = (
|
|
16059
|
-
if (
|
|
16058
|
+
} = t, N = React.useRef(null), I = useForkRef(N, getReactElementRef(u), a), k = (oe) => (re) => {
|
|
16059
|
+
if (oe) {
|
|
16060
16060
|
const be = N.current;
|
|
16061
|
-
|
|
16061
|
+
re === void 0 ? oe(be) : oe(be, re);
|
|
16062
16062
|
}
|
|
16063
|
-
}, H = k(y), G = k((
|
|
16064
|
-
reflow(
|
|
16063
|
+
}, H = k(y), G = k((oe, re) => {
|
|
16064
|
+
reflow(oe);
|
|
16065
16065
|
const be = getTransitionProps({
|
|
16066
16066
|
style: S,
|
|
16067
16067
|
timeout: x,
|
|
@@ -16069,16 +16069,16 @@ const styles$2 = {
|
|
|
16069
16069
|
}, {
|
|
16070
16070
|
mode: "enter"
|
|
16071
16071
|
});
|
|
16072
|
-
|
|
16073
|
-
}), Y = k(m), B = k(w), j = k((
|
|
16074
|
-
const
|
|
16072
|
+
oe.style.webkitTransition = l.transitions.create("opacity", be), oe.style.transition = l.transitions.create("opacity", be), g && g(oe, re);
|
|
16073
|
+
}), Y = k(m), B = k(w), j = k((oe) => {
|
|
16074
|
+
const re = getTransitionProps({
|
|
16075
16075
|
style: S,
|
|
16076
16076
|
timeout: x,
|
|
16077
16077
|
easing: b
|
|
16078
16078
|
}, {
|
|
16079
16079
|
mode: "exit"
|
|
16080
16080
|
});
|
|
16081
|
-
|
|
16081
|
+
oe.style.webkitTransition = l.transitions.create("opacity", re), oe.style.transition = l.transitions.create("opacity", re), C && C(oe);
|
|
16082
16082
|
}), te = k(v);
|
|
16083
16083
|
return /* @__PURE__ */ jsx(L, {
|
|
16084
16084
|
appear: d,
|
|
@@ -16090,19 +16090,19 @@ const styles$2 = {
|
|
|
16090
16090
|
onExit: j,
|
|
16091
16091
|
onExited: te,
|
|
16092
16092
|
onExiting: B,
|
|
16093
|
-
addEndListener: (
|
|
16094
|
-
p && p(N.current,
|
|
16093
|
+
addEndListener: (oe) => {
|
|
16094
|
+
p && p(N.current, oe);
|
|
16095
16095
|
},
|
|
16096
16096
|
timeout: x,
|
|
16097
16097
|
...D,
|
|
16098
|
-
children: (
|
|
16099
|
-
ownerState:
|
|
16098
|
+
children: (oe, {
|
|
16099
|
+
ownerState: re,
|
|
16100
16100
|
...be
|
|
16101
16101
|
}) => /* @__PURE__ */ React.cloneElement(u, {
|
|
16102
16102
|
style: {
|
|
16103
16103
|
opacity: 0,
|
|
16104
|
-
visibility:
|
|
16105
|
-
...styles$2[
|
|
16104
|
+
visibility: oe === "exited" && !h ? "hidden" : void 0,
|
|
16105
|
+
...styles$2[oe],
|
|
16106
16106
|
...S,
|
|
16107
16107
|
...u.props.style
|
|
16108
16108
|
},
|
|
@@ -16827,8 +16827,8 @@ function detectOverflow(e, t) {
|
|
|
16827
16827
|
if (y === popper && j) {
|
|
16828
16828
|
var te = j[c];
|
|
16829
16829
|
Object.keys(B).forEach(function(Z) {
|
|
16830
|
-
var
|
|
16831
|
-
B[Z] += te[
|
|
16830
|
+
var oe = [right, bottom].indexOf(Z) >= 0 ? 1 : -1, re = [top, bottom].indexOf(Z) >= 0 ? "y" : "x";
|
|
16831
|
+
B[Z] += te[re] * oe;
|
|
16832
16832
|
});
|
|
16833
16833
|
}
|
|
16834
16834
|
return B;
|
|
@@ -16872,14 +16872,14 @@ function flip(e) {
|
|
|
16872
16872
|
allowedAutoPlacements: w
|
|
16873
16873
|
}) : Xe);
|
|
16874
16874
|
}, []), I = t.rects.reference, k = t.rects.popper, H = /* @__PURE__ */ new Map(), G = !0, Y = N[0], B = 0; B < N.length; B++) {
|
|
16875
|
-
var j = N[B], te = getBasePlacement(j), Z = getVariation(j) === start,
|
|
16875
|
+
var j = N[B], te = getBasePlacement(j), Z = getVariation(j) === start, oe = [top, bottom].indexOf(te) >= 0, re = oe ? "width" : "height", be = detectOverflow(t, {
|
|
16876
16876
|
placement: j,
|
|
16877
16877
|
boundary: g,
|
|
16878
16878
|
rootBoundary: m,
|
|
16879
16879
|
altBoundary: y,
|
|
16880
16880
|
padding: h
|
|
16881
|
-
}), ve =
|
|
16882
|
-
I[
|
|
16881
|
+
}), ve = oe ? Z ? right : left : Z ? bottom : top;
|
|
16882
|
+
I[re] > k[re] && (ve = getOppositePlacement(ve));
|
|
16883
16883
|
var Re = getOppositePlacement(ve), we = [];
|
|
16884
16884
|
if (p && we.push(be[te] <= 0), u && we.push(be[ve] <= 0, be[Re] <= 0), we.every(function(Ke) {
|
|
16885
16885
|
return Ke;
|
|
@@ -17019,10 +17019,10 @@ function preventOverflow(e) {
|
|
|
17019
17019
|
};
|
|
17020
17020
|
if (k) {
|
|
17021
17021
|
if (p) {
|
|
17022
|
-
var Z,
|
|
17022
|
+
var Z, oe = N === "y" ? top : left, re = N === "y" ? bottom : right, be = N === "y" ? "height" : "width", ve = k[N], Re = ve + S[oe], we = ve - S[re], ye = C ? -G[be] / 2 : 0, De = L === start ? H[be] : G[be], t0 = L === start ? -G[be] : -H[be], Ye = t.elements.arrow, Ke = C && Ye ? getLayoutRect(Ye) : {
|
|
17023
17023
|
width: 0,
|
|
17024
17024
|
height: 0
|
|
17025
|
-
}, Xe = t.modifiersData["arrow#persistent"] ? t.modifiersData["arrow#persistent"].padding : getFreshSideObject(), Qe = Xe[
|
|
17025
|
+
}, Xe = t.modifiersData["arrow#persistent"] ? t.modifiersData["arrow#persistent"].padding : getFreshSideObject(), Qe = Xe[oe], Ze = Xe[re], Ve = within(0, H[be], Ke[be]), Ne = D ? H[be] / 2 - ye - Ve - Qe - B.mainAxis : De - Ve - Qe - B.mainAxis, je = D ? -H[be] / 2 + ye + Ve + Ze + B.mainAxis : t0 + Ve + Ze + B.mainAxis, n0 = t.elements.arrow && getOffsetParent(t.elements.arrow), Be = n0 ? N === "y" ? n0.clientTop || 0 : n0.clientLeft || 0 : 0, U = (Z = j == null ? void 0 : j[N]) != null ? Z : 0, Oe = ve + Ne - U - Be, qe = ve + je - U, Ge = within(C ? min(Re, Oe) : Re, ve, C ? max(we, qe) : we);
|
|
17026
17026
|
k[N] = Ge, te[N] = Ge - ve;
|
|
17027
17027
|
}
|
|
17028
17028
|
if (u) {
|
|
@@ -17352,7 +17352,7 @@ const useUtilityClasses$$ = (e) => {
|
|
|
17352
17352
|
}, [l]), useEnhancedEffect(() => {
|
|
17353
17353
|
if (!Y || !b)
|
|
17354
17354
|
return;
|
|
17355
|
-
const
|
|
17355
|
+
const re = (Re) => {
|
|
17356
17356
|
G(Re.placement);
|
|
17357
17357
|
};
|
|
17358
17358
|
if (process.env.NODE_ENV !== "production" && Y && isHTMLElement(Y) && Y.nodeType === 1) {
|
|
@@ -17377,7 +17377,7 @@ const useUtilityClasses$$ = (e) => {
|
|
|
17377
17377
|
fn: ({
|
|
17378
17378
|
state: Re
|
|
17379
17379
|
}) => {
|
|
17380
|
-
|
|
17380
|
+
re(Re);
|
|
17381
17381
|
}
|
|
17382
17382
|
}];
|
|
17383
17383
|
u != null && (be = be.concat(u)), g && g.modifiers != null && (be = be.concat(g.modifiers));
|
|
@@ -17394,7 +17394,7 @@ const useUtilityClasses$$ = (e) => {
|
|
|
17394
17394
|
placement: H
|
|
17395
17395
|
};
|
|
17396
17396
|
v !== null && (j.TransitionProps = v);
|
|
17397
|
-
const te = useUtilityClasses$$(t), Z = C.root ?? "div",
|
|
17397
|
+
const te = useUtilityClasses$$(t), Z = C.root ?? "div", oe = useSlotProps({
|
|
17398
17398
|
elementType: Z,
|
|
17399
17399
|
externalSlotProps: y.root,
|
|
17400
17400
|
externalForwardedProps: S,
|
|
@@ -17406,7 +17406,7 @@ const useUtilityClasses$$ = (e) => {
|
|
|
17406
17406
|
className: te.root
|
|
17407
17407
|
});
|
|
17408
17408
|
return /* @__PURE__ */ jsx(Z, {
|
|
17409
|
-
...
|
|
17409
|
+
...oe,
|
|
17410
17410
|
children: typeof c == "function" ? c(j) : c
|
|
17411
17411
|
});
|
|
17412
17412
|
}), Popper$1 = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
@@ -18096,11 +18096,11 @@ function PickersPopper(e) {
|
|
|
18096
18096
|
reduceAnimations: C
|
|
18097
18097
|
} = t;
|
|
18098
18098
|
React.useEffect(() => {
|
|
18099
|
-
function
|
|
18099
|
+
function re(be) {
|
|
18100
18100
|
b && be.key === "Escape" && u();
|
|
18101
18101
|
}
|
|
18102
|
-
return document.addEventListener("keydown",
|
|
18103
|
-
document.removeEventListener("keydown",
|
|
18102
|
+
return document.addEventListener("keydown", re), () => {
|
|
18103
|
+
document.removeEventListener("keydown", re);
|
|
18104
18104
|
};
|
|
18105
18105
|
}, [u, b]);
|
|
18106
18106
|
const v = React.useRef(null);
|
|
@@ -18109,9 +18109,9 @@ function PickersPopper(e) {
|
|
|
18109
18109
|
v.current instanceof HTMLElement && v.current.focus();
|
|
18110
18110
|
}));
|
|
18111
18111
|
}, [b, h, p]);
|
|
18112
|
-
const [w, S, x] = useClickAwayListener(b, d ?? u), L = React.useRef(null), D = useForkRef(L, c), N = useForkRef(D, w), I = t, k = useUtilityClasses$_(I), H = useDefaultReduceAnimations(), G = C ?? H, Y = (
|
|
18113
|
-
|
|
18114
|
-
}, B = (m == null ? void 0 : m.desktopTransition) ?? G ? Fade : Grow, j = (m == null ? void 0 : m.desktopTrapFocus) ?? FocusTrap, te = (m == null ? void 0 : m.desktopPaper) ?? PickersPopperPaper, Z = (m == null ? void 0 : m.popper) ?? PickersPopperRoot,
|
|
18112
|
+
const [w, S, x] = useClickAwayListener(b, d ?? u), L = React.useRef(null), D = useForkRef(L, c), N = useForkRef(D, w), I = t, k = useUtilityClasses$_(I), H = useDefaultReduceAnimations(), G = C ?? H, Y = (re) => {
|
|
18113
|
+
re.key === "Escape" && (re.stopPropagation(), u());
|
|
18114
|
+
}, B = (m == null ? void 0 : m.desktopTransition) ?? G ? Fade : Grow, j = (m == null ? void 0 : m.desktopTrapFocus) ?? FocusTrap, te = (m == null ? void 0 : m.desktopPaper) ?? PickersPopperPaper, Z = (m == null ? void 0 : m.popper) ?? PickersPopperRoot, oe = useSlotProps({
|
|
18115
18115
|
elementType: Z,
|
|
18116
18116
|
externalSlotProps: y == null ? void 0 : y.popper,
|
|
18117
18117
|
additionalProps: {
|
|
@@ -18125,9 +18125,9 @@ function PickersPopper(e) {
|
|
|
18125
18125
|
className: k.root,
|
|
18126
18126
|
ownerState: t
|
|
18127
18127
|
});
|
|
18128
|
-
return /* @__PURE__ */ jsx(Z, _extends({},
|
|
18128
|
+
return /* @__PURE__ */ jsx(Z, _extends({}, oe, {
|
|
18129
18129
|
children: ({
|
|
18130
|
-
TransitionProps:
|
|
18130
|
+
TransitionProps: re,
|
|
18131
18131
|
placement: be
|
|
18132
18132
|
}) => /* @__PURE__ */ jsx(j, _extends({
|
|
18133
18133
|
open: b,
|
|
@@ -18136,7 +18136,7 @@ function PickersPopper(e) {
|
|
|
18136
18136
|
disableEnforceFocus: h === "tooltip",
|
|
18137
18137
|
isEnabled: () => !0
|
|
18138
18138
|
}, y == null ? void 0 : y.desktopTrapFocus, {
|
|
18139
|
-
children: /* @__PURE__ */ jsx(B, _extends({},
|
|
18139
|
+
children: /* @__PURE__ */ jsx(B, _extends({}, re, y == null ? void 0 : y.desktopTransition, {
|
|
18140
18140
|
children: /* @__PURE__ */ jsx(PickersPopperPaperWrapper, {
|
|
18141
18141
|
PaperComponent: te,
|
|
18142
18142
|
ownerState: I,
|
|
@@ -18353,13 +18353,13 @@ const useOpenState = ({
|
|
|
18353
18353
|
name: "setValueFromAction",
|
|
18354
18354
|
pickerAction: "accept"
|
|
18355
18355
|
});
|
|
18356
|
-
}),
|
|
18356
|
+
}), oe = useEventCallback(() => {
|
|
18357
18357
|
j({
|
|
18358
18358
|
value: H.lastPublishedValue,
|
|
18359
18359
|
name: "setValueFromAction",
|
|
18360
18360
|
pickerAction: "dismiss"
|
|
18361
18361
|
});
|
|
18362
|
-
}),
|
|
18362
|
+
}), re = useEventCallback(() => {
|
|
18363
18363
|
j({
|
|
18364
18364
|
value: H.lastCommittedValue,
|
|
18365
18365
|
name: "setValueFromAction",
|
|
@@ -18391,8 +18391,8 @@ const useOpenState = ({
|
|
|
18391
18391
|
})), t0 = {
|
|
18392
18392
|
onClear: te,
|
|
18393
18393
|
onAccept: Z,
|
|
18394
|
-
onDismiss:
|
|
18395
|
-
onCancel:
|
|
18394
|
+
onDismiss: oe,
|
|
18395
|
+
onCancel: re,
|
|
18396
18396
|
onSetToday: be,
|
|
18397
18397
|
onOpen: ve,
|
|
18398
18398
|
onClose: Re
|
|
@@ -18523,23 +18523,23 @@ const _excluded$G = ["className", "sx"], usePickerViews = ({
|
|
|
18523
18523
|
}), {
|
|
18524
18524
|
hasUIView: k,
|
|
18525
18525
|
viewModeLookup: H
|
|
18526
|
-
} = React.useMemo(() => g.reduce((
|
|
18526
|
+
} = React.useMemo(() => g.reduce((oe, re) => {
|
|
18527
18527
|
let be;
|
|
18528
|
-
return C[
|
|
18528
|
+
return C[re] != null ? be = "UI" : be = "field", oe.viewModeLookup[re] = be, be === "UI" && (oe.hasUIView = !0), oe;
|
|
18529
18529
|
}, {
|
|
18530
18530
|
hasUIView: !1,
|
|
18531
18531
|
viewModeLookup: {}
|
|
18532
|
-
}), [C, g]), G = React.useMemo(() => g.reduce((
|
|
18532
|
+
}), [C, g]), G = React.useMemo(() => g.reduce((oe, re) => C[re] != null && isTimeView(re) ? oe + 1 : oe, 0), [C, g]), Y = H[S], B = useEventCallback(() => Y === "UI"), [j, te] = React.useState(Y === "UI" ? S : null);
|
|
18533
18533
|
return j !== S && H[S] === "UI" && te(S), useEnhancedEffect(() => {
|
|
18534
18534
|
Y === "field" && u && (b(), setTimeout(() => {
|
|
18535
|
-
var
|
|
18536
|
-
(
|
|
18535
|
+
var oe, re;
|
|
18536
|
+
(oe = p == null ? void 0 : p.current) == null || oe.setSelectedSections(S), (re = p == null ? void 0 : p.current) == null || re.focusField(S);
|
|
18537
18537
|
}));
|
|
18538
18538
|
}, [S]), useEnhancedEffect(() => {
|
|
18539
18539
|
if (!u)
|
|
18540
18540
|
return;
|
|
18541
|
-
let
|
|
18542
|
-
Y === "field" && j != null && (
|
|
18541
|
+
let oe = S;
|
|
18542
|
+
Y === "field" && j != null && (oe = j), oe !== L && H[oe] === "UI" && H[L] === "UI" && (oe = L), oe !== S && x(oe), N(oe, !0);
|
|
18543
18543
|
}, [u]), {
|
|
18544
18544
|
hasUIView: k,
|
|
18545
18545
|
shouldRestoreFocus: B,
|
|
@@ -18551,10 +18551,10 @@ const _excluded$G = ["className", "sx"], usePickerViews = ({
|
|
|
18551
18551
|
renderCurrentView: () => {
|
|
18552
18552
|
if (j == null)
|
|
18553
18553
|
return null;
|
|
18554
|
-
const
|
|
18555
|
-
if (
|
|
18554
|
+
const oe = C[j];
|
|
18555
|
+
if (oe == null)
|
|
18556
18556
|
return null;
|
|
18557
|
-
const
|
|
18557
|
+
const re = _extends({}, w, a, t, {
|
|
18558
18558
|
views: g,
|
|
18559
18559
|
timezone: v,
|
|
18560
18560
|
onChange: I,
|
|
@@ -18565,7 +18565,7 @@ const _excluded$G = ["className", "sx"], usePickerViews = ({
|
|
|
18565
18565
|
showViewSwitcher: G > 1,
|
|
18566
18566
|
timeViewsCount: G
|
|
18567
18567
|
});
|
|
18568
|
-
return c ? c(C, j,
|
|
18568
|
+
return c ? c(C, j, re) : oe(re);
|
|
18569
18569
|
}
|
|
18570
18570
|
};
|
|
18571
18571
|
};
|
|
@@ -19159,14 +19159,14 @@ const useUtilityClasses$Z = (e) => {
|
|
|
19159
19159
|
size: I,
|
|
19160
19160
|
type: H,
|
|
19161
19161
|
variant: G
|
|
19162
|
-
}, Z = useUtilityClasses$Z(te),
|
|
19162
|
+
}, Z = useUtilityClasses$Z(te), oe = (k || L && N === "start") && /* @__PURE__ */ jsx(ButtonStartIcon, {
|
|
19163
19163
|
className: Z.startIcon,
|
|
19164
19164
|
ownerState: te,
|
|
19165
19165
|
children: k || /* @__PURE__ */ jsx(ButtonLoadingIconPlaceholder, {
|
|
19166
19166
|
className: Z.loadingIconPlaceholder,
|
|
19167
19167
|
ownerState: te
|
|
19168
19168
|
})
|
|
19169
|
-
}),
|
|
19169
|
+
}), re = (v || L && N === "end") && /* @__PURE__ */ jsx(ButtonEndIcon, {
|
|
19170
19170
|
className: Z.endIcon,
|
|
19171
19171
|
ownerState: te,
|
|
19172
19172
|
children: v || /* @__PURE__ */ jsx(ButtonLoadingIconPlaceholder, {
|
|
@@ -19199,7 +19199,7 @@ const useUtilityClasses$Z = (e) => {
|
|
|
19199
19199
|
id: L ? B : x,
|
|
19200
19200
|
...Y,
|
|
19201
19201
|
classes: Z,
|
|
19202
|
-
children: [
|
|
19202
|
+
children: [oe, N !== "end" && ve, u, N === "end" && ve, re]
|
|
19203
19203
|
});
|
|
19204
19204
|
});
|
|
19205
19205
|
process.env.NODE_ENV !== "production" && (Button.propTypes = {
|
|
@@ -19831,12 +19831,12 @@ const overridesResolver$2 = (e, t) => {
|
|
|
19831
19831
|
disablePadding: w,
|
|
19832
19832
|
divider: S,
|
|
19833
19833
|
hasSecondaryAction: Y
|
|
19834
|
-
}, j = useUtilityClasses$V(B), te = useForkRef(H, a), Z = D.root || b.Root || ListItemRoot,
|
|
19835
|
-
className: clsx(j.root,
|
|
19834
|
+
}, j = useUtilityClasses$V(B), te = useForkRef(H, a), Z = D.root || b.Root || ListItemRoot, oe = L.root || h.root || {}, re = {
|
|
19835
|
+
className: clsx(j.root, oe.className, d),
|
|
19836
19836
|
...N
|
|
19837
19837
|
};
|
|
19838
19838
|
let be = u || "li";
|
|
19839
|
-
return Y ? (be = !
|
|
19839
|
+
return Y ? (be = !re.component && !u ? "div" : be, g === "li" && (be === "li" ? be = "div" : re.component === "li" && (re.component = "div")), /* @__PURE__ */ jsx(ListContext.Provider, {
|
|
19840
19840
|
value: k,
|
|
19841
19841
|
children: /* @__PURE__ */ jsxs(ListItemContainer, {
|
|
19842
19842
|
as: g,
|
|
@@ -19845,31 +19845,31 @@ const overridesResolver$2 = (e, t) => {
|
|
|
19845
19845
|
ownerState: B,
|
|
19846
19846
|
...y,
|
|
19847
19847
|
children: [/* @__PURE__ */ jsx(Z, {
|
|
19848
|
-
...
|
|
19848
|
+
...oe,
|
|
19849
19849
|
...!isHostComponent(Z) && {
|
|
19850
19850
|
as: be,
|
|
19851
19851
|
ownerState: {
|
|
19852
19852
|
...B,
|
|
19853
|
-
...
|
|
19853
|
+
...oe.ownerState
|
|
19854
19854
|
}
|
|
19855
19855
|
},
|
|
19856
|
-
...
|
|
19856
|
+
...re,
|
|
19857
19857
|
children: G
|
|
19858
19858
|
}), G.pop()]
|
|
19859
19859
|
})
|
|
19860
19860
|
})) : /* @__PURE__ */ jsx(ListContext.Provider, {
|
|
19861
19861
|
value: k,
|
|
19862
19862
|
children: /* @__PURE__ */ jsxs(Z, {
|
|
19863
|
-
...
|
|
19863
|
+
...oe,
|
|
19864
19864
|
as: be,
|
|
19865
19865
|
ref: te,
|
|
19866
19866
|
...!isHostComponent(Z) && {
|
|
19867
19867
|
ownerState: {
|
|
19868
19868
|
...B,
|
|
19869
|
-
...
|
|
19869
|
+
...oe.ownerState
|
|
19870
19870
|
}
|
|
19871
19871
|
},
|
|
19872
|
-
...
|
|
19872
|
+
...re,
|
|
19873
19873
|
children: [G, x && /* @__PURE__ */ jsx(ListItemSecondaryAction, {
|
|
19874
19874
|
children: x
|
|
19875
19875
|
})]
|
|
@@ -20356,31 +20356,31 @@ const Chip = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
20356
20356
|
onDelete: !!v,
|
|
20357
20357
|
clickable: j,
|
|
20358
20358
|
variant: L
|
|
20359
|
-
},
|
|
20359
|
+
}, oe = useUtilityClasses$U(Z), re = te === ButtonBase ? {
|
|
20360
20360
|
component: b || "div",
|
|
20361
|
-
focusVisibleClassName:
|
|
20361
|
+
focusVisibleClassName: oe.focusVisible,
|
|
20362
20362
|
...v && {
|
|
20363
20363
|
disableRipple: !0
|
|
20364
20364
|
}
|
|
20365
20365
|
} : {};
|
|
20366
20366
|
let be = null;
|
|
20367
20367
|
v && (be = h && /* @__PURE__ */ React.isValidElement(h) ? /* @__PURE__ */ React.cloneElement(h, {
|
|
20368
|
-
className: clsx(h.props.className,
|
|
20368
|
+
className: clsx(h.props.className, oe.deleteIcon),
|
|
20369
20369
|
onClick: G
|
|
20370
20370
|
}) : /* @__PURE__ */ jsx(CancelIcon, {
|
|
20371
|
-
className: clsx(
|
|
20371
|
+
className: clsx(oe.deleteIcon),
|
|
20372
20372
|
onClick: G
|
|
20373
20373
|
}));
|
|
20374
20374
|
let ve = null;
|
|
20375
20375
|
c && /* @__PURE__ */ React.isValidElement(c) && (ve = /* @__PURE__ */ React.cloneElement(c, {
|
|
20376
|
-
className: clsx(
|
|
20376
|
+
className: clsx(oe.avatar, c.props.className)
|
|
20377
20377
|
}));
|
|
20378
20378
|
let Re = null;
|
|
20379
20379
|
return m && /* @__PURE__ */ React.isValidElement(m) && (Re = /* @__PURE__ */ React.cloneElement(m, {
|
|
20380
|
-
className: clsx(
|
|
20380
|
+
className: clsx(oe.icon, m.props.className)
|
|
20381
20381
|
})), process.env.NODE_ENV !== "production" && ve && Re && console.error("MUI: The Chip component can not handle the avatar and the icon prop at the same time. Pick one."), /* @__PURE__ */ jsxs(ChipRoot, {
|
|
20382
20382
|
as: te,
|
|
20383
|
-
className: clsx(
|
|
20383
|
+
className: clsx(oe.root, p),
|
|
20384
20384
|
disabled: j && g ? !0 : void 0,
|
|
20385
20385
|
onClick: C,
|
|
20386
20386
|
onKeyDown: Y,
|
|
@@ -20388,10 +20388,10 @@ const Chip = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
20388
20388
|
ref: H,
|
|
20389
20389
|
tabIndex: N && g ? -1 : D,
|
|
20390
20390
|
ownerState: Z,
|
|
20391
|
-
...
|
|
20391
|
+
...re,
|
|
20392
20392
|
...I,
|
|
20393
20393
|
children: [ve || Re, /* @__PURE__ */ jsx(ChipLabel, {
|
|
20394
|
-
className: clsx(
|
|
20394
|
+
className: clsx(oe.label),
|
|
20395
20395
|
ownerState: Z,
|
|
20396
20396
|
children: y
|
|
20397
20397
|
}), be]
|
|
@@ -20662,7 +20662,7 @@ const useUtilityClasses$T = (e) => {
|
|
|
20662
20662
|
view: d,
|
|
20663
20663
|
onViewChange: b,
|
|
20664
20664
|
className: D.tabs
|
|
20665
|
-
}, L == null ? void 0 : L.tabs)) : null, Z = (x == null ? void 0 : x.shortcuts) ?? PickersShortcuts,
|
|
20665
|
+
}, L == null ? void 0 : L.tabs)) : null, Z = (x == null ? void 0 : x.shortcuts) ?? PickersShortcuts, oe = useSlotProps({
|
|
20666
20666
|
elementType: Z,
|
|
20667
20667
|
externalSlotProps: L == null ? void 0 : L.shortcuts,
|
|
20668
20668
|
additionalProps: {
|
|
@@ -20677,13 +20677,13 @@ const useUtilityClasses$T = (e) => {
|
|
|
20677
20677
|
onChange: m,
|
|
20678
20678
|
wrapperVariant: t
|
|
20679
20679
|
}
|
|
20680
|
-
}),
|
|
20680
|
+
}), re = d && Z ? /* @__PURE__ */ jsx(Z, _extends({}, oe)) : null;
|
|
20681
20681
|
return {
|
|
20682
20682
|
toolbar: Y,
|
|
20683
20683
|
content: B,
|
|
20684
20684
|
tabs: te,
|
|
20685
20685
|
actionBar: k,
|
|
20686
|
-
shortcuts:
|
|
20686
|
+
shortcuts: re
|
|
20687
20687
|
};
|
|
20688
20688
|
}, useUtilityClasses$S = (e) => {
|
|
20689
20689
|
const {
|
|
@@ -20892,8 +20892,8 @@ const _excluded$D = ["props", "getOpenDialogAriaText"], _excluded2$6 = ["ownerSt
|
|
|
20892
20892
|
actions: j,
|
|
20893
20893
|
hasUIView: te,
|
|
20894
20894
|
layoutProps: Z,
|
|
20895
|
-
renderCurrentView:
|
|
20896
|
-
shouldRestoreFocus:
|
|
20895
|
+
renderCurrentView: oe,
|
|
20896
|
+
shouldRestoreFocus: re,
|
|
20897
20897
|
fieldProps: be,
|
|
20898
20898
|
contextValue: ve,
|
|
20899
20899
|
ownerState: Re
|
|
@@ -20989,12 +20989,12 @@ const _excluded$D = ["props", "getOpenDialogAriaText"], _excluded2$6 = ["ownerSt
|
|
|
20989
20989
|
open: B,
|
|
20990
20990
|
slots: c,
|
|
20991
20991
|
slotProps: Be,
|
|
20992
|
-
shouldRestoreFocus:
|
|
20992
|
+
shouldRestoreFocus: re,
|
|
20993
20993
|
reduceAnimations: I,
|
|
20994
20994
|
children: /* @__PURE__ */ jsx(je, _extends({}, Z, Be == null ? void 0 : Be.layout, {
|
|
20995
20995
|
slots: c,
|
|
20996
20996
|
slotProps: Be,
|
|
20997
|
-
children:
|
|
20997
|
+
children: oe()
|
|
20998
20998
|
}))
|
|
20999
20999
|
}))]
|
|
21000
21000
|
})
|
|
@@ -21077,10 +21077,10 @@ const TextareaAutosize = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
21077
21077
|
const j = N.scrollHeight;
|
|
21078
21078
|
let te = B;
|
|
21079
21079
|
p && (te = Math.max(Number(p) * j, te)), c && (te = Math.min(Number(c) * j, te)), te = Math.max(te, j);
|
|
21080
|
-
const Z = te + (H === "border-box" ? G + Y : 0),
|
|
21080
|
+
const Z = te + (H === "border-box" ? G + Y : 0), oe = Math.abs(te - B) <= 1;
|
|
21081
21081
|
return {
|
|
21082
21082
|
outerHeightStyle: Z,
|
|
21083
|
-
overflowing:
|
|
21083
|
+
overflowing: oe
|
|
21084
21084
|
};
|
|
21085
21085
|
}, [c, p, t.placeholder]), w = useEventCallback(() => {
|
|
21086
21086
|
const D = g.current, N = v();
|
|
@@ -21426,8 +21426,8 @@ const rootOverridesResolver = (e, t) => {
|
|
|
21426
21426
|
onChange: j,
|
|
21427
21427
|
onClick: te,
|
|
21428
21428
|
onFocus: Z,
|
|
21429
|
-
onKeyDown:
|
|
21430
|
-
onKeyUp:
|
|
21429
|
+
onKeyDown: oe,
|
|
21430
|
+
onKeyUp: re,
|
|
21431
21431
|
placeholder: be,
|
|
21432
21432
|
readOnly: ve,
|
|
21433
21433
|
renderSuffix: Re,
|
|
@@ -21556,8 +21556,8 @@ const rootOverridesResolver = (e, t) => {
|
|
|
21556
21556
|
required: qe.required,
|
|
21557
21557
|
rows: we,
|
|
21558
21558
|
value: Ze,
|
|
21559
|
-
onKeyDown:
|
|
21560
|
-
onKeyUp:
|
|
21559
|
+
onKeyDown: oe,
|
|
21560
|
+
onKeyUp: re,
|
|
21561
21561
|
type: Ke,
|
|
21562
21562
|
..._e,
|
|
21563
21563
|
...!isHostComponent(W0) && {
|
|
@@ -23694,9 +23694,9 @@ const useUtilityClasses$L = (e) => {
|
|
|
23694
23694
|
}));
|
|
23695
23695
|
const Z = React.useCallback(() => {
|
|
23696
23696
|
H(!0);
|
|
23697
|
-
}, []),
|
|
23697
|
+
}, []), oe = React.useCallback(() => {
|
|
23698
23698
|
H(!1);
|
|
23699
|
-
}, []),
|
|
23699
|
+
}, []), re = React.useMemo(() => ({
|
|
23700
23700
|
adornedStart: N,
|
|
23701
23701
|
setAdornedStart: I,
|
|
23702
23702
|
color: d,
|
|
@@ -23713,14 +23713,14 @@ const useUtilityClasses$L = (e) => {
|
|
|
23713
23713
|
onFocus: () => {
|
|
23714
23714
|
Y(!0);
|
|
23715
23715
|
},
|
|
23716
|
-
onEmpty:
|
|
23716
|
+
onEmpty: oe,
|
|
23717
23717
|
onFilled: Z,
|
|
23718
23718
|
registerEffect: j,
|
|
23719
23719
|
required: v,
|
|
23720
23720
|
variant: S
|
|
23721
|
-
}), [N, d, b, h, k, B, m, y, j,
|
|
23721
|
+
}), [N, d, b, h, k, B, m, y, j, oe, Z, v, w, S]);
|
|
23722
23722
|
return /* @__PURE__ */ jsx(FormControlContext.Provider, {
|
|
23723
|
-
value:
|
|
23723
|
+
value: re,
|
|
23724
23724
|
children: /* @__PURE__ */ jsx(FormControlRoot, {
|
|
23725
23725
|
as: u,
|
|
23726
23726
|
ownerState: L,
|
|
@@ -24512,10 +24512,10 @@ function useModal(e) {
|
|
|
24512
24512
|
disableScrollLock: l
|
|
24513
24513
|
}), C.current && (C.current.scrollTop = 0);
|
|
24514
24514
|
}, k = useEventCallback(() => {
|
|
24515
|
-
const
|
|
24516
|
-
manager.add(N(),
|
|
24517
|
-
}), H = () => manager.isTopModal(N()), G = useEventCallback((
|
|
24518
|
-
y.current =
|
|
24515
|
+
const re = getContainer(t) || D().body;
|
|
24516
|
+
manager.add(N(), re), C.current && I();
|
|
24517
|
+
}), H = () => manager.isTopModal(N()), G = useEventCallback((re) => {
|
|
24518
|
+
y.current = re, re && (h && H() ? I() : C.current && ariaHidden(C.current, L));
|
|
24519
24519
|
}), Y = React.useCallback(() => {
|
|
24520
24520
|
manager.remove(N(), L);
|
|
24521
24521
|
}, [L]);
|
|
@@ -24524,21 +24524,21 @@ function useModal(e) {
|
|
|
24524
24524
|
}, [Y]), React.useEffect(() => {
|
|
24525
24525
|
h ? k() : (!x || !c) && Y();
|
|
24526
24526
|
}, [h, Y, x, c, k]);
|
|
24527
|
-
const B = (
|
|
24527
|
+
const B = (re) => (be) => {
|
|
24528
24528
|
var ve;
|
|
24529
|
-
(ve =
|
|
24529
|
+
(ve = re.onKeyDown) == null || ve.call(re, be), !(be.key !== "Escape" || be.which === 229 || // Wait until IME is settled.
|
|
24530
24530
|
!H()) && (a || (be.stopPropagation(), b && b(be, "escapeKeyDown")));
|
|
24531
|
-
}, j = (
|
|
24531
|
+
}, j = (re) => (be) => {
|
|
24532
24532
|
var ve;
|
|
24533
|
-
(ve =
|
|
24533
|
+
(ve = re.onClick) == null || ve.call(re, be), be.target === be.currentTarget && b && b(be, "backdropClick");
|
|
24534
24534
|
};
|
|
24535
24535
|
return {
|
|
24536
|
-
getRootProps: (
|
|
24536
|
+
getRootProps: (re = {}) => {
|
|
24537
24537
|
const be = extractEventHandlers(e);
|
|
24538
24538
|
delete be.onTransitionEnter, delete be.onTransitionExited;
|
|
24539
24539
|
const ve = {
|
|
24540
24540
|
...be,
|
|
24541
|
-
...
|
|
24541
|
+
...re
|
|
24542
24542
|
};
|
|
24543
24543
|
return {
|
|
24544
24544
|
/*
|
|
@@ -24553,8 +24553,8 @@ function useModal(e) {
|
|
|
24553
24553
|
ref: v
|
|
24554
24554
|
};
|
|
24555
24555
|
},
|
|
24556
|
-
getBackdropProps: (
|
|
24557
|
-
const be =
|
|
24556
|
+
getBackdropProps: (re = {}) => {
|
|
24557
|
+
const be = re;
|
|
24558
24558
|
return {
|
|
24559
24559
|
"aria-hidden": !0,
|
|
24560
24560
|
...be,
|
|
@@ -24563,13 +24563,13 @@ function useModal(e) {
|
|
|
24563
24563
|
};
|
|
24564
24564
|
},
|
|
24565
24565
|
getTransitionProps: () => {
|
|
24566
|
-
const
|
|
24566
|
+
const re = () => {
|
|
24567
24567
|
S(!1), p && p();
|
|
24568
24568
|
}, be = () => {
|
|
24569
24569
|
S(!0), d && d(), c && Y();
|
|
24570
24570
|
};
|
|
24571
24571
|
return {
|
|
24572
|
-
onEnter: createChainedFunction(
|
|
24572
|
+
onEnter: createChainedFunction(re, (u == null ? void 0 : u.props.onEnter) ?? noop$2),
|
|
24573
24573
|
onExited: createChainedFunction(be, (u == null ? void 0 : u.props.onExited) ?? noop$2)
|
|
24574
24574
|
};
|
|
24575
24575
|
},
|
|
@@ -24658,7 +24658,7 @@ const useUtilityClasses$I = (e) => {
|
|
|
24658
24658
|
// eslint-disable-next-line react/prop-types
|
|
24659
24659
|
theme: te,
|
|
24660
24660
|
...Z
|
|
24661
|
-
} = l,
|
|
24661
|
+
} = l, oe = {
|
|
24662
24662
|
...l,
|
|
24663
24663
|
closeAfterTransition: b,
|
|
24664
24664
|
disableAutoFocus: v,
|
|
@@ -24670,7 +24670,7 @@ const useUtilityClasses$I = (e) => {
|
|
|
24670
24670
|
hideBackdrop: N,
|
|
24671
24671
|
keepMounted: I
|
|
24672
24672
|
}, {
|
|
24673
|
-
getRootProps:
|
|
24673
|
+
getRootProps: re,
|
|
24674
24674
|
getBackdropProps: be,
|
|
24675
24675
|
getTransitionProps: ve,
|
|
24676
24676
|
portalRef: Re,
|
|
@@ -24678,10 +24678,10 @@ const useUtilityClasses$I = (e) => {
|
|
|
24678
24678
|
exited: ye,
|
|
24679
24679
|
hasTransition: De
|
|
24680
24680
|
} = useModal({
|
|
24681
|
-
...
|
|
24681
|
+
...oe,
|
|
24682
24682
|
rootRef: a
|
|
24683
24683
|
}), t0 = {
|
|
24684
|
-
...
|
|
24684
|
+
...oe,
|
|
24685
24685
|
exited: ye
|
|
24686
24686
|
}, Ye = useUtilityClasses$I(t0), Ke = {};
|
|
24687
24687
|
if (h.props.tabIndex === void 0 && (Ke.tabIndex = "-1"), De) {
|
|
@@ -24709,7 +24709,7 @@ const useUtilityClasses$I = (e) => {
|
|
|
24709
24709
|
...Z,
|
|
24710
24710
|
component: m
|
|
24711
24711
|
},
|
|
24712
|
-
getSlotProps:
|
|
24712
|
+
getSlotProps: re,
|
|
24713
24713
|
ownerState: t0,
|
|
24714
24714
|
className: clsx(u, Ye == null ? void 0 : Ye.root, !t0.open && t0.exited && (Ye == null ? void 0 : Ye.hidden))
|
|
24715
24715
|
}), [Ve, Ne] = useSlot("backdrop", {
|
|
@@ -25060,18 +25060,18 @@ const useUtilityClasses$H = (e) => {
|
|
|
25060
25060
|
left: `${Math.round(qe)}px`,
|
|
25061
25061
|
transformOrigin: getTransformOriginValue(Be)
|
|
25062
25062
|
};
|
|
25063
|
-
}, [p, b, j, te, C]), [
|
|
25063
|
+
}, [p, b, j, te, C]), [oe, re] = React.useState(v), be = React.useCallback(() => {
|
|
25064
25064
|
const je = G.current;
|
|
25065
25065
|
if (!je)
|
|
25066
25066
|
return;
|
|
25067
25067
|
const n0 = Z(je);
|
|
25068
|
-
n0.top !== null && je.style.setProperty("top", n0.top), n0.left !== null && (je.style.left = n0.left), je.style.transformOrigin = n0.transformOrigin,
|
|
25068
|
+
n0.top !== null && je.style.setProperty("top", n0.top), n0.left !== null && (je.style.left = n0.left), je.style.transformOrigin = n0.transformOrigin, re(!0);
|
|
25069
25069
|
}, [Z]);
|
|
25070
25070
|
React.useEffect(() => (k && window.addEventListener("scroll", be), () => window.removeEventListener("scroll", be)), [p, k, be]);
|
|
25071
25071
|
const ve = () => {
|
|
25072
25072
|
be();
|
|
25073
25073
|
}, Re = () => {
|
|
25074
|
-
|
|
25074
|
+
re(!1);
|
|
25075
25075
|
};
|
|
25076
25076
|
React.useEffect(() => {
|
|
25077
25077
|
v && be();
|
|
@@ -25155,7 +25155,7 @@ const useUtilityClasses$H = (e) => {
|
|
|
25155
25155
|
shouldForwardComponentProp: !0,
|
|
25156
25156
|
additionalProps: {
|
|
25157
25157
|
elevation: y,
|
|
25158
|
-
style:
|
|
25158
|
+
style: oe ? void 0 : {
|
|
25159
25159
|
opacity: 0
|
|
25160
25160
|
}
|
|
25161
25161
|
},
|
|
@@ -25477,7 +25477,7 @@ const RTL_ORIGIN = {
|
|
|
25477
25477
|
externalSlotProps: L.root,
|
|
25478
25478
|
ownerState: I,
|
|
25479
25479
|
className: [k.root, d]
|
|
25480
|
-
}), [
|
|
25480
|
+
}), [oe, re] = useSlot("paper", {
|
|
25481
25481
|
className: k.paper,
|
|
25482
25482
|
elementType: MenuPaper,
|
|
25483
25483
|
externalForwardedProps: te,
|
|
@@ -25506,7 +25506,7 @@ const RTL_ORIGIN = {
|
|
|
25506
25506
|
transformOrigin: N ? RTL_ORIGIN : LTR_ORIGIN,
|
|
25507
25507
|
slots: {
|
|
25508
25508
|
root: x.root,
|
|
25509
|
-
paper:
|
|
25509
|
+
paper: oe,
|
|
25510
25510
|
backdrop: x.backdrop,
|
|
25511
25511
|
...x.transition && {
|
|
25512
25512
|
// TODO: pass `slots.transition` directly once `TransitionComponent` is removed from Popover
|
|
@@ -25515,7 +25515,7 @@ const RTL_ORIGIN = {
|
|
|
25515
25515
|
},
|
|
25516
25516
|
slotProps: {
|
|
25517
25517
|
root: Z,
|
|
25518
|
-
paper:
|
|
25518
|
+
paper: re,
|
|
25519
25519
|
backdrop: typeof L.backdrop == "function" ? L.backdrop(I) : L.backdrop,
|
|
25520
25520
|
transition: {
|
|
25521
25521
|
...Re,
|
|
@@ -25984,9 +25984,9 @@ const useUtilityClasses$E = (e) => {
|
|
|
25984
25984
|
renderValue: j,
|
|
25985
25985
|
required: te,
|
|
25986
25986
|
SelectDisplayProps: Z = {},
|
|
25987
|
-
tabIndex:
|
|
25987
|
+
tabIndex: oe,
|
|
25988
25988
|
// catching `type` from Input which makes no sense for SelectInput
|
|
25989
|
-
type:
|
|
25989
|
+
type: re,
|
|
25990
25990
|
value: be,
|
|
25991
25991
|
variant: ve = "standard",
|
|
25992
25992
|
...Re
|
|
@@ -26117,7 +26117,7 @@ const useUtilityClasses$E = (e) => {
|
|
|
26117
26117
|
let u0 = Ve;
|
|
26118
26118
|
!d && Ze && Xe && (u0 = Be.clientWidth);
|
|
26119
26119
|
let g0;
|
|
26120
|
-
typeof
|
|
26120
|
+
typeof oe < "u" ? g0 = oe : g0 = m ? null : 0;
|
|
26121
26121
|
const W0 = Z.id || (D ? `mui-component-select-${D}` : void 0), v0 = {
|
|
26122
26122
|
...t,
|
|
26123
26123
|
variant: ve,
|
|
@@ -26409,23 +26409,23 @@ const ArrowDropDownIcon = createSvgIcon(/* @__PURE__ */ jsx("path", {
|
|
|
26409
26409
|
props: l,
|
|
26410
26410
|
muiFormControl: j,
|
|
26411
26411
|
states: ["variant", "error"]
|
|
26412
|
-
}), Z = te.variant || G,
|
|
26412
|
+
}), Z = te.variant || G, oe = {
|
|
26413
26413
|
...l,
|
|
26414
26414
|
variant: Z,
|
|
26415
26415
|
classes: d
|
|
26416
|
-
},
|
|
26416
|
+
}, re = useUtilityClasses$D(oe), {
|
|
26417
26417
|
root: be,
|
|
26418
26418
|
...ve
|
|
26419
|
-
} =
|
|
26419
|
+
} = re, Re = y || {
|
|
26420
26420
|
standard: /* @__PURE__ */ jsx(StyledInput, {
|
|
26421
|
-
ownerState:
|
|
26421
|
+
ownerState: oe
|
|
26422
26422
|
}),
|
|
26423
26423
|
outlined: /* @__PURE__ */ jsx(StyledOutlinedInput, {
|
|
26424
26424
|
label: v,
|
|
26425
|
-
ownerState:
|
|
26425
|
+
ownerState: oe
|
|
26426
26426
|
}),
|
|
26427
26427
|
filled: /* @__PURE__ */ jsx(StyledFilledInput, {
|
|
26428
|
-
ownerState:
|
|
26428
|
+
ownerState: oe
|
|
26429
26429
|
})
|
|
26430
26430
|
}[Z], we = useForkRef(a, getReactElementRef(Re));
|
|
26431
26431
|
return /* @__PURE__ */ jsx(React.Fragment, {
|
|
@@ -26466,7 +26466,7 @@ const ArrowDropDownIcon = createSvgIcon(/* @__PURE__ */ jsx("path", {
|
|
|
26466
26466
|
notched: !0
|
|
26467
26467
|
} : {},
|
|
26468
26468
|
ref: we,
|
|
26469
|
-
className: clsx(Re.props.className, u,
|
|
26469
|
+
className: clsx(Re.props.className, u, re.root),
|
|
26470
26470
|
// If a custom input is provided via 'input' prop, do not allow 'variant' to be propagated to it's root element. See https://github.com/mui/material-ui/issues/33894.
|
|
26471
26471
|
...!y && {
|
|
26472
26472
|
variant: Z
|
|
@@ -26673,8 +26673,8 @@ const variantComponent = {
|
|
|
26673
26673
|
onFocus: j,
|
|
26674
26674
|
placeholder: te,
|
|
26675
26675
|
required: Z = !1,
|
|
26676
|
-
rows:
|
|
26677
|
-
select:
|
|
26676
|
+
rows: oe,
|
|
26677
|
+
select: re = !1,
|
|
26678
26678
|
SelectProps: be,
|
|
26679
26679
|
slots: ve = {},
|
|
26680
26680
|
slotProps: Re = {},
|
|
@@ -26691,10 +26691,10 @@ const variantComponent = {
|
|
|
26691
26691
|
fullWidth: C,
|
|
26692
26692
|
multiline: H,
|
|
26693
26693
|
required: Z,
|
|
26694
|
-
select:
|
|
26694
|
+
select: re,
|
|
26695
26695
|
variant: De
|
|
26696
26696
|
}, Ke = useUtilityClasses$C(Ye);
|
|
26697
|
-
process.env.NODE_ENV !== "production" &&
|
|
26697
|
+
process.env.NODE_ENV !== "production" && re && !d && console.error("MUI: `children` must be passed when using the `TextField` component with `select`.");
|
|
26698
26698
|
const Xe = useId(w), Qe = v && Xe ? `${Xe}-helper-text` : void 0, Ze = N && Xe ? `${Xe}-label` : void 0, Ve = variantComponent[De], Ne = {
|
|
26699
26699
|
slots: ve,
|
|
26700
26700
|
slotProps: {
|
|
@@ -26706,7 +26706,7 @@ const variantComponent = {
|
|
|
26706
26706
|
...Re
|
|
26707
26707
|
}
|
|
26708
26708
|
}, je = {}, n0 = Ne.slotProps.inputLabel;
|
|
26709
|
-
De === "outlined" && (n0 && typeof n0.shrink < "u" && (je.notched = n0.shrink), je.label = N),
|
|
26709
|
+
De === "outlined" && (n0 && typeof n0.shrink < "u" && (je.notched = n0.shrink), je.label = N), re && ((!be || !be.native) && (je.id = void 0), je["aria-describedby"] = void 0);
|
|
26710
26710
|
const [Be, U] = useSlot("root", {
|
|
26711
26711
|
elementType: TextFieldRoot,
|
|
26712
26712
|
shouldForwardComponentProp: !0,
|
|
@@ -26754,7 +26754,7 @@ const variantComponent = {
|
|
|
26754
26754
|
fullWidth: C,
|
|
26755
26755
|
multiline: H,
|
|
26756
26756
|
name: G,
|
|
26757
|
-
rows:
|
|
26757
|
+
rows: oe,
|
|
26758
26758
|
maxRows: I,
|
|
26759
26759
|
minRows: k,
|
|
26760
26760
|
type: we,
|
|
@@ -26778,7 +26778,7 @@ const variantComponent = {
|
|
|
26778
26778
|
id: Ze,
|
|
26779
26779
|
...Fe,
|
|
26780
26780
|
children: N
|
|
26781
|
-
}),
|
|
26781
|
+
}), re ? /* @__PURE__ */ jsx(ze, {
|
|
26782
26782
|
"aria-describedby": Qe,
|
|
26783
26783
|
id: Xe,
|
|
26784
26784
|
labelId: Ze,
|
|
@@ -27215,13 +27215,13 @@ const expandFormat = ({
|
|
|
27215
27215
|
return _extends({}, Qe, {
|
|
27216
27216
|
referenceValue: Ve
|
|
27217
27217
|
});
|
|
27218
|
-
}), [Z,
|
|
27218
|
+
}), [Z, oe] = useControlled({
|
|
27219
27219
|
controlled: S,
|
|
27220
27220
|
default: null,
|
|
27221
27221
|
name: "useField",
|
|
27222
27222
|
state: "selectedSections"
|
|
27223
|
-
}),
|
|
27224
|
-
|
|
27223
|
+
}), re = (Xe) => {
|
|
27224
|
+
oe(Xe), x == null || x(Xe);
|
|
27225
27225
|
}, be = React.useMemo(() => parseSelectedSections(Z, j.sections), [Z, j.sections]), ve = be === "all" ? 0 : be, Re = ({
|
|
27226
27226
|
value: Xe,
|
|
27227
27227
|
referenceValue: Qe,
|
|
@@ -27290,7 +27290,7 @@ const expandFormat = ({
|
|
|
27290
27290
|
newSectionValue: Qe,
|
|
27291
27291
|
shouldGoToNextSection: Ze
|
|
27292
27292
|
}) => {
|
|
27293
|
-
Ze && ve < j.sections.length - 1 &&
|
|
27293
|
+
Ze && ve < j.sections.length - 1 && re(ve + 1);
|
|
27294
27294
|
const Ve = d.getActiveDateManager(t, j, Xe), Ne = we(ve, Qe), je = Ve.getSections(Ne), n0 = getDateFromDateSections(t, je, G);
|
|
27295
27295
|
let Be, U;
|
|
27296
27296
|
if (n0 != null && t.isValid(n0)) {
|
|
@@ -27323,7 +27323,7 @@ const expandFormat = ({
|
|
|
27323
27323
|
state: j,
|
|
27324
27324
|
activeSectionIndex: ve,
|
|
27325
27325
|
parsedSelectedSections: be,
|
|
27326
|
-
setSelectedSections:
|
|
27326
|
+
setSelectedSections: re,
|
|
27327
27327
|
clearValue: ye,
|
|
27328
27328
|
clearActiveSection: De,
|
|
27329
27329
|
updateSectionValue: Ye,
|
|
@@ -27519,7 +27519,7 @@ const expandFormat = ({
|
|
|
27519
27519
|
sectionOrder: I,
|
|
27520
27520
|
areAllSectionsEmpty: k,
|
|
27521
27521
|
sectionsValueBoundaries: H
|
|
27522
|
-
} = e, G = React.useRef(null), Y = useForkRef(l, G), B = usePickersTranslations(), j = useUtils(), te = useId(), [Z,
|
|
27522
|
+
} = e, G = React.useRef(null), Y = useForkRef(l, G), B = usePickersTranslations(), j = useUtils(), te = useId(), [Z, oe] = React.useState(!1), re = React.useMemo(() => ({
|
|
27523
27523
|
syncSelectionToDOM: () => {
|
|
27524
27524
|
if (!G.current)
|
|
27525
27525
|
return;
|
|
@@ -27542,16 +27542,16 @@ const expandFormat = ({
|
|
|
27542
27542
|
},
|
|
27543
27543
|
focusField: (U = 0) => {
|
|
27544
27544
|
if (!G.current || // if the field is already focused, we don't need to focus it again
|
|
27545
|
-
|
|
27545
|
+
re.getActiveSectionIndexFromDOM() != null)
|
|
27546
27546
|
return;
|
|
27547
27547
|
const Oe = parseSelectedSections(U, S.sections);
|
|
27548
|
-
|
|
27548
|
+
oe(!0), G.current.getSectionContent(Oe).focus();
|
|
27549
27549
|
},
|
|
27550
27550
|
setSelectedSections: (U) => {
|
|
27551
27551
|
if (!G.current)
|
|
27552
27552
|
return;
|
|
27553
27553
|
const Oe = parseSelectedSections(U, S.sections);
|
|
27554
|
-
|
|
27554
|
+
oe((Oe === "all" ? 0 : Oe) !== null), v(U);
|
|
27555
27555
|
},
|
|
27556
27556
|
isFieldFocused: () => {
|
|
27557
27557
|
const U = getActiveElement(document);
|
|
@@ -27561,9 +27561,9 @@ const expandFormat = ({
|
|
|
27561
27561
|
if (!G.current)
|
|
27562
27562
|
return;
|
|
27563
27563
|
const Oe = S.sections[U];
|
|
27564
|
-
G.current.getSectionContent(U).innerHTML = Oe.value || Oe.placeholder,
|
|
27564
|
+
G.current.getSectionContent(U).innerHTML = Oe.value || Oe.placeholder, re.syncSelectionToDOM();
|
|
27565
27565
|
}), ve = useEventCallback((U, ...Oe) => {
|
|
27566
|
-
U.isDefaultPrevented() || !G.current || (
|
|
27566
|
+
U.isDefaultPrevented() || !G.current || (oe(!0), p == null || p(U, ...Oe), w === "all" ? setTimeout(() => {
|
|
27567
27567
|
const qe = document.getSelection().getRangeAt(0).startOffset;
|
|
27568
27568
|
if (qe === 0) {
|
|
27569
27569
|
v(I.startIndex);
|
|
@@ -27575,12 +27575,12 @@ const expandFormat = ({
|
|
|
27575
27575
|
Ge += 1, Fe += `${e0.startSeparator}${e0.value || e0.placeholder}${e0.endSeparator}`.length;
|
|
27576
27576
|
}
|
|
27577
27577
|
v(Ge - 1);
|
|
27578
|
-
}) : Z ? G.current.getRoot().contains(U.target) || v(I.startIndex) : (
|
|
27578
|
+
}) : Z ? G.current.getRoot().contains(U.target) || v(I.startIndex) : (oe(!0), v(I.startIndex)));
|
|
27579
27579
|
}), Re = useEventCallback((U) => {
|
|
27580
27580
|
if (u == null || u(U), !G.current || w !== "all")
|
|
27581
27581
|
return;
|
|
27582
27582
|
const qe = U.target.textContent ?? "";
|
|
27583
|
-
G.current.getRoot().innerHTML = S.sections.map((Ge) => `${Ge.startSeparator}${Ge.value || Ge.placeholder}${Ge.endSeparator}`).join(""),
|
|
27583
|
+
G.current.getRoot().innerHTML = S.sections.map((Ge) => `${Ge.startSeparator}${Ge.value || Ge.placeholder}${Ge.endSeparator}`).join(""), re.syncSelectionToDOM(), qe.length === 0 || qe.charCodeAt(0) === 10 ? (C(), L(), v("all")) : qe.length > 1 ? N(qe) : (w === "all" && v(0), y({
|
|
27584
27584
|
keyPressed: qe,
|
|
27585
27585
|
sectionIndex: 0
|
|
27586
27586
|
}));
|
|
@@ -27594,13 +27594,13 @@ const expandFormat = ({
|
|
|
27594
27594
|
}), ye = useEventCallback((...U) => {
|
|
27595
27595
|
if (d == null || d(...U), Z || !G.current)
|
|
27596
27596
|
return;
|
|
27597
|
-
|
|
27597
|
+
oe(!0), G.current.getSectionIndexFromDOMElement(getActiveElement(document)) != null || v(I.startIndex);
|
|
27598
27598
|
}), De = useEventCallback((...U) => {
|
|
27599
27599
|
c == null || c(...U), setTimeout(() => {
|
|
27600
27600
|
if (!G.current)
|
|
27601
27601
|
return;
|
|
27602
27602
|
const Oe = getActiveElement(document);
|
|
27603
|
-
!G.current.getRoot().contains(Oe) && (
|
|
27603
|
+
!G.current.getRoot().contains(Oe) && (oe(!1), v(null));
|
|
27604
27604
|
});
|
|
27605
27605
|
}), t0 = useEventCallback((U) => (Oe) => {
|
|
27606
27606
|
Oe.isDefaultPrevented() || v(U);
|
|
@@ -27707,7 +27707,7 @@ const expandFormat = ({
|
|
|
27707
27707
|
`));
|
|
27708
27708
|
g && G.current && G.current.getSectionContent(I.startIndex).focus();
|
|
27709
27709
|
}, []), {
|
|
27710
|
-
interactions:
|
|
27710
|
+
interactions: re,
|
|
27711
27711
|
returnedValue: {
|
|
27712
27712
|
// Forwarded
|
|
27713
27713
|
autoFocus: g,
|
|
@@ -27773,7 +27773,7 @@ const expandFormat = ({
|
|
|
27773
27773
|
getSectionsFromValue: Y,
|
|
27774
27774
|
areAllSectionsEmpty: B,
|
|
27775
27775
|
localizedDigits: j
|
|
27776
|
-
} = e, te = React.useRef(null), Z = useForkRef(b, te),
|
|
27776
|
+
} = e, te = React.useRef(null), Z = useForkRef(b, te), oe = React.useMemo(() => addPositionPropertiesToSections(v.sections, j, t), [v.sections, j, t]), re = React.useMemo(() => ({
|
|
27777
27777
|
syncSelectionToDOM: () => {
|
|
27778
27778
|
if (!te.current)
|
|
27779
27779
|
return;
|
|
@@ -27787,11 +27787,11 @@ const expandFormat = ({
|
|
|
27787
27787
|
if (y === "all")
|
|
27788
27788
|
te.current.select();
|
|
27789
27789
|
else {
|
|
27790
|
-
const Ve =
|
|
27790
|
+
const Ve = oe[y], Ne = Ve.type === "empty" ? Ve.startInInput - Ve.startSeparator.length : Ve.startInInput, je = Ve.type === "empty" ? Ve.endInInput + Ve.endSeparator.length : Ve.endInInput;
|
|
27791
27791
|
(Ne !== te.current.selectionStart || je !== te.current.selectionEnd) && te.current === getActiveElement(document) && te.current.setSelectionRange(Ne, je), clearTimeout(l.current), l.current = setTimeout(() => {
|
|
27792
27792
|
te.current && te.current === getActiveElement(document) && // The section might loose all selection, where `selectionStart === selectionEnd`
|
|
27793
27793
|
// https://github.com/mui/mui-x/pull/13652
|
|
27794
|
-
te.current.selectionStart === te.current.selectionEnd && (te.current.selectionStart !== Ne || te.current.selectionEnd !== je) &&
|
|
27794
|
+
te.current.selectionStart === te.current.selectionEnd && (te.current.selectionStart !== Ne || te.current.selectionEnd !== je) && re.syncSelectionToDOM();
|
|
27795
27795
|
});
|
|
27796
27796
|
}
|
|
27797
27797
|
te.current.scrollTop = Ze;
|
|
@@ -27800,8 +27800,8 @@ const expandFormat = ({
|
|
|
27800
27800
|
const Ze = te.current.selectionStart ?? 0, Ve = te.current.selectionEnd ?? 0;
|
|
27801
27801
|
if (Ze === 0 && Ve === 0)
|
|
27802
27802
|
return null;
|
|
27803
|
-
const Ne = Ze <=
|
|
27804
|
-
return Ne === -1 ?
|
|
27803
|
+
const Ne = Ze <= oe[0].startInInput ? 1 : oe.findIndex((je) => je.startInInput - je.startSeparator.length > Ze);
|
|
27804
|
+
return Ne === -1 ? oe.length - 1 : Ne - 1;
|
|
27805
27805
|
},
|
|
27806
27806
|
focusField: (Ze = 0) => {
|
|
27807
27807
|
var Ve;
|
|
@@ -27809,11 +27809,11 @@ const expandFormat = ({
|
|
|
27809
27809
|
},
|
|
27810
27810
|
setSelectedSections: (Ze) => G(Ze),
|
|
27811
27811
|
isFieldFocused: () => te.current === getActiveElement(document)
|
|
27812
|
-
}), [te, y,
|
|
27812
|
+
}), [te, y, oe, G]), be = () => {
|
|
27813
27813
|
const Ze = te.current.selectionStart ?? 0;
|
|
27814
27814
|
let Ve;
|
|
27815
|
-
Ze <=
|
|
27816
|
-
const Ne = Ve === -1 ?
|
|
27815
|
+
Ze <= oe[0].startInInput || Ze >= oe[oe.length - 1].endInInput ? Ve = 1 : Ve = oe.findIndex((je) => je.startInInput - je.startSeparator.length > Ze);
|
|
27816
|
+
const Ne = Ve === -1 ? oe.length - 1 : Ve - 1;
|
|
27817
27817
|
G(Ne);
|
|
27818
27818
|
}, ve = useEventCallback((...Ze) => {
|
|
27819
27819
|
c == null || c(...Ze);
|
|
@@ -27861,11 +27861,11 @@ const expandFormat = ({
|
|
|
27861
27861
|
if (y === "all" && Be.length === 1)
|
|
27862
27862
|
U = Be;
|
|
27863
27863
|
else {
|
|
27864
|
-
const Oe = cleanString(w.getV6InputValueFromSections(
|
|
27864
|
+
const Oe = cleanString(w.getV6InputValueFromSections(oe, j, t));
|
|
27865
27865
|
let qe = -1, Ge = -1;
|
|
27866
27866
|
for (let s0 = 0; s0 < Oe.length; s0 += 1)
|
|
27867
27867
|
qe === -1 && Oe[s0] !== Be[s0] && (qe = s0), Ge === -1 && Oe[Oe.length - s0 - 1] !== Be[Be.length - s0 - 1] && (Ge = s0);
|
|
27868
|
-
const Fe =
|
|
27868
|
+
const Fe = oe[C];
|
|
27869
27869
|
if (qe < Fe.start || Oe.length - Ge - 1 > Fe.end)
|
|
27870
27870
|
return;
|
|
27871
27871
|
const i0 = Be.length - Oe.length + Fe.end - cleanString(Fe.endSeparator || "").length;
|
|
@@ -27885,7 +27885,7 @@ const expandFormat = ({
|
|
|
27885
27885
|
}), []);
|
|
27886
27886
|
const Ke = React.useMemo(() => C == null || v.sections[C].contentType === "letter" ? "text" : "numeric", [C, v.sections]), Qe = !(te.current && te.current === getActiveElement(document)) && B;
|
|
27887
27887
|
return {
|
|
27888
|
-
interactions:
|
|
27888
|
+
interactions: re,
|
|
27889
27889
|
returnedValue: {
|
|
27890
27890
|
// Forwarded
|
|
27891
27891
|
readOnly: g,
|
|
@@ -27943,11 +27943,11 @@ const expandFormat = ({
|
|
|
27943
27943
|
timezone: j
|
|
27944
27944
|
}), {
|
|
27945
27945
|
resetCharacterQuery: Z
|
|
27946
|
-
} = te,
|
|
27946
|
+
} = te, oe = C.areValuesEqual(t, x.value, C.emptyValue), re = p ? useFieldV7TextField : useFieldV6TextField, be = React.useMemo(() => getSectionOrder(x.sections, w && !p), [x.sections, w, p]), {
|
|
27947
27947
|
returnedValue: ve,
|
|
27948
27948
|
interactions: Re
|
|
27949
|
-
} =
|
|
27950
|
-
areAllSectionsEmpty:
|
|
27949
|
+
} = re(_extends({}, e, S, te, {
|
|
27950
|
+
areAllSectionsEmpty: oe,
|
|
27951
27951
|
sectionOrder: be
|
|
27952
27952
|
})), we = useEventCallback((Xe) => {
|
|
27953
27953
|
if (b == null || b(Xe), !d)
|
|
@@ -28034,7 +28034,7 @@ const expandFormat = ({
|
|
|
28034
28034
|
onKeyDown: we,
|
|
28035
28035
|
onClear: t0,
|
|
28036
28036
|
error: De,
|
|
28037
|
-
clearable: !!(g && !
|
|
28037
|
+
clearable: !!(g && !oe && !u && !d)
|
|
28038
28038
|
}, Ke = {
|
|
28039
28039
|
disabled: d,
|
|
28040
28040
|
readOnly: u
|
|
@@ -28519,7 +28519,7 @@ const _excluded$A = ["elements", "areAllSectionsEmpty", "defaultValue", "label",
|
|
|
28519
28519
|
} = l, G = _objectWithoutPropertiesLoose$1(l, _excluded$A), Y = React.useRef(null), B = useForkRef(a, Y), j = useForkRef(I == null ? void 0 : I.ref, k), te = useRtl(), Z = useFormControl();
|
|
28520
28520
|
if (!Z)
|
|
28521
28521
|
throw new Error("MUI X: PickersInputBase should always be used inside a PickersTextField component");
|
|
28522
|
-
const
|
|
28522
|
+
const oe = (ye) => {
|
|
28523
28523
|
var De;
|
|
28524
28524
|
if (Z.disabled) {
|
|
28525
28525
|
ye.stopPropagation();
|
|
@@ -28532,9 +28532,9 @@ const _excluded$A = ["elements", "areAllSectionsEmpty", "defaultValue", "label",
|
|
|
28532
28532
|
}, [Z, g]), React.useEffect(() => {
|
|
28533
28533
|
Z && (p ? Z.onEmpty() : Z.onFilled());
|
|
28534
28534
|
}, [Z, p]);
|
|
28535
|
-
const
|
|
28535
|
+
const re = _extends({}, l, Z, {
|
|
28536
28536
|
isRtl: te
|
|
28537
|
-
}), be = useUtilityClasses$A(
|
|
28537
|
+
}), be = useUtilityClasses$A(re), ve = (y == null ? void 0 : y.root) || PickersInputBaseRoot, Re = useSlotProps({
|
|
28538
28538
|
elementType: ve,
|
|
28539
28539
|
externalSlotProps: C == null ? void 0 : C.root,
|
|
28540
28540
|
externalForwardedProps: G,
|
|
@@ -28543,7 +28543,7 @@ const _excluded$A = ["elements", "areAllSectionsEmpty", "defaultValue", "label",
|
|
|
28543
28543
|
ref: B
|
|
28544
28544
|
},
|
|
28545
28545
|
className: be.root,
|
|
28546
|
-
ownerState:
|
|
28546
|
+
ownerState: re
|
|
28547
28547
|
}), we = (y == null ? void 0 : y.input) || PickersInputBaseSectionsContainer;
|
|
28548
28548
|
return /* @__PURE__ */ jsxs(ve, _extends({}, Re, {
|
|
28549
28549
|
children: [g, /* @__PURE__ */ jsx(PickersSectionList, {
|
|
@@ -28552,7 +28552,7 @@ const _excluded$A = ["elements", "areAllSectionsEmpty", "defaultValue", "label",
|
|
|
28552
28552
|
contentEditable: v,
|
|
28553
28553
|
tabIndex: w,
|
|
28554
28554
|
className: be.sectionsContainer,
|
|
28555
|
-
onFocus:
|
|
28555
|
+
onFocus: oe,
|
|
28556
28556
|
onBlur: Z.onBlur,
|
|
28557
28557
|
onInput: S,
|
|
28558
28558
|
onPaste: x,
|
|
@@ -28565,7 +28565,7 @@ const _excluded$A = ["elements", "areAllSectionsEmpty", "defaultValue", "label",
|
|
|
28565
28565
|
},
|
|
28566
28566
|
slotProps: {
|
|
28567
28567
|
root: {
|
|
28568
|
-
ownerState:
|
|
28568
|
+
ownerState: re
|
|
28569
28569
|
},
|
|
28570
28570
|
sectionContent: {
|
|
28571
28571
|
className: pickersInputBaseClasses.sectionContent
|
|
@@ -29489,8 +29489,8 @@ const _excluded$v = ["onFocus", "onBlur", "className", "color", "disabled", "err
|
|
|
29489
29489
|
focused: j,
|
|
29490
29490
|
value: te,
|
|
29491
29491
|
onChange: Z,
|
|
29492
|
-
fullWidth:
|
|
29493
|
-
id:
|
|
29492
|
+
fullWidth: oe,
|
|
29493
|
+
id: re,
|
|
29494
29494
|
name: be,
|
|
29495
29495
|
// Props used by FormHelperText
|
|
29496
29496
|
helperText: ve,
|
|
@@ -29498,7 +29498,7 @@ const _excluded$v = ["onFocus", "onBlur", "className", "color", "disabled", "err
|
|
|
29498
29498
|
// Props used by InputLabel
|
|
29499
29499
|
label: we,
|
|
29500
29500
|
InputLabelProps: ye
|
|
29501
|
-
} = l, De = _objectWithoutPropertiesLoose$1(l, _excluded$v), t0 = React.useRef(null), Ye = useForkRef(a, t0), Ke = useId(
|
|
29501
|
+
} = l, De = _objectWithoutPropertiesLoose$1(l, _excluded$v), t0 = React.useRef(null), Ye = useForkRef(a, t0), Ke = useId(re), Xe = ve && Ke ? `${Ke}-helper-text` : void 0, Qe = we && Ke ? `${Ke}-label` : void 0, Ze = _extends({}, l, {
|
|
29502
29502
|
color: u,
|
|
29503
29503
|
disabled: b,
|
|
29504
29504
|
error: h,
|
|
@@ -29516,7 +29516,7 @@ const _excluded$v = ["onFocus", "onBlur", "className", "color", "disabled", "err
|
|
|
29516
29516
|
variant: g,
|
|
29517
29517
|
error: h,
|
|
29518
29518
|
color: u,
|
|
29519
|
-
fullWidth:
|
|
29519
|
+
fullWidth: oe,
|
|
29520
29520
|
required: m,
|
|
29521
29521
|
ownerState: Ze
|
|
29522
29522
|
}, De, {
|
|
@@ -29540,7 +29540,7 @@ const _excluded$v = ["onFocus", "onBlur", "className", "color", "disabled", "err
|
|
|
29540
29540
|
value: te,
|
|
29541
29541
|
onChange: Z,
|
|
29542
29542
|
id: Ke,
|
|
29543
|
-
fullWidth:
|
|
29543
|
+
fullWidth: oe,
|
|
29544
29544
|
inputProps: C,
|
|
29545
29545
|
inputRef: v,
|
|
29546
29546
|
sectionListRef: w,
|
|
@@ -30313,10 +30313,10 @@ const pickersDayClasses = generateUtilityClasses("MuiPickersDay", ["root", "dayW
|
|
|
30313
30313
|
useEnhancedEffect(() => {
|
|
30314
30314
|
c && !u && !g && !L && j.current.focus();
|
|
30315
30315
|
}, [c, u, g, L]);
|
|
30316
|
-
const Z = (
|
|
30317
|
-
S(
|
|
30318
|
-
},
|
|
30319
|
-
u || y(d), L &&
|
|
30316
|
+
const Z = (re) => {
|
|
30317
|
+
S(re), L && re.preventDefault();
|
|
30318
|
+
}, oe = (re) => {
|
|
30319
|
+
u || y(d), L && re.currentTarget.focus(), m && m(re);
|
|
30320
30320
|
};
|
|
30321
30321
|
return L && !N ? /* @__PURE__ */ jsx(PickersDayFiller, {
|
|
30322
30322
|
className: clsx(Y.root, Y.hiddenDaySpacingFiller, p),
|
|
@@ -30328,11 +30328,11 @@ const pickersDayClasses = generateUtilityClasses("MuiPickersDay", ["root", "dayW
|
|
|
30328
30328
|
centerRipple: !0,
|
|
30329
30329
|
disabled: u,
|
|
30330
30330
|
tabIndex: D ? 0 : -1,
|
|
30331
|
-
onKeyDown: (
|
|
30332
|
-
onFocus: (
|
|
30333
|
-
onBlur: (
|
|
30334
|
-
onMouseEnter: (
|
|
30335
|
-
onClick:
|
|
30331
|
+
onKeyDown: (re) => w(re, d),
|
|
30332
|
+
onFocus: (re) => C(re, d),
|
|
30333
|
+
onBlur: (re) => v(re, d),
|
|
30334
|
+
onMouseEnter: (re) => x(re, d),
|
|
30335
|
+
onClick: oe,
|
|
30336
30336
|
onMouseDown: Z
|
|
30337
30337
|
}, H, {
|
|
30338
30338
|
ownerState: G,
|
|
@@ -30788,8 +30788,8 @@ function DayCalendar(e) {
|
|
|
30788
30788
|
displayWeekNumber: j,
|
|
30789
30789
|
fixedWeekNumber: te,
|
|
30790
30790
|
autoFocus: Z,
|
|
30791
|
-
timezone:
|
|
30792
|
-
} = t,
|
|
30791
|
+
timezone: oe
|
|
30792
|
+
} = t, re = useNow(oe), be = useUtilityClasses$s(t), ve = useRtl(), Re = useIsDateDisabled({
|
|
30793
30793
|
shouldDisableDate: N,
|
|
30794
30794
|
shouldDisableMonth: I,
|
|
30795
30795
|
shouldDisableYear: k,
|
|
@@ -30797,13 +30797,13 @@ function DayCalendar(e) {
|
|
|
30797
30797
|
maxDate: D,
|
|
30798
30798
|
disablePast: S,
|
|
30799
30799
|
disableFuture: x,
|
|
30800
|
-
timezone:
|
|
30800
|
+
timezone: oe
|
|
30801
30801
|
}), we = usePickersTranslations(), [ye, De] = useControlled({
|
|
30802
30802
|
name: "DayCalendar",
|
|
30803
30803
|
state: "hasFocus",
|
|
30804
30804
|
controlled: G,
|
|
30805
30805
|
default: Z ?? !1
|
|
30806
|
-
}), [t0, Ye] = React.useState(() => u ||
|
|
30806
|
+
}), [t0, Ye] = React.useState(() => u || re), Ke = useEventCallback((Ge) => {
|
|
30807
30807
|
m || h(Ge);
|
|
30808
30808
|
}), Xe = (Ge) => {
|
|
30809
30809
|
Re(Ge) || (l(Ge), Ye(Ge), Y == null || Y(!0), De(!0));
|
|
@@ -30822,7 +30822,7 @@ function DayCalendar(e) {
|
|
|
30822
30822
|
minDate: ve ? e0 : a.startOfMonth(i0),
|
|
30823
30823
|
maxDate: ve ? a.endOfMonth(i0) : e0,
|
|
30824
30824
|
isDateDisabled: Re,
|
|
30825
|
-
timezone:
|
|
30825
|
+
timezone: oe
|
|
30826
30826
|
});
|
|
30827
30827
|
Xe(s0 || e0), Ge.preventDefault();
|
|
30828
30828
|
break;
|
|
@@ -30834,7 +30834,7 @@ function DayCalendar(e) {
|
|
|
30834
30834
|
minDate: ve ? a.startOfMonth(i0) : e0,
|
|
30835
30835
|
maxDate: ve ? e0 : a.endOfMonth(i0),
|
|
30836
30836
|
isDateDisabled: Re,
|
|
30837
|
-
timezone:
|
|
30837
|
+
timezone: oe
|
|
30838
30838
|
});
|
|
30839
30839
|
Xe(s0 || e0), Ge.preventDefault();
|
|
30840
30840
|
break;
|
|
@@ -30864,9 +30864,9 @@ function DayCalendar(e) {
|
|
|
30864
30864
|
disablePast: S,
|
|
30865
30865
|
disableFuture: x,
|
|
30866
30866
|
isDateDisabled: Re,
|
|
30867
|
-
timezone:
|
|
30867
|
+
timezone: oe
|
|
30868
30868
|
}) : t0;
|
|
30869
|
-
}, [p, x, S, t0, Re, a,
|
|
30869
|
+
}, [p, x, S, t0, Re, a, oe]), qe = React.useMemo(() => {
|
|
30870
30870
|
const Ge = a.getWeekArray(p);
|
|
30871
30871
|
let Fe = a.addMonths(p, 1);
|
|
30872
30872
|
for (; te && Ge.length < te; ) {
|
|
@@ -30890,7 +30890,7 @@ function DayCalendar(e) {
|
|
|
30890
30890
|
"aria-label": we.calendarWeekNumberHeaderLabel,
|
|
30891
30891
|
className: be.weekNumberLabel,
|
|
30892
30892
|
children: we.calendarWeekNumberHeaderText
|
|
30893
|
-
}), getWeekdays(a,
|
|
30893
|
+
}), getWeekdays(a, re).map((Ge, Fe) => /* @__PURE__ */ jsx(PickersCalendarWeekDayLabel, {
|
|
30894
30894
|
variant: "caption",
|
|
30895
30895
|
role: "columnheader",
|
|
30896
30896
|
"aria-label": a.format(Ge, "weekday"),
|
|
@@ -31136,10 +31136,10 @@ const MonthCalendarRoot = styled("div", {
|
|
|
31136
31136
|
referenceDate: u,
|
|
31137
31137
|
onChange: C,
|
|
31138
31138
|
valueManager: singleItemValueManager
|
|
31139
|
-
}), Z = useNow(te),
|
|
31139
|
+
}), Z = useNow(te), oe = useRtl(), re = useUtils(), be = React.useMemo(
|
|
31140
31140
|
() => singleItemValueManager.getInitialReferenceValue({
|
|
31141
31141
|
value: B,
|
|
31142
|
-
utils:
|
|
31142
|
+
utils: re,
|
|
31143
31143
|
props: l,
|
|
31144
31144
|
timezone: te,
|
|
31145
31145
|
referenceDate: u,
|
|
@@ -31147,7 +31147,7 @@ const MonthCalendarRoot = styled("div", {
|
|
|
31147
31147
|
}),
|
|
31148
31148
|
[]
|
|
31149
31149
|
// eslint-disable-line react-hooks/exhaustive-deps
|
|
31150
|
-
), ve = l, Re = useUtilityClasses$q(ve), we = React.useMemo(() =>
|
|
31150
|
+
), ve = l, Re = useUtilityClasses$q(ve), we = React.useMemo(() => re.getMonth(Z), [re, Z]), ye = React.useMemo(() => B != null ? re.getMonth(B) : null, [B, re]), [De, t0] = React.useState(() => ye || re.getMonth(be)), [Ye, Ke] = useControlled({
|
|
31151
31151
|
name: "MonthCalendar",
|
|
31152
31152
|
state: "hasFocus",
|
|
31153
31153
|
controlled: L,
|
|
@@ -31155,15 +31155,15 @@ const MonthCalendarRoot = styled("div", {
|
|
|
31155
31155
|
}), Xe = useEventCallback((Be) => {
|
|
31156
31156
|
Ke(Be), D && D(Be);
|
|
31157
31157
|
}), Qe = React.useCallback((Be) => {
|
|
31158
|
-
const U =
|
|
31159
|
-
return
|
|
31160
|
-
}, [h, g, m, y, Z, v,
|
|
31158
|
+
const U = re.startOfMonth(g && re.isAfter(Z, y) ? Z : y), Oe = re.startOfMonth(h && re.isBefore(Z, m) ? Z : m), qe = re.startOfMonth(Be);
|
|
31159
|
+
return re.isBefore(qe, U) || re.isAfter(qe, Oe) ? !0 : v ? v(qe) : !1;
|
|
31160
|
+
}, [h, g, m, y, Z, v, re]), Ze = useEventCallback((Be, U) => {
|
|
31161
31161
|
if (w)
|
|
31162
31162
|
return;
|
|
31163
|
-
const Oe =
|
|
31163
|
+
const Oe = re.setMonth(B ?? be, U);
|
|
31164
31164
|
j(Oe);
|
|
31165
31165
|
}), Ve = useEventCallback((Be) => {
|
|
31166
|
-
Qe(
|
|
31166
|
+
Qe(re.setMonth(B ?? be, Be)) || (t0(Be), Xe(!0), x && x(Be));
|
|
31167
31167
|
});
|
|
31168
31168
|
React.useEffect(() => {
|
|
31169
31169
|
t0((Be) => ye !== null && Be !== ye ? ye : Be);
|
|
@@ -31177,10 +31177,10 @@ const MonthCalendarRoot = styled("div", {
|
|
|
31177
31177
|
Ve((12 + U + 3) % 12), Be.preventDefault();
|
|
31178
31178
|
break;
|
|
31179
31179
|
case "ArrowLeft":
|
|
31180
|
-
Ve((12 + U + (
|
|
31180
|
+
Ve((12 + U + (oe ? 1 : -1)) % 12), Be.preventDefault();
|
|
31181
31181
|
break;
|
|
31182
31182
|
case "ArrowRight":
|
|
31183
|
-
Ve((12 + U + (
|
|
31183
|
+
Ve((12 + U + (oe ? -1 : 1)) % 12), Be.preventDefault();
|
|
31184
31184
|
break;
|
|
31185
31185
|
}
|
|
31186
31186
|
}), je = useEventCallback((Be, U) => {
|
|
@@ -31195,8 +31195,8 @@ const MonthCalendarRoot = styled("div", {
|
|
|
31195
31195
|
role: "radiogroup",
|
|
31196
31196
|
"aria-labelledby": k
|
|
31197
31197
|
}, Y, {
|
|
31198
|
-
children: getMonthsInYear(
|
|
31199
|
-
const U =
|
|
31198
|
+
children: getMonthsInYear(re, B ?? be).map((Be) => {
|
|
31199
|
+
const U = re.getMonth(Be), Oe = re.format(Be, "monthShort"), qe = re.format(Be, "month"), Ge = U === ye, Fe = b || Qe(Be);
|
|
31200
31200
|
return /* @__PURE__ */ jsx(PickersMonth, {
|
|
31201
31201
|
selected: Ge,
|
|
31202
31202
|
value: U,
|
|
@@ -31521,7 +31521,7 @@ const YearCalendarRoot = styled("div", {
|
|
|
31521
31521
|
referenceDate: b,
|
|
31522
31522
|
onChange: v,
|
|
31523
31523
|
valueManager: singleItemValueManager
|
|
31524
|
-
}),
|
|
31524
|
+
}), oe = useNow(Z), re = useRtl(), be = useUtils(), ve = React.useMemo(
|
|
31525
31525
|
() => singleItemValueManager.getInitialReferenceValue({
|
|
31526
31526
|
value: j,
|
|
31527
31527
|
utils: be,
|
|
@@ -31532,7 +31532,7 @@ const YearCalendarRoot = styled("div", {
|
|
|
31532
31532
|
}),
|
|
31533
31533
|
[]
|
|
31534
31534
|
// eslint-disable-line react-hooks/exhaustive-deps
|
|
31535
|
-
), Re = l, we = useUtilityClasses$o(Re), ye = React.useMemo(() => be.getYear(
|
|
31535
|
+
), Re = l, we = useUtilityClasses$o(Re), ye = React.useMemo(() => be.getYear(oe), [be, oe]), De = React.useMemo(() => j != null ? be.getYear(j) : null, [j, be]), [t0, Ye] = React.useState(() => De || be.getYear(ve)), [Ke, Xe] = useControlled({
|
|
31536
31536
|
name: "YearCalendar",
|
|
31537
31537
|
state: "hasFocus",
|
|
31538
31538
|
controlled: L,
|
|
@@ -31540,13 +31540,13 @@ const YearCalendarRoot = styled("div", {
|
|
|
31540
31540
|
}), Qe = useEventCallback((e0) => {
|
|
31541
31541
|
Xe(e0), D && D(e0);
|
|
31542
31542
|
}), Ze = React.useCallback((e0) => {
|
|
31543
|
-
if (m && be.isBeforeYear(e0,
|
|
31543
|
+
if (m && be.isBeforeYear(e0, oe) || g && be.isAfterYear(e0, oe) || C && be.isBeforeYear(e0, C) || y && be.isAfterYear(e0, y))
|
|
31544
31544
|
return !0;
|
|
31545
31545
|
if (!S)
|
|
31546
31546
|
return !1;
|
|
31547
31547
|
const i0 = be.startOfYear(e0);
|
|
31548
31548
|
return S(i0);
|
|
31549
|
-
}, [g, m, y, C,
|
|
31549
|
+
}, [g, m, y, C, oe, S, be]), Ve = useEventCallback((e0, i0) => {
|
|
31550
31550
|
if (w)
|
|
31551
31551
|
return;
|
|
31552
31552
|
const s0 = be.setYear(j ?? ve, i0);
|
|
@@ -31557,7 +31557,7 @@ const YearCalendarRoot = styled("div", {
|
|
|
31557
31557
|
React.useEffect(() => {
|
|
31558
31558
|
Ye((e0) => De !== null && e0 !== De ? De : e0);
|
|
31559
31559
|
}, [De]);
|
|
31560
|
-
const je = N !== "desc" ? I * 1 : I * -1, n0 =
|
|
31560
|
+
const je = N !== "desc" ? I * 1 : I * -1, n0 = re && N === "asc" || !re && N === "desc" ? -1 : 1, Be = useEventCallback((e0, i0) => {
|
|
31561
31561
|
switch (e0.key) {
|
|
31562
31562
|
case "ArrowUp":
|
|
31563
31563
|
Ne(i0 - je), e0.preventDefault();
|
|
@@ -31836,22 +31836,22 @@ const _excluded$l = ["children", "className", "slots", "slotProps", "isNextDisab
|
|
|
31836
31836
|
},
|
|
31837
31837
|
ownerState: D,
|
|
31838
31838
|
className: N.leftArrowIcon
|
|
31839
|
-
}), Z = _objectWithoutPropertiesLoose$1(te, _excluded2$2),
|
|
31840
|
-
elementType:
|
|
31839
|
+
}), Z = _objectWithoutPropertiesLoose$1(te, _excluded2$2), oe = (u == null ? void 0 : u.rightArrowIcon) ?? ArrowRightIcon, re = useSlotProps({
|
|
31840
|
+
elementType: oe,
|
|
31841
31841
|
externalSlotProps: b == null ? void 0 : b.rightArrowIcon,
|
|
31842
31842
|
additionalProps: {
|
|
31843
31843
|
fontSize: "inherit"
|
|
31844
31844
|
},
|
|
31845
31845
|
ownerState: D,
|
|
31846
31846
|
className: N.rightArrowIcon
|
|
31847
|
-
}), be = _objectWithoutPropertiesLoose$1(
|
|
31847
|
+
}), be = _objectWithoutPropertiesLoose$1(re, _excluded3$1);
|
|
31848
31848
|
return /* @__PURE__ */ jsxs(PickersArrowSwitcherRoot, _extends({
|
|
31849
31849
|
ref: a,
|
|
31850
31850
|
className: clsx(N.root, d),
|
|
31851
31851
|
ownerState: D
|
|
31852
31852
|
}, L, {
|
|
31853
31853
|
children: [/* @__PURE__ */ jsx(H, _extends({}, G, {
|
|
31854
|
-
children: l ? /* @__PURE__ */ jsx(
|
|
31854
|
+
children: l ? /* @__PURE__ */ jsx(oe, _extends({}, be)) : /* @__PURE__ */ jsx(j, _extends({}, Z))
|
|
31855
31855
|
})), p ? /* @__PURE__ */ jsx(Typography, {
|
|
31856
31856
|
variant: "subtitle1",
|
|
31857
31857
|
component: "span",
|
|
@@ -31861,7 +31861,7 @@ const _excluded$l = ["children", "className", "slots", "slotProps", "isNextDisab
|
|
|
31861
31861
|
className: N.spacer,
|
|
31862
31862
|
ownerState: D
|
|
31863
31863
|
}), /* @__PURE__ */ jsx(Y, _extends({}, B, {
|
|
31864
|
-
children: l ? /* @__PURE__ */ jsx(j, _extends({}, Z)) : /* @__PURE__ */ jsx(
|
|
31864
|
+
children: l ? /* @__PURE__ */ jsx(j, _extends({}, Z)) : /* @__PURE__ */ jsx(oe, _extends({}, be))
|
|
31865
31865
|
}))]
|
|
31866
31866
|
}));
|
|
31867
31867
|
});
|
|
@@ -32004,7 +32004,7 @@ const _excluded$k = ["slots", "slotProps", "currentMonth", "disabled", "disableF
|
|
|
32004
32004
|
externalSlotProps: u == null ? void 0 : u.switchViewIcon,
|
|
32005
32005
|
ownerState: G,
|
|
32006
32006
|
className: Y.switchViewIcon
|
|
32007
|
-
}),
|
|
32007
|
+
}), oe = _objectWithoutPropertiesLoose$1(Z, _excluded2$1), re = () => v(c.addMonths(b, 1), "left"), be = () => v(c.addMonths(b, -1), "right"), ve = useNextMonthDisabled(b, {
|
|
32008
32008
|
disableFuture: g,
|
|
32009
32009
|
maxDate: y,
|
|
32010
32010
|
timezone: I
|
|
@@ -32044,7 +32044,7 @@ const _excluded$k = ["slots", "slotProps", "currentMonth", "disabled", "disableF
|
|
|
32044
32044
|
children: ye
|
|
32045
32045
|
})
|
|
32046
32046
|
}), L.length > 1 && !h && /* @__PURE__ */ jsx(B, _extends({}, j, {
|
|
32047
|
-
children: /* @__PURE__ */ jsx(te, _extends({},
|
|
32047
|
+
children: /* @__PURE__ */ jsx(te, _extends({}, oe))
|
|
32048
32048
|
}))]
|
|
32049
32049
|
}), /* @__PURE__ */ jsx(Fade, {
|
|
32050
32050
|
in: S === "day",
|
|
@@ -32056,7 +32056,7 @@ const _excluded$k = ["slots", "slotProps", "currentMonth", "disabled", "disableF
|
|
|
32056
32056
|
onGoToPrevious: be,
|
|
32057
32057
|
isPreviousDisabled: Re,
|
|
32058
32058
|
previousLabel: l.previousMonth,
|
|
32059
|
-
onGoToNext:
|
|
32059
|
+
onGoToNext: re,
|
|
32060
32060
|
isNextDisabled: ve,
|
|
32061
32061
|
nextLabel: l.nextMonth
|
|
32062
32062
|
})
|
|
@@ -32185,8 +32185,8 @@ const DateCalendarRoot = styled(PickerViewRoot, {
|
|
|
32185
32185
|
maxDate: j,
|
|
32186
32186
|
disableHighlightToday: te,
|
|
32187
32187
|
focusedView: Z,
|
|
32188
|
-
onFocusedViewChange:
|
|
32189
|
-
showDaysOutsideCurrentMonth:
|
|
32188
|
+
onFocusedViewChange: oe,
|
|
32189
|
+
showDaysOutsideCurrentMonth: re,
|
|
32190
32190
|
fixedWeekNumber: be,
|
|
32191
32191
|
dayOfWeekFormatter: ve,
|
|
32192
32192
|
slots: Re,
|
|
@@ -32225,7 +32225,7 @@ const DateCalendarRoot = styled(PickerViewRoot, {
|
|
|
32225
32225
|
onViewChange: u,
|
|
32226
32226
|
autoFocus: d,
|
|
32227
32227
|
focusedView: Z,
|
|
32228
|
-
onFocusedViewChange:
|
|
32228
|
+
onFocusedViewChange: oe
|
|
32229
32229
|
}), {
|
|
32230
32230
|
referenceDate: Fe,
|
|
32231
32231
|
calendarState: e0,
|
|
@@ -32356,7 +32356,7 @@ const DateCalendarRoot = styled(PickerViewRoot, {
|
|
|
32356
32356
|
shouldDisableYear: D,
|
|
32357
32357
|
hasFocus: p0,
|
|
32358
32358
|
onFocusedViewChange: (E0) => Oe("day", E0),
|
|
32359
|
-
showDaysOutsideCurrentMonth:
|
|
32359
|
+
showDaysOutsideCurrentMonth: re,
|
|
32360
32360
|
fixedWeekNumber: be,
|
|
32361
32361
|
dayOfWeekFormatter: ve,
|
|
32362
32362
|
displayWeekNumber: t0,
|
|
@@ -32626,8 +32626,8 @@ const renderDateViewCalendar = ({
|
|
|
32626
32626
|
renderLoading: j,
|
|
32627
32627
|
disableHighlightToday: te,
|
|
32628
32628
|
readOnly: Z,
|
|
32629
|
-
disabled:
|
|
32630
|
-
showDaysOutsideCurrentMonth:
|
|
32629
|
+
disabled: oe,
|
|
32630
|
+
showDaysOutsideCurrentMonth: re,
|
|
32631
32631
|
dayOfWeekFormatter: be,
|
|
32632
32632
|
sx: ve,
|
|
32633
32633
|
autoFocus: Re,
|
|
@@ -32665,8 +32665,8 @@ const renderDateViewCalendar = ({
|
|
|
32665
32665
|
renderLoading: j,
|
|
32666
32666
|
disableHighlightToday: te,
|
|
32667
32667
|
readOnly: Z,
|
|
32668
|
-
disabled:
|
|
32669
|
-
showDaysOutsideCurrentMonth:
|
|
32668
|
+
disabled: oe,
|
|
32669
|
+
showDaysOutsideCurrentMonth: re,
|
|
32670
32670
|
dayOfWeekFormatter: be,
|
|
32671
32671
|
sx: ve,
|
|
32672
32672
|
autoFocus: Re,
|
|
@@ -33329,10 +33329,10 @@ const DialogBackdrop = styled(Backdrop, {
|
|
|
33329
33329
|
fullWidth: w,
|
|
33330
33330
|
maxWidth: S,
|
|
33331
33331
|
scroll: k
|
|
33332
|
-
},
|
|
33333
|
-
|
|
33332
|
+
}, oe = useUtilityClasses$j(Z), re = React.useRef(), be = (U) => {
|
|
33333
|
+
re.current = U.target === U.currentTarget;
|
|
33334
33334
|
}, ve = (U) => {
|
|
33335
|
-
x && x(U),
|
|
33335
|
+
x && x(U), re.current && (re.current = null, L && L(U, "backdropClick"));
|
|
33336
33336
|
}, Re = useId(u), we = React.useMemo(() => ({
|
|
33337
33337
|
titleId: Re
|
|
33338
33338
|
}), [Re]), ye = {
|
|
@@ -33351,7 +33351,7 @@ const DialogBackdrop = styled(Backdrop, {
|
|
|
33351
33351
|
shouldForwardComponentProp: !0,
|
|
33352
33352
|
externalForwardedProps: t0,
|
|
33353
33353
|
ownerState: Z,
|
|
33354
|
-
className: clsx(
|
|
33354
|
+
className: clsx(oe.root, y),
|
|
33355
33355
|
ref: a
|
|
33356
33356
|
}), [Xe, Qe] = useSlot("backdrop", {
|
|
33357
33357
|
elementType: DialogBackdrop,
|
|
@@ -33363,12 +33363,12 @@ const DialogBackdrop = styled(Backdrop, {
|
|
|
33363
33363
|
shouldForwardComponentProp: !0,
|
|
33364
33364
|
externalForwardedProps: t0,
|
|
33365
33365
|
ownerState: Z,
|
|
33366
|
-
className: clsx(
|
|
33366
|
+
className: clsx(oe.paper, I.className)
|
|
33367
33367
|
}), [Ne, je] = useSlot("container", {
|
|
33368
33368
|
elementType: DialogContainer,
|
|
33369
33369
|
externalForwardedProps: t0,
|
|
33370
33370
|
ownerState: Z,
|
|
33371
|
-
className: clsx(
|
|
33371
|
+
className: clsx(oe.container)
|
|
33372
33372
|
}), [n0, Be] = useSlot("transition", {
|
|
33373
33373
|
elementType: Fade,
|
|
33374
33374
|
externalForwardedProps: t0,
|
|
@@ -33648,7 +33648,7 @@ const _excluded$i = ["props", "getOpenDialogAriaText"], useMobilePicker = (e) =>
|
|
|
33648
33648
|
autoFocusView: !0,
|
|
33649
33649
|
additionalViewProps: {},
|
|
33650
33650
|
wrapperVariant: "mobile"
|
|
33651
|
-
})), Z = c.field,
|
|
33651
|
+
})), Z = c.field, oe = useSlotProps({
|
|
33652
33652
|
elementType: Z,
|
|
33653
33653
|
externalSlotProps: p == null ? void 0 : p.field,
|
|
33654
33654
|
additionalProps: _extends({}, j, k && {
|
|
@@ -33674,12 +33674,12 @@ const _excluded$i = ["props", "getOpenDialogAriaText"], useMobilePicker = (e) =>
|
|
|
33674
33674
|
} : {}),
|
|
33675
33675
|
ownerState: t
|
|
33676
33676
|
});
|
|
33677
|
-
|
|
33677
|
+
oe.inputProps = _extends({}, oe.inputProps, {
|
|
33678
33678
|
"aria-label": a(j.value)
|
|
33679
33679
|
});
|
|
33680
|
-
const
|
|
33680
|
+
const re = _extends({
|
|
33681
33681
|
textField: c.textField
|
|
33682
|
-
},
|
|
33682
|
+
}, oe.slots), be = c.layout ?? PickersLayout;
|
|
33683
33683
|
let ve = I;
|
|
33684
33684
|
k && (w ? ve = `${I}-label` : ve = void 0);
|
|
33685
33685
|
const Re = _extends({}, p, {
|
|
@@ -33689,13 +33689,13 @@ const _excluded$i = ["props", "getOpenDialogAriaText"], useMobilePicker = (e) =>
|
|
|
33689
33689
|
mobilePaper: _extends({
|
|
33690
33690
|
"aria-labelledby": ve
|
|
33691
33691
|
}, p == null ? void 0 : p.mobilePaper)
|
|
33692
|
-
}), we = useForkRef(N,
|
|
33692
|
+
}), we = useForkRef(N, oe.unstableFieldRef);
|
|
33693
33693
|
return {
|
|
33694
33694
|
renderPicker: () => /* @__PURE__ */ jsxs(PickersProvider, {
|
|
33695
33695
|
contextValue: te,
|
|
33696
33696
|
localeText: D,
|
|
33697
|
-
children: [/* @__PURE__ */ jsx(Z, _extends({},
|
|
33698
|
-
slots:
|
|
33697
|
+
children: [/* @__PURE__ */ jsx(Z, _extends({}, oe, {
|
|
33698
|
+
slots: re,
|
|
33699
33699
|
slotProps: Re,
|
|
33700
33700
|
unstableFieldRef: we
|
|
33701
33701
|
})), /* @__PURE__ */ jsx(PickersModalDialog, _extends({}, G, {
|
|
@@ -35328,9 +35328,9 @@ function Clock(e) {
|
|
|
35328
35328
|
j(Ze, Ke);
|
|
35329
35329
|
}, Z = (Ye) => {
|
|
35330
35330
|
H.current = !0, te(Ye, "shallow");
|
|
35331
|
-
}, re = (Ye) => {
|
|
35332
|
-
H.current && (te(Ye, "finish"), H.current = !1), Ye.preventDefault();
|
|
35333
35331
|
}, oe = (Ye) => {
|
|
35332
|
+
H.current && (te(Ye, "finish"), H.current = !1), Ye.preventDefault();
|
|
35333
|
+
}, re = (Ye) => {
|
|
35334
35334
|
Ye.buttons > 0 && te(Ye.nativeEvent, "shallow");
|
|
35335
35335
|
}, be = (Ye) => {
|
|
35336
35336
|
H.current && (H.current = !1), te(Ye.nativeEvent, "finish");
|
|
@@ -35372,9 +35372,9 @@ function Clock(e) {
|
|
|
35372
35372
|
children: [/* @__PURE__ */ jsx(ClockSquareMask, {
|
|
35373
35373
|
onTouchMove: Z,
|
|
35374
35374
|
onTouchStart: Z,
|
|
35375
|
-
onTouchEnd:
|
|
35375
|
+
onTouchEnd: oe,
|
|
35376
35376
|
onMouseUp: be,
|
|
35377
|
-
onMouseMove:
|
|
35377
|
+
onMouseMove: re,
|
|
35378
35378
|
ownerState: {
|
|
35379
35379
|
disabled: x
|
|
35380
35380
|
},
|
|
@@ -35624,15 +35624,15 @@ const getHourNumbers = ({
|
|
|
35624
35624
|
onFocusedViewChange: j,
|
|
35625
35625
|
className: te,
|
|
35626
35626
|
disabled: Z,
|
|
35627
|
-
readOnly:
|
|
35628
|
-
timezone:
|
|
35627
|
+
readOnly: oe,
|
|
35628
|
+
timezone: re
|
|
35629
35629
|
} = c, be = _objectWithoutPropertiesLoose$1(c, _excluded$a), {
|
|
35630
35630
|
value: ve,
|
|
35631
35631
|
handleValueChange: Re,
|
|
35632
35632
|
timezone: we
|
|
35633
35633
|
} = useControlledValueWithTimezone({
|
|
35634
35634
|
name: "TimeClock",
|
|
35635
|
-
timezone:
|
|
35635
|
+
timezone: re,
|
|
35636
35636
|
value: g,
|
|
35637
35637
|
defaultValue: m,
|
|
35638
35638
|
referenceDate: y,
|
|
@@ -35786,7 +35786,7 @@ const getHourNumbers = ({
|
|
|
35786
35786
|
handleMeridiemChange: Ne,
|
|
35787
35787
|
selectedId: n0,
|
|
35788
35788
|
disabled: Z,
|
|
35789
|
-
readOnly:
|
|
35789
|
+
readOnly: oe
|
|
35790
35790
|
}, Be)), N && /* @__PURE__ */ jsx(TimeClockArrowSwitcher, {
|
|
35791
35791
|
className: Oe.arrowSwitcher,
|
|
35792
35792
|
slots: b,
|
|
@@ -36585,8 +36585,8 @@ const digitalClockClasses = generateUtilityClasses("MuiDigitalClock", ["root", "
|
|
|
36585
36585
|
focusedView: j,
|
|
36586
36586
|
onFocusedViewChange: te,
|
|
36587
36587
|
className: Z,
|
|
36588
|
-
disabled:
|
|
36589
|
-
readOnly:
|
|
36588
|
+
disabled: oe,
|
|
36589
|
+
readOnly: re,
|
|
36590
36590
|
views: be = ["hours"],
|
|
36591
36591
|
skipDisabled: ve = !1,
|
|
36592
36592
|
timezone: Re
|
|
@@ -36676,12 +36676,12 @@ const digitalClockClasses = generateUtilityClasses("MuiDigitalClock", ["root", "
|
|
|
36676
36676
|
return null;
|
|
36677
36677
|
const i0 = l.isEqual(Fe, ye), s0 = l.format(Fe, b ? "fullTime12h" : "fullTime24h"), c0 = qe === e0 || qe === -1 && e0 === 0 ? 0 : -1;
|
|
36678
36678
|
return /* @__PURE__ */ jsx(Ze, _extends({
|
|
36679
|
-
onClick: () => !
|
|
36679
|
+
onClick: () => !re && Be(Fe),
|
|
36680
36680
|
selected: i0,
|
|
36681
|
-
disabled:
|
|
36682
|
-
disableRipple:
|
|
36681
|
+
disabled: oe || U(Fe),
|
|
36682
|
+
disableRipple: re,
|
|
36683
36683
|
role: "option",
|
|
36684
|
-
"aria-disabled":
|
|
36684
|
+
"aria-disabled": re,
|
|
36685
36685
|
"aria-selected": i0,
|
|
36686
36686
|
tabIndex: c0
|
|
36687
36687
|
}, Ve, {
|
|
@@ -37105,8 +37105,8 @@ const multiSectionDigitalClockSectionClasses = generateUtilityClasses("MuiMultiS
|
|
|
37105
37105
|
onFocusedViewChange: j,
|
|
37106
37106
|
className: te,
|
|
37107
37107
|
disabled: Z,
|
|
37108
|
-
readOnly:
|
|
37109
|
-
skipDisabled:
|
|
37108
|
+
readOnly: oe,
|
|
37109
|
+
skipDisabled: re = !1,
|
|
37110
37110
|
timezone: be
|
|
37111
37111
|
} = p, ve = _objectWithoutPropertiesLoose$1(p, _excluded$7), {
|
|
37112
37112
|
value: Re,
|
|
@@ -37286,10 +37286,10 @@ const multiSectionDigitalClockSectionClasses = generateUtilityClasses("MuiMultiS
|
|
|
37286
37286
|
active: Ze === i0,
|
|
37287
37287
|
autoFocus: b ?? Ne === i0,
|
|
37288
37288
|
disabled: Z,
|
|
37289
|
-
readOnly:
|
|
37289
|
+
readOnly: oe,
|
|
37290
37290
|
slots: h,
|
|
37291
37291
|
slotProps: g,
|
|
37292
|
-
skipDisabled:
|
|
37292
|
+
skipDisabled: re,
|
|
37293
37293
|
"aria-label": De.selectViewText(i0)
|
|
37294
37294
|
}, i0))
|
|
37295
37295
|
}));
|
|
@@ -39674,21 +39674,21 @@ const Tabs = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
39674
39674
|
variant: B = "standard",
|
|
39675
39675
|
visibleScrollbar: j = !1,
|
|
39676
39676
|
...te
|
|
39677
|
-
} = l, Z = B === "scrollable",
|
|
39677
|
+
} = l, Z = B === "scrollable", oe = S === "vertical", re = oe ? "scrollTop" : "scrollLeft", be = oe ? "top" : "left", ve = oe ? "bottom" : "right", Re = oe ? "clientHeight" : "clientWidth", we = oe ? "height" : "width", ye = {
|
|
39678
39678
|
...l,
|
|
39679
39679
|
component: y,
|
|
39680
39680
|
allowScrollButtonsMobile: C,
|
|
39681
39681
|
indicatorColor: v,
|
|
39682
39682
|
orientation: S,
|
|
39683
|
-
vertical:
|
|
39683
|
+
vertical: oe,
|
|
39684
39684
|
scrollButtons: L,
|
|
39685
39685
|
textColor: G,
|
|
39686
39686
|
variant: B,
|
|
39687
39687
|
visibleScrollbar: j,
|
|
39688
39688
|
fixed: !Z,
|
|
39689
39689
|
hideScrollbar: Z && !j,
|
|
39690
|
-
scrollableX: Z && !
|
|
39691
|
-
scrollableY: Z &&
|
|
39690
|
+
scrollableX: Z && !oe,
|
|
39691
|
+
scrollableY: Z && oe,
|
|
39692
39692
|
centered: h && !Z,
|
|
39693
39693
|
scrollButtonsHideMobile: !C
|
|
39694
39694
|
}, De = useUtilityClasses$4(ye), t0 = useSlotProps({
|
|
@@ -39748,7 +39748,7 @@ const Tabs = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
39748
39748
|
tabMeta: y0
|
|
39749
39749
|
} = s0();
|
|
39750
39750
|
let D0 = 0, _0;
|
|
39751
|
-
|
|
39751
|
+
oe ? (_0 = "top", y0 && m0 && (D0 = y0.top - m0.top + m0.scrollTop)) : (_0 = p ? "right" : "left", y0 && m0 && (D0 = (p ? -1 : 1) * (y0[_0] - m0[_0] + m0.scrollLeft)));
|
|
39752
39752
|
const G0 = {
|
|
39753
39753
|
[_0]: D0,
|
|
39754
39754
|
// May be wrong until the font is loaded.
|
|
@@ -39763,12 +39763,12 @@ const Tabs = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
39763
39763
|
}), ze = (m0, {
|
|
39764
39764
|
animation: y0 = !0
|
|
39765
39765
|
} = {}) => {
|
|
39766
|
-
y0 ? animate(
|
|
39766
|
+
y0 ? animate(re, Fe.current, m0, {
|
|
39767
39767
|
duration: c.transitions.duration.standard
|
|
39768
|
-
}) : Fe.current[
|
|
39768
|
+
}) : Fe.current[re] = m0;
|
|
39769
39769
|
}, Je = (m0) => {
|
|
39770
|
-
let y0 = Fe.current[
|
|
39771
|
-
|
|
39770
|
+
let y0 = Fe.current[re];
|
|
39771
|
+
oe ? y0 += m0 : y0 += m0 * (p ? -1 : 1), ze(y0);
|
|
39772
39772
|
}, _e = () => {
|
|
39773
39773
|
const m0 = Fe.current[Re];
|
|
39774
39774
|
let y0 = 0;
|
|
@@ -39841,12 +39841,12 @@ const Tabs = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
39841
39841
|
} = s0();
|
|
39842
39842
|
if (!(!D0 || !y0)) {
|
|
39843
39843
|
if (D0[be] < y0[be]) {
|
|
39844
|
-
const _0 = y0[
|
|
39844
|
+
const _0 = y0[re] + (D0[be] - y0[be]);
|
|
39845
39845
|
ze(_0, {
|
|
39846
39846
|
animation: m0
|
|
39847
39847
|
});
|
|
39848
39848
|
} else if (D0[ve] > y0[ve]) {
|
|
39849
|
-
const _0 = y0[
|
|
39849
|
+
const _0 = y0[re] + (D0[ve] - y0[ve]);
|
|
39850
39850
|
ze(_0, {
|
|
39851
39851
|
animation: m0
|
|
39852
39852
|
});
|
|
@@ -39977,7 +39977,7 @@ const Tabs = /* @__PURE__ */ React.forwardRef(function e(t, a) {
|
|
|
39977
39977
|
additionalProps: {
|
|
39978
39978
|
style: {
|
|
39979
39979
|
overflow: Oe.overflow,
|
|
39980
|
-
[
|
|
39980
|
+
[oe ? `margin${p ? "Left" : "Right"}` : "marginBottom"]: j ? void 0 : -Oe.scrollbarWidth
|
|
39981
39981
|
}
|
|
39982
39982
|
}
|
|
39983
39983
|
}), [Q1, jo] = useSlot("list", {
|
|
@@ -40474,7 +40474,7 @@ function DateTimePickerToolbar(e) {
|
|
|
40474
40474
|
}), N = useUtils(), {
|
|
40475
40475
|
meridiemMode: I,
|
|
40476
40476
|
handleMeridiemChange: k
|
|
40477
|
-
} = useMeridiemMode(c, a, p), H = !!(a && !l), G = v === "desktop", Y = usePickersTranslations(), B = useUtilityClasses$2(D), j = w ?? Y.dateTimePickerToolbarTitle, te = (
|
|
40477
|
+
} = useMeridiemMode(c, a, p), H = !!(a && !l), G = v === "desktop", Y = usePickersTranslations(), B = useUtilityClasses$2(D), j = w ?? Y.dateTimePickerToolbarTitle, te = (oe) => a ? N.format(oe, "hours12h") : N.format(oe, "hours24h"), Z = React.useMemo(() => c ? h ? N.formatByString(c, h) : N.format(c, "shortDate") : g, [c, h, g, N]);
|
|
40478
40478
|
return /* @__PURE__ */ jsxs(DateTimePickerToolbarRoot, _extends({
|
|
40479
40479
|
isLandscape: u,
|
|
40480
40480
|
className: clsx(B.root, S),
|
|
@@ -42213,7 +42213,7 @@ function requireMomentTimezone$1() {
|
|
|
42213
42213
|
try {
|
|
42214
42214
|
var U = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
42215
42215
|
if (U && U.length > 3) {
|
|
42216
|
-
var Oe = d[
|
|
42216
|
+
var Oe = d[oe(U)];
|
|
42217
42217
|
if (Oe)
|
|
42218
42218
|
return Oe;
|
|
42219
42219
|
Qe("Moment Timezone found " + U + " from the Intl api, but did not have that data loaded.");
|
|
@@ -42231,16 +42231,16 @@ function requireMomentTimezone$1() {
|
|
|
42231
42231
|
function Z(U) {
|
|
42232
42232
|
return (!b || U) && (b = te()), b;
|
|
42233
42233
|
}
|
|
42234
|
-
function
|
|
42234
|
+
function oe(U) {
|
|
42235
42235
|
return (U || "").toLowerCase().replace(/\//g, "_");
|
|
42236
42236
|
}
|
|
42237
|
-
function
|
|
42237
|
+
function re(U) {
|
|
42238
42238
|
var Oe, qe, Ge, Fe;
|
|
42239
42239
|
for (typeof U == "string" && (U = [U]), Oe = 0; Oe < U.length; Oe++)
|
|
42240
|
-
Ge = U[Oe].split("|"), qe = Ge[0], Fe =
|
|
42240
|
+
Ge = U[Oe].split("|"), qe = Ge[0], Fe = oe(qe), l[Fe] = U[Oe], d[Fe] = qe, B(Fe, Ge[2].split(" "));
|
|
42241
42241
|
}
|
|
42242
42242
|
function be(U, Oe) {
|
|
42243
|
-
U =
|
|
42243
|
+
U = oe(U);
|
|
42244
42244
|
var qe = l[U], Ge;
|
|
42245
42245
|
return qe instanceof L ? qe : typeof qe == "string" ? (qe = new L(qe), l[U] = qe, qe) : c[U] && Oe !== be && (Ge = be(c[U], be)) ? (qe = l[U] = new L(), qe._set(Ge), qe.name = d[U], qe) : null;
|
|
42246
42246
|
}
|
|
@@ -42256,7 +42256,7 @@ function requireMomentTimezone$1() {
|
|
|
42256
42256
|
function we(U) {
|
|
42257
42257
|
var Oe, qe, Ge, Fe;
|
|
42258
42258
|
for (typeof U == "string" && (U = [U]), Oe = 0; Oe < U.length; Oe++)
|
|
42259
|
-
qe = U[Oe].split("|"), Ge =
|
|
42259
|
+
qe = U[Oe].split("|"), Ge = oe(qe[0]), Fe = oe(qe[1]), c[Ge] = Fe, d[Ge] = qe[0], c[Fe] = Ge, d[Fe] = qe[1];
|
|
42260
42260
|
}
|
|
42261
42261
|
function ye(U) {
|
|
42262
42262
|
var Oe, qe, Ge, Fe;
|
|
@@ -42282,7 +42282,7 @@ function requireMomentTimezone$1() {
|
|
|
42282
42282
|
}) : qe;
|
|
42283
42283
|
}
|
|
42284
42284
|
function Ye(U) {
|
|
42285
|
-
|
|
42285
|
+
re(U.zones), we(U.links), ye(U.countries), Ze.dataVersion = U.version;
|
|
42286
42286
|
}
|
|
42287
42287
|
function Ke(U) {
|
|
42288
42288
|
return Ke.didShowError || (Ke.didShowError = !0, Qe("moment.tz.zoneExists('" + U + "') has been deprecated in favor of !moment.tz.zone('" + U + "')")), !!be(U);
|
|
@@ -42298,7 +42298,7 @@ function requireMomentTimezone$1() {
|
|
|
42298
42298
|
var Oe = Array.prototype.slice.call(arguments, 0, -1), qe = arguments[arguments.length - 1], Ge = t.utc.apply(null, Oe), Fe;
|
|
42299
42299
|
return !t.isMoment(U) && Xe(Ge) && (Fe = be(qe)) && Ge.add(Fe.parse(Ge), "minutes"), Ge.tz(qe), Ge;
|
|
42300
42300
|
}
|
|
42301
|
-
Ze.version = a, Ze.dataVersion = "", Ze._zones = l, Ze._links = c, Ze._names = d, Ze._countries = p, Ze.add =
|
|
42301
|
+
Ze.version = a, Ze.dataVersion = "", Ze._zones = l, Ze._links = c, Ze._names = d, Ze._countries = p, Ze.add = re, Ze.link = we, Ze.load = Ye, Ze.zone = be, Ze.zoneExists = Ke, Ze.guess = Z, Ze.names = ve, Ze.Zone = L, Ze.unpack = x, Ze.unpackBase60 = C, Ze.needsOffset = Xe, Ze.moveInvalidForward = !0, Ze.moveAmbiguousForward = !1, Ze.countries = Re, Ze.zonesForCountry = t0;
|
|
42302
42302
|
var Ve = t.fn;
|
|
42303
42303
|
t.tz = Ze, t.defaultZone = null, t.updateOffset = function(U, Oe) {
|
|
42304
42304
|
var qe = t.defaultZone, Ge;
|
|
@@ -42360,7 +42360,7 @@ const moment = /* @__PURE__ */ getDefaultExportFromCjs(momentTimezoneExports), D
|
|
|
42360
42360
|
onChange: a,
|
|
42361
42361
|
value: l
|
|
42362
42362
|
}) => {
|
|
42363
|
-
var H, G, Y, B, j, te, Z,
|
|
42363
|
+
var H, G, Y, B, j, te, Z, oe;
|
|
42364
42364
|
const { name: c, type: p, meta: d } = t, u = useFormContext(), {
|
|
42365
42365
|
style: b,
|
|
42366
42366
|
className: h,
|
|
@@ -42372,15 +42372,15 @@ const moment = /* @__PURE__ */ getDefaultExportFromCjs(momentTimezoneExports), D
|
|
|
42372
42372
|
maxDate: w,
|
|
42373
42373
|
minTime: S,
|
|
42374
42374
|
maxTime: x
|
|
42375
|
-
} = d, [L, D] = useState(null), N = (
|
|
42376
|
-
if (D(
|
|
42377
|
-
if (!
|
|
42378
|
-
a == null || a(y ?
|
|
42375
|
+
} = d, [L, D] = useState(null), N = (re) => {
|
|
42376
|
+
if (D(re), re) {
|
|
42377
|
+
if (!re.isValid()) return;
|
|
42378
|
+
a == null || a(y ? re.format(y) : re.toISOString());
|
|
42379
42379
|
}
|
|
42380
42380
|
}, I = p === "datetime" ? DateTimePicker : p === "time" ? TimePicker : DatePicker, k = useCallback(
|
|
42381
|
-
(
|
|
42382
|
-
if (typeof
|
|
42383
|
-
const ve =
|
|
42381
|
+
(re, be) => {
|
|
42382
|
+
if (typeof re == "function") {
|
|
42383
|
+
const ve = re(u.watch(), u);
|
|
42384
42384
|
if (ve != null && ve.date) {
|
|
42385
42385
|
if (be === "min" && moment(ve.date).isAfter(moment(u.watch(c))))
|
|
42386
42386
|
return ve;
|
|
@@ -42389,7 +42389,7 @@ const moment = /* @__PURE__ */ getDefaultExportFromCjs(momentTimezoneExports), D
|
|
|
42389
42389
|
}
|
|
42390
42390
|
return ve;
|
|
42391
42391
|
}
|
|
42392
|
-
return
|
|
42392
|
+
return re;
|
|
42393
42393
|
},
|
|
42394
42394
|
[u, u == null ? void 0 : u.watch()]
|
|
42395
42395
|
);
|
|
@@ -42407,18 +42407,18 @@ const moment = /* @__PURE__ */ getDefaultExportFromCjs(momentTimezoneExports), D
|
|
|
42407
42407
|
value: L,
|
|
42408
42408
|
onChange: N,
|
|
42409
42409
|
disabled: g,
|
|
42410
|
-
onError: (
|
|
42410
|
+
onError: (re) => {
|
|
42411
42411
|
var be, ve, Re, we;
|
|
42412
|
-
|
|
42412
|
+
re == "minDate" && v ? u.setError(c, {
|
|
42413
42413
|
type: "manual",
|
|
42414
42414
|
message: (be = k(v, "min")) == null ? void 0 : be.errorMessage
|
|
42415
|
-
}) :
|
|
42415
|
+
}) : re == "maxDate" && w ? u.setError(c, {
|
|
42416
42416
|
type: "manual",
|
|
42417
42417
|
message: (ve = k(w, "max")) == null ? void 0 : ve.errorMessage
|
|
42418
|
-
}) :
|
|
42418
|
+
}) : re == "minTime" && S ? u.setError(c, {
|
|
42419
42419
|
type: "manual",
|
|
42420
42420
|
message: (Re = k(S, "min")) == null ? void 0 : Re.errorMessage
|
|
42421
|
-
}) :
|
|
42421
|
+
}) : re == "maxTime" && x && u.setError(c, {
|
|
42422
42422
|
type: "manual",
|
|
42423
42423
|
message: (we = k(x, "max")) == null ? void 0 : we.errorMessage
|
|
42424
42424
|
});
|
|
@@ -42434,7 +42434,7 @@ const moment = /* @__PURE__ */ getDefaultExportFromCjs(momentTimezoneExports), D
|
|
|
42434
42434
|
(te = (j = k(S, "min")) == null ? void 0 : j.date) == null ? void 0 : te.toISOString()
|
|
42435
42435
|
) : void 0,
|
|
42436
42436
|
maxTime: x ? moment(
|
|
42437
|
-
(
|
|
42437
|
+
(oe = (Z = k(x, "max")) == null ? void 0 : Z.date) == null ? void 0 : oe.toISOString()
|
|
42438
42438
|
) : void 0
|
|
42439
42439
|
}
|
|
42440
42440
|
}
|
|
@@ -42546,25 +42546,25 @@ function ge(e, t) {
|
|
|
42546
42546
|
}];
|
|
42547
42547
|
}
|
|
42548
42548
|
var J = ".", E = { defaultCountry: "us", value: "", prefix: "+", defaultMask: "............", charAfterDialCode: " ", historySaveDebounceMS: 200, disableCountryGuess: !1, disableDialCodePrefill: !1, forceDialCode: !1, disableDialCodeAndPrefix: !1, disableFormatting: !1, countries: R }, ee = ({ defaultCountry: e = E.defaultCountry, value: t = E.value, countries: a = E.countries, prefix: l = E.prefix, defaultMask: c = E.defaultMask, charAfterDialCode: p = E.charAfterDialCode, historySaveDebounceMS: d = E.historySaveDebounceMS, disableCountryGuess: u = E.disableCountryGuess, disableDialCodePrefill: b = E.disableDialCodePrefill, forceDialCode: h = E.forceDialCode, disableDialCodeAndPrefix: g = E.disableDialCodeAndPrefix, disableFormatting: m = E.disableFormatting, onChange: y, inputRef: C }) => {
|
|
42549
|
-
let v = { countries: a, prefix: l, charAfterDialCode: p, forceDialCode: g ? !1 : h, disableDialCodeAndPrefix: g, defaultMask: c, countryGuessingEnabled: !u, disableFormatting: m }, w = useRef(null), S = C || w, x = (
|
|
42549
|
+
let v = { countries: a, prefix: l, charAfterDialCode: p, forceDialCode: g ? !1 : h, disableDialCodeAndPrefix: g, defaultMask: c, countryGuessingEnabled: !u, disableFormatting: m }, w = useRef(null), S = C || w, x = (oe) => {
|
|
42550
42550
|
Promise.resolve().then(() => {
|
|
42551
|
-
var
|
|
42552
|
-
typeof window > "u" || S.current !== (document == null ? void 0 : document.activeElement) || ((
|
|
42551
|
+
var re;
|
|
42552
|
+
typeof window > "u" || S.current !== (document == null ? void 0 : document.activeElement) || ((re = S.current) == null || re.setSelectionRange(oe, oe));
|
|
42553
42553
|
});
|
|
42554
42554
|
}, [{ phone: L, inputValue: D, country: N }, I, k, H] = ge(() => {
|
|
42555
|
-
let
|
|
42556
|
-
|
|
42557
|
-
let
|
|
42555
|
+
let oe = $({ value: e, field: "iso2", countries: a });
|
|
42556
|
+
oe || console.error(`[react-international-phone]: can not find a country with "${e}" iso2 code`);
|
|
42557
|
+
let re = oe || $({ value: "us", field: "iso2", countries: a }), { phone: be, inputValue: ve, country: Re } = W({ value: t, country: re, insertDialCodeOnEmpty: !b, ...v });
|
|
42558
42558
|
return x(ve.length), { phone: be, inputValue: ve, country: Re.iso2 };
|
|
42559
|
-
}, { overrideLastItemDebounceMS: d, onChange: ({ inputValue:
|
|
42559
|
+
}, { overrideLastItemDebounceMS: d, onChange: ({ inputValue: oe, phone: re, country: be }) => {
|
|
42560
42560
|
if (!y) return;
|
|
42561
42561
|
let ve = G(be);
|
|
42562
|
-
y({ phone:
|
|
42563
|
-
} }), G = useCallback((
|
|
42562
|
+
y({ phone: re, inputValue: oe, country: ve });
|
|
42563
|
+
} }), G = useCallback((oe) => $({ value: oe, field: "iso2", countries: a }), [a]), Y = useMemo(() => G(N), [N, G]);
|
|
42564
42564
|
useEffect(() => {
|
|
42565
|
-
let
|
|
42566
|
-
if (!
|
|
42567
|
-
let
|
|
42565
|
+
let oe = S.current;
|
|
42566
|
+
if (!oe) return;
|
|
42567
|
+
let re = (be) => {
|
|
42568
42568
|
if (!be.key) return;
|
|
42569
42569
|
let ve = be.ctrlKey, Re = be.metaKey, we = be.shiftKey;
|
|
42570
42570
|
if (be.key.toLowerCase() === "z") {
|
|
@@ -42574,22 +42574,22 @@ var J = ".", E = { defaultCountry: "us", value: "", prefix: "+", defaultMask: ".
|
|
|
42574
42574
|
we ? H() : k();
|
|
42575
42575
|
}
|
|
42576
42576
|
};
|
|
42577
|
-
return
|
|
42578
|
-
|
|
42577
|
+
return oe.addEventListener("keydown", re), () => {
|
|
42578
|
+
oe.removeEventListener("keydown", re);
|
|
42579
42579
|
};
|
|
42580
42580
|
}, [S, k, H]);
|
|
42581
|
-
let B = (
|
|
42582
|
-
|
|
42583
|
-
let { phone:
|
|
42584
|
-
return I({ inputValue: be, phone:
|
|
42585
|
-
}, j = (
|
|
42586
|
-
let be = $({ value:
|
|
42581
|
+
let B = (oe) => {
|
|
42582
|
+
oe.preventDefault();
|
|
42583
|
+
let { phone: re, inputValue: be, country: ve, cursorPosition: Re } = fe(oe, { country: Y, phoneBeforeInput: D, insertDialCodeOnEmpty: !1, ...v });
|
|
42584
|
+
return I({ inputValue: be, phone: re, country: ve.iso2 }), x(Re), t;
|
|
42585
|
+
}, j = (oe, re = { focusOnInput: !1 }) => {
|
|
42586
|
+
let be = $({ value: oe, field: "iso2", countries: a });
|
|
42587
42587
|
if (!be) {
|
|
42588
|
-
console.error(`[react-international-phone]: can not find a country with "${
|
|
42588
|
+
console.error(`[react-international-phone]: can not find a country with "${oe}" iso2 code`);
|
|
42589
42589
|
return;
|
|
42590
42590
|
}
|
|
42591
42591
|
let ve = g ? "" : `${l}${be.dialCode}${p}`;
|
|
42592
|
-
I({ inputValue: ve, phone: `${l}${be.dialCode}`, country: be.iso2 }),
|
|
42592
|
+
I({ inputValue: ve, phone: `${l}${be.dialCode}`, country: be.iso2 }), re.focusOnInput && Promise.resolve().then(() => {
|
|
42593
42593
|
var Re;
|
|
42594
42594
|
(Re = S.current) == null || Re.focus();
|
|
42595
42595
|
});
|
|
@@ -42600,8 +42600,8 @@ var J = ".", E = { defaultCountry: "us", value: "", prefix: "+", defaultMask: ".
|
|
|
42600
42600
|
return;
|
|
42601
42601
|
}
|
|
42602
42602
|
if (t === L) return;
|
|
42603
|
-
let { phone:
|
|
42604
|
-
I({ phone:
|
|
42603
|
+
let { phone: oe, inputValue: re, country: be } = W({ value: t, country: Y, insertDialCodeOnEmpty: !b, ...v });
|
|
42604
|
+
I({ phone: oe, inputValue: re, country: be.iso2 });
|
|
42605
42605
|
}, [t]), { phone: L, inputValue: D, country: Y, setCountry: j, handlePhoneValueChange: B, inputRef: S };
|
|
42606
42606
|
}, Q = ({ phone: e, country: t, defaultMask: a = "............", disableFormatting: l = !1 }) => {
|
|
42607
42607
|
let c = t.format, p = (u) => l ? u.replace(new RegExp(`[^${J}]`, "g"), "") : u;
|
|
@@ -42739,7 +42739,7 @@ var J = ".", E = { defaultCountry: "us", value: "", prefix: "+", defaultMask: ".
|
|
|
42739
42739
|
}, [e]), useEffect(() => {
|
|
42740
42740
|
x();
|
|
42741
42741
|
}, [a]), React__default.createElement("ul", { ref: h, role: "listbox", className: P({ addPrefix: ["country-selector-dropdown"], rawClassNames: [b.className] }), style: { display: e ? "block" : "none", ...b.style }, onKeyDown: N, onBlur: u, tabIndex: -1, "aria-activedescendant": `react-international-phone__${M(m[w]).iso2}-option` }, m.map((k, H) => {
|
|
42742
|
-
let G = M(k), Y = G.iso2 === a, B = H === w, j = c.includes(G.iso2), te = H === c.length - 1, Z = p == null ? void 0 : p.find((
|
|
42742
|
+
let G = M(k), Y = G.iso2 === a, B = H === w, j = c.includes(G.iso2), te = H === c.length - 1, Z = p == null ? void 0 : p.find((oe) => oe.iso2 === G.iso2);
|
|
42743
42743
|
return React__default.createElement(React__default.Fragment, { key: G.iso2 }, React__default.createElement("li", { "data-country": G.iso2, role: "option", "aria-selected": Y, "aria-label": `${G.name} ${t}${G.dialCode}`, id: `react-international-phone__${G.iso2}-option`, className: P({ addPrefix: ["country-selector-dropdown__list-item", j && "country-selector-dropdown__list-item--preferred", Y && "country-selector-dropdown__list-item--selected", B && "country-selector-dropdown__list-item--focused"], rawClassNames: [b.listItemClassName] }), onClick: () => L(G), style: b.listItemStyle, title: G.name }, React__default.createElement(q, { iso2: G.iso2, src: Z == null ? void 0 : Z.src, className: P({ addPrefix: ["country-selector-dropdown__list-item-flag-emoji"], rawClassNames: [b.listItemFlagClassName] }), style: b.listItemFlagStyle }), React__default.createElement("span", { className: P({ addPrefix: ["country-selector-dropdown__list-item-country-name"], rawClassNames: [b.listItemCountryNameClassName] }), style: b.listItemCountryNameStyle }, G.name), React__default.createElement("span", { className: P({ addPrefix: ["country-selector-dropdown__list-item-dial-code"], rawClassNames: [b.listItemDialCodeClassName] }), style: b.listItemDialCodeStyle }, t, G.dialCode)), te ? React__default.createElement("hr", { className: P({ addPrefix: ["country-selector-dropdown__preferred-list-divider"], rawClassNames: [b.preferredListDividerClassName] }), style: b.preferredListDividerStyle }) : null);
|
|
42744
42744
|
}));
|
|
42745
42745
|
}, ae = ({ selectedCountry: e, onSelect: t, disabled: a, hideDropdown: l, countries: c = R, preferredCountries: p = [], flags: d, renderButtonWrapper: u, ...b }) => {
|
|
@@ -42759,10 +42759,10 @@ var J = ".", E = { defaultCountry: "us", value: "", prefix: "+", defaultMask: ".
|
|
|
42759
42759
|
}, ...b.dropdownStyleProps }));
|
|
42760
42760
|
}, ie = ({ dialCode: e, prefix: t, disabled: a, style: l, className: c }) => React__default.createElement("div", { className: P({ addPrefix: ["dial-code-preview", a && "dial-code-preview--disabled"], rawClassNames: [c] }), style: l }, `${t}${e}`);
|
|
42761
42761
|
forwardRef(({ value: e, onChange: t, countries: a = R, preferredCountries: l = [], hideDropdown: c, showDisabledDialCodeAndPrefix: p, disableFocusAfterCountrySelect: d, flags: u, style: b, className: h, inputStyle: g, inputClassName: m, countrySelectorStyleProps: y, dialCodePreviewStyleProps: C, inputProps: v, placeholder: w, disabled: S, name: x, onFocus: L, onBlur: D, required: N, autoFocus: I, ...k }, H) => {
|
|
42762
|
-
let { phone: G, inputValue: Y, inputRef: B, country: j, setCountry: te, handlePhoneValueChange: Z } = ee({ value: e, countries: a, ...k, onChange: (
|
|
42763
|
-
t == null || t(
|
|
42764
|
-
} }),
|
|
42765
|
-
return useImperativeHandle(H, () => B.current ? Object.assign(B.current, { setCountry: te, state: { phone: G, inputValue: Y, country: j } }) : null, [B, te, G, Y, j]), React__default.createElement("div", { ref: H, className: P({ addPrefix: ["input-container"], rawClassNames: [h] }), style: b }, React__default.createElement(ae, { onSelect: (
|
|
42762
|
+
let { phone: G, inputValue: Y, inputRef: B, country: j, setCountry: te, handlePhoneValueChange: Z } = ee({ value: e, countries: a, ...k, onChange: (re) => {
|
|
42763
|
+
t == null || t(re.phone, { country: re.country, inputValue: re.inputValue });
|
|
42764
|
+
} }), oe = k.disableDialCodeAndPrefix && p && (j == null ? void 0 : j.dialCode);
|
|
42765
|
+
return useImperativeHandle(H, () => B.current ? Object.assign(B.current, { setCountry: te, state: { phone: G, inputValue: Y, country: j } }) : null, [B, te, G, Y, j]), React__default.createElement("div", { ref: H, className: P({ addPrefix: ["input-container"], rawClassNames: [h] }), style: b }, React__default.createElement(ae, { onSelect: (re) => te(re.iso2, { focusOnInput: !d }), flags: u, selectedCountry: j.iso2, countries: a, preferredCountries: l, disabled: S, hideDropdown: c, ...y }), oe && React__default.createElement(ie, { dialCode: j.dialCode, prefix: k.prefix ?? "+", disabled: S, ...C }), React__default.createElement("input", { onChange: Z, value: Y, type: "tel", ref: B, className: P({ addPrefix: ["input", S && "input--disabled"], rawClassNames: [m] }), placeholder: w, disabled: S, style: g, name: x, onFocus: L, onBlur: D, autoFocus: I, required: N, ...v }));
|
|
42766
42766
|
});
|
|
42767
42767
|
const examples = { AC: "40123", AD: "312345", AE: "501234567", AF: "701234567", AG: "2684641234", AI: "2642351234", AL: "672123456", AM: "77123456", AO: "923123456", AR: "91123456789", AS: "6847331234", AT: "664123456", AU: "412345678", AW: "5601234", AX: "412345678", AZ: "401234567", BA: "61123456", BB: "2462501234", BD: "1812345678", BE: "470123456", BF: "70123456", BG: "43012345", BH: "36001234", BI: "79561234", BJ: "0195123456", BL: "690001234", BM: "4413701234", BN: "7123456", BO: "71234567", BQ: "3181234", BR: "11961234567", BS: "2423591234", BT: "17123456", BW: "71123456", BY: "294911911", BZ: "6221234", CA: "5062345678", CC: "412345678", CD: "991234567", CF: "70012345", CG: "061234567", CH: "781234567", CI: "0123456789", CK: "71234", CL: "221234567", CM: "671234567", CN: "13123456789", CO: "3211234567", CR: "83123456", CU: "51234567", CV: "9911234", CW: "95181234", CX: "412345678", CY: "96123456", CZ: "601123456", DE: "15123456789", DJ: "77831001", DK: "34412345", DM: "7672251234", DO: "8092345678", DZ: "551234567", EC: "991234567", EE: "51234567", EG: "1001234567", EH: "650123456", ER: "7123456", ES: "612345678", ET: "911234567", FI: "412345678", FJ: "7012345", FK: "51234", FM: "3501234", FO: "211234", FR: "612345678", GA: "06031234", GB: "7400123456", GD: "4734031234", GE: "555123456", GF: "694201234", GG: "7781123456", GH: "231234567", GI: "57123456", GL: "221234", GM: "3012345", GN: "601123456", GP: "690001234", GQ: "222123456", GR: "6912345678", GT: "51234567", GU: "6713001234", GW: "955012345", GY: "6091234", HK: "51234567", HN: "91234567", HR: "921234567", HT: "34101234", HU: "201234567", ID: "812345678", IE: "850123456", IL: "502345678", IM: "7924123456", IN: "8123456789", IO: "3801234", IQ: "7912345678", IR: "9123456789", IS: "6111234", IT: "3123456789", JE: "7797712345", JM: "8762101234", JO: "790123456", JP: "9012345678", KE: "712123456", KG: "700123456", KH: "91234567", KI: "72001234", KM: "3212345", KN: "8697652917", KP: "1921234567", KR: "1020000000", KW: "50012345", KY: "3453231234", KZ: "7710009998", LA: "2023123456", LB: "71123456", LC: "7582845678", LI: "660234567", LK: "712345678", LR: "770123456", LS: "50123456", LT: "61234567", LU: "628123456", LV: "21234567", LY: "912345678", MA: "650123456", MC: "612345678", MD: "62112345", ME: "67622901", MF: "690001234", MG: "321234567", MH: "2351234", MK: "72345678", ML: "65012345", MM: "92123456", MN: "88123456", MO: "66123456", MP: "6702345678", MQ: "696201234", MR: "22123456", MS: "6644923456", MT: "96961234", MU: "52512345", MV: "7712345", MW: "991234567", MX: "2221234567", MY: "123456789", MZ: "821234567", NA: "811234567", NC: "751234", NE: "93123456", NF: "381234", NG: "8021234567", NI: "81234567", NL: "612345678", NO: "40612345", NP: "9841234567", NR: "5551234", NU: "8884012", NZ: "211234567", OM: "92123456", PA: "61234567", PE: "912345678", PF: "87123456", PG: "70123456", PH: "9051234567", PK: "3012345678", PL: "512345678", PM: "551234", PR: "7872345678", PS: "599123456", PT: "912345678", PW: "6201234", PY: "961456789", QA: "33123456", RE: "692123456", RO: "712034567", RS: "601234567", RU: "9123456789", RW: "720123456", SA: "512345678", SB: "7421234", SC: "2510123", SD: "911231234", SE: "701234567", SG: "81234567", SH: "51234", SI: "31234567", SJ: "41234567", SK: "912123456", SL: "25123456", SM: "66661212", SN: "701234567", SO: "71123456", SR: "7412345", SS: "977123456", ST: "9812345", SV: "70123456", SX: "7215205678", SY: "944567890", SZ: "76123456", TA: "8999", TC: "6492311234", TD: "63012345", TG: "90112345", TH: "812345678", TJ: "917123456", TK: "7290", TL: "77212345", TM: "66123456", TN: "20123456", TO: "7715123", TR: "5012345678", TT: "8682911234", TV: "901234", TW: "912345678", TZ: "621234567", UA: "501234567", UG: "712345678", US: "2015550123", UY: "94231234", UZ: "912345678", VA: "3123456789", VC: "7844301234", VE: "4121234567", VG: "2843001234", VI: "3406421234", VN: "912345678", VU: "5912345", WF: "821234", WS: "7212345", XK: "43201234", YE: "712345678", YT: "639012345", ZA: "711234567", ZM: "955123456", ZW: "712345678" }, metadata = { 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], 0, 0, 0, 0, 0, 0, 0, [0, ["4\\d{4}", [5]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["690\\d{6}|[356]\\d{5}", [6, 9]]]], 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", 0, 0, 0, 0, 0, [0, ["5[024-68]\\d{7}", [9]]]], AF: ["93", "00", "[2-7]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[2-7]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["7\\d{8}"]]], AG: ["1", "011", "(?:268|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([457]\\d{6})$|1", "268$1", 0, "268", [0, ["268(?:464|7(?:1[3-9]|[28]\\d|3[0246]|64|7[0-689]))\\d{4}"]]], AI: ["1", "011", "(?:264|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2457]\\d{6})$|1", "264$1", 0, "264", [0, ["264(?:235|4(?:69|76)|5(?:3[6-9]|8[1-4])|7(?:29|72))\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["6(?:[78][2-9]|9\\d)\\d{6}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:33|4[1349]|55|77|88|9[13-9])\\d{6}"]]], AO: ["244", "00", "[29]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[29]"]]], 0, 0, 0, 0, 0, 0, [0, ["9[1-79]\\d{7}"]]], 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", 0, 0, [0, ["93(?:7(?:1[15]|81)|8(?:21|4[16]|69|9[12]))[46]\\d{5}|9(?:2(?:2(?:2[59]|44|52)|3(?:26|44)|47[35]|9(?:[07]2|2[26]|34|46))|3327)[45]\\d{5}|9(?:2(?:657|9(?:54|66))|3(?:48[27]|7(?:55|77)|8(?:65|78)))[2-8]\\d{5}|9(?:2(?:284|3(?:02|23)|477|622|920)|3(?:4(?:46|89|92)|541))[2-7]\\d{5}|(?:675\\d|9(?:11[1-8]\\d|2(?:2(?:0[45]|1[2-6]|3[3-6])|3(?:[06]4|7[45])|494|6(?:04|1[2-8]|[36][45]|4[3-6])|80[45]|9(?:[17][4-6]|[48][45]|9[3-6]))|3(?:364|4(?:1[2-8]|[25][4-6]|3[3-6]|84)|5(?:1[2-9]|[38][4-6])|6(?:2[45]|44)|7[069][45]|8(?:0[45]|1[2-7]|3[4-6]|5[3-6]|7[2-6]|8[3-68]))))\\d{6}|9(?:2(?:2(?:62|81)|320|9(?:42|83))|3(?:329|4(?:62|7[16])|5(?:43|64)|7(?:18|5[17])))[2-6]\\d{5}|92(?:2(?:21|4[23]|6[145]|7[1-4]|8[356]|9[267])|3(?:16|3[13-8]|43|5[346-8]|9[3-5])|6(?:2[46]|4[78]|5[1568])|9(?:03|2[1457-9]|3[1356]|4[08]|[56][23]|82))4\\d{5}|9(?:2(?:257|3(?:24|46|92)|9(?:01|23|64))|3(?:4(?:42|64)|5(?:25|37|4[47]|71)|7(?:35|72)|825))[3-6]\\d{5}|9(?:2(?:2(?:02|2[3467]|4[156]|5[45]|6[6-8]|91)|3(?:1[47]|25|[45][25]|96)|47[48]|625|932)|3(?:38[2578]|4(?:0[0-24-9]|3[78]|4[457]|58|6[035-9]|72|83|9[136-8])|5(?:2[124]|[368][23]|4[2689]|7[2-6])|7(?:16|2[15]|3[14]|4[13]|5[468]|7[3-5]|8[26])|8(?:2[67]|3[278]|4[3-5]|5[78]|6[1-378]|[78]7|94)))[4-6]\\d{5}"]]], AS: ["1", "011", "(?:[58]\\d\\d|684|900)\\d{7}", [10], 0, "1", 0, "([267]\\d{6})$|1", "684$1", 0, "684", [0, ["684(?:2(?:48|5[2468]|7[26])|7(?:3[13]|70|82))\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["6(?:485|(?:5[0-3579]|6[013-9]|[7-9]\\d)\\d)\\d{3,9}", [7, 8, 9, 10, 11, 12, 13]]]], 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, [0, ["4(?:79[01]|83[0-389]|94[0-4])\\d{5}|4(?:[0-36]\\d|4[047-9]|5[0-25-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}", [9]]], "0011"], AW: ["297", "00", "(?:[25-79]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[25-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:290|5[69]\\d|6(?:[03]0|22|4[0-2]|[69]\\d)|7(?:[34]\\d|7[07])|9(?:6[45]|9[4-8]))\\d{4}"]]], 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, ["4946\\d{2,6}|(?:4[0-8]|50)\\d{4,8}", [6, 7, 8, 9, 10]]], "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", 0, 0, 0, 0, 0, [0, ["36554\\d{4}|(?:[16]0|4[04]|5[015]|7[07]|99)\\d{7}"]]], 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", 0, 0, 0, 0, 0, [0, ["6040\\d{5}|6(?:03|[1-356]|44|7\\d)\\d{6}"]]], BB: ["1", "011", "(?:246|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "246$1", 0, "246", [0, ["246(?:(?:2(?:[3568]\\d|4[0-57-9])|3(?:5[2-9]|6[0-6])|4(?:46|5\\d)|69[5-7]|8(?:[2-5]\\d|83))\\d|52(?:1[147]|20))\\d{3}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:1[13-9]\\d|644)\\d{7}|(?:3[78]|44|66)[02-9]\\d{7}", [10]]]], 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", 0, 0, 0, 0, 0, [0, ["4[5-9]\\d{7}", [9]]]], BF: ["226", "00", "[025-7]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[025-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:0[1-7]|5[0-8]|[67]\\d)\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:43[07-9]|99[69]\\d)\\d{5}|(?:8[7-9]|98)\\d{7}", [8, 9]]]], BH: ["973", "00", "[136-9]\\d{7}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[13679]|8[02-4679]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:3(?:[0-79]\\d|8[0-57-9])\\d|6(?:3(?:00|33|6[16])|441|6(?:3[03-9]|[69]\\d|7[0-689])))\\d{4}"]]], BI: ["257", "00", "(?:[267]\\d|31)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2367]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:29|[67][125-9])\\d{6}"]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:01(?:2[5-9]|[4-69]\\d)|4[0-8]|[56]\\d|9[013-9])\\d{6}"]]], BL: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [0, ["(?: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}"]]], BM: ["1", "011", "(?:441|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "441$1", 0, "441", [0, ["441(?:[2378]\\d|5[0-39]|9[02])\\d{5}"]]], BN: ["673", "00", "[2-578]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-578]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:22[89]|[78]\\d\\d)\\d{4}"]]], 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)?", 0, 0, 0, [0, ["[67]\\d{7}", [8]]]], BQ: ["599", "00", "(?:[34]1|7\\d)\\d{5}", [7], 0, 0, 0, 0, 0, 0, "[347]", [0, ["(?:31(?:8[14-8]|9[14578])|416[14-9]|7(?:0[01]|7[07]|8\\d|9[056])\\d)\\d{3}"]]], BR: ["55", "00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)", "(?:[1-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-46-9]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}", [8, 9, 10, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["300|4(?:0[02]|37)", "4(?:02|37)0|[34]00"]], ["(\\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", 0, 0, [0, ["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])(?:7|9\\d)\\d{7}", [10, 11]]]], BS: ["1", "011", "(?:242|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([3-8]\\d{6})$|1", "242$1", 0, "242", [0, ["242(?:3(?:5[79]|7[56]|95)|4(?:[23][1-9]|4[1-35-9]|5[1-8]|6[2-8]|7\\d|81)|5(?:2[45]|3[35]|44|5[1-46-9]|65|77)|6[34]6|7(?:27|38)|8(?:0[1-9]|1[02-9]|2\\d|3[0-4]|[89]9))\\d{4}"]]], BT: ["975", "00", "[17]\\d{7}|[2-8]\\d{6}", [7, 8], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-68]|7[246]"]], ["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["1[67]|7"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:1[67]|77)\\d{6}", [8]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:321|7[1-8]\\d)\\d{5}", [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, ["(?:2(?:5[5-79]|9[1-9])|(?:33|44)\\d)\\d{6}", [9]]], "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"]]], 0, 0, 0, 0, 0, 0, [0, ["6[0-35-7]\\d{5}", [7]]]], CA: ["1", "011", "[2-9]\\d{9}|3\\d{6}", [7, 10], 0, "1", 0, 0, 0, 0, 0, [0, ["(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|7[39])|9(?:0[25]|42))[2-9]\\d{6}", [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, [0, ["4(?:79[01]|83[0-389]|94[0-4])\\d{5}|4(?:[0-36]\\d|4[047-9]|5[0-25-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}", [9]]], "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", 0, 0, 0, 0, 0, [0, ["88\\d{5}|(?:8[0-69]|9[017-9])\\d{7}", [7, 9]]]], CF: ["236", "00", "(?:[27]\\d{3}|8776)\\d{4}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[278]"]]], 0, 0, 0, 0, 0, 0, [0, ["7[024-7]\\d{6}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["026(?:1[0-5]|6[6-9])\\d{4}|0(?:[14-6]\\d\\d|2(?:40|5[5-8]|6[07-9]))\\d{5}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:6[89]|7[235-9])\\d{7}", [9]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["0[157]\\d{8}"]]], CK: ["682", "00", "[2-578]\\d{4}", [5], [["(\\d{2})(\\d{3})", "$1 $2", ["[2-578]"]]], 0, 0, 0, 0, 0, 0, [0, ["[578]\\d{4}"]]], 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{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["44"]], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["2[1-36]"], "($1)"], ["(\\d)(\\d{4})(\\d{4})", "$1 $2 $3", ["9[2-9]"]], ["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"], "($1)"], ["(\\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"]]], 0, 0, 0, 0, 0, 0, [0, ["2(?:1982[0-6]|3314[05-9])\\d{3}|(?:2(?:1(?:160|962)|3(?:2\\d\\d|3(?:[03467]\\d|1[0-35-9]|2[1-9]|5[0-24-9]|8[0-3])|600)|646[59])|80[1-9]\\d\\d|9(?:3(?:[0-57-9]\\d\\d|6(?:0[02-9]|[1-9]\\d))|6(?:[0-8]\\d\\d|9(?:[02-79]\\d|1[05-9]))|7[1-9]\\d\\d|9(?:[03-9]\\d\\d|1(?:[0235-9]\\d|4[0-24-9])|2(?:[0-79]\\d|8[0-46-9]))))\\d{4}|(?:22|3[2-5]|[47][1-35]|5[1-3578]|6[13-57]|8[1-9]|9[2458])\\d{7}", [9]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:24[23]|6(?:[25-9]\\d|40))\\d{6}", [9]]]], 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, ["1740[0-5]\\d{6}|1(?:[38]\\d|4[57]|[59][0-35-9]|6[25-7]|7[0-35-8])\\d{8}", [11]]], "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]|91"]], ["(\\d)(\\d{3})(\\d{7})", "$1-$2-$3", ["1"], "0$1", 0, "$1 $2 $3"]], "0", 0, "0([3579]|4(?:[14]4|56))?", 0, 0, 0, [0, ["333301[0-5]\\d{3}|3333(?:00|2[5-9]|[3-9]\\d)\\d{4}|(?:3(?:24[1-9]|3(?:00|3[0-24-9]))|9101)\\d{6}|3(?:0[0-5]|1\\d|2[0-3]|5[01]|70)\\d{7}", [10]]]], 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))", 0, 0, 0, [0, ["(?:3005\\d|6500[01])\\d{3}|(?:5[07]|6[0-4]|7[0-3]|8[3-9])\\d{6}", [8]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:5\\d|6[2-4])\\d{6}", [8]]]], CV: ["238", "0", "(?:[2-59]\\d\\d|800)\\d{4}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[2-589]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:36|5[1-389]|9\\d)\\d{5}"]]], 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]", [0, ["953[01]\\d{4}|9(?:5[12467]|6[5-9])\\d{5}"]]], 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, [0, ["4(?:79[01]|83[0-389]|94[0-4])\\d{5}|4(?:[0-36]\\d|4[047-9]|5[0-25-9]|7[02-8]|8[0-24-9]|9[0-37-9])\\d{6}", [9]]], "0011"], CY: ["357", "00", "(?:[279]\\d|[58]0)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[257-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["9(?:10|[4-79]\\d)\\d{5}"]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:60[1-8]\\d|7(?:0(?:[2-5]\\d|60)|19[0-2]|[2379]\\d\\d))\\d{5}", [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]|31)"], "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", 0, 0, 0, 0, 0, [0, ["1(?:(?:5(?:[0-25-9]\\d\\d|310)|76\\d\\d)\\d{6}|6[023]\\d{7,8})|17\\d{8}", [10, 11]]]], DJ: ["253", "00", "(?:2\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[27]"]]], 0, 0, 0, 0, 0, 0, [0, ["77\\d{6}"]]], DK: ["45", "00", "[2-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:2[6-8]|37|6[78]|96)\\d{6}|(?:2[0-59]|3[0-689]|[457]\\d|6[0-69]|8[126-9]|9[1-47-9])[1-9]\\d{5}"]]], DM: ["1", "011", "(?:[58]\\d\\d|767|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "767$1", 0, "767", [0, ["767(?:2(?:[2-4689]5|7[5-7])|31[5-7]|61[1-8]|70[1-6])\\d{4}"]]], DO: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "8001|8[024]9", [0, ["8[024]9[2-9]\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:5(?:4[0-29]|5\\d|6[0-3])|6(?:[569]\\d|7[0-6])|7[7-9]\\d)\\d{6}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["964[0-2]\\d{5}|9(?:39|[57][89]|6[0-36-9]|[89]\\d)\\d{6}", [9]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:5\\d{5}|8(?:1(?:0(?:0(?:00|[178]\\d)|[3-9]\\d\\d)|(?:1(?:0[2-6]|1\\d)|(?:2[0-59]|[3-79]\\d)\\d)\\d)|2(?:0(?:0(?:00|4\\d)|(?:19|[2-7]\\d)\\d)|(?:(?:[124-69]\\d|3[5-9])\\d|7(?:[0-79]\\d|8[13-9])|8(?:[2-6]\\d|7[01]))\\d)|[349]\\d{4}))\\d\\d|5(?:(?:[02]\\d|5[0-478])\\d|1(?:[0-8]\\d|95)|6(?:4[0-4]|5[1-589]))\\d{3}", [7, 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", 0, 0, 0, 0, 0, [0, ["1[0-25]\\d{8}", [10]]]], EH: ["212", "00", "[5-8]\\d{8}", [9], 0, "0", 0, 0, 0, 0, "528[89]", [0, ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-467]|5[0-3]|8[0-5]))\\d{6}"]]], ER: ["291", "00", "[178]\\d{6}", [7], [["(\\d)(\\d{3})(\\d{3})", "$1 $2 $3", ["[178]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["(?:17[1-3]|7\\d\\d)\\d{4}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:590[16]00\\d|9(?:6906(?:09|10)|7390\\d\\d))\\d\\d|(?:6\\d|7[1-48])\\d{7}"]]], ET: ["251", "00", "(?:11|[2-579]\\d)\\d{7}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[1-579]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["700[1-9]\\d{5}|(?:7(?:0[1-9]|1[0-8]|22|77|86|99)|9\\d\\d)\\d{6}"]]], 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, ["4946\\d{2,6}|(?:4[0-8]|50)\\d{4,8}", [6, 7, 8, 9, 10]]], "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, ["(?:[279]\\d|45|5[01568]|8[034679])\\d{5}", [7]]], "00"], FK: ["500", "00", "[2-7]\\d{4}", [5], 0, 0, 0, 0, 0, 0, 0, [0, ["[56]\\d{4}"]]], FM: ["691", "00", "(?:[39]\\d\\d|820)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[389]"]]], 0, 0, 0, 0, 0, 0, [0, ["31(?:00[67]|208|309)\\d\\d|(?:3(?:[2357]0[1-9]|602|804|905)|(?:820|9[2-7]\\d)\\d)\\d{3}"]]], FO: ["298", "00", "[2-9]\\d{5}", [6], [["(\\d{6})", "$1", ["[2-9]"]]], 0, 0, "(10(?:01|[12]0|88))", 0, 0, 0, [0, ["(?:[27][1-9]|5\\d|9[16])\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:6(?:[0-24-8]\\d|3[0-8]|9[589])|7[3-9]\\d)\\d{6}"]]], 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", 0, 0, [0, ["(?:(?:0[2-7]|7[467])\\d|6(?:0[0-4]|10|[256]\\d))\\d{5}|[2-7]\\d{6}"]]], 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, 0, 0, 0, [0, ["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]]], 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", [0, ["473(?:4(?:0[2-79]|1[04-9]|2[0-5]|49|5[6-8])|5(?:2[01]|3[3-8])|901)\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["5(?:(?:(?:0555|1(?:[17]77|555))[5-9]|757(?:7[7-9]|8[01]))\\d|22252[0-4])\\d\\d|5(?:0(?:0[17]0|505)|1(?:0[01]0|1(?:07|33|51))|2(?:0[02]0|2[25]2)|3(?:0[03]0|3[35]3)|(?:40[04]|900)0|5222)[0-4]\\d{3}|(?:5(?:0(?:0(?:0\\d|11|22|3[0-6]|44|5[05]|77|88|9[09])|(?:[14]\\d|77)\\d|22[02])|1(?:1(?:[03][01]|[124]\\d|5[2-6]|7[0-4])|4\\d\\d)|[23]555|4(?:4\\d\\d|555)|5(?:[0157-9]\\d\\d|200|333|444)|6[89]\\d\\d|7(?:[0147-9]\\d\\d|5(?:00|[57]5))|8(?:0(?:[018]\\d|2[0-4])|5(?:55|8[89])|8(?:55|88))|9(?:090|[1-35-9]\\d\\d))|790\\d\\d)\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:694(?:[0-249]\\d|3[0-8])|7093[0-3])\\d{4}"]]], 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", "1481$1", 0, 0, [0, ["7(?:(?:781|839)\\d|911[17])\\d{5}", [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", 0, 0, 0, 0, 0, [0, ["(?:2(?:[0346-9]\\d|5[67])|5(?:[03-7]\\d|9[1-9]))\\d{6}", [9]]]], GI: ["350", "00", "(?:[25]\\d|60)\\d{6}", [8], [["(\\d{3})(\\d{5})", "$1 $2", ["2"]]], 0, 0, 0, 0, 0, 0, [0, ["5251[0-4]\\d{3}|(?:5(?:[146-8]\\d\\d|250)|60(?:1[01]|6\\d))\\d{4}"]]], GL: ["299", "00", "(?:19|[2-689]\\d|70)\\d{4}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3", ["19|[2-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["[245]\\d{5}"]]], GM: ["220", "00", "[2-9]\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[23679]\\d|4[015]|5[0-489])\\d{5}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["6[0-356]\\d{7}", [9]]]], 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, [0, ["(?: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}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:222|55\\d)\\d{6}"]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["68[57-9]\\d{7}|(?:69|94)\\d{8}", [10]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[3-5]\\d\\d|80[0-4])\\d{5}", [8]]]], GU: ["1", "011", "(?:[58]\\d\\d|671|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "671$1", 0, "671", [0, ["671(?:2\\d\\d|3(?:00|3[39]|4[349]|55|6[26])|4(?:00|56|7[1-9]|8[02-9])|5(?:55|6[2-5]|88)|6(?:3[2-578]|4[24-9]|5[34]|78|8[235-9])|7(?:[0479]7|2[0167]|3[45]|8[7-9])|8(?:[2-57-9]8|6[478])|9(?:2[29]|6[79]|7[1279]|8[7-9]|9[78]))\\d{4}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["9(?:5\\d|6[569]|77)\\d{6}", [9]]]], GY: ["592", "001", "(?:[2-8]\\d{3}|9008)\\d{3}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:510|6\\d\\d|7(?:[0-5]\\d|6[01]))\\d{4}"]]], 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, ["(?:4(?:44[0-35-9]|6(?:1[0-79]|4[0-57-9]|6[0-4])|7(?:[26][0-5]|4[0-28]))|5(?:73[0-6]|95[0-8])|6(?:26[013-8]|66[0-3]|78[0-5])|70(?:7[1-8]|8[0-4])|84(?:4[0-2]|8[0-35-9])|9(?:29[013-9]|39[014-9]|59[0-4]|899))\\d{4}|(?:4(?:4[0-35-9]|6[02357-9]|7[015])|5(?:[1-59][0-46-9]|6[0-4689]|7[0-246-9])|6(?:0[1-9]|[13-59]\\d|[268][0-57-9]|7[0-79])|70[1-59]|84[0-39]|9(?:0[1-9]|1[02-9]|[2358][0-8]|[467]\\d))\\d{5}", [8]]], "00"], HN: ["504", "00", "8\\d{10}|[237-9]\\d{7}", [8, 11], [["(\\d{4})(\\d{4})", "$1-$2", ["[237-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["[37-9]\\d{7}", [8]]]], 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", 0, 0, 0, 0, 0, [0, ["9(?:(?:0[1-9]|[12589]\\d)\\d\\d|7(?:[0679]\\d\\d|5(?:[01]\\d|44|55|77|9[5-79])))\\d{4}|98\\d{6}", [8, 9]]]], HT: ["509", "00", "(?:[2-489]\\d|55)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{4})", "$1 $2 $3", ["[2-589]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[34]\\d|55)\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:[257]0|3[01])\\d{7}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["8[1-35-9]\\d{7,10}", [9, 10, 11, 12]]]], 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", 0, 0, 0, 0, 0, [0, ["8(?:22|[35-9]\\d)\\d{6}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["55(?:4(?:[01]0|5[0-2])|57[0-289])\\d{4}|5(?:(?:[0-2][02-9]|[36]\\d|[49][2-9]|8[3-7])\\d|5(?:01|2\\d|3[0-3]|4[34]|5[0-25689]|6[6-8]|7[0-267]|8[7-9]|9[1-9]))\\d{5}", [9]]]], IM: ["44", "00", "1624\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([25-8]\\d{5})$|0", "1624$1", 0, "74576|(?:16|7[56])24", [0, ["76245[06]\\d{4}|7(?:4576|[59]24\\d|624[0-4689])\\d{5}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:61279|7(?:887[02-9]|9(?:313|79[07-9]))|8(?:079[04-9]|(?:84|91)7[02-8]))\\d{5}|(?:6(?:12|[2-47]1|5[17]|6[13]|80)[0189]|7(?:1(?:2[0189]|9[0-5])|2(?:[14][017-9]|8[0-59])|3(?:2[5-8]|[34][017-9]|9[016-9])|4(?:1[015-9]|[29][89]|39|8[389])|5(?:[15][017-9]|2[04-9]|9[7-9])|6(?:0[0-47]|1[0-257-9]|2[0-4]|3[19]|5[4589])|70[0289]|88[089]|97[02-8])|8(?:0(?:6[67]|7[02-8])|70[017-9]|84[01489]|91[0-289]))\\d{6}|(?:7(?:31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[0189]\\d|7[02-8])\\d{5}|(?:6(?:[09]\\d|1[04679]|2[03689]|3[05-9]|4[0489]|50|6[069]|7[07]|8[7-9])|7(?:0\\d|2[0235-79]|3[05-8]|40|5[0346-8]|6[6-9]|7[1-9]|8[0-79]|9[089])|8(?:0[01589]|1[0-57-9]|2[235-9]|3[03-57-9]|[45]\\d|6[02457-9]|7[1-69]|8[0-25-9]|9[02-9])|9\\d\\d)\\d{7}|(?:6(?:(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|8[124-6])\\d|7(?:[235689]\\d|4[0189]))|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-5])|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]|881))[0189]\\d{5}", [10]]]], IO: ["246", "00", "3\\d{6}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["3"]]], 0, 0, 0, 0, 0, 0, [0, ["38\\d{5}"]]], 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", 0, 0, 0, 0, 0, [0, ["7[3-9]\\d{8}", [10]]]], 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", 0, 0, 0, 0, 0, [0, ["9(?:(?:0(?:[0-35]\\d|4[4-6])|(?:[13]\\d|2[0-3])\\d)\\d|9(?:[0-46]\\d\\d|5[15]0|8(?:[12]\\d|88)|9(?:0[0-3]|[19]\\d|21|69|77|8[7-9])))\\d{5}", [10]]]], 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, ["(?:38[589]\\d\\d|6(?:1[1-8]|2[0-6]|3[026-9]|4[014679]|5[0159]|6[0-69]|70|8[06-8]|9\\d)|7(?:5[057]|[6-9]\\d)|8(?:2[0-59]|[3-69]\\d|8[238]))\\d{4}"]], "00"], IT: ["39", "00", "0\\d{5,10}|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", ["3"]]], 0, 0, 0, 0, 0, 0, [0, ["3[2-9]\\d{7,8}|(?:31|43)\\d{8}", [9, 10]]]], JE: ["44", "00", "1534\\d{6}|(?:[3578]\\d|90)\\d{8}", [10], 0, "0", 0, "([0-24-8]\\d{5})$|0", "1534$1", 0, 0, [0, ["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97\\d))\\d{5}"]]], JM: ["1", "011", "(?:[58]\\d\\d|658|900)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "658|876", [0, ["(?:658295|876(?:2(?:0[1-9]|[13-9]\\d|2[013-9])|[348]\\d\\d|5(?:0[1-9]|[1-9]\\d)|6(?:4[89]|6[67])|7(?:0[07]|7\\d|8[1-47-9]|9[0-36-9])|9(?:[01]9|9[0579])))\\d{4}"]]], JO: ["962", "00", "(?:(?:[2689]|7\\d)\\d|32|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", ["7"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["7(?:[78][0-25-9]|9\\d)\\d{6}", [9]]]], JP: ["81", "010", "00[1-9]\\d{6,14}|[257-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", ["[36]|4(?:2[09]|7[01])", "[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"], "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", ["[257-9]"], "0$1"]], "0", 0, "(000[259]\\d{6})$|(?:(?:003768)0?)|0", "$1", 0, 0, [0, ["[7-9]0[1-9]\\d{7}", [10]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:1(?:0[0-8]|1[0-7]|2[014]|30)|7\\d\\d)\\d{6}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["312(?:58\\d|973)\\d{3}|(?:2(?:0[0-35]|2\\d)|5[0-24-7]\\d|600|7(?:[07]\\d|55)|88[08]|9(?:12|9[05-9]))\\d{6}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:(?:1[28]|3[18]|9[67])\\d|6[016-9]|7(?:[07-9]|[16]\\d)|8(?:[013-79]|8\\d))\\d{6}|(?:1\\d|9[0-57-9])\\d{6}|(?:2[3-6]|3[2-6]|4[2-4]|[5-7][2-5])48\\d{5}", [8, 9]]]], KI: ["686", "00", "(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}", [5, 8], 0, "0", 0, 0, 0, 0, 0, [0, ["(?:6200[01]|7(?:310[1-9]|5(?:02[03-9]|12[0-47-9]|22[0-7]|[34](?:0[1-9]|8[02-9])|50[1-9])))\\d{3}|(?:63\\d\\d|7(?:(?:[0146-9]\\d|2[0-689])\\d|3(?:[02-9]\\d|1[1-9])|5(?:[0-2][013-9]|[34][1-79]|5[1-9]|[6-9]\\d)))\\d{4}", [8]]]], KM: ["269", "00", "[3478]\\d{6}", [7], [["(\\d{3})(\\d{2})(\\d{2})", "$1 $2 $3", ["[3478]"]]], 0, 0, 0, 0, 0, 0, [0, ["[34]\\d{6}"]]], KN: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "869$1", 0, "869", [0, ["869(?:48[89]|55[6-8]|66\\d|76[02-7])\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["19[1-3]\\d{7}", [10]]]], 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))?", 0, 0, 0, [0, ["1(?:05(?:[0-8]\\d|9[0-6])|22[13]\\d)\\d{4,5}|1(?:0[0-46-9]|[16-9]\\d|2[013-9])\\d{6,7}", [9, 10]]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:41\\d\\d|5(?:(?:[05]\\d|1[0-7]|6[56])\\d|2(?:22|5[25])|7(?:55|77)|88[58])|6(?:(?:0[034679]|5[015-9]|6\\d)\\d|1(?:00|11|6[16])|2[26]2|3[36]3|4[46]4|7(?:0[013-9]|[67]\\d)|8[68]8|9(?:[069]\\d|3[039]))|9(?:(?:[04679]\\d|8[057-9])\\d|1(?:1[01]|99)|2(?:00|2\\d)|3(?:00|3[03])|5(?:00|5\\d)))\\d{4}", [8]]]], KY: ["1", "011", "(?:345|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "345$1", 0, "345", [0, ["345(?:32[1-9]|42[0-4]|5(?:1[67]|2[5-79]|4[6-9]|50|76)|649|82[56]|9(?:1[679]|2[2-9]|3[06-9]|90))\\d{4}"]]], KZ: ["7", "810", "(?:33622|8\\d{8})\\d{5}|[78]\\d{9}", [10, 14], 0, "8", 0, 0, 0, 0, "33|7", [0, ["7(?:0[0-25-8]|47|6[0-4]|7[15-8]|85)\\d{7}", [10]]], "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", ["30[0135-9]"], "0$1"], ["(\\d{2})(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3 $4", ["[23]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["208[78]\\d{6}|(?:20[23579]|30[24])\\d{7}", [10]]]], 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-7]|9[04-9])|8[02-9]"], "0$1"], ["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[27-9]"]]], "0", 0, 0, 0, 0, 0, [0, ["793(?:[01]\\d|2[0-4])\\d{3}|(?:(?:3|81)\\d|7(?:[01]\\d|6[013-9]|8[89]|9[12]))\\d{5}"]]], LC: ["1", "011", "(?:[58]\\d\\d|758|900)\\d{7}", [10], 0, "1", 0, "([2-8]\\d{6})$|1", "758$1", 0, "758", [0, ["758(?:28[4-7]|384|4(?:6[01]|8[4-9])|5(?:1[89]|20|84)|7(?:1[2-9]|2\\d|3[0-3])|812)\\d{4}"]]], 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", 0, 0, 0, [0, ["(?:6(?:(?:4[5-9]|5[0-469])\\d|6(?:[024-6]\\d|[17]0|3[7-9]))\\d|7(?:[37-9]\\d|42|56))\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["7(?:[0-25-8]\\d|4[0-4])\\d{6}"]]], LR: ["231", "00", "(?:[245]\\d|33|77|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", 0, 0, 0, 0, 0, [0, ["(?:(?:(?:22|33)0|555|(?:77|88)\\d)\\d|4(?:240|[67]))\\d{5}|[56]\\d{6}", [7, 9]]]], LS: ["266", "00", "(?:[256]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2568]"]]], 0, 0, 0, 0, 0, 0, [0, ["[56]\\d{7}"]]], 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]", 0, 0, 0, [0, ["6\\d{7}"]]], 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)", 0, 0, 0, [0, ["6(?:[269][18]|5[1568]|7[189]|81)\\d{6}", [9]]]], LV: ["371", "00", "(?:[268]\\d|90)\\d{6}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[269]|8[01]"]]], 0, 0, 0, 0, 0, 0, [0, ["2333[0-8]\\d{3}|2(?:[0-24-9]\\d\\d|3(?:0[07]|[14-9]\\d|2[02-9]|3[0-24-9]))\\d{4}"]]], LY: ["218", "00", "[2-9]\\d{8}", [9], [["(\\d{2})(\\d{7})", "$1-$2", ["[2-9]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["9[1-6]\\d{7}"]]], 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, [0, ["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[0167]\\d|2[0-467]|5[0-3]|8[0-5]))\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["4(?:[469]\\d|5[1-9])\\d{5}|(?:3|6\\d)\\d{7}"]]], 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", 0, 0, 0, 0, 0, [0, ["562\\d{5}|(?:6\\d|7[16-9])\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["6(?:[07-9]\\d|3[024]|6[0-25])\\d{5}", [8]]]], MF: ["590", "00", "(?:590\\d|7090)\\d{5}|(?:69|80|9\\d)\\d{7}", [9], 0, "0", 0, 0, 0, 0, 0, [0, ["(?: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}"]]], 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", 0, 0, [0, ["3[2-47-9]\\d{7}"]]], MH: ["692", "011", "329\\d{4}|(?:[256]\\d|45)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1-$2", ["[2-6]"]]], "1", 0, 0, 0, 0, 0, [0, ["(?:(?:23|54)5|329|45[35-8])\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["7(?:3555|(?:474|9[019]7)7)\\d{3}|7(?:[0-25-8]\\d\\d|3(?:[1-478]\\d|6[01])|4(?:2\\d|60|7[01578])|9(?:[2-4]\\d|5[01]|7[015]))\\d{4}"]]], ML: ["223", "00", "[24-9]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[24-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["2(?:0(?:01|79)|17\\d)\\d{4}|(?:5[01]|[679]\\d|8[2-59])\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:17[01]|9(?:2(?:[0-4]|[56]\\d\\d)|(?:3(?:[0-36]|4\\d)|(?:6\\d|8[89]|9[4-8])\\d|7(?:3|40|[5-9]\\d))\\d|4(?:(?:[0245]\\d|[1379])\\d|88)|5[0-6])\\d)\\d{4}|9[69]1\\d{6}|9(?:[68]\\d|9[089])\\d{5}", [7, 8, 9, 10]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:83[01]|92[039])\\d{5}|(?:5[05]|6[069]|72|8[015689]|9[013-9])\\d{6}", [8]]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["6800[0-79]\\d{3}|6(?:[235]\\d\\d|6(?:0[0-5]|[1-9]\\d)|8(?:0[1-9]|[14-8]\\d|2[5-9]|[39][0-4]))\\d{4}", [8]]]], MP: ["1", "011", "[58]\\d{9}|(?:67|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "670$1", 0, "670", [0, ["670(?:2(?:3[3-7]|56|8[4-8])|32[1-38]|4(?:33|8[348])|5(?:32|55|88)|6(?:64|70|82)|78[3589]|8[3-9]8|989)\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:69[67]\\d\\d|7091[0-3])\\d{4}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["[2-4][0-46-9]\\d{6}"]]], MS: ["1", "011", "(?:[58]\\d\\d|664|900)\\d{7}", [10], 0, "1", 0, "([34]\\d{6})$|1", "664$1", 0, "664", [0, ["664(?:3(?:49|9[1-6])|49[2-6])\\d{4}"]]], MT: ["356", "00", "3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[2357-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:7(?:210|[79]\\d\\d)|9(?:[29]\\d\\d|69[67]|8(?:1[1-3]|89|97)))\\d{4}"]]], 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, ["5(?:4(?:2[1-389]|7[1-9])|87[15-8])\\d{4}|(?:5(?:2[5-9]|4[3-689]|[57]\\d|8[0-689]|9[0-8])|7(?:0[0-4]|3[013]))\\d{5}", [8]]], "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, ["(?:46[46]|[79]\\d\\d)\\d{4}", [7]]], "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", 0, 0, 0, 0, 0, [0, ["111\\d{6}|(?:31|77|[89][89])\\d{7}", [9]]]], 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, ["(?:2(?:2\\d|3[1-35-8]|4[13-9]|7[1-689]|8[1-578]|9[467])|3(?:1[1-79]|[2458][1-9]|3\\d|7[1-8]|9[1-5])|4(?:1[1-57-9]|[267][1-9]|3[1-8]|[45]\\d|8[1-35-9]|9[2-689])|5(?:[56]\\d|88|9[1-79])|6(?:1[2-68]|[2-4][1-9]|5[1-36-9]|6[0-57-9]|7[1-7]|8[67]|9[4-8])|7(?:[1346][1-9]|[27]\\d|5[13-9]|8[1-69]|9[17])|8(?:1\\d|2[13-689]|3[1-6]|4[124-6]|6[1246-9]|7[0-378]|9[12479])|9(?:1[346-9]|2[1-4]|3[2-46-8]|5[1348]|[69]\\d|7[12]|8[1-8]))\\d{7}"]], "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", 0, 0, 0, 0, 0, [0, ["1(?:1888[689]|4400|8(?:47|8[27])[0-4])\\d{4}|1(?:0(?:[23568]\\d|4[0-6]|7[016-9]|9[0-8])|1(?:[1-5]\\d\\d|6(?:0[5-9]|[1-9]\\d)|7(?:[0-4]\\d|5[0-7]))|(?:[269]\\d|[37][1-9]|4[235-9])\\d|5(?:31|9\\d\\d)|8(?:1[23]|[236]\\d|4[06]|5(?:46|[7-9])|7[016-9]|8[01]|9[0-8]))\\d{5}", [9, 10]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["8[2-79]\\d{7}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:60|8[1245])\\d{7}", [9]]]], NC: ["687", "00", "(?:050|[2-57-9]\\d\\d)\\d{3}", [6], [["(\\d{2})(\\d{2})(\\d{2})", "$1.$2.$3", ["[02-57-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[579]\\d|8[0-79])\\d{4}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:23|7[0467]|[89]\\d)\\d{6}"]]], 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", 0, 0, [0, ["(?:14|3[58])\\d{4}"]]], NG: ["234", "009", "38\\d{6}|[78]\\d{9,13}|(?:20|9\\d)\\d{8}", [8, 10, 11, 12, 13, 14], [["(\\d{2})(\\d{3})(\\d{2,3})", "$1 $2 $3", ["3"], "0$1"], ["(\\d{3})(\\d{3})(\\d{3,4})", "$1 $2 $3", ["[7-9]"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["20[129]"], "0$1"], ["(\\d{4})(\\d{2})(\\d{4})", "$1 $2 $3", ["2"], "0$1"], ["(\\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", 0, 0, 0, 0, 0, [0, ["(?:702[0-24-9]|819[01])\\d{6}|(?:7(?:0[13-9]|[12]\\d)|8(?:0[1-9]|1[0-8])|9(?:0[1-9]|1[1-6]))\\d{7}", [10]]]], NI: ["505", "00", "(?:1800|[25-8]\\d{3})\\d{4}", [8], [["(\\d{4})(\\d{4})", "$1 $2", ["[125-8]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:5(?:5[0-7]|[78]\\d)|6(?:20|3[035]|4[045]|5[05]|77|8[1-9]|9[059])|(?:7[5-8]|8\\d)\\d)\\d{5}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:6[1-58]|970\\d)\\d{7}", [9, 11]]]], 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]", [0, ["(?:4[015-8]|9\\d)\\d{6}", [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", 0, 0, 0, 0, 0, [0, ["9(?:00|6[0-3]|7[024-6]|8[0-24-68])\\d{7}", [10]]]], NR: ["674", "00", "(?:222|444|(?:55|8\\d)\\d|666|777|999)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[24-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:222|55[3-9]|666|777|8\\d\\d|999)\\d{4}"]]], NU: ["683", "00", "(?:[4-7]|888\\d)\\d{3}", [4, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["8"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[56]|888[1-9])\\d{3}"]]], 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, ["2(?:[0-27-9]\\d|6)\\d{6,7}|2(?:1\\d|75)\\d{5}", [8, 9, 10]]], "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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:1505|90[1-9]\\d)\\d{4}|(?:7[126-9]|9[1-9])\\d{6}", [8]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:1[16]1|21[89]|6\\d{3}|8(?:1[01]|7[23]))\\d{4}", [7, 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, ["9\\d{8}", [9]]], "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"]]], 0, 0, 0, 0, 0, 0, [0, ["8[7-9]\\d{6}", [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, ["(?:7\\d|8[1-38])\\d{6}", [8]]], "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", 0, 0, 0, 0, 0, [0, ["(?:8(?:1[37]|9[5-8])|9(?:0[5-9]|1[0-24-9]|[235-7]\\d|4[2-9]|8[135-9]|9[1-9]))\\d{7}", [10]]]], 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", 0, 0, 0, 0, 0, [0, ["3(?:[0-247]\\d|3[0-79]|55|64)\\d{7}", [10]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["2131[89]\\d{4}|21(?:1[013-5]|2\\d|3[2-9])\\d{5}|(?:45|5[0137]|6[069]|7[2389]|88)\\d{7}", [9]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:4[02-489]|5[02-9]|708(?:4[0-5]|5[0-6]))\\d{4}"]]], PR: ["1", "011", "(?:[589]\\d\\d|787)\\d{7}", [10], 0, "1", 0, 0, 0, 0, "787|939", [0, ["(?:787|939)[2-9]\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["5[69]\\d{7}", [9]]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["6(?:[06]92(?:30|9\\d)|[35]92(?:[049]\\d|3[034]))\\d{3}|(?:(?:16|6[0356])93|9(?:[1-36]\\d\\d|480))\\d{5}"]]], PW: ["680", "01[12]", "(?:[24-8]\\d\\d|345|900)\\d{4}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[2-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:(?:46|83)[0-5]|(?:6[2-4689]|78)0)\\d{4}|(?:45|77|88)\\d{5}"]]], 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", 0, 0, 0, 0, 0, [0, ["9(?:51|6[129]|7[1-6]|8[1-7]|9[1-5])\\d{6}", [9]]]], 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[16]|8"]], ["(\\d{4})(\\d{4})", "$1 $2", ["[3-7]"]]], 0, 0, 0, 0, 0, 0, [0, ["[35-7]\\d{7}", [8]]]], 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, [0, ["(?: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}"]]], 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, ["(?:630|702)0\\d{5}|(?:6(?:00|2\\d)|7(?:0[013-9]|1[0-3]|[2-7]\\d|8[03-8]|9[0-39]))\\d{6}", [9]]], 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", 0, 0, 0, 0, 0, [0, ["6(?:[0-689]|7\\d)\\d{6,7}", [8, 9, 10]]]], 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, "3[04-689]|[489]", [0, ["9\\d{9}", [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", 0, 0, 0, 0, 0, [0, ["7[237-9]\\d{7}", [9]]]], SA: ["966", "00", "92\\d{7}|(?:[15]|8\\d)\\d{8}", [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{3,4})", "$1 $2 $3", ["81"], "0$1"], ["(\\d{3})(\\d{3})(\\d{4})", "$1 $2 $3", ["8"]]], "0", 0, 0, 0, 0, 0, [0, ["579[01]\\d{5}|5(?:[013-689]\\d|7[0-8])\\d{6}", [9]]]], 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])"]]], 0, 0, 0, 0, 0, 0, [0, ["48\\d{3}|(?:(?:6[89]|7[1-9]|8[4-9])\\d|9(?:1[2-9]|2[013-9]|3[0-2]|[46]\\d|5[0-46-9]|7[0-689]|8[0-79]|9[0-8]))\\d{4}"]]], 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, ["2[125-8]\\d{5}"]], "00"], SD: ["249", "00", "[19]\\d{8}", [9], [["(\\d{2})(\\d{3})(\\d{4})", "$1 $2 $3", ["[19]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["(?:1[0-2]|9[0-3569])\\d{7}"]]], 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", 0, 0, 0, 0, 0, [0, ["7[02369]\\d{7}", [9]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["896[0-8]\\d{4}|(?:8(?:0[1-9]|[1-8]\\d|9[0-5])|9[0-8]\\d)\\d{5}", [8]]]], SH: ["290", "00", "(?:[256]\\d|8)\\d{3}", [4, 5], 0, 0, 0, 0, 0, 0, "[256]", [0, ["[56]\\d{4}", [5]]]], 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, ["65(?:[178]\\d|5[56]|6[01])\\d{4}|(?:[37][01]|4[0139]|51|6[489])\\d{6}", [8]]], "00"], SJ: ["47", "00", "0\\d{4}|(?:[489]\\d|79)\\d{6}", [5, 8], 0, 0, 0, 0, 0, 0, "79", [0, ["(?:4[015-8]|9\\d)\\d{6}", [8]]]], 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", 0, 0, 0, 0, 0, [0, ["909[1-9]\\d{5}|9(?:0[1-8]|1[0-24-9]|4[03-57-9]|5\\d)\\d{6}", [9]]]], SL: ["232", "00", "(?:[237-9]\\d|66)\\d{6}", [8], [["(\\d{2})(\\d{6})", "$1 $2", ["[236-9]"], "(0$1)"]], "0", 0, 0, 0, 0, 0, [0, ["(?:25|3[0-5]|66|7[1-9]|8[08]|9[09])\\d{6}"]]], 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", 0, 0, [0, ["6[16]\\d{6}", [8]]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["7(?:(?:[06-8]\\d|[19]0|21)\\d|5(?:0[01]|[19]0|2[25]|3[356]|[4-7]\\d|8[35]))\\d{5}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:(?:15|(?:3[59]|4[89]|6\\d|7[679]|8[08])\\d|9(?:0\\d|[2-9]))\\d|2(?:4\\d|8))\\d{5}|(?:[67]\\d\\d|904)\\d{5}", [7, 8, 9]]]], SR: ["597", "00", "(?:[2-5]|68|[78]\\d)\\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-8]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:7[124-7]|8[1-9])\\d{5}", [7]]]], SS: ["211", "00", "[19]\\d{8}", [9], [["(\\d{3})(\\d{3})(\\d{3})", "$1 $2 $3", ["[19]"], "0$1"]], "0", 0, 0, 0, 0, 0, [0, ["(?:12|9[1257-9])\\d{7}"]]], ST: ["239", "00", "(?:22|9\\d)\\d{5}", [7], [["(\\d{3})(\\d{4})", "$1 $2", ["[29]"]]], 0, 0, 0, 0, 0, 0, [0, ["900[5-9]\\d{3}|9(?:0[1-9]|[89]\\d)\\d{4}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["[67]\\d{7}", [8]]]], SX: ["1", "011", "7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "(5\\d{6})$|1", "721$1", 0, "721", [0, ["7215(?:1[02]|2\\d|5[034679]|8[014-8])\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:50|9[1-689])\\d{7}", [9]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["7[6-9]\\d{6}", [8]]]], 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", [0, ["649(?:2(?:3[129]|4[1-79])|3\\d\\d|4[34][1-3])\\d{4}"]]], TD: ["235", "00|16", "(?:22|[689]\\d|77)\\d{6}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[26-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[69]\\d|77|8[56])\\d{6}"]], "00"], TG: ["228", "00", "[279]\\d{7}", [8], [["(\\d{2})(\\d{2})(\\d{2})(\\d{2})", "$1 $2 $3 $4", ["[279]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:7[0-29]|9[0-36-9])\\d{6}"]]], 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", 0, 0, 0, 0, 0, [0, ["67(?:1[0-8]|2[4-7])\\d{5}|(?:14|6[1-6]|[89]\\d)\\d{7}", [9]]]], 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, ["(?:33[03-9]|4(?:1[18]|4[02-479])|81[1-9])\\d{6}|(?:[09]\\d|1[0-27-9]|2[0-27]|[34]0|5[05]|7[01578]|8[078])\\d{7}"]], "8~10"], TK: ["690", "00", "[2-47]\\d{3,6}", [4, 5, 6, 7], 0, 0, 0, 0, 0, 0, 0, [0, ["7[2-4]\\d{2,5}"]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["7[2-8]\\d{6}", [8]]]], 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, ["(?:6\\d|71)\\d{6}"]], "8~10"], TN: ["216", "00", "[2-57-9]\\d{7}", [8], [["(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3", ["[2-57-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["3(?:001|[12]40)\\d{4}|(?:(?:[259]\\d|4[0-8])\\d|3(?:1[1-35]|6[0-4]|91))\\d{5}"]]], 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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:5(?:4[0-5]|5[4-6])|6(?:[09]\\d|3[02]|8[15-9])|(?:7\\d|8[46-9])\\d|999)\\d{4}", [7]]]], 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", 0, 0, 0, 0, 0, [0, ["561(?:011|61\\d)\\d{4}|5(?:0[15-7]|1[06]|24|[34]\\d|5[1-59]|9[46])\\d{7}", [10]]]], TT: ["1", "011", "(?:[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-46-8]\\d{6})$|1", "868$1", 0, "868", [0, ["868(?:(?:2[5-9]|3\\d)\\d|4(?:3[0-6]|[6-9]\\d)|6(?:20|78|8\\d)|7(?:0[1-9]|1[02-9]|[2-9]\\d))\\d{4}"]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:7[01]\\d|90)\\d{4}", [6, 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, ["(?:40001[0-2]|9[0-8]\\d{4})\\d{3}", [9]]], 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", 0, 0, 0, 0, 0, [0, ["(?:6[125-9]|7[13-9])\\d{7}"]]], 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, ["790\\d{6}|(?:39|50|6[36-8]|7[1-357]|9[1-9])\\d{7}", [9]]], "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", 0, 0, 0, 0, 0, [0, ["72[48]0\\d{5}|7(?:[015-8]\\d|2[067]|36|4[0-8]|9[089])\\d{6}"]]], 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, [0, ["(?:3052(?:0[0-8]|[1-9]\\d)|5056(?:[0-35-9]\\d|4[0-468]))\\d{4}|(?:2742|305[3-9]|472[247-9]|505[2-57-9]|983[2-47-9])\\d{6}|(?:2(?:0[1-35-9]|1[02-9]|2[03-57-9]|3[1459]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-47-9]|1[02-9]|2[0135-79]|3[0-24679]|4[167]|5[0-2]|6[01349]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|3[016]|4[0156]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-8]|3[0-247]|4[037]|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-389]|8[04-69]))[2-9]\\d{6}"]]], UY: ["598", "0(?:0|1[3-9]\\d)", "0004\\d{2,9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}", [6, 7, 8, 9, 10, 11, 12, 13], [["(\\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, ["9[1-9]\\d{6}", [8]]], "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]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:(?:[25]0|33|8[78]|9[0-57-9])\\d{3}|6(?:1(?:2(?:2[01]|98)|35[0-4]|50\\d|61[23]|7(?:[01][017]|4\\d|55|9[5-9]))|2(?:(?:11|7\\d)\\d|2(?:[12]1|9[01379])|5(?:[126]\\d|3[0-4]))|5(?:19[01]|2(?:27|9[26])|(?:30|59|7\\d)\\d)|6(?:2(?:1[5-9]|2[0367]|38|41|52|60)|(?:3[79]|9[0-3])\\d|4(?:56|83)|7(?:[07]\\d|1[017]|3[07]|4[047]|5[057]|67|8[0178]|9[79]))|7(?:2(?:24|3[237]|4[5-9]|7[15-8])|5(?:7[12]|8[0589])|7(?:0\\d|[39][07])|9(?:0\\d|7[079])))|7(?:[07]\\d{3}|2(?:2(?:2[79]|95)|3(?:2[5-9]|6[0-6])|57\\d|7(?:0\\d|1[17]|2[27]|3[37]|44|5[057]|66|88))|3(?:2(?:1[0-6]|21|3[469]|7[159])|(?:33|9[4-6])\\d|5(?:0[0-4]|5[579]|9\\d)|7(?:[0-3579]\\d|4[0467]|6[67]|8[078]))|4(?:2(?:29|5[0257]|6[0-7]|7[1-57])|5(?:1[0-4]|8\\d|9[5-9])|7(?:0\\d|1[024589]|2[0-27]|3[0137]|[46][07]|5[01]|7[5-9]|9[079])|9(?:7[015-9]|[89]\\d))|5(?:112|2(?:0\\d|2[29]|[49]4)|3[1568]\\d|52[6-9]|7(?:0[01578]|1[017]|[23]7|4[047]|[5-7]\\d|8[78]|9[079]))|9(?:22[128]|3(?:2[0-4]|7\\d)|57[02569]|7(?:2[05-9]|3[37]|4\\d|60|7[2579]|87|9[07]))))\\d{4}"]]], 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", [0, ["3[1-9]\\d{8}|3[2-9]\\d{7}", [9, 10]]]], VC: ["1", "011", "(?:[58]\\d\\d|784|900)\\d{7}", [10], 0, "1", 0, "([2-7]\\d{6})$|1", "784$1", 0, "784", [0, ["784(?:4(?:3[0-5]|5[45]|89|9[0-8])|5(?:2[6-9]|3[0-4])|720)\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["4(?:1[24-8]|2[246])\\d{7}"]]], VG: ["1", "011", "(?:284|[58]\\d\\d|900)\\d{7}", [10], 0, "1", 0, "([2-578]\\d{6})$|1", "284$1", 0, "284", [0, ["284(?:245|3(?:0[0-3]|4[0-7]|68|9[34])|4(?:4[0-6]|68|9[69])|5(?:4[0-7]|68|9[69]))\\d{4}"]]], VI: ["1", "011", "[58]\\d{9}|(?:34|90)0\\d{7}", [10], 0, "1", 0, "([2-9]\\d{6})$|1", "340$1", 0, "340", [0, ["340(?:2(?:0\\d|10|2[06-8]|4[49]|77)|3(?:32|44)|4(?:2[23]|44|7[34]|89)|5(?:1[34]|55)|6(?:2[56]|4[23]|77|9[023])|7(?:1[2-57-9]|2[57]|7\\d)|884|998)\\d{4}"]]], 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", 0, 0, 0, 0, 0, [0, ["(?:5(?:2[238]|59)|89[6-9]|99[013-9])\\d{6}|(?:3\\d|5[1689]|7[06-9]|8[1-8]|9[0-8])\\d{7}", [9]]]], VU: ["678", "00", "[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}", [5, 7], [["(\\d{3})(\\d{4})", "$1 $2", ["[57-9]"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:[58]\\d|7[013-7])\\d{5}", [7]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:72|8[23])\\d{4}", [6]]]], 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"]]], 0, 0, 0, 0, 0, 0, [0, ["(?:7[1-35-7]|8(?:[3-7]|9\\d{3}))\\d{5}", [7, 10]]]], 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", 0, 0, 0, 0, 0, [0, ["4[3-9]\\d{6}", [8]]]], 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", 0, 0, 0, 0, 0, [0, ["7[01378]\\d{7}", [9]]]], YT: ["262", "00", "7093\\d{5}|(?:80|9\\d)\\d{7}|(?:26|63)9\\d{6}", [9], 0, "0", 0, 0, 0, 0, 0, [0, ["(?:639(?:0[0-79]|1[019]|[267]\\d|3[09]|40|5[05-9]|9[04-79])|7093[5-7])\\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", 0, 0, 0, 0, 0, [0, ["(?:1(?:3492[0-25]|4495[0235]|549(?:20|5[01]))|4[34]492[01])\\d{3}|8[1-4]\\d{3,7}|(?:2[27]|47|54)4950\\d{3}|(?:1(?:049[2-4]|9[12]\\d\\d)|(?:50[0-2]|6\\d\\d|7(?:[0-46-9]\\d|5[0-4]))\\d\\d|8(?:5\\d{3}|7(?:08[67]|158|28[5-9]|310)))\\d{4}|(?:1[6-8]|28|3[2-69]|4[025689]|5[36-8])4920\\d{3}|(?:12|[2-5]1)492\\d{4}", [5, 6, 7, 8, 9]]]], 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", 0, 0, 0, 0, 0, [0, ["(?:[59][5-8]|7[5-9])\\d{7}"]]], 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", 0, 0, 0, 0, 0, [0, ["7(?:[1278]\\d|3[1-9])\\d{6}", [9]]]] }, 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}"]]] } };
|
|
42768
42768
|
function withMetadataArgument(e, t) {
|
|
@@ -45741,10 +45741,10 @@ function useDropzone() {
|
|
|
45741
45741
|
return typeof S == "function" ? S : noop;
|
|
45742
45742
|
}, [S]), Z = useMemo(function() {
|
|
45743
45743
|
return typeof w == "function" ? w : noop;
|
|
45744
|
-
}, [w]),
|
|
45744
|
+
}, [w]), oe = useRef(null), re = useRef(null), be = useReducer(reducer, initialState), ve = _slicedToArray(be, 2), Re = ve[0], we = ve[1], ye = Re.isFocused, De = Re.isFileDialogActive, t0 = useRef(typeof window < "u" && window.isSecureContext && x && canUseFileSystemAccessAPI()), Ye = function() {
|
|
45745
45745
|
!t0.current && De && setTimeout(function() {
|
|
45746
|
-
if (
|
|
45747
|
-
var a0 =
|
|
45746
|
+
if (re.current) {
|
|
45747
|
+
var a0 = re.current.files;
|
|
45748
45748
|
a0.length || (we({
|
|
45749
45749
|
type: "closeDialog"
|
|
45750
45750
|
}), Z());
|
|
@@ -45755,18 +45755,18 @@ function useDropzone() {
|
|
|
45755
45755
|
return window.addEventListener("focus", Ye, !1), function() {
|
|
45756
45756
|
window.removeEventListener("focus", Ye, !1);
|
|
45757
45757
|
};
|
|
45758
|
-
}, [
|
|
45758
|
+
}, [re, De, Z, t0]);
|
|
45759
45759
|
var Ke = useRef([]), Xe = function(a0) {
|
|
45760
|
-
|
|
45760
|
+
oe.current && oe.current.contains(a0.target) || (a0.preventDefault(), Ke.current = []);
|
|
45761
45761
|
};
|
|
45762
45762
|
useEffect(function() {
|
|
45763
45763
|
return D && (document.addEventListener("dragover", onDocumentDragOver, !1), document.addEventListener("drop", Xe, !1)), function() {
|
|
45764
45764
|
D && (document.removeEventListener("dragover", onDocumentDragOver), document.removeEventListener("drop", Xe));
|
|
45765
45765
|
};
|
|
45766
|
-
}, [
|
|
45767
|
-
return !l && L &&
|
|
45766
|
+
}, [oe, D]), useEffect(function() {
|
|
45767
|
+
return !l && L && oe.current && oe.current.focus(), function() {
|
|
45768
45768
|
};
|
|
45769
|
-
}, [
|
|
45769
|
+
}, [oe, L, l]);
|
|
45770
45770
|
var Qe = useCallback(function(_e) {
|
|
45771
45771
|
G ? G(_e) : console.error(_e);
|
|
45772
45772
|
}, [G]), Ze = useCallback(function(_e) {
|
|
@@ -45803,7 +45803,7 @@ function useDropzone() {
|
|
|
45803
45803
|
}, [m, H]), Ne = useCallback(function(_e) {
|
|
45804
45804
|
_e.preventDefault(), _e.persist(), s0(_e);
|
|
45805
45805
|
var a0 = Ke.current.filter(function(p0) {
|
|
45806
|
-
return
|
|
45806
|
+
return oe.current && oe.current.contains(p0);
|
|
45807
45807
|
}), d0 = a0.indexOf(_e.target);
|
|
45808
45808
|
d0 !== -1 && a0.splice(d0, 1), Ke.current = a0, !(a0.length > 0) && (we({
|
|
45809
45809
|
type: "setDraggedFiles",
|
|
@@ -45811,7 +45811,7 @@ function useDropzone() {
|
|
|
45811
45811
|
isDragAccept: !1,
|
|
45812
45812
|
isDragReject: !1
|
|
45813
45813
|
}), isEvtWithFiles(_e) && g && g(_e));
|
|
45814
|
-
}, [
|
|
45814
|
+
}, [oe, g, H]), je = useCallback(function(_e, a0) {
|
|
45815
45815
|
var d0 = [], p0 = [];
|
|
45816
45816
|
_e.forEach(function(u0) {
|
|
45817
45817
|
var g0 = fileAccepted(u0, B), W0 = _slicedToArray(g0, 2), v0 = W0[0], J0 = W0[1], K0 = fileMatchSize(u0, d, p), et = _slicedToArray(K0, 2), tt = et[0], O0 = et[1], T0 = Y ? Y(u0) : null;
|
|
@@ -45863,16 +45863,16 @@ function useDropzone() {
|
|
|
45863
45863
|
}).catch(function(a0) {
|
|
45864
45864
|
isAbort(a0) ? (Z(a0), we({
|
|
45865
45865
|
type: "closeDialog"
|
|
45866
|
-
})) : isSecurityError(a0) ? (t0.current = !1,
|
|
45866
|
+
})) : isSecurityError(a0) ? (t0.current = !1, re.current ? (re.current.value = null, re.current.click()) : Qe(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no <input> was provided."))) : Qe(a0);
|
|
45867
45867
|
});
|
|
45868
45868
|
return;
|
|
45869
45869
|
}
|
|
45870
|
-
|
|
45870
|
+
re.current && (we({
|
|
45871
45871
|
type: "openDialog"
|
|
45872
|
-
}), te(),
|
|
45872
|
+
}), te(), re.current.value = null, re.current.click());
|
|
45873
45873
|
}, [we, te, Z, x, je, Qe, j, u]), U = useCallback(function(_e) {
|
|
45874
|
-
!
|
|
45875
|
-
}, [
|
|
45874
|
+
!oe.current || !oe.current.isEqualNode(_e.target) || (_e.key === " " || _e.key === "Enter" || _e.keyCode === 32 || _e.keyCode === 13) && (_e.preventDefault(), Be());
|
|
45875
|
+
}, [oe, Be]), Oe = useCallback(function() {
|
|
45876
45876
|
we({
|
|
45877
45877
|
type: "focus"
|
|
45878
45878
|
});
|
|
@@ -45903,11 +45903,11 @@ function useDropzone() {
|
|
|
45903
45903
|
onDragLeave: i0(composeEventHandlers(et, Ne)),
|
|
45904
45904
|
onDrop: i0(composeEventHandlers(tt, n0)),
|
|
45905
45905
|
role: typeof p0 == "string" && p0 !== "" ? p0 : "presentation"
|
|
45906
|
-
}, d0,
|
|
45906
|
+
}, d0, oe), !l && !I ? {
|
|
45907
45907
|
tabIndex: 0
|
|
45908
45908
|
} : {}), O0);
|
|
45909
45909
|
};
|
|
45910
|
-
}, [
|
|
45910
|
+
}, [oe, U, Oe, qe, Ge, Ze, Ve, Ne, n0, I, k, l]), ze = useCallback(function(_e) {
|
|
45911
45911
|
_e.stopPropagation();
|
|
45912
45912
|
}, []), Je = useMemo(function() {
|
|
45913
45913
|
return function() {
|
|
@@ -45930,16 +45930,16 @@ function useDropzone() {
|
|
|
45930
45930
|
onChange: Fe(composeEventHandlers(p0, n0)),
|
|
45931
45931
|
onClick: Fe(composeEventHandlers(u0, ze)),
|
|
45932
45932
|
tabIndex: -1
|
|
45933
|
-
}, d0,
|
|
45933
|
+
}, d0, re);
|
|
45934
45934
|
return _objectSpread(_objectSpread({}, W0), g0);
|
|
45935
45935
|
};
|
|
45936
|
-
}, [
|
|
45936
|
+
}, [re, a, u, n0, l]);
|
|
45937
45937
|
return _objectSpread(_objectSpread({}, Re), {}, {
|
|
45938
45938
|
isFocused: ye && !l,
|
|
45939
45939
|
getRootProps: c0,
|
|
45940
45940
|
getInputProps: Je,
|
|
45941
|
-
rootRef:
|
|
45942
|
-
inputRef:
|
|
45941
|
+
rootRef: oe,
|
|
45942
|
+
inputRef: re,
|
|
45943
45943
|
open: Fe(Be)
|
|
45944
45944
|
});
|
|
45945
45945
|
}
|
|
@@ -46010,7 +46010,7 @@ const FileField = ({
|
|
|
46010
46010
|
uploadApi: k,
|
|
46011
46011
|
previewFiles: H = []
|
|
46012
46012
|
}
|
|
46013
|
-
} = t, G = useFormContext(), [Y, B] = useState([]), [j, te] = useState(!1), [Z,
|
|
46013
|
+
} = t, G = useFormContext(), [Y, B] = useState([]), [j, te] = useState(!1), [Z, oe] = useState(null), [re, be] = useState("");
|
|
46014
46014
|
useEffect(() => {
|
|
46015
46015
|
H && (Array.isArray(H) ? B(
|
|
46016
46016
|
H.map((Ne) => ({
|
|
@@ -46027,19 +46027,19 @@ const FileField = ({
|
|
|
46027
46027
|
for (const n0 of Ne) {
|
|
46028
46028
|
const Be = n0.name.split(".").pop() || "";
|
|
46029
46029
|
let U = !1, Oe = "";
|
|
46030
|
-
typeof b == "string" ? Oe = b.split(",").map((Ge) => Ge.trim()).join("|") : Oe = b.join("|"), U = Oe.length > 0 ?
|
|
46030
|
+
typeof b == "string" ? Oe = b.split(",").map((Ge) => Ge.trim()).join("|") : Oe = b.join("|"), U = Oe.length > 0 ? re === "*" || new RegExp("^(" + Oe + ")$", "i").test(
|
|
46031
46031
|
Be
|
|
46032
46032
|
) : !0;
|
|
46033
46033
|
const qe = n0.size >= h && n0.size <= g;
|
|
46034
|
-
if (!U) return
|
|
46035
|
-
if (!qe) return
|
|
46034
|
+
if (!U) return oe(w);
|
|
46035
|
+
if (!qe) return oe(v);
|
|
46036
46036
|
je.push(n0);
|
|
46037
46037
|
}
|
|
46038
|
-
return je.length + Y.length > y ?
|
|
46038
|
+
return je.length + Y.length > y ? oe(`You can only upload up to ${y} files.`) : (oe(null), je);
|
|
46039
46039
|
},
|
|
46040
46040
|
[
|
|
46041
46041
|
b,
|
|
46042
|
-
|
|
46042
|
+
re,
|
|
46043
46043
|
h,
|
|
46044
46044
|
g,
|
|
46045
46045
|
v,
|
|
@@ -46095,7 +46095,7 @@ const FileField = ({
|
|
|
46095
46095
|
} else
|
|
46096
46096
|
l == null || l(je);
|
|
46097
46097
|
} catch (je) {
|
|
46098
|
-
|
|
46098
|
+
oe(ve(S, je));
|
|
46099
46099
|
} finally {
|
|
46100
46100
|
te(!1);
|
|
46101
46101
|
}
|
|
@@ -46181,7 +46181,7 @@ const FileField = ({
|
|
|
46181
46181
|
type: "file",
|
|
46182
46182
|
disabled: x || Y.length >= y,
|
|
46183
46183
|
multiple: u,
|
|
46184
|
-
accept:
|
|
46184
|
+
accept: re,
|
|
46185
46185
|
onChange: we
|
|
46186
46186
|
}
|
|
46187
46187
|
)
|
|
@@ -46228,7 +46228,7 @@ const FileField = ({
|
|
|
46228
46228
|
textAlign: "center",
|
|
46229
46229
|
sx: { cursor: "pointer" },
|
|
46230
46230
|
children: [
|
|
46231
|
-
/* @__PURE__ */ jsx("input", { id: e, ...je(), accept:
|
|
46231
|
+
/* @__PURE__ */ jsx("input", { id: e, ...je(), accept: re }),
|
|
46232
46232
|
/* @__PURE__ */ jsx(CloudUploadIcon, { fontSize: "large" }),
|
|
46233
46233
|
!j && /* @__PURE__ */ jsx(Typography$1, { children: n0 ? N : D }),
|
|
46234
46234
|
j && /* @__PURE__ */ jsx(Typography$1, { children: C })
|
|
@@ -46303,7 +46303,7 @@ const FileField = ({
|
|
|
46303
46303
|
id: e,
|
|
46304
46304
|
hidden: !0,
|
|
46305
46305
|
type: "file",
|
|
46306
|
-
accept:
|
|
46306
|
+
accept: re,
|
|
46307
46307
|
onChange: we
|
|
46308
46308
|
}
|
|
46309
46309
|
)
|
|
@@ -48495,21 +48495,21 @@ function _applyColumnState(e, t, a) {
|
|
|
48495
48495
|
Y || !I.isPrimary() || (y == null || y.syncColumnWithState(I, a, B), c == null || c.syncColumnWithState(I, a, B, H), p == null || p.syncColumnWithState(I, a, B, G));
|
|
48496
48496
|
}, x = (I, k, H) => {
|
|
48497
48497
|
var ye, De;
|
|
48498
|
-
const G = _compareColumnStatesAndDispatchEvents(e, a), Y = k.slice(), B = {}, j = {}, te = [], Z = [],
|
|
48499
|
-
let
|
|
48498
|
+
const G = _compareColumnStatesAndDispatchEvents(e, a), Y = k.slice(), B = {}, j = {}, te = [], Z = [], oe = [];
|
|
48499
|
+
let re = 0;
|
|
48500
48500
|
const be = (c == null ? void 0 : c.columns.slice()) ?? [], ve = (p == null ? void 0 : p.columns.slice()) ?? [];
|
|
48501
48501
|
I.forEach((t0) => {
|
|
48502
48502
|
const Ye = t0.colId;
|
|
48503
48503
|
if (Ye.startsWith(GROUP_AUTO_COLUMN_ID)) {
|
|
48504
|
-
te.push(t0),
|
|
48504
|
+
te.push(t0), oe.push(t0);
|
|
48505
48505
|
return;
|
|
48506
48506
|
}
|
|
48507
48507
|
if (isColumnSelectionCol(Ye)) {
|
|
48508
|
-
Z.push(t0),
|
|
48508
|
+
Z.push(t0), oe.push(t0);
|
|
48509
48509
|
return;
|
|
48510
48510
|
}
|
|
48511
48511
|
const Xe = H(Ye);
|
|
48512
|
-
Xe ? (S(Xe, t0, B, j, !1), _removeFromArray(Y, Xe)) : (
|
|
48512
|
+
Xe ? (S(Xe, t0, B, j, !1), _removeFromArray(Y, Xe)) : (oe.push(t0), re += 1);
|
|
48513
48513
|
});
|
|
48514
48514
|
const Re = (t0) => S(t0, null, B, j, !1);
|
|
48515
48515
|
Y.forEach(Re), c == null || c.sortColumns(comparatorByIndex.bind(c, B, be)), p == null || p.sortColumns(comparatorByIndex.bind(p, j, ve)), l.refreshCols(!1);
|
|
@@ -48530,7 +48530,7 @@ function _applyColumnState(e, t, a) {
|
|
|
48530
48530
|
), orderLiveColsLikeState(t, l, v), h.refresh(a), C.dispatchEvent({
|
|
48531
48531
|
type: "columnEverythingChanged",
|
|
48532
48532
|
source: a
|
|
48533
|
-
}), G(), { unmatchedAndAutoStates:
|
|
48533
|
+
}), G(), { unmatchedAndAutoStates: oe, unmatchedCount: re };
|
|
48534
48534
|
};
|
|
48535
48535
|
b == null || b.start();
|
|
48536
48536
|
let { unmatchedAndAutoStates: L, unmatchedCount: D } = x(
|
|
@@ -48577,14 +48577,14 @@ function _compareColumnStatesAndDispatchEvents(e, t) {
|
|
|
48577
48577
|
if (_areEqual(B, j))
|
|
48578
48578
|
return;
|
|
48579
48579
|
const Z = new Set(H);
|
|
48580
|
-
G.forEach((
|
|
48581
|
-
Z.delete(
|
|
48580
|
+
G.forEach((re) => {
|
|
48581
|
+
Z.delete(re) || Z.add(re);
|
|
48582
48582
|
});
|
|
48583
|
-
const
|
|
48583
|
+
const oe = [...Z];
|
|
48584
48584
|
u.dispatchEvent({
|
|
48585
48585
|
type: k,
|
|
48586
|
-
columns:
|
|
48587
|
-
column:
|
|
48586
|
+
columns: oe,
|
|
48587
|
+
column: oe.length === 1 ? oe[0] : null,
|
|
48588
48588
|
source: t
|
|
48589
48589
|
});
|
|
48590
48590
|
}, y = (k) => {
|
|
@@ -52684,9 +52684,9 @@ var LayoutCssClasses = {
|
|
|
52684
52684
|
let g, m, y = 0;
|
|
52685
52685
|
this.invalidateVerticalScroll();
|
|
52686
52686
|
do {
|
|
52687
|
-
const { stickyTopHeight: v, stickyBottomHeight: w } = b, S = h.rowTop, x = h.rowHeight, L = p.getPixelOffset(), D = h.rowTop - L, N = D + h.rowHeight, I = this.getVScrollPosition(), k = d.divStretchOffset, H = I.top + k, G = I.bottom + k, Y = G - H, B = d.getScrollPositionForPixel(D), j = d.getScrollPositionForPixel(N - Y), te = Math.min((B + j) / 2, D), Z = H + v > D,
|
|
52688
|
-
let
|
|
52689
|
-
t === "top" ?
|
|
52687
|
+
const { stickyTopHeight: v, stickyBottomHeight: w } = b, S = h.rowTop, x = h.rowHeight, L = p.getPixelOffset(), D = h.rowTop - L, N = D + h.rowHeight, I = this.getVScrollPosition(), k = d.divStretchOffset, H = I.top + k, G = I.bottom + k, Y = G - H, B = d.getScrollPositionForPixel(D), j = d.getScrollPositionForPixel(N - Y), te = Math.min((B + j) / 2, D), Z = H + v > D, oe = G - w < N;
|
|
52688
|
+
let re = null;
|
|
52689
|
+
t === "top" ? re = B - v : t === "bottom" ? re = j + w : t === "middle" ? re = te : Z ? re = B - v : oe && (re = j + w), re !== null && (this.setVerticalScrollPosition(re), u.redraw({ afterScroll: !0 })), g = S !== h.rowTop || x !== h.rowHeight, m = v !== b.stickyTopHeight || w !== b.stickyBottomHeight, y++;
|
|
52690
52690
|
} while ((g || m) && y < 10);
|
|
52691
52691
|
(C = this.animationFrameSvc) == null || C.flushAllFrames();
|
|
52692
52692
|
});
|
|
@@ -74621,10 +74621,10 @@ var SortStage = class extends BeanStub {
|
|
|
74621
74621
|
const Y = (H = h == null ? void 0 : h.columns) == null ? void 0 : H[D.level + 1], B = (Y == null ? void 0 : Y.getSort()) === null, j = D.childrenAfterAggFilter.slice(0);
|
|
74622
74622
|
if (D.childrenAfterSort && !B) {
|
|
74623
74623
|
const te = {};
|
|
74624
|
-
D.childrenAfterSort.forEach((Z,
|
|
74625
|
-
te[Z.id] =
|
|
74624
|
+
D.childrenAfterSort.forEach((Z, oe) => {
|
|
74625
|
+
te[Z.id] = oe;
|
|
74626
74626
|
}), j.sort(
|
|
74627
|
-
(Z,
|
|
74627
|
+
(Z, oe) => (te[Z.id] ?? 0) - (te[oe.id] ?? 0)
|
|
74628
74628
|
);
|
|
74629
74629
|
}
|
|
74630
74630
|
k = j;
|
|
@@ -78822,7 +78822,7 @@ var GroupCellRenderer = forwardRef((e, t) => {
|
|
|
78822
78822
|
}, []), Y = useMemo(() => `ag-cell-wrapper ${S.toString()}`, [S]), B = useMemo(() => `ag-group-expanded ${L.toString()}`, [L]), j = useMemo(
|
|
78823
78823
|
() => `ag-group-contracted ${N.toString()}`,
|
|
78824
78824
|
[N]
|
|
78825
|
-
), te = useMemo(() => `ag-group-checkbox ${k.toString()}`, [k]), Z = g && g.componentFromFramework,
|
|
78825
|
+
), te = useMemo(() => `ag-group-checkbox ${k.toString()}`, [k]), Z = g && g.componentFromFramework, oe = Z ? g.componentClass : void 0, re = g == null && v != null, be = _escapeString(v, !0);
|
|
78826
78826
|
return /* @__PURE__ */ React__default.createElement(
|
|
78827
78827
|
"span",
|
|
78828
78828
|
{
|
|
@@ -78833,7 +78833,7 @@ var GroupCellRenderer = forwardRef((e, t) => {
|
|
|
78833
78833
|
/* @__PURE__ */ React__default.createElement("span", { className: B, ref: u }),
|
|
78834
78834
|
/* @__PURE__ */ React__default.createElement("span", { className: j, ref: b }),
|
|
78835
78835
|
/* @__PURE__ */ React__default.createElement("span", { className: te, ref: d }),
|
|
78836
|
-
/* @__PURE__ */ React__default.createElement("span", { className: "ag-group-value", ref: p },
|
|
78836
|
+
/* @__PURE__ */ React__default.createElement("span", { className: "ag-group-value", ref: p }, re && /* @__PURE__ */ React__default.createElement(React__default.Fragment, null, be), Z && /* @__PURE__ */ React__default.createElement(oe, { ...g.params })),
|
|
78837
78837
|
/* @__PURE__ */ React__default.createElement("span", { className: "ag-group-child-count" }, y)
|
|
78838
78838
|
);
|
|
78839
78839
|
}), groupCellRenderer_default = GroupCellRenderer, CustomContext = createContext({
|
|
@@ -79321,7 +79321,7 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79321
79321
|
() => showJsComp(C, t, L.current, H),
|
|
79322
79322
|
[C]
|
|
79323
79323
|
);
|
|
79324
|
-
const Y = useMemo(() => p.toString(), [p]), B = useMemo(() => u.toString(), [u]), j = useMemo(() => h.toString(), [h]), te = useMemo(() => !!(C && C.componentFromFramework && isComponentStateless(C.componentClass)), [C]), Z = useMemo(() => a.get("reactiveCustomComponents"), []),
|
|
79324
|
+
const Y = useMemo(() => p.toString(), [p]), B = useMemo(() => u.toString(), [u]), j = useMemo(() => h.toString(), [h]), te = useMemo(() => !!(C && C.componentFromFramework && isComponentStateless(C.componentClass)), [C]), Z = useMemo(() => a.get("reactiveCustomComponents"), []), oe = useMemo(() => {
|
|
79325
79325
|
if (C)
|
|
79326
79326
|
if (Z) {
|
|
79327
79327
|
const Re = new FloatingFilterComponentProxy(
|
|
@@ -79330,16 +79330,16 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79330
79330
|
);
|
|
79331
79331
|
return H(Re), Re;
|
|
79332
79332
|
} else C.componentFromFramework && warnReactiveCustomComponents();
|
|
79333
|
-
}, [C]),
|
|
79333
|
+
}, [C]), re = oe == null ? void 0 : oe.getProps(), be = C && C.componentFromFramework, ve = C && C.componentClass;
|
|
79334
79334
|
return /* @__PURE__ */ React__default.createElement("div", { ref: G, style: l, className: Y, role: "gridcell" }, /* @__PURE__ */ React__default.createElement("div", { ref: L, className: B, role: "presentation" }, be && !Z && /* @__PURE__ */ React__default.createElement(ve, { ...C.params, ref: te ? () => {
|
|
79335
79335
|
} : H }), be && Z && /* @__PURE__ */ React__default.createElement(
|
|
79336
79336
|
CustomContext.Provider,
|
|
79337
79337
|
{
|
|
79338
79338
|
value: {
|
|
79339
|
-
setMethods: (Re) =>
|
|
79339
|
+
setMethods: (Re) => oe.setMethods(Re)
|
|
79340
79340
|
}
|
|
79341
79341
|
},
|
|
79342
|
-
/* @__PURE__ */ React__default.createElement(ve, { ...
|
|
79342
|
+
/* @__PURE__ */ React__default.createElement(ve, { ...re })
|
|
79343
79343
|
)), /* @__PURE__ */ React__default.createElement(
|
|
79344
79344
|
"div",
|
|
79345
79345
|
{
|
|
@@ -79366,7 +79366,7 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79366
79366
|
setWidth: (te) => {
|
|
79367
79367
|
S.current && (S.current.style.width = te);
|
|
79368
79368
|
},
|
|
79369
|
-
addOrRemoveCssClass: (te, Z) => p((
|
|
79369
|
+
addOrRemoveCssClass: (te, Z) => p((oe) => oe.setClass(te, Z)),
|
|
79370
79370
|
setUserStyles: (te) => l(te),
|
|
79371
79371
|
setHeaderWrapperHidden: (te) => {
|
|
79372
79372
|
const Z = L.current;
|
|
@@ -79660,11 +79660,11 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79660
79660
|
}) => {
|
|
79661
79661
|
const l = useContext(BeansContext), { context: c } = l, { colIdSanitised: p, instanceId: d } = e, u = useRef(), [b, h] = useState(
|
|
79662
79662
|
() => e.isCellRenderer() ? void 0 : { compDetails: void 0, value: e.getValueToDisplay(), force: !1 }
|
|
79663
|
-
), [g, m] = useState(), [y, C] = useState(1), [v, w] = useState(), [S, x] = useState(!1), [L, D] = useState(!1), [N, I] = useState(!1), [k, H] = useState(), G = useMemo(() => e.isForceWrapper(), [e]), Y = useMemo(() => e.getCellAriaRole(), [e]), B = useRef(null), j = useRef(null), te = useRef(null), Z = useRef(),
|
|
79663
|
+
), [g, m] = useState(), [y, C] = useState(1), [v, w] = useState(), [S, x] = useState(!1), [L, D] = useState(!1), [N, I] = useState(!1), [k, H] = useState(), G = useMemo(() => e.isForceWrapper(), [e]), Y = useMemo(() => e.getCellAriaRole(), [e]), B = useRef(null), j = useRef(null), te = useRef(null), Z = useRef(), oe = useRef(), re = useRef(), be = useRef([]), ve = useRef(), [Re, we] = useState(0), ye = useCallback((U) => {
|
|
79664
79664
|
ve.current = U, we((Oe) => Oe + 1);
|
|
79665
79665
|
}, []), De = b != null && (S || N || L), t0 = G || De, Ye = useCallback(
|
|
79666
79666
|
(U) => {
|
|
79667
|
-
if (
|
|
79667
|
+
if (oe.current = U, U) {
|
|
79668
79668
|
const Oe = U.isCancelBeforeStart && U.isCancelBeforeStart();
|
|
79669
79669
|
setTimeout(() => {
|
|
79670
79670
|
Oe ? (e.stopEditing(!0), e.focusCell(!0)) : e.cellEditorAttached();
|
|
@@ -79693,7 +79693,7 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79693
79693
|
return;
|
|
79694
79694
|
const e0 = Fe.getGui();
|
|
79695
79695
|
if (Ye(Fe), !qe) {
|
|
79696
|
-
const i0 = (G ?
|
|
79696
|
+
const i0 = (G ? re : B).current;
|
|
79697
79697
|
i0 == null || i0.appendChild(e0), Fe.afterGuiAttached && Fe.afterGuiAttached();
|
|
79698
79698
|
}
|
|
79699
79699
|
H(Fe);
|
|
@@ -79707,7 +79707,7 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79707
79707
|
}, [g]);
|
|
79708
79708
|
const Qe = useCallback(
|
|
79709
79709
|
(U) => {
|
|
79710
|
-
if (
|
|
79710
|
+
if (re.current = U, !U) {
|
|
79711
79711
|
be.current.forEach((qe) => qe()), be.current = [];
|
|
79712
79712
|
return;
|
|
79713
79713
|
}
|
|
@@ -79738,9 +79738,9 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79738
79738
|
setIncludeSelection: (Fe) => x(Fe),
|
|
79739
79739
|
setIncludeRowDrag: (Fe) => D(Fe),
|
|
79740
79740
|
setIncludeDndSource: (Fe) => I(Fe),
|
|
79741
|
-
getCellEditor: () =>
|
|
79741
|
+
getCellEditor: () => oe.current || null,
|
|
79742
79742
|
getCellRenderer: () => te.current ?? Z.current,
|
|
79743
|
-
getParentOfValue: () => ve.current ??
|
|
79743
|
+
getParentOfValue: () => ve.current ?? re.current ?? B.current,
|
|
79744
79744
|
setRenderDetails: (Fe, e0, i0) => {
|
|
79745
79745
|
h((s0) => (s0 == null ? void 0 : s0.compDetails) !== Fe || (s0 == null ? void 0 : s0.value) !== e0 || (s0 == null ? void 0 : s0.force) !== i0 ? {
|
|
79746
79746
|
value: e0,
|
|
@@ -79762,10 +79762,10 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79762
79762
|
}), e0 || h(void 0);
|
|
79763
79763
|
} else
|
|
79764
79764
|
e.hasBrowserFocus() && qe.getFocusableElement().focus({ preventScroll: !0 }), m((ze) => {
|
|
79765
|
-
ze != null && ze.compProxy && (
|
|
79765
|
+
ze != null && ze.compProxy && (oe.current = void 0);
|
|
79766
79766
|
});
|
|
79767
79767
|
}
|
|
79768
|
-
}, Ge =
|
|
79768
|
+
}, Ge = re.current || void 0;
|
|
79769
79769
|
e.setComp(
|
|
79770
79770
|
qe,
|
|
79771
79771
|
Oe,
|
|
@@ -79803,16 +79803,16 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79803
79803
|
() => u ? e.getInitialRowTop(t) : void 0
|
|
79804
79804
|
), [G, Y] = useState(
|
|
79805
79805
|
() => u ? e.getInitialTransform(t) : void 0
|
|
79806
|
-
), B = useRef(null), j = useRef(), te = useRef(!1), [Z,
|
|
79806
|
+
), B = useRef(null), j = useRef(), te = useRef(!1), [Z, oe] = useState(0);
|
|
79807
79807
|
useEffect(() => {
|
|
79808
79808
|
var Xe;
|
|
79809
79809
|
if (te.current || !N || Z > 10)
|
|
79810
79810
|
return;
|
|
79811
79811
|
const Ke = (Xe = B.current) == null ? void 0 : Xe.firstChild;
|
|
79812
|
-
Ke ? (e.setupDetailRowAutoHeight(Ke), te.current = !0) :
|
|
79812
|
+
Ke ? (e.setupDetailRowAutoHeight(Ke), te.current = !0) : oe((Qe) => Qe + 1);
|
|
79813
79813
|
}, [N, Z]);
|
|
79814
|
-
const
|
|
79815
|
-
|
|
79814
|
+
const re = useRef();
|
|
79815
|
+
re.current || (re.current = new CssClassManager(() => B.current));
|
|
79816
79816
|
const be = useCallback((Ke) => {
|
|
79817
79817
|
if (B.current = Ke, c.current = Ke ? a.createBean(new EmptyBean()) : a.destroyBean(c.current), !Ke) {
|
|
79818
79818
|
e.unsetComp(t);
|
|
@@ -79827,7 +79827,7 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79827
79827
|
setTransform: Y,
|
|
79828
79828
|
// i found using React for managing classes at the row level was to slow, as modifying classes caused a lot of
|
|
79829
79829
|
// React code to execute, so avoiding React for managing CSS Classes made the grid go much faster.
|
|
79830
|
-
addOrRemoveCssClass: (Qe, Ze) =>
|
|
79830
|
+
addOrRemoveCssClass: (Qe, Ze) => re.current.addOrRemoveCssClass(Qe, Ze),
|
|
79831
79831
|
setDomOrder: (Qe) => p.current = Qe,
|
|
79832
79832
|
setRowIndex: h,
|
|
79833
79833
|
setRowId: m,
|
|
@@ -79889,11 +79889,11 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79889
79889
|
const { context: t, gos: a } = useContext(BeansContext), l = useMemo(() => _getRowContainerOptions(e), [e]), c = useRef(null), p = useRef(null), d = useRef(null), u = useRef([]), b = useRef([]), [h, g] = useState(() => []), m = !!a.get("enableCellSpan") && !!l.getSpannedRowCtrls, y = useRef([]), C = useRef([]), [v, w] = useState(() => []), S = useRef(!1), x = useRef(), L = useMemo(() => classesList("ag-viewport", _getRowViewportClass(e)), [e]), D = useMemo(() => classesList(_getRowContainerClass(e)), [e]), N = useMemo(() => classesList("ag-spanning-container", _getRowSpanContainerClass(e)), [e]), I = l.type === "center" || m, k = I ? c : p;
|
|
79890
79890
|
reactComment_default(" AG Row Container " + e + " ", k);
|
|
79891
79891
|
const H = useCallback(() => {
|
|
79892
|
-
const
|
|
79893
|
-
return
|
|
79892
|
+
const re = !I || c.current != null, be = p.current != null, ve = !m || d.current != null;
|
|
79893
|
+
return re && be && ve;
|
|
79894
79894
|
}, []), G = useCallback(() => c.current == null && p.current == null && d.current == null, []), Y = useCallback(() => {
|
|
79895
79895
|
if (G() && (x.current = t.destroyBean(x.current)), H()) {
|
|
79896
|
-
const
|
|
79896
|
+
const re = (Re) => {
|
|
79897
79897
|
const we = getNextValueIfDifferent(
|
|
79898
79898
|
b.current,
|
|
79899
79899
|
u.current,
|
|
@@ -79916,14 +79916,14 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79916
79916
|
},
|
|
79917
79917
|
setRowCtrls: ({ rowCtrls: Re, useFlushSync: we }) => {
|
|
79918
79918
|
const ye = !!we && u.current.length > 0 && Re.length > 0;
|
|
79919
|
-
u.current = Re,
|
|
79919
|
+
u.current = Re, re(ye);
|
|
79920
79920
|
},
|
|
79921
79921
|
setSpannedRowCtrls: (Re, we) => {
|
|
79922
79922
|
const ye = !!we && y.current.length > 0 && Re.length > 0;
|
|
79923
79923
|
y.current = Re, be(ye);
|
|
79924
79924
|
},
|
|
79925
79925
|
setDomOrder: (Re) => {
|
|
79926
|
-
S.current != Re && (S.current = Re,
|
|
79926
|
+
S.current != Re && (S.current = Re, re(!1));
|
|
79927
79927
|
},
|
|
79928
79928
|
setContainerWidth: (Re) => {
|
|
79929
79929
|
p.current && (p.current.style.width = Re);
|
|
@@ -79940,27 +79940,27 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
79940
79940
|
);
|
|
79941
79941
|
}
|
|
79942
79942
|
}, [H, G]), B = useCallback(
|
|
79943
|
-
(
|
|
79944
|
-
p.current =
|
|
79943
|
+
(re) => {
|
|
79944
|
+
p.current = re, Y();
|
|
79945
79945
|
},
|
|
79946
79946
|
[Y]
|
|
79947
79947
|
), j = useCallback(
|
|
79948
|
-
(
|
|
79949
|
-
d.current =
|
|
79948
|
+
(re) => {
|
|
79949
|
+
d.current = re, Y();
|
|
79950
79950
|
},
|
|
79951
79951
|
[Y]
|
|
79952
79952
|
), te = useCallback(
|
|
79953
|
-
(
|
|
79954
|
-
c.current =
|
|
79953
|
+
(re) => {
|
|
79954
|
+
c.current = re, Y();
|
|
79955
79955
|
},
|
|
79956
79956
|
[Y]
|
|
79957
|
-
), Z = () => /* @__PURE__ */ React__default.createElement("div", { className: D, ref: B, role: "rowgroup" }, h.map((
|
|
79957
|
+
), Z = () => /* @__PURE__ */ React__default.createElement("div", { className: D, ref: B, role: "rowgroup" }, h.map((re) => /* @__PURE__ */ React__default.createElement(rowComp_default, { rowCtrl: re, containerType: l.type, key: re.instanceId })));
|
|
79958
79958
|
if (!I)
|
|
79959
79959
|
return Z();
|
|
79960
|
-
const
|
|
79961
|
-
return /* @__PURE__ */ React__default.createElement("div", { className: L, ref: te, role: "presentation" }, Z(),
|
|
79960
|
+
const oe = () => m && /* @__PURE__ */ React__default.createElement("div", { className: N, ref: j, role: "rowgroup" }, v.map((re) => /* @__PURE__ */ React__default.createElement(rowComp_default, { rowCtrl: re, containerType: l.type, key: re.instanceId })));
|
|
79961
|
+
return /* @__PURE__ */ React__default.createElement("div", { className: L, ref: te, role: "presentation" }, Z(), oe());
|
|
79962
79962
|
}, rowContainerComp_default = memo(RowContainerComp), GridBodyComp = () => {
|
|
79963
|
-
const e = useContext(BeansContext), { context: t, overlays: a } = e, [l, c] = useState(""), [p, d] = useState(0), [u, b] = useState(0), [h, g] = useState("0px"), [m, y] = useState("0px"), [C, v] = useState("100%"), [w, S] = useState("0px"), [x, L] = useState("0px"), [D, N] = useState("100%"), [I, k] = useState(!0), [H, G] = useState(!0), [Y, B] = useState(null), [j, te] = useState(""), [Z,
|
|
79963
|
+
const e = useContext(BeansContext), { context: t, overlays: a } = e, [l, c] = useState(""), [p, d] = useState(0), [u, b] = useState(0), [h, g] = useState("0px"), [m, y] = useState("0px"), [C, v] = useState("100%"), [w, S] = useState("0px"), [x, L] = useState("0px"), [D, N] = useState("100%"), [I, k] = useState(!0), [H, G] = useState(!0), [Y, B] = useState(null), [j, te] = useState(""), [Z, oe] = useState(null), [re, be] = useState("ag-layout-normal"), ve = useRef();
|
|
79964
79964
|
ve.current || (ve.current = new CssClassManager(() => Re.current));
|
|
79965
79965
|
const Re = useRef(null), we = useRef(null), ye = useRef(null), De = useRef(null), t0 = useRef(null), Ye = useRef(null), Ke = useRef(null), Xe = useRef([]), Qe = useRef([]);
|
|
79966
79966
|
reactComment_default(" AG Grid Body ", Re), reactComment_default(" AG Pinned Top ", we), reactComment_default(" AG Sticky Top ", ye), reactComment_default(" AG Middle ", Ye), reactComment_default(" AG Pinned Bottom ", Ke);
|
|
@@ -80001,7 +80001,7 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
80001
80001
|
updateLayoutClasses: be,
|
|
80002
80002
|
setAlwaysVerticalScrollClass: B,
|
|
80003
80003
|
setPinnedTopBottomOverflowY: te,
|
|
80004
|
-
setCellSelectableCss: (u0, g0) =>
|
|
80004
|
+
setCellSelectableCss: (u0, g0) => oe(g0 ? u0 : null),
|
|
80005
80005
|
setBodyViewportWidth: (u0) => {
|
|
80006
80006
|
Ye.current && (Ye.current.style.width = u0);
|
|
80007
80007
|
},
|
|
@@ -80025,16 +80025,16 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
80025
80025
|
ye.current,
|
|
80026
80026
|
De.current
|
|
80027
80027
|
);
|
|
80028
|
-
}, []), Ve = useMemo(() => classesList("ag-root", "ag-unselectable",
|
|
80028
|
+
}, []), Ve = useMemo(() => classesList("ag-root", "ag-unselectable", re), [re]), Ne = useMemo(
|
|
80029
80029
|
() => classesList(
|
|
80030
80030
|
"ag-body-viewport",
|
|
80031
80031
|
l,
|
|
80032
|
-
|
|
80032
|
+
re,
|
|
80033
80033
|
Y,
|
|
80034
80034
|
Z
|
|
80035
80035
|
),
|
|
80036
|
-
[l,
|
|
80037
|
-
), je = useMemo(() => classesList("ag-body",
|
|
80036
|
+
[l, re, Y, Z]
|
|
80037
|
+
), je = useMemo(() => classesList("ag-body", re), [re]), n0 = useMemo(
|
|
80038
80038
|
() => classesList("ag-floating-top", I ? "ag-invisible" : null, Z),
|
|
80039
80039
|
[Z, I]
|
|
80040
80040
|
), Be = useMemo(() => classesList("ag-sticky-top", Z), [Z]), U = useMemo(
|
|
@@ -80169,9 +80169,9 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
80169
80169
|
const H = useCallback((Z) => {
|
|
80170
80170
|
if (v.current = Z, C.current = Z ? e.createBean(new GridCtrl()) : e.destroyBean(C.current), !Z || e.isDestroyed())
|
|
80171
80171
|
return;
|
|
80172
|
-
const
|
|
80173
|
-
L.current =
|
|
80174
|
-
const
|
|
80172
|
+
const oe = C.current;
|
|
80173
|
+
L.current = oe.focusInnerElement.bind(oe);
|
|
80174
|
+
const re = {
|
|
80175
80175
|
destroyGridUi: () => {
|
|
80176
80176
|
},
|
|
80177
80177
|
// do nothing, as framework users destroy grid by removing the comp
|
|
@@ -80195,13 +80195,13 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
80195
80195
|
setCursor: d,
|
|
80196
80196
|
setUserSelect: b
|
|
80197
80197
|
};
|
|
80198
|
-
|
|
80198
|
+
oe.setComp(re, Z, Z), g(!0);
|
|
80199
80199
|
}, []);
|
|
80200
80200
|
useEffect(() => {
|
|
80201
|
-
const Z = C.current,
|
|
80202
|
-
if (!m || !k || !Z || !S || !
|
|
80201
|
+
const Z = C.current, oe = v.current;
|
|
80202
|
+
if (!m || !k || !Z || !S || !oe)
|
|
80203
80203
|
return;
|
|
80204
|
-
const
|
|
80204
|
+
const re = [], {
|
|
80205
80205
|
watermarkSelector: be,
|
|
80206
80206
|
paginationSelector: ve,
|
|
80207
80207
|
sideBarSelector: Re,
|
|
@@ -80210,22 +80210,22 @@ var MAX_COMPONENT_CREATION_TIME_IN_MS = 1e3, PortalManager = class {
|
|
|
80210
80210
|
} = Z.getOptionalSelectors(), De = [];
|
|
80211
80211
|
if (ye) {
|
|
80212
80212
|
const Ye = e.createBean(new ye.component()), Ke = Ye.getGui();
|
|
80213
|
-
|
|
80213
|
+
oe.insertAdjacentElement("afterbegin", Ke), De.push(Ke), re.push(Ye);
|
|
80214
80214
|
}
|
|
80215
80215
|
if (Re) {
|
|
80216
80216
|
const Ye = e.createBean(new Re.component()), Ke = Ye.getGui(), Xe = S.querySelector(".ag-tab-guard-bottom");
|
|
80217
|
-
Xe && (Xe.insertAdjacentElement("beforebegin", Ke), De.push(Ke)),
|
|
80217
|
+
Xe && (Xe.insertAdjacentElement("beforebegin", Ke), De.push(Ke)), re.push(Ye), N.current.push(Ye);
|
|
80218
80218
|
}
|
|
80219
80219
|
const t0 = (Ye) => {
|
|
80220
80220
|
const Ke = e.createBean(new Ye()), Xe = Ke.getGui();
|
|
80221
|
-
return
|
|
80221
|
+
return oe.insertAdjacentElement("beforeend", Xe), De.push(Xe), re.push(Ke), Ke;
|
|
80222
80222
|
};
|
|
80223
80223
|
if (we && t0(we.component), ve) {
|
|
80224
80224
|
const Ye = t0(ve.component);
|
|
80225
80225
|
D.current = Ye, N.current.push(Ye);
|
|
80226
80226
|
}
|
|
80227
80227
|
return be && t0(be.component), () => {
|
|
80228
|
-
e.destroyBeans(
|
|
80228
|
+
e.destroyBeans(re), De.forEach((Ye) => {
|
|
80229
80229
|
var Ke;
|
|
80230
80230
|
(Ke = Ye.parentElement) == null || Ke.removeChild(Ye);
|
|
80231
80231
|
});
|
|
@@ -80813,7 +80813,7 @@ const ConfirmationDialog = ({
|
|
|
80813
80813
|
error: p
|
|
80814
80814
|
}) => {
|
|
80815
80815
|
var Ze;
|
|
80816
|
-
const { enableRtl: d } = useLocalDynamicFormProvider(), { meta: u } = t, b = typeof u.inline == "boolean" ? u.inline : !0, h = useFormContext(), g = useRef(null), [m, y] = useState(!1), [C, v] = useState(!1), [w, S] = useState(null), [x, L] = useState(!1), D = u.addEditModalTitle || `Add ${u.label}`, N = u.removeDialogTitle || `${t.meta.removeBtn || "Remove"} ${u.label}`, I = u.removeDialogDescription || `Are you sure you want to remove this ${u.label}?`, k = t.meta.saveBtn || "Save", H = t.meta.cancelBtn || "Cancel", G = t.meta.addBtn || `Add ${u.label}`, Y = t.meta.editBtn || "Edit", B = t.meta.removeBtn || "Remove", j = u.minEntries ?? void 0, te = u.maxEntries ?? void 0, Z = te ? l.length < te : u.canAdd ?? !0,
|
|
80816
|
+
const { enableRtl: d } = useLocalDynamicFormProvider(), { meta: u } = t, b = typeof u.inline == "boolean" ? u.inline : !0, h = useFormContext(), g = useRef(null), [m, y] = useState(!1), [C, v] = useState(!1), [w, S] = useState(null), [x, L] = useState(!1), D = u.addEditModalTitle || `Add ${u.label}`, N = u.removeDialogTitle || `${t.meta.removeBtn || "Remove"} ${u.label}`, I = u.removeDialogDescription || `Are you sure you want to remove this ${u.label}?`, k = t.meta.saveBtn || "Save", H = t.meta.cancelBtn || "Cancel", G = t.meta.addBtn || `Add ${u.label}`, Y = t.meta.editBtn || "Edit", B = t.meta.removeBtn || "Remove", j = u.minEntries ?? void 0, te = u.maxEntries ?? void 0, Z = te ? l.length < te : u.canAdd ?? !0, oe = u.canEdit ?? !0, re = j ? l.length > j : u.canRemove ?? !0, be = () => {
|
|
80817
80817
|
Ye();
|
|
80818
80818
|
}, ve = (Ve) => {
|
|
80819
80819
|
S(Ve), Ye();
|
|
@@ -80962,8 +80962,8 @@ const ConfirmationDialog = ({
|
|
|
80962
80962
|
editBtn: Y,
|
|
80963
80963
|
removeBtn: B,
|
|
80964
80964
|
canAdd: Z,
|
|
80965
|
-
canEdit:
|
|
80966
|
-
canRemove:
|
|
80965
|
+
canEdit: oe,
|
|
80966
|
+
canRemove: re,
|
|
80967
80967
|
unEditableIndexes: u.unEditableIndexes,
|
|
80968
80968
|
unRemovableIndexes: u.unRemovableIndexes,
|
|
80969
80969
|
emptyMessage: t.meta.emptyMessage,
|
|
@@ -80999,7 +80999,7 @@ const ConfirmationDialog = ({
|
|
|
80999
80999
|
value: l,
|
|
81000
81000
|
error: c
|
|
81001
81001
|
}) => {
|
|
81002
|
-
var
|
|
81002
|
+
var re;
|
|
81003
81003
|
const { enableRtl: p } = useLocalDynamicFormProvider(), { meta: d } = t, u = useFormContext(), { control: b } = u, h = useFieldArray({
|
|
81004
81004
|
control: b,
|
|
81005
81005
|
name: a,
|
|
@@ -81016,7 +81016,7 @@ const ConfirmationDialog = ({
|
|
|
81016
81016
|
try {
|
|
81017
81017
|
w(!0);
|
|
81018
81018
|
const ve = l[be];
|
|
81019
|
-
d.onBeforeRemove && typeof d.onBeforeRemove == "function" && await d.onBeforeRemove(ve, u), h.remove(be), C(null),
|
|
81019
|
+
d.onBeforeRemove && typeof d.onBeforeRemove == "function" && await d.onBeforeRemove(ve, u), h.remove(be), C(null), oe();
|
|
81020
81020
|
} catch {
|
|
81021
81021
|
} finally {
|
|
81022
81022
|
w(!1);
|
|
@@ -81032,7 +81032,7 @@ const ConfirmationDialog = ({
|
|
|
81032
81032
|
[l]
|
|
81033
81033
|
), Z = (be) => {
|
|
81034
81034
|
m(!0), C(be);
|
|
81035
|
-
},
|
|
81035
|
+
}, oe = () => {
|
|
81036
81036
|
m(!1), C(null);
|
|
81037
81037
|
};
|
|
81038
81038
|
return useEffect(() => {
|
|
@@ -81115,13 +81115,13 @@ const ConfirmationDialog = ({
|
|
|
81115
81115
|
{
|
|
81116
81116
|
title: S,
|
|
81117
81117
|
description: x,
|
|
81118
|
-
onClose:
|
|
81118
|
+
onClose: oe,
|
|
81119
81119
|
open: g,
|
|
81120
81120
|
cancelBtnText: N,
|
|
81121
81121
|
confirmBtnText: D,
|
|
81122
81122
|
loading: v,
|
|
81123
81123
|
onConfirm: () => j(y),
|
|
81124
|
-
onCancel:
|
|
81124
|
+
onCancel: oe
|
|
81125
81125
|
}
|
|
81126
81126
|
)
|
|
81127
81127
|
] }, be._id);
|
|
@@ -81138,7 +81138,7 @@ const ConfirmationDialog = ({
|
|
|
81138
81138
|
},
|
|
81139
81139
|
"add-new-entry"
|
|
81140
81140
|
) }),
|
|
81141
|
-
((
|
|
81141
|
+
((re = d.helperText) == null ? void 0 : re.content) && /* @__PURE__ */ jsx(Box, { mt: 0.25, children: /* @__PURE__ */ jsx(HelperText, { ...d.helperText }) })
|
|
81142
81142
|
] }) });
|
|
81143
81143
|
}, CloseIcon = createSvgIcon(/* @__PURE__ */ jsx("path", {
|
|
81144
81144
|
d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
|
@@ -81156,7 +81156,7 @@ var lodash = lodash$1.exports, hasRequiredLodash;
|
|
|
81156
81156
|
function requireLodash() {
|
|
81157
81157
|
return hasRequiredLodash || (hasRequiredLodash = 1, function(e, t) {
|
|
81158
81158
|
(function() {
|
|
81159
|
-
var a, l = "4.17.21", c = 200, p = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", d = "Expected a function", u = "Invalid `variable` option passed into `_.template`", b = "__lodash_hash_undefined__", h = 500, g = "__lodash_placeholder__", m = 1, y = 2, C = 4, v = 1, w = 2, S = 1, x = 2, L = 4, D = 8, N = 16, I = 32, k = 64, H = 128, G = 256, Y = 512, B = 30, j = "...", te = 800, Z = 16,
|
|
81159
|
+
var a, l = "4.17.21", c = 200, p = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", d = "Expected a function", u = "Invalid `variable` option passed into `_.template`", b = "__lodash_hash_undefined__", h = 500, g = "__lodash_placeholder__", m = 1, y = 2, C = 4, v = 1, w = 2, S = 1, x = 2, L = 4, D = 8, N = 16, I = 32, k = 64, H = 128, G = 256, Y = 512, B = 30, j = "...", te = 800, Z = 16, oe = 1, re = 2, be = 3, ve = 1 / 0, Re = 9007199254740991, we = 17976931348623157e292, ye = NaN, De = 4294967295, t0 = De - 1, Ye = De >>> 1, Ke = [
|
|
81160
81160
|
["ary", H],
|
|
81161
81161
|
["bind", S],
|
|
81162
81162
|
["bindKey", x],
|
|
@@ -81809,10 +81809,10 @@ function requireLodash() {
|
|
|
81809
81809
|
M0 += A;
|
|
81810
81810
|
for (var L0 = -1, w0 = f[M0]; ++L0 < f0; ) {
|
|
81811
81811
|
var N0 = h0[L0], I0 = N0.iteratee, vt = N0.type, ht = I0(w0);
|
|
81812
|
-
if (vt ==
|
|
81812
|
+
if (vt == re)
|
|
81813
81813
|
w0 = ht;
|
|
81814
81814
|
else if (!ht) {
|
|
81815
|
-
if (vt ==
|
|
81815
|
+
if (vt == oe)
|
|
81816
81816
|
continue e;
|
|
81817
81817
|
break e;
|
|
81818
81818
|
}
|
|
@@ -84735,7 +84735,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
84735
84735
|
return this.reverse()[f](T).reverse();
|
|
84736
84736
|
};
|
|
84737
84737
|
}), Tt(["filter", "map", "takeWhile"], function(f, A) {
|
|
84738
|
-
var T = A + 1, V = T ==
|
|
84738
|
+
var T = A + 1, V = T == oe || T == be;
|
|
84739
84739
|
k0.prototype[f] = function(K) {
|
|
84740
84740
|
var Me = this.clone();
|
|
84741
84741
|
return Me.__iteratees__.push({
|
|
@@ -85100,7 +85100,7 @@ function o(e, t, a) {
|
|
|
85100
85100
|
ModuleRegistry.registerModules([AllCommunityModule]);
|
|
85101
85101
|
const Form = React__default.forwardRef(
|
|
85102
85102
|
(e, t) => {
|
|
85103
|
-
var v, w, S, x, L, D, N, I, k, H;
|
|
85103
|
+
var v, w, S, x, L, D, N, I, k, H, G;
|
|
85104
85104
|
const { selectedLocales: a } = useLocalDynamicFormProvider(), l = useMemo(
|
|
85105
85105
|
() => createYupSchema(e.fields),
|
|
85106
85106
|
[e, e.fields, (v = e.localization) == null ? void 0 : v.locales, createYupSchema]
|
|
@@ -85109,39 +85109,47 @@ const Form = React__default.forwardRef(
|
|
|
85109
85109
|
defaultValues: c,
|
|
85110
85110
|
mode: e.validationMode || "onChange"
|
|
85111
85111
|
}), d = React__default.useRef(
|
|
85112
|
-
new Set(e.fields.map((
|
|
85112
|
+
new Set(e.fields.map((Y) => Y.name))
|
|
85113
85113
|
), u = useRef(!1);
|
|
85114
85114
|
useEffect(() => {
|
|
85115
85115
|
if (u.current) {
|
|
85116
|
-
const
|
|
85117
|
-
(
|
|
85118
|
-
),
|
|
85119
|
-
(
|
|
85116
|
+
const Y = new Set(e.fields.map((oe) => oe.name)), B = d.current, j = Array.from(B).filter(
|
|
85117
|
+
(oe) => !Y.has(oe)
|
|
85118
|
+
), te = Array.from(Y).filter(
|
|
85119
|
+
(oe) => !B.has(oe)
|
|
85120
85120
|
);
|
|
85121
|
-
|
|
85122
|
-
p.unregister(
|
|
85121
|
+
j.forEach((oe) => {
|
|
85122
|
+
p.unregister(oe);
|
|
85123
85123
|
});
|
|
85124
|
-
const
|
|
85125
|
-
|
|
85126
|
-
const re =
|
|
85127
|
-
p.resetField(
|
|
85124
|
+
const Z = e.defaultValues ?? getDefaultValues(e.fields);
|
|
85125
|
+
te.forEach((oe) => {
|
|
85126
|
+
const re = Z[oe];
|
|
85127
|
+
p.resetField(oe, {
|
|
85128
85128
|
defaultValue: re
|
|
85129
85129
|
});
|
|
85130
|
-
}), d.current =
|
|
85130
|
+
}), d.current = Y;
|
|
85131
85131
|
} else
|
|
85132
85132
|
u.current = !0;
|
|
85133
|
-
d.current = new Set(e.fields.map((
|
|
85133
|
+
d.current = new Set(e.fields.map((Y) => Y.name));
|
|
85134
85134
|
}, [e.fields]);
|
|
85135
85135
|
const b = useCallback(
|
|
85136
|
-
(
|
|
85137
|
-
var
|
|
85138
|
-
let
|
|
85139
|
-
(
|
|
85136
|
+
(Y) => {
|
|
85137
|
+
var j, te;
|
|
85138
|
+
let B = { ...Y };
|
|
85139
|
+
(j = e.localization) != null && j.includeInDataSubmission ? B[DEFAULT_LOCALE_PICKER_FIELD_NAME] = a : delete B[DEFAULT_LOCALE_PICKER_FIELD_NAME], (te = e.onSubmit) == null || te.call(e, B), e.dirtyLock && p.reset(B);
|
|
85140
85140
|
},
|
|
85141
|
-
[
|
|
85142
|
-
|
|
85143
|
-
|
|
85144
|
-
|
|
85141
|
+
[
|
|
85142
|
+
e.onSubmit,
|
|
85143
|
+
e.dirtyLock,
|
|
85144
|
+
p,
|
|
85145
|
+
a,
|
|
85146
|
+
(w = e.localization) == null ? void 0 : w.includeInDataSubmission
|
|
85147
|
+
]
|
|
85148
|
+
);
|
|
85149
|
+
console.log("selectedLocales", a);
|
|
85150
|
+
const h = async () => (await p.trigger()).valueOf(), g = () => {
|
|
85151
|
+
var Y, B, j, te;
|
|
85152
|
+
return /* @__PURE__ */ jsx(Fragment, { children: !((Y = e.submitButtonProps) != null && Y.hidden) && /* @__PURE__ */ jsx(
|
|
85145
85153
|
Button$1,
|
|
85146
85154
|
{
|
|
85147
85155
|
loading: e.loading,
|
|
@@ -85149,25 +85157,25 @@ const Form = React__default.forwardRef(
|
|
|
85149
85157
|
variant: "contained",
|
|
85150
85158
|
color: "primary",
|
|
85151
85159
|
type: "submit",
|
|
85152
|
-
disabled: typeof ((
|
|
85153
|
-
children: ((
|
|
85160
|
+
disabled: typeof ((B = e.submitButtonProps) == null ? void 0 : B.disabled) == "boolean" ? (j = e.submitButtonProps) == null ? void 0 : j.disabled : e.dirtyLock ? Object.keys(p.formState.dirtyFields).length === 0 : !1,
|
|
85161
|
+
children: ((te = e.submitButtonProps) == null ? void 0 : te.label) || "Submit"
|
|
85154
85162
|
}
|
|
85155
85163
|
) });
|
|
85156
85164
|
}, m = () => /* @__PURE__ */ jsx(Fragment, {});
|
|
85157
85165
|
useEffect(() => {
|
|
85158
|
-
const
|
|
85159
|
-
(
|
|
85160
|
-
var
|
|
85161
|
-
if (
|
|
85162
|
-
const
|
|
85163
|
-
(
|
|
85166
|
+
const Y = p.watch(
|
|
85167
|
+
(B, { name: j, type: te }) => {
|
|
85168
|
+
var Z;
|
|
85169
|
+
if (te === "change" && j) {
|
|
85170
|
+
const oe = B[j];
|
|
85171
|
+
(Z = e.onChange) == null || Z.call(e, {
|
|
85164
85172
|
...p.getValues(),
|
|
85165
|
-
[
|
|
85173
|
+
[j]: oe
|
|
85166
85174
|
});
|
|
85167
85175
|
}
|
|
85168
85176
|
}
|
|
85169
85177
|
);
|
|
85170
|
-
return () =>
|
|
85178
|
+
return () => Y.unsubscribe();
|
|
85171
85179
|
}, [p.watch]), useImperativeHandle(
|
|
85172
85180
|
t,
|
|
85173
85181
|
() => ({
|
|
@@ -85178,11 +85186,11 @@ const Form = React__default.forwardRef(
|
|
|
85178
85186
|
);
|
|
85179
85187
|
const y = e.isNested ? "div" : "form", C = e.isNested ? {} : { onSubmit: p.handleSubmit(b) };
|
|
85180
85188
|
return useEffect(() => {
|
|
85181
|
-
e.error && Object.keys(e.error).forEach((
|
|
85182
|
-
var
|
|
85183
|
-
p.setError(
|
|
85189
|
+
e.error && Object.keys(e.error).forEach((B) => {
|
|
85190
|
+
var j;
|
|
85191
|
+
p.setError(B, {
|
|
85184
85192
|
type: "manual",
|
|
85185
|
-
message: (
|
|
85193
|
+
message: (j = e.error[B]) == null ? void 0 : j.message
|
|
85186
85194
|
});
|
|
85187
85195
|
});
|
|
85188
85196
|
}, [e.error]), /* @__PURE__ */ jsx(FormProvider, { ...p, children: /* @__PURE__ */ jsxs(
|
|
@@ -85205,9 +85213,9 @@ const Form = React__default.forwardRef(
|
|
|
85205
85213
|
flex: "1 1 auto",
|
|
85206
85214
|
overflowY: "auto"
|
|
85207
85215
|
},
|
|
85208
|
-
...(
|
|
85216
|
+
...(x = (S = e.slots) == null ? void 0 : S.formBody) == null ? void 0 : x.style
|
|
85209
85217
|
},
|
|
85210
|
-
children: /* @__PURE__ */ jsx(Grid, { container: !0, spacing: 2, children: (e.fields || []).map((
|
|
85218
|
+
children: /* @__PURE__ */ jsx(Grid, { container: !0, spacing: 2, children: (e.fields || []).map((Y, B) => /* @__PURE__ */ jsx(Fragment$1, { children: Y.meta.fullRow ? /* @__PURE__ */ jsx(
|
|
85211
85219
|
Grid,
|
|
85212
85220
|
{
|
|
85213
85221
|
columns: 12,
|
|
@@ -85217,8 +85225,8 @@ const Form = React__default.forwardRef(
|
|
|
85217
85225
|
children: /* @__PURE__ */ jsx(Grid, { container: !0, spacing: 2, children: /* @__PURE__ */ jsx(
|
|
85218
85226
|
FieldRenderer,
|
|
85219
85227
|
{
|
|
85220
|
-
...
|
|
85221
|
-
locale:
|
|
85228
|
+
...Y,
|
|
85229
|
+
locale: Y.locale,
|
|
85222
85230
|
control: p.control
|
|
85223
85231
|
}
|
|
85224
85232
|
) })
|
|
@@ -85226,11 +85234,11 @@ const Form = React__default.forwardRef(
|
|
|
85226
85234
|
) : /* @__PURE__ */ jsx(
|
|
85227
85235
|
FieldRenderer,
|
|
85228
85236
|
{
|
|
85229
|
-
...
|
|
85230
|
-
locale:
|
|
85237
|
+
...Y,
|
|
85238
|
+
locale: Y.locale,
|
|
85231
85239
|
control: p.control
|
|
85232
85240
|
}
|
|
85233
|
-
) },
|
|
85241
|
+
) }, Y.name || B)) })
|
|
85234
85242
|
}
|
|
85235
85243
|
),
|
|
85236
85244
|
/* @__PURE__ */ jsxs(
|
|
@@ -85241,12 +85249,12 @@ const Form = React__default.forwardRef(
|
|
|
85241
85249
|
...e.scrollableWithFixedFooter && {
|
|
85242
85250
|
flexShrink: 0
|
|
85243
85251
|
},
|
|
85244
|
-
...(
|
|
85252
|
+
...(D = (L = e.slots) == null ? void 0 : L.formFooter) == null ? void 0 : D.style
|
|
85245
85253
|
},
|
|
85246
85254
|
children: [
|
|
85247
|
-
!((
|
|
85248
|
-
(
|
|
85249
|
-
|
|
85255
|
+
!((I = (N = e.slots) == null ? void 0 : N.formFooter) != null && I.renderActions) && g(),
|
|
85256
|
+
(G = (H = (k = e.slots) == null ? void 0 : k.formFooter) == null ? void 0 : H.renderActions) == null ? void 0 : G.call(
|
|
85257
|
+
H,
|
|
85250
85258
|
g(),
|
|
85251
85259
|
m(),
|
|
85252
85260
|
p
|