@lifesg/web-frontend-engine 1.0.0-alpha.4 → 1.0.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/chunks/heic2any.3b8e0e2e.js +2 -0
- package/chunks/heic2any.3b8e0e2e.js.map +1 -0
- package/chunks/index.a9be1bad.js +2 -0
- package/chunks/index.a9be1bad.js.map +1 -0
- package/chunks/index.cb84bb25.js +813 -0
- package/chunks/index.cb84bb25.js.map +1 -0
- package/chunks/index.f3b64f06.js +10 -0
- package/chunks/index.f3b64f06.js.map +1 -0
- package/cjs/chunks/heic2any.8d6aeb48.js +2 -0
- package/cjs/chunks/heic2any.8d6aeb48.js.map +1 -0
- package/cjs/chunks/index.3a31dd0d.js +813 -0
- package/cjs/chunks/index.3a31dd0d.js.map +1 -0
- package/cjs/chunks/index.42475725.js +2 -0
- package/cjs/chunks/index.42475725.js.map +1 -0
- package/cjs/chunks/index.4da6edf0.js +10 -0
- package/cjs/chunks/index.4da6edf0.js.map +1 -0
- package/cjs/index.js +1 -285
- package/cjs/index.js.map +1 -1
- package/components/fields/checkbox-group/checkbox-group.styles.d.ts +1 -1
- package/components/fields/image-upload/image-context/image-context.d.ts +14 -0
- package/components/fields/image-upload/image-context/index.d.ts +1 -0
- package/components/fields/image-upload/image-input/file-item/file-item.d.ts +11 -0
- package/components/fields/image-upload/image-input/file-item/file-item.styles.d.ts +16 -0
- package/components/fields/image-upload/image-input/file-item/index.d.ts +1 -0
- package/components/fields/image-upload/image-input/image-input.d.ts +17 -0
- package/components/fields/image-upload/image-input/image-input.styles.d.ts +8 -0
- package/components/fields/image-upload/image-input/index.d.ts +1 -0
- package/components/fields/image-upload/image-manager/image-manager.d.ts +22 -0
- package/components/fields/image-upload/image-manager/index.d.ts +2 -0
- package/components/fields/image-upload/image-review/image-editor/image-editor.d.ts +3 -0
- package/components/fields/image-upload/image-review/image-editor/image-editor.styles.d.ts +4 -0
- package/components/fields/image-upload/image-review/image-editor/index.d.ts +3 -0
- package/components/fields/image-upload/image-review/image-editor/types.d.ts +16 -0
- package/components/fields/image-upload/image-review/image-error/image-error.d.ts +8 -0
- package/components/fields/image-upload/image-review/image-error/image-error.styles.d.ts +7 -0
- package/components/fields/image-upload/image-review/image-error/index.d.ts +1 -0
- package/components/fields/image-upload/image-review/image-prompts/image-prompts.d.ts +11 -0
- package/components/fields/image-upload/image-review/image-prompts/index.d.ts +1 -0
- package/components/fields/image-upload/image-review/image-review.d.ts +15 -0
- package/components/fields/image-upload/image-review/image-review.styles.d.ts +31 -0
- package/components/fields/image-upload/image-review/image-thumbnails/image-thumbnails.d.ts +11 -0
- package/components/fields/image-upload/image-review/image-thumbnails/image-thumbnails.styles.d.ts +14 -0
- package/components/fields/image-upload/image-review/image-thumbnails/index.d.ts +1 -0
- package/components/fields/image-upload/image-review/index.d.ts +1 -0
- package/components/fields/image-upload/image-upload-helper.d.ts +10 -0
- package/components/fields/image-upload/image-upload.d.ts +4 -0
- package/components/fields/image-upload/index.d.ts +2 -0
- package/components/fields/image-upload/types.d.ts +65 -0
- package/components/fields/index.d.ts +1 -0
- package/components/fields/radio-button/radio-button.styles.d.ts +4 -3
- package/components/fields/radio-button/types.d.ts +5 -2
- package/components/fields/reset-button/types.d.ts +1 -0
- package/components/fields/text-field/types.d.ts +8 -0
- package/components/fields/textarea/textarea.styles.d.ts +1 -1
- package/components/frontend-engine/event/context-provider.d.ts +14 -0
- package/components/frontend-engine/event/index.d.ts +1 -0
- package/components/frontend-engine/types.d.ts +23 -19
- package/components/frontend-engine/yup/types.d.ts +2 -1
- package/components/shared/drag-upload/drag-upload.d.ts +3 -0
- package/components/shared/drag-upload/drag-upload.styles.d.ts +4 -0
- package/components/shared/drag-upload/index.d.ts +2 -0
- package/components/shared/drag-upload/types.d.ts +15 -0
- package/components/shared/error-messages.d.ts +27 -4
- package/components/shared/index.d.ts +2 -0
- package/components/shared/prompt/index.d.ts +2 -0
- package/components/shared/prompt/prompt.d.ts +2 -0
- package/components/shared/prompt/prompt.styles.d.ts +15 -0
- package/components/shared/prompt/types.d.ts +16 -0
- package/index.js +1 -285
- package/index.js.map +1 -1
- package/package.json +8 -2
- package/utils/api-client/api-client.d.ts +65 -0
- package/utils/api-client/index.d.ts +1 -0
- package/utils/file-helper.d.ts +43 -0
- package/utils/hooks/index.d.ts +1 -0
- package/utils/hooks/use-field-event.d.ts +9 -0
- package/utils/hooks/use-previous.d.ts +4 -1
- package/utils/image-helper.d.ts +34 -0
- package/utils/index.d.ts +4 -0
- package/utils/window-helper.d.ts +3 -0
package/cjs/index.js
CHANGED
|
@@ -1,286 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("react/jsx-runtime"),t=require("react"),n=require("@lifesg/react-design-system/alert"),r=require("@lifesg/react-design-system/text"),i=require("@lifesg/react-design-system/color"),a=require("styled-components"),o=require("react-dom/server"),s=require("@lifesg/react-design-system"),u=require("@lifesg/react-design-system/toggle"),l=require("@lifesg/react-design-system/form"),c=require("@lifesg/react-design-system/checkbox"),d=require("@lifesg/react-design-system/input-select"),f=require("@lifesg/react-design-system/radio-button"),h=require("@lifesg/react-design-system/button");function p(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}function m(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var _=p(t),y=m(t),g=p(a),v=e=>"checkbox"===e.type,A=e=>e instanceof Date,E=e=>null==e;const b=e=>"object"==typeof e;var S=e=>!E(e)&&!Array.isArray(e)&&b(e)&&!A(e),M=e=>S(e)&&e.target?v(e.target)?e.target.checked:e.target.value:e,T=(e,t)=>e.has((e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e)(t)),w=e=>{const t=e.constructor&&e.constructor.prototype;return S(t)&&t.hasOwnProperty("isPrototypeOf")},O="undefined"!=typeof window&&void 0!==window.HTMLElement&&"undefined"!=typeof document;function N(e){let t;const n=Array.isArray(e);if(e instanceof Date)t=new Date(e);else if(e instanceof Set)t=new Set(e);else{if(O&&(e instanceof Blob||e instanceof FileList)||!n&&!S(e))return e;if(t=n?[]:{},Array.isArray(e)||w(e))for(const n in e)t[n]=N(e[n]);else t=e}return t}var C=e=>Array.isArray(e)?e.filter(Boolean):[],L=e=>void 0===e,D=(e,t,n)=>{if(!t||!S(e))return n;const r=C(t.split(/[,[\].]+?/)).reduce(((e,t)=>E(e)?e:e[t]),e);return L(r)||r===e?L(e[t])?n:e[t]:r};const $={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},x={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},I="max",k="min",z="maxLength",R="minLength",Z="pattern",P="required",F="validate",U=_.default.createContext(null),B=()=>_.default.useContext(U),V=e=>{const{children:t,...n}=e;return _.default.createElement(U.Provider,{value:n},t)};var j=(e,t,n,r=!0)=>{const i={defaultValues:t._defaultValues};for(const a in e)Object.defineProperty(i,a,{get:()=>{const i=a;return t._proxyFormState[i]!==x.all&&(t._proxyFormState[i]=!r||x.all),n&&(n[i]=!0),e[i]}});return i},H=e=>S(e)&&!Object.keys(e).length,Y=(e,t,n,r)=>{n(e);const{name:i,...a}=e;return H(a)||Object.keys(a).length>=Object.keys(t).length||Object.keys(a).find((e=>t[e]===(!r||x.all)))},G=e=>Array.isArray(e)?e:[e],W=(e,t,n)=>n&&t?e===t:!e||!t||e===t||G(e).some((e=>e&&(e.startsWith(t)||t.startsWith(e))));function q(e){const t=_.default.useRef(e);t.current=e,_.default.useEffect((()=>{const n=!e.disabled&&t.current.subject&&t.current.subject.subscribe({next:t.current.next});return()=>{n&&n.unsubscribe()}}),[e.disabled])}var K=e=>"string"==typeof e,J=(e,t,n,r,i)=>K(e)?(r&&t.watch.add(e),D(n,e,i)):Array.isArray(e)?e.map((e=>(r&&t.watch.add(e),D(n,e)))):(r&&(t.watchAll=!0),n);function X(e){const t=B(),{control:n=t.control,name:r,defaultValue:i,disabled:a,exact:o}=e||{},s=_.default.useRef(r);s.current=r,q({disabled:a,subject:n._subjects.values,next:e=>{W(s.current,e.name,o)&&l(N(J(s.current,n._names,e.values||n._formValues,!1,i)))}});const[u,l]=_.default.useState(n._getWatch(r,i));return _.default.useEffect((()=>n._removeUnmounted())),u}var Q=e=>/^\w*$/.test(e),ee=e=>C(e.replace(/["|']|\]/g,"").split(/\.|\[/));function te(e,t,n){let r=-1;const i=Q(t)?[t]:ee(t),a=i.length,o=a-1;for(;++r<a;){const t=i[r];let a=n;if(r!==o){const n=e[t];a=S(n)||Array.isArray(n)?n:isNaN(+i[r+1])?{}:[]}e[t]=a,e=e[t]}return e}function ne(e){const t=B(),{name:n,control:r=t.control,shouldUnregister:i}=e,a=T(r._names.array,n),o=X({control:r,name:n,defaultValue:D(r._formValues,n,D(r._defaultValues,n,e.defaultValue)),exact:!0}),s=function(e){const t=B(),{control:n=t.control,disabled:r,name:i,exact:a}=e||{},[o,s]=_.default.useState(n._formState),u=_.default.useRef(!0),l=_.default.useRef({isDirty:!1,isLoading:!1,dirtyFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1}),c=_.default.useRef(i);return c.current=i,q({disabled:r,next:e=>u.current&&W(c.current,e.name,a)&&Y(e,l.current,n._updateFormState)&&s({...n._formState,...e}),subject:n._subjects.state}),_.default.useEffect((()=>(u.current=!0,l.current.isValid&&n._updateValid(!0),()=>{u.current=!1})),[n]),j(o,n,l.current,!1)}({control:r,name:n}),u=_.default.useRef(r.register(n,{...e.rules,value:o}));return _.default.useEffect((()=>{const e=r._options.shouldUnregister||i,t=(e,t)=>{const n=D(r._fields,e);n&&(n._f.mount=t)};if(t(n,!0),e){const e=N(D(r._options.defaultValues,n));te(r._defaultValues,n,e),L(D(r._formValues,n))&&te(r._formValues,n,e)}return()=>{(a?e&&!r._state.action:e)?r.unregister(n):t(n,!1)}}),[n,r,a,i]),{field:{name:n,value:o,onChange:_.default.useCallback((e=>u.current.onChange({target:{value:M(e),name:n},type:$.CHANGE})),[n]),onBlur:_.default.useCallback((()=>u.current.onBlur({target:{value:D(r._formValues,n),name:n},type:$.BLUR})),[n,r]),ref:e=>{const t=D(r._fields,n);t&&e&&(t._f.ref={focus:()=>e.focus(),select:()=>e.select(),setCustomValidity:t=>e.setCustomValidity(t),reportValidity:()=>e.reportValidity()})}},formState:s,fieldState:Object.defineProperties({},{invalid:{enumerable:!0,get:()=>!!D(s.errors,n)},isDirty:{enumerable:!0,get:()=>!!D(s.dirtyFields,n)},isTouched:{enumerable:!0,get:()=>!!D(s.touchedFields,n)},error:{enumerable:!0,get:()=>D(s.errors,n)}})}}const re=e=>e.render(ne(e));var ie=(e,t,n,r,i)=>t?{...n[e],types:{...n[e]&&n[e].types?n[e].types:{},[r]:i||!0}}:{};const ae=(e,t,n)=>{for(const r of n||Object.keys(e)){const n=D(e,r);if(n){const{_f:e,...r}=n;if(e&&t(e.name)){if(e.ref.focus){e.ref.focus();break}if(e.refs&&e.refs[0].focus){e.refs[0].focus();break}}else S(r)&&ae(r,t)}}};var oe=e=>({isOnSubmit:!e||e===x.onSubmit,isOnBlur:e===x.onBlur,isOnChange:e===x.onChange,isOnAll:e===x.all,isOnTouch:e===x.onTouched}),se=(e,t,n)=>!n&&(t.watchAll||t.watch.has(e)||[...t.watch].some((t=>e.startsWith(t)&&/^\.\w+/.test(e.slice(t.length))))),ue=(e,t,n)=>{const r=C(D(e,n));return te(r,"root",t[n]),te(e,n,r),e},le=e=>"boolean"==typeof e,ce=e=>"file"===e.type,de=e=>"function"==typeof e,fe=e=>{if(!O)return!1;const t=e?e.ownerDocument:0;return e instanceof(t&&t.defaultView?t.defaultView.HTMLElement:HTMLElement)},he=e=>K(e),pe=e=>"radio"===e.type,me=e=>e instanceof RegExp;const _e={value:!1,isValid:!1},ye={value:!0,isValid:!0};var ge=e=>{if(Array.isArray(e)){if(e.length>1){const t=e.filter((e=>e&&e.checked&&!e.disabled)).map((e=>e.value));return{value:t,isValid:!!t.length}}return e[0].checked&&!e[0].disabled?e[0].attributes&&!L(e[0].attributes.value)?L(e[0].value)||""===e[0].value?ye:{value:e[0].value,isValid:!0}:ye:_e}return _e};const ve={isValid:!1,value:null};var Ae=e=>Array.isArray(e)?e.reduce(((e,t)=>t&&t.checked&&!t.disabled?{isValid:!0,value:t.value}:e),ve):ve;function Ee(e,t,n="validate"){if(he(e)||Array.isArray(e)&&e.every(he)||le(e)&&!e)return{type:n,message:he(e)?e:"",ref:t}}var be=e=>S(e)&&!me(e)?e:{value:e,message:""},Se=async(e,t,n,r,i)=>{const{ref:a,refs:o,required:s,maxLength:u,minLength:l,min:c,max:d,pattern:f,validate:h,name:p,valueAsNumber:m,mount:_,disabled:y}=e._f,g=D(t,p);if(!_||y)return{};const A=o?o[0]:a,b=e=>{r&&A.reportValidity&&(A.setCustomValidity(le(e)?"":e||""),A.reportValidity())},M={},T=pe(a),w=v(a),O=T||w,N=(m||ce(a))&&L(a.value)&&L(g)||fe(a)&&""===a.value||""===g||Array.isArray(g)&&!g.length,C=ie.bind(null,p,n,M),$=(e,t,n,r=z,i=R)=>{const o=e?t:n;M[p]={type:e?r:i,message:o,ref:a,...C(e?r:i,o)}};if(i?!Array.isArray(g)||!g.length:s&&(!O&&(N||E(g))||le(g)&&!g||w&&!ge(o).isValid||T&&!Ae(o).isValid)){const{value:e,message:t}=he(s)?{value:!!s,message:s}:be(s);if(e&&(M[p]={type:P,message:t,ref:A,...C(P,t)},!n))return b(t),M}if(!(N||E(c)&&E(d))){let e,t;const r=be(d),i=be(c);if(E(g)||isNaN(g)){const n=a.valueAsDate||new Date(g),o=e=>new Date((new Date).toDateString()+" "+e),s="time"==a.type,u="week"==a.type;K(r.value)&&g&&(e=s?o(g)>o(r.value):u?g>r.value:n>new Date(r.value)),K(i.value)&&g&&(t=s?o(g)<o(i.value):u?g<i.value:n<new Date(i.value))}else{const n=a.valueAsNumber||(g?+g:g);E(r.value)||(e=n>r.value),E(i.value)||(t=n<i.value)}if((e||t)&&($(!!e,r.message,i.message,I,k),!n))return b(M[p].message),M}if((u||l)&&!N&&(K(g)||i&&Array.isArray(g))){const e=be(u),t=be(l),r=!E(e.value)&&g.length>+e.value,i=!E(t.value)&&g.length<+t.value;if((r||i)&&($(r,e.message,t.message),!n))return b(M[p].message),M}if(f&&!N&&K(g)){const{value:e,message:t}=be(f);if(me(e)&&!g.match(e)&&(M[p]={type:Z,message:t,ref:a,...C(Z,t)},!n))return b(t),M}if(h)if(de(h)){const e=Ee(await h(g,t),A);if(e&&(M[p]={...e,...C(F,e.message)},!n))return b(e.message),M}else if(S(h)){let e={};for(const r in h){if(!H(e)&&!n)break;const i=Ee(await h[r](g,t),A,r);i&&(e={...i,...C(r,i.message)},b(i.message),n&&(M[p]=e))}if(!H(e)&&(M[p]={ref:A,...e},!n))return M}return b(!0),M};function Me(e,t){const n=Array.isArray(t)?t:Q(t)?[t]:ee(t),r=1===n.length?e:function(e,t){const n=t.slice(0,-1).length;let r=0;for(;r<n;)e=L(e)?r++:e[t[r++]];return e}(e,n),i=n.length-1,a=n[i];return r&&delete r[a],0!==i&&(S(r)&&H(r)||Array.isArray(r)&&function(e){for(const t in e)if(!L(e[t]))return!1;return!0}(r))&&Me(e,n.slice(0,-1)),e}function Te(){let e=[];return{get observers(){return e},next:t=>{for(const n of e)n.next&&n.next(t)},subscribe:t=>(e.push(t),{unsubscribe:()=>{e=e.filter((e=>e!==t))}}),unsubscribe:()=>{e=[]}}}var we=e=>E(e)||!b(e);function Oe(e,t){if(we(e)||we(t))return e===t;if(A(e)&&A(t))return e.getTime()===t.getTime();const n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(const i of n){const n=e[i];if(!r.includes(i))return!1;if("ref"!==i){const e=t[i];if(A(n)&&A(e)||S(n)&&S(e)||Array.isArray(n)&&Array.isArray(e)?!Oe(n,e):n!==e)return!1}}return!0}var Ne=e=>"select-multiple"===e.type,Ce=e=>pe(e)||v(e),Le=e=>fe(e)&&e.isConnected,De=e=>{for(const t in e)if(de(e[t]))return!0;return!1};function $e(e,t={}){const n=Array.isArray(e);if(S(e)||n)for(const n in e)Array.isArray(e[n])||S(e[n])&&!De(e[n])?(t[n]=Array.isArray(e[n])?[]:{},$e(e[n],t[n])):E(e[n])||(t[n]=!0);return t}function xe(e,t,n){const r=Array.isArray(e);if(S(e)||r)for(const r in e)Array.isArray(e[r])||S(e[r])&&!De(e[r])?L(t)||we(n[r])?n[r]=Array.isArray(e[r])?$e(e[r],[]):{...$e(e[r])}:xe(e[r],E(t)?{}:t[r],n[r]):n[r]=!Oe(e[r],t[r]);return n}var Ie=(e,t)=>xe(e,t,$e(t)),ke=(e,{valueAsNumber:t,valueAsDate:n,setValueAs:r})=>L(e)?e:t?""===e?NaN:e?+e:e:n&&K(e)?new Date(e):r?r(e):e;function ze(e){const t=e.ref;if(!(e.refs?e.refs.every((e=>e.disabled)):t.disabled))return ce(t)?t.files:pe(t)?Ae(e.refs).value:Ne(t)?[...t.selectedOptions].map((({value:e})=>e)):v(t)?ge(e.refs).value:ke(L(t.value)?e.ref.value:t.value,e)}var Re=(e,t,n,r)=>{const i={};for(const n of e){const e=D(t,n);e&&te(i,n,e._f)}return{criteriaMode:n,names:[...e],fields:i,shouldUseNativeValidation:r}},Ze=e=>L(e)?e:me(e)?e.source:S(e)?me(e.value)?e.value.source:e.value:e,Pe=e=>e.mount&&(e.required||e.min||e.max||e.maxLength||e.minLength||e.pattern||e.validate);function Fe(e,t,n){const r=D(e,n);if(r||Q(n))return{error:r,name:n};const i=n.split(".");for(;i.length;){const r=i.join("."),a=D(t,r),o=D(e,r);if(a&&!Array.isArray(a)&&n!==r)return{name:n};if(o&&o.type)return{name:r,error:o};i.pop()}return{name:n}}var Ue=(e,t,n,r,i)=>!i.isOnAll&&(!n&&i.isOnTouch?!(t||e):(n?r.isOnBlur:i.isOnBlur)?!e:!(n?r.isOnChange:i.isOnChange)||e),Be=(e,t)=>!C(D(e,t)).length&&Me(e,t);const Ve={mode:x.onSubmit,reValidateMode:x.onChange,shouldFocusError:!0};function je(e={},t){let n,r={...Ve,...e},i={submitCount:0,isDirty:!1,isLoading:de(r.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},errors:{}},a={},o=(S(r.defaultValues)||S(r.values))&&N(r.defaultValues||r.values)||{},s=r.shouldUnregister?{}:N(o),u={action:!1,mount:!1,watch:!1},l={mount:new Set,unMount:new Set,array:new Set,watch:new Set},c=0;const d={isDirty:!1,dirtyFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},f={values:Te(),array:Te(),state:Te()},h=e.resetOptions&&e.resetOptions.keepDirtyValues,p=oe(r.mode),m=oe(r.reValidateMode),_=r.criteriaMode===x.all,y=async e=>{if(d.isValid||e){const e=r.resolver?H((await k()).errors):await z(a,!0);e!==i.isValid&&f.state.next({isValid:e})}},g=e=>d.isValidating&&f.state.next({isValidating:e}),b=(e,t,n,r)=>{const i=D(a,e);if(i){const a=D(s,e,L(n)?D(o,e):n);L(a)||r&&r.defaultChecked||t?te(s,e,t?a:ze(i._f)):P(e,a),u.mount&&y()}},w=(e,t,n,r,a)=>{let s=!1,u=!1;const l={name:e};if(!n||r){d.isDirty&&(u=i.isDirty,i.isDirty=l.isDirty=R(),s=u!==l.isDirty);const n=Oe(D(o,e),t);u=D(i.dirtyFields,e),n?Me(i.dirtyFields,e):te(i.dirtyFields,e,!0),l.dirtyFields=i.dirtyFields,s=s||d.dirtyFields&&u!==!n}if(n){const t=D(i.touchedFields,e);t||(te(i.touchedFields,e,n),l.touchedFields=i.touchedFields,s=s||d.touchedFields&&t!==n)}return s&&a&&f.state.next(l),s?l:{}},I=(t,r,a,o)=>{const s=D(i.errors,t),u=d.isValid&&le(r)&&i.isValid!==r;var l;if(e.delayError&&a?(l=()=>((e,t)=>{te(i.errors,e,t),f.state.next({errors:i.errors})})(t,a),n=e=>{clearTimeout(c),c=setTimeout(l,e)},n(e.delayError)):(clearTimeout(c),n=null,a?te(i.errors,t,a):Me(i.errors,t)),(a?!Oe(s,a):s)||!H(o)||u){const e={...o,...u&&le(r)?{isValid:r}:{},errors:i.errors,name:t};i={...i,...e},f.state.next(e)}g(!1)},k=async e=>r.resolver(s,r.context,Re(e||l.mount,a,r.criteriaMode,r.shouldUseNativeValidation)),z=async(e,t,n={valid:!0})=>{for(const a in e){const o=e[a];if(o){const{_f:e,...a}=o;if(e){const a=l.array.has(e.name),u=await Se(o,s,_,r.shouldUseNativeValidation&&!t,a);if(u[e.name]&&(n.valid=!1,t))break;!t&&(D(u,e.name)?a?ue(i.errors,u,e.name):te(i.errors,e.name,u[e.name]):Me(i.errors,e.name))}a&&await z(a,t,n)}}return n.valid},R=(e,t)=>(e&&t&&te(s,e,t),!Oe(j(),o)),Z=(e,t,n)=>J(e,l,{...u.mount?s:L(t)?o:K(e)?{[e]:t}:t},n,t),P=(e,t,n={})=>{const r=D(a,e);let i=t;if(r){const n=r._f;n&&(!n.disabled&&te(s,e,ke(t,n)),i=fe(n.ref)&&E(t)?"":t,Ne(n.ref)?[...n.ref.options].forEach((e=>e.selected=i.includes(e.value))):n.refs?v(n.ref)?n.refs.length>1?n.refs.forEach((e=>(!e.defaultChecked||!e.disabled)&&(e.checked=Array.isArray(i)?!!i.find((t=>t===e.value)):i===e.value))):n.refs[0]&&(n.refs[0].checked=!!i):n.refs.forEach((e=>e.checked=e.value===i)):ce(n.ref)?n.ref.value="":(n.ref.value=i,n.ref.type||f.values.next({name:e,values:{...s}})))}(n.shouldDirty||n.shouldTouch)&&w(e,i,n.shouldTouch,n.shouldDirty,!0),n.shouldValidate&&V(e)},F=(e,t,n)=>{for(const r in t){const i=t[r],o=`${e}.${r}`,s=D(a,o);!l.array.has(e)&&we(i)&&(!s||s._f)||A(i)?P(o,i,n):F(o,i,n)}},U=(e,n,r={})=>{const c=D(a,e),h=l.array.has(e),p=N(n);te(s,e,p),h?(f.array.next({name:e,values:{...s}}),(d.isDirty||d.dirtyFields)&&r.shouldDirty&&f.state.next({name:e,dirtyFields:Ie(o,s),isDirty:R(e,p)})):!c||c._f||E(p)?P(e,p,r):F(e,p,r),se(e,l)&&f.state.next({...i}),f.values.next({name:e,values:{...s}}),!u.mount&&t()},B=async e=>{const t=e.target;let o=t.name,u=!0;const c=D(a,o);if(c){let h,v;const A=t.type?ze(c._f):M(e),E=e.type===$.BLUR||e.type===$.FOCUS_OUT,b=!Pe(c._f)&&!r.resolver&&!D(i.errors,o)&&!c._f.deps||Ue(E,D(i.touchedFields,o),i.isSubmitted,m,p),S=se(o,l,E);te(s,o,A),E?(c._f.onBlur&&c._f.onBlur(e),n&&n(0)):c._f.onChange&&c._f.onChange(e);const T=w(o,A,E,!1),O=!H(T)||S;if(!E&&f.values.next({name:o,type:e.type,values:{...s}}),b)return d.isValid&&y(),O&&f.state.next({name:o,...S?{}:T});if(!E&&S&&f.state.next({...i}),g(!0),r.resolver){const{errors:e}=await k([o]),t=Fe(i.errors,a,o),n=Fe(e,a,t.name||o);h=n.error,o=n.name,v=H(e)}else h=(await Se(c,s,_,r.shouldUseNativeValidation))[o],u=isNaN(A)||A===D(s,o,A),u&&(h?v=!1:d.isValid&&(v=await z(a,!0)));u&&(c._f.deps&&V(c._f.deps),I(o,v,h,T))}},V=async(e,t={})=>{let n,o;const s=G(e);if(g(!0),r.resolver){const t=await(async e=>{const{errors:t}=await k();if(e)for(const n of e){const e=D(t,n);e?te(i.errors,n,e):Me(i.errors,n)}else i.errors=t;return t})(L(e)?e:s);n=H(t),o=e?!s.some((e=>D(t,e))):n}else e?(o=(await Promise.all(s.map((async e=>{const t=D(a,e);return await z(t&&t._f?{[e]:t}:t)})))).every(Boolean),(o||i.isValid)&&y()):o=n=await z(a);return f.state.next({...!K(e)||d.isValid&&n!==i.isValid?{}:{name:e},...r.resolver||!e?{isValid:n}:{},errors:i.errors,isValidating:!1}),t.shouldFocus&&!o&&ae(a,(e=>e&&D(i.errors,e)),e?s:l.mount),o},j=e=>{const t={...o,...u.mount?s:{}};return L(e)?t:K(e)?D(t,e):e.map((e=>D(t,e)))},Y=(e,t)=>({invalid:!!D((t||i).errors,e),isDirty:!!D((t||i).dirtyFields,e),isTouched:!!D((t||i).touchedFields,e),error:D((t||i).errors,e)}),W=(e,t={})=>{for(const n of e?G(e):l.mount)l.mount.delete(n),l.array.delete(n),t.keepValue||(Me(a,n),Me(s,n)),!t.keepError&&Me(i.errors,n),!t.keepDirty&&Me(i.dirtyFields,n),!t.keepTouched&&Me(i.touchedFields,n),!r.shouldUnregister&&!t.keepDefaultValue&&Me(o,n);f.values.next({values:{...s}}),f.state.next({...i,...t.keepDirty?{isDirty:R()}:{}}),!t.keepIsValid&&y()},q=(e,t={})=>{let n=D(a,e);const i=le(t.disabled);return te(a,e,{...n||{},_f:{...n&&n._f?n._f:{ref:{name:e}},name:e,mount:!0,...t}}),l.mount.add(e),n?i&&te(s,e,t.disabled?void 0:D(s,e,ze(n._f))):b(e,!0,t.value),{...i?{disabled:t.disabled}:{},...r.shouldUseNativeValidation?{required:!!t.required,min:Ze(t.min),max:Ze(t.max),minLength:Ze(t.minLength),maxLength:Ze(t.maxLength),pattern:Ze(t.pattern)}:{},name:e,onChange:B,onBlur:B,ref:i=>{if(i){q(e,t),n=D(a,e);const r=L(i.value)&&i.querySelectorAll&&i.querySelectorAll("input,select,textarea")[0]||i,s=Ce(r),u=n._f.refs||[];if(s?u.find((e=>e===r)):r===n._f.ref)return;te(a,e,{_f:{...n._f,...s?{refs:[...u.filter(Le),r,...Array.isArray(D(o,e))?[{}]:[]],ref:{type:r.type,name:e}}:{ref:r}}}),b(e,!1,void 0,r)}else n=D(a,e,{}),n._f&&(n._f.mount=!1),(r.shouldUnregister||t.shouldUnregister)&&(!T(l.array,e)||!u.action)&&l.unMount.add(e)}}},X=()=>r.shouldFocusError&&ae(a,(e=>e&&D(i.errors,e)),l.mount),Q=(n,r={})=>{const c=n||o,p=N(c),m=n&&!H(n)?p:o;if(r.keepDefaultValues||(o=c),!r.keepValues){if(r.keepDirtyValues||h)for(const e of l.mount)D(i.dirtyFields,e)?te(m,e,D(s,e)):U(e,D(m,e));else{if(O&&L(n))for(const e of l.mount){const t=D(a,e);if(t&&t._f){const e=Array.isArray(t._f.refs)?t._f.refs[0]:t._f.ref;if(fe(e)){const t=e.closest("form");if(t){t.reset();break}}}}a={}}s=e.shouldUnregister?r.keepDefaultValues?N(o):{}:p,f.array.next({values:{...m}}),f.values.next({values:{...m}})}l={mount:new Set,unMount:new Set,array:new Set,watch:new Set,watchAll:!1,focus:""},!u.mount&&t(),u.mount=!d.isValid||!!r.keepIsValid,u.watch=!!e.shouldUnregister,f.state.next({submitCount:r.keepSubmitCount?i.submitCount:0,isDirty:r.keepDirty?i.isDirty:!(!r.keepDefaultValues||Oe(n,o)),isSubmitted:!!r.keepIsSubmitted&&i.isSubmitted,dirtyFields:r.keepDirtyValues?i.dirtyFields:r.keepDefaultValues&&n?Ie(o,n):{},touchedFields:r.keepTouched?i.touchedFields:{},errors:r.keepErrors?i.errors:{},isSubmitting:!1,isSubmitSuccessful:!1})},ee=(e,t)=>Q(de(e)?e(s):e,t);return{control:{register:q,unregister:W,getFieldState:Y,_executeSchema:k,_getWatch:Z,_getDirty:R,_updateValid:y,_removeUnmounted:()=>{for(const e of l.unMount){const t=D(a,e);t&&(t._f.refs?t._f.refs.every((e=>!Le(e))):!Le(t._f.ref))&&W(e)}l.unMount=new Set},_updateFieldArray:(e,t=[],n,r,l=!0,c=!0)=>{if(r&&n){if(u.action=!0,c&&Array.isArray(D(a,e))){const t=n(D(a,e),r.argA,r.argB);l&&te(a,e,t)}if(c&&Array.isArray(D(i.errors,e))){const t=n(D(i.errors,e),r.argA,r.argB);l&&te(i.errors,e,t),Be(i.errors,e)}if(d.touchedFields&&c&&Array.isArray(D(i.touchedFields,e))){const t=n(D(i.touchedFields,e),r.argA,r.argB);l&&te(i.touchedFields,e,t)}d.dirtyFields&&(i.dirtyFields=Ie(o,s)),f.state.next({name:e,isDirty:R(e,t),dirtyFields:i.dirtyFields,errors:i.errors,isValid:i.isValid})}else te(s,e,t)},_getFieldArray:t=>C(D(u.mount?s:o,t,e.shouldUnregister?D(o,t,[]):[])),_reset:Q,_resetDefaultValues:()=>de(r.defaultValues)&&r.defaultValues().then((e=>{ee(e,r.resetOptions),f.state.next({isLoading:!1})})),_updateFormState:e=>{i={...i,...e}},_subjects:f,_proxyFormState:d,get _fields(){return a},get _formValues(){return s},get _state(){return u},set _state(e){u=e},get _defaultValues(){return o},get _names(){return l},set _names(e){l=e},get _formState(){return i},set _formState(e){i=e},get _options(){return r},set _options(e){r={...r,...e}}},trigger:V,register:q,handleSubmit:(e,t)=>async n=>{n&&(n.preventDefault&&n.preventDefault(),n.persist&&n.persist());let o=N(s);if(f.state.next({isSubmitting:!0}),r.resolver){const{errors:e,values:t}=await k();i.errors=e,o=t}else await z(a);Me(i.errors,"root"),H(i.errors)?(f.state.next({errors:{}}),await e(o,n)):(t&&await t({...i.errors},n),X(),setTimeout(X)),f.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:H(i.errors),submitCount:i.submitCount+1,errors:i.errors})},watch:(e,t)=>de(e)?f.values.subscribe({next:n=>e(Z(void 0,t),n)}):Z(e,t,!0),setValue:U,getValues:j,reset:ee,resetField:(e,t={})=>{D(a,e)&&(L(t.defaultValue)?U(e,D(o,e)):(U(e,t.defaultValue),te(o,e,t.defaultValue)),t.keepTouched||Me(i.touchedFields,e),t.keepDirty||(Me(i.dirtyFields,e),i.isDirty=t.defaultValue?R(e,D(o,e)):R()),t.keepError||(Me(i.errors,e),d.isValid&&y()),f.state.next({...i}))},clearErrors:e=>{e&&G(e).forEach((e=>Me(i.errors,e))),f.state.next({errors:e?i.errors:{}})},unregister:W,setError:(e,t,n)=>{const r=(D(a,e,{_f:{}})._f||{}).ref;te(i.errors,e,{...t,ref:r}),f.state.next({name:e,errors:i.errors,isValid:!1}),n&&n.shouldFocus&&r&&r.focus&&r.focus()},setFocus:(e,t={})=>{const n=D(a,e),r=n&&n._f;if(r){const e=r.refs?r.refs[0]:r.ref;e.focus&&(e.focus(),t.shouldSelect&&e.select())}},getFieldState:Y}}var He=function(e,t,n){if(e&&"reportValidity"in e){var r=D(n,t);e.setCustomValidity(r&&r.message||""),e.reportValidity()}},Ye=function(e,t){var n=function(n){var r=t.fields[n];r&&r.ref&&"reportValidity"in r.ref?He(r.ref,n,e):r.refs&&r.refs.forEach((function(t){return He(t,n,e)}))};for(var r in t.fields)n(r)},Ge=function(e,t){t.shouldUseNativeValidation&&Ye(e,t);var n={};for(var r in e){var i=D(t.fields,r);te(n,r,Object.assign(e[r],{ref:i&&i.ref}))}return n},We="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function qe(e){var t=e.default;if("function"==typeof t){var n=function(){return t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach((function(t){var r=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,r.get?r:{enumerable:!0,get:function(){return e[t]}})})),n}var Ke=Object.prototype;var Je=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||Ke)};var Xe=function(e,t){return function(n){return e(t(n))}}(Object.keys,Object),Qe=Je,et=Xe,tt=Object.prototype.hasOwnProperty;var nt=function(e){if(!Qe(e))return et(e);var t=[];for(var n in Object(e))tt.call(e,n)&&"constructor"!=n&&t.push(n);return t},rt="object"==typeof We&&We&&We.Object===Object&&We,it=rt,at="object"==typeof self&&self&&self.Object===Object&&self,ot=it||at||Function("return this")(),st=ot.Symbol,ut=st,lt=Object.prototype,ct=lt.hasOwnProperty,dt=lt.toString,ft=ut?ut.toStringTag:void 0;var ht=function(e){var t=ct.call(e,ft),n=e[ft];try{e[ft]=void 0;var r=!0}catch(e){}var i=dt.call(e);return r&&(t?e[ft]=n:delete e[ft]),i},pt=Object.prototype.toString;var mt=ht,_t=function(e){return pt.call(e)},yt=st?st.toStringTag:void 0;var gt=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":yt&&yt in Object(e)?mt(e):_t(e)};var vt=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},At=gt,Et=vt;var bt,St=function(e){if(!Et(e))return!1;var t=At(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t},Mt=ot["__core-js_shared__"],Tt=(bt=/[^.]+$/.exec(Mt&&Mt.keys&&Mt.keys.IE_PROTO||""))?"Symbol(src)_1."+bt:"";var wt=function(e){return!!Tt&&Tt in e},Ot=Function.prototype.toString;var Nt=function(e){if(null!=e){try{return Ot.call(e)}catch(e){}try{return e+""}catch(e){}}return""},Ct=St,Lt=wt,Dt=vt,$t=Nt,xt=/^\[object .+?Constructor\]$/,It=Function.prototype,kt=Object.prototype,zt=It.toString,Rt=kt.hasOwnProperty,Zt=RegExp("^"+zt.call(Rt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var Pt=function(e,t){return null==e?void 0:e[t]},Ft=function(e){return!(!Dt(e)||Lt(e))&&(Ct(e)?Zt:xt).test($t(e))},Ut=Pt;var Bt=function(e,t){var n=Ut(e,t);return Ft(n)?n:void 0},Vt=Bt(ot,"DataView"),jt=Bt(ot,"Map"),Ht=Vt,Yt=jt,Gt=Bt(ot,"Promise"),Wt=Bt(ot,"Set"),qt=Bt(ot,"WeakMap"),Kt=gt,Jt=Nt,Xt="[object Map]",Qt="[object Promise]",en="[object Set]",tn="[object WeakMap]",nn="[object DataView]",rn=Jt(Ht),an=Jt(Yt),on=Jt(Gt),sn=Jt(Wt),un=Jt(qt),ln=Kt;(Ht&&ln(new Ht(new ArrayBuffer(1)))!=nn||Yt&&ln(new Yt)!=Xt||Gt&&ln(Gt.resolve())!=Qt||Wt&&ln(new Wt)!=en||qt&&ln(new qt)!=tn)&&(ln=function(e){var t=Kt(e),n="[object Object]"==t?e.constructor:void 0,r=n?Jt(n):"";if(r)switch(r){case rn:return nn;case an:return Xt;case on:return Qt;case sn:return en;case un:return tn}return t});var cn=ln;var dn=function(e){return null!=e&&"object"==typeof e},fn=gt,hn=dn;var pn=function(e){return hn(e)&&"[object Arguments]"==fn(e)},mn=dn,_n=Object.prototype,yn=_n.hasOwnProperty,gn=_n.propertyIsEnumerable,vn=pn(function(){return arguments}())?pn:function(e){return mn(e)&&yn.call(e,"callee")&&!gn.call(e,"callee")},An=Array.isArray;var En=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},bn=St,Sn=En;var Mn=function(e){return null!=e&&Sn(e.length)&&!bn(e)},Tn={exports:{}};var wn=function(){return!1};!function(e,t){var n=ot,r=wn,i=t&&!t.nodeType&&t,a=i&&e&&!e.nodeType&&e,o=a&&a.exports===i?n.Buffer:void 0,s=(o?o.isBuffer:void 0)||r;e.exports=s}(Tn,Tn.exports);var On=gt,Nn=En,Cn=dn,Ln={};Ln["[object Float32Array]"]=Ln["[object Float64Array]"]=Ln["[object Int8Array]"]=Ln["[object Int16Array]"]=Ln["[object Int32Array]"]=Ln["[object Uint8Array]"]=Ln["[object Uint8ClampedArray]"]=Ln["[object Uint16Array]"]=Ln["[object Uint32Array]"]=!0,Ln["[object Arguments]"]=Ln["[object Array]"]=Ln["[object ArrayBuffer]"]=Ln["[object Boolean]"]=Ln["[object DataView]"]=Ln["[object Date]"]=Ln["[object Error]"]=Ln["[object Function]"]=Ln["[object Map]"]=Ln["[object Number]"]=Ln["[object Object]"]=Ln["[object RegExp]"]=Ln["[object Set]"]=Ln["[object String]"]=Ln["[object WeakMap]"]=!1;var Dn=function(e){return Cn(e)&&Nn(e.length)&&!!Ln[On(e)]};var $n=function(e){return function(t){return e(t)}},xn={exports:{}};!function(e,t){var n=rt,r=t&&!t.nodeType&&t,i=r&&e&&!e.nodeType&&e,a=i&&i.exports===r&&n.process,o=function(){try{var e=i&&i.require&&i.require("util").types;return e||a&&a.binding&&a.binding("util")}catch(e){}}();e.exports=o}(xn,xn.exports);var In=Dn,kn=$n,zn=xn.exports,Rn=zn&&zn.isTypedArray,Zn=Rn?kn(Rn):In,Pn=nt,Fn=cn,Un=vn,Bn=An,Vn=Mn,jn=Tn.exports,Hn=Je,Yn=Zn,Gn=Object.prototype.hasOwnProperty;var Wn=function(e){if(null==e)return!0;if(Vn(e)&&(Bn(e)||"string"==typeof e||"function"==typeof e.splice||jn(e)||Yn(e)||Un(e)))return!e.length;var t=Fn(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(Hn(e))return!Pn(e).length;for(var n in e)if(Gn.call(e,n))return!1;return!0},qn=Object.prototype.hasOwnProperty;function Kn(e,t,n){for(n of e.keys())if(Jn(n,t))return n}function Jn(e,t){var n,r,i;if(e===t)return!0;if(e&&t&&(n=e.constructor)===t.constructor){if(n===Date)return e.getTime()===t.getTime();if(n===RegExp)return e.toString()===t.toString();if(n===Array){if((r=e.length)===t.length)for(;r--&&Jn(e[r],t[r]););return-1===r}if(n===Set){if(e.size!==t.size)return!1;for(r of e){if((i=r)&&"object"==typeof i&&!(i=Kn(t,i)))return!1;if(!t.has(i))return!1}return!0}if(n===Map){if(e.size!==t.size)return!1;for(r of e){if((i=r[0])&&"object"==typeof i&&!(i=Kn(t,i)))return!1;if(!Jn(r[1],t.get(i)))return!1}return!0}if(n===ArrayBuffer)e=new Uint8Array(e),t=new Uint8Array(t);else if(n===DataView){if((r=e.byteLength)===t.byteLength)for(;r--&&e.getInt8(r)===t.getInt8(r););return-1===r}if(ArrayBuffer.isView(e)){if((r=e.byteLength)===t.byteLength)for(;r--&&e[r]===t[r];);return-1===r}if(!n||"object"==typeof e){for(n in r=0,e){if(qn.call(e,n)&&++r&&!qn.call(t,n))return!1;if(!(n in t)||!Jn(e[n],t[n]))return!1}return Object.keys(t).length===r}}return e!=e&&t!=t}function Xn(e){return null==e||/^[sbn]/.test(typeof e)}function Qn(e){var t=y.useRef(e),n=y.useRef(0);return Jn(e,t.current)||(t.current=e,n.current+=1),y.useMemo((function(){return t.current}),[n.current])}function er(e,t){return"production"!==process.env.NODE_ENV&&function(e){if(!e||!e.length)throw new Error("useDeepCompareEffect should not be used with no dependencies. Use React.useEffect instead.");if(e.every(Xn))throw new Error("useDeepCompareEffect should not be used with dependencies that are all primitive values. Use React.useEffect instead.")}(t),y.useEffect(e,Qn(t))}function tr(e,t){return y.useEffect(e,Qn(t))}
|
|
2
|
-
//! @version @js-joda/core - 5.5.3
|
|
3
|
-
//! @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors
|
|
4
|
-
//! @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
5
|
-
//! @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
6
|
-
/**
|
|
7
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
8
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
9
|
-
*/function nr(e,t,n){function r(e){Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,t&&t.apply(this,arguments),this.toString=function(){return this.name+": "+this.message}}return void 0===n&&(n=Error),r.prototype=Object.create(n.prototype),r.prototype.name=e,r.prototype.constructor=r,r}var rr=nr("DateTimeException",(function(e,t){void 0===t&&(t=null);var n=e||this.name;null!==t&&t instanceof Error&&(n+="\n-------\nCaused by: "+t.stack+"\n-------\n");this.message=n})),ir=nr("DateTimeParseException",(function(e,t,n,r){void 0===t&&(t="");void 0===n&&(n=0);void 0===r&&(r=null);var i=e||this.name;i+=": "+t+", at index: "+n,null!==r&&r instanceof Error&&(i+="\n-------\nCaused by: "+r.stack+"\n-------\n");this.message=i,this.parsedString=function(){return t},this.errorIndex=function(){return n}})),ar=nr("UnsupportedTemporalTypeException",null,rr),or=nr("ArithmeticException"),sr=nr("IllegalArgumentException"),ur=nr("IllegalStateException"),lr=nr("NullPointerException");function cr(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,dr(e,t)}function dr(e,t){return dr=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},dr(e,t)}function fr(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}
|
|
10
|
-
/**
|
|
11
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
12
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
13
|
-
*/function hr(e,t,n){if(!e)throw n?new n(t):new Error(t)}function pr(e,t){if(null==e)throw new lr(t+" must not be null");return e}function mr(e,t,n){if(!(e instanceof t))throw new sr(n+" must be an instance of "+(t.name?t.name:t)+(e&&e.constructor&&e.constructor.name?", but is "+e.constructor.name:""));return e}function _r(e){throw new TypeError('abstract method "'+e+'" is not implemented')}var yr=Object.freeze({__proto__:null,assert:hr,requireNonNull:pr,requireInstance:mr,abstractMethodFail:_r}),gr=9007199254740991,vr=-9007199254740991,Ar=function(){function e(){}return e.intDiv=function(t,n){var r=t/n;return r=e.roundDown(r),e.safeZero(r)},e.intMod=function(t,n){var r=t-e.intDiv(t,n)*n;return r=e.roundDown(r),e.safeZero(r)},e.roundDown=function(e){return e<0?Math.ceil(e):Math.floor(e)},e.floorDiv=function(t,n){var r=Math.floor(t/n);return e.safeZero(r)},e.floorMod=function(t,n){var r=t-e.floorDiv(t,n)*n;return e.safeZero(r)},e.safeAdd=function(t,n){if(e.verifyInt(t),e.verifyInt(n),0===t)return e.safeZero(n);if(0===n)return e.safeZero(t);var r=e.safeToInt(t+n);if(r===t||r===n)throw new or("Invalid addition beyond MAX_SAFE_INTEGER!");return r},e.safeSubtract=function(t,n){return e.verifyInt(t),e.verifyInt(n),0===t&&0===n?0:0===t?e.safeZero(-1*n):0===n?e.safeZero(t):e.safeToInt(t-n)},e.safeMultiply=function(t,n){if(e.verifyInt(t),e.verifyInt(n),1===t)return e.safeZero(n);if(1===n)return e.safeZero(t);if(0===t||0===n)return 0;var r=e.safeToInt(t*n);if(r/n!==t||t===vr&&-1===n||n===vr&&-1===t)throw new or("Multiplication overflows: "+t+" * "+n);return r},e.parseInt=function(e){function t(t){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(t){var n=parseInt(t);return e.safeToInt(n)})),e.safeToInt=function(t){return e.verifyInt(t),e.safeZero(t)},e.verifyInt=function(e){if(null==e)throw new or("Invalid value: '"+e+"', using null or undefined as argument");if(isNaN(e))throw new or("Invalid int value, using NaN as argument");if(e%1!=0)throw new or("Invalid value: '"+e+"' is a float");if(e>gr||e<vr)throw new or("Calculation overflows an int: "+e)},e.safeZero=function(e){return 0===e?0:+e},e.compareNumbers=function(e,t){return e<t?-1:e>t?1:0},e.smi=function(e){return e>>>1&1073741824|3221225471&e},e.hash=function(t){if(t!=t||t===1/0)return 0;for(var n=t;t>4294967295;)n^=t/=4294967295;return e.smi(n)},e.hashCode=function(){for(var t=17,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];for(var a=0,o=r;a<o.length;a++){var s=o[a];t=(t<<5)-t+e.hash(s)}return e.hash(t)},e}();
|
|
14
|
-
/**
|
|
15
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
16
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
17
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
18
|
-
*/Ar.MAX_SAFE_INTEGER=gr,Ar.MIN_SAFE_INTEGER=vr;
|
|
19
|
-
/**
|
|
20
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
21
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
22
|
-
*/
|
|
23
|
-
var Er=function(){function e(e){this._name=e}var t=e.prototype;return t.equals=function(e){return this===e},t.toString=function(){return this._name},t.toJSON=function(){return this.toString()},e}(),br=function(){function e(){}var t=e.prototype;return t.get=function(e){_r("get")},t.units=function(){_r("units")},t.addTo=function(e){_r("addTo")},t.subtractFrom=function(e){_r("subtractFrom")},e}();
|
|
24
|
-
/*
|
|
25
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
26
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
27
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
28
|
-
*/"undefined"!=typeof Symbol&&Symbol.toPrimitive&&(br.prototype[Symbol.toPrimitive]=function(e){if("number"!==e)return this.toString();throw new TypeError("A conversion from TemporalAmount to a number is not allowed. To compare use the methods .equals(), .compareTo(), .isBefore() or one that is more suitable to your use case.")})
|
|
29
|
-
/*
|
|
30
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
31
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
32
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
33
|
-
*/;var Sr=function(){function e(){}var t=e.prototype;return t.duration=function(){_r("duration")},t.isDurationEstimated=function(){_r("isDurationEstimated")},t.isDateBased=function(){_r("isDateBased")},t.isTimeBased=function(){_r("isTimeBased")},t.isSupportedBy=function(e){_r("isSupportedBy")},t.addTo=function(e,t){_r("addTo")},t.between=function(e,t){_r("between")},e}(),Mr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._seconds=Ar.safeToInt(t),r._nanos=Ar.safeToInt(n),r}cr(t,e),t.ofDays=function(e){return t._create(Ar.safeMultiply(e,ca.SECONDS_PER_DAY),0)},t.ofHours=function(e){return t._create(Ar.safeMultiply(e,ca.SECONDS_PER_HOUR),0)},t.ofMinutes=function(e){return t._create(Ar.safeMultiply(e,ca.SECONDS_PER_MINUTE),0)},t.ofSeconds=function(e,n){void 0===n&&(n=0);var r=Ar.safeAdd(e,Ar.floorDiv(n,ca.NANOS_PER_SECOND)),i=Ar.floorMod(n,ca.NANOS_PER_SECOND);return t._create(r,i)},t.ofMillis=function(e){var n=Ar.intDiv(e,1e3),r=Ar.intMod(e,1e3);return r<0&&(r+=1e3,n--),t._create(n,1e6*r)},t.ofNanos=function(e){var t=Ar.intDiv(e,ca.NANOS_PER_SECOND),n=Ar.intMod(e,ca.NANOS_PER_SECOND);return n<0&&(n+=ca.NANOS_PER_SECOND,t--),this._create(t,n)},t.of=function(e,n){return t.ZERO.plus(e,n)},t.from=function(e){pr(e,"amount"),mr(e,br);var n=t.ZERO;return e.units().forEach((function(t){n=n.plus(e.get(t),t)})),n},t.between=function(e,t){pr(e,"startInclusive"),pr(t,"endExclusive");var n=e.until(t,wr.SECONDS),r=0;if(e.isSupported(Cr.NANO_OF_SECOND)&&t.isSupported(Cr.NANO_OF_SECOND))try{var i=e.getLong(Cr.NANO_OF_SECOND);if(r=t.getLong(Cr.NANO_OF_SECOND)-i,n>0&&r<0)r+=ca.NANOS_PER_SECOND;else if(n<0&&r>0)r-=ca.NANOS_PER_SECOND;else if(0===n&&0!==r){var a=t.with(Cr.NANO_OF_SECOND,i);n=e.until(a,wr.SECONDS)}}catch(e){}return this.ofSeconds(n,r)},t.parse=function(e){pr(e,"text");var n=new RegExp("([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?","i").exec(e);if(null!==n&&"T"===n[3]==!1){var r="-"===n[1],i=n[2],a=n[4],o=n[5],s=n[6],u=n[7];if(null!=i||null!=a||null!=o||null!=s){var l=t._parseNumber(e,i,ca.SECONDS_PER_DAY,"days"),c=t._parseNumber(e,a,ca.SECONDS_PER_HOUR,"hours"),d=t._parseNumber(e,o,ca.SECONDS_PER_MINUTE,"minutes"),f=t._parseNumber(e,s,1,"seconds"),h=null!=s&&"-"===s.charAt(0),p=t._parseFraction(e,u,h?-1:1);try{return t._create(r,l,c,d,f,p)}catch(t){throw new ir("Text cannot be parsed to a Duration: overflow",e,0,t)}}}throw new ir("Text cannot be parsed to a Duration",e,0)},t._parseNumber=function(e,t,n,r){if(null==t)return 0;try{return"+"===t[0]&&(t=t.substring(1)),Ar.safeMultiply(parseFloat(t),n)}catch(t){throw new ir("Text cannot be parsed to a Duration: "+r,e,0,t)}},t._parseFraction=function(e,t,n){return null==t||0===t.length?0:(t=(t+"000000000").substring(0,9),parseFloat(t)*n)},t._create=function(){return arguments.length<=2?t._createSecondsNanos(arguments[0],arguments[1]):t._createNegateDaysHoursMinutesSecondsNanos(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])},t._createNegateDaysHoursMinutesSecondsNanos=function(e,n,r,i,a,o){var s=Ar.safeAdd(n,Ar.safeAdd(r,Ar.safeAdd(i,a)));return e?t.ofSeconds(s,o).negated():t.ofSeconds(s,o)},t._createSecondsNanos=function(e,n){return void 0===e&&(e=0),void 0===n&&(n=0),0===e&&0===n?t.ZERO:new t(e,n)};var n=t.prototype;return n.get=function(e){if(e===wr.SECONDS)return this._seconds;if(e===wr.NANOS)return this._nanos;throw new ar("Unsupported unit: "+e)},n.units=function(){return[wr.SECONDS,wr.NANOS]},n.isZero=function(){return 0===this._seconds&&0===this._nanos},n.isNegative=function(){return this._seconds<0},n.seconds=function(){return this._seconds},n.nano=function(){return this._nanos},n.withSeconds=function(e){return t._create(e,this._nanos)},n.withNanos=function(e){return Cr.NANO_OF_SECOND.checkValidIntValue(e),t._create(this._seconds,e)},n.plusDuration=function(e){return pr(e,"duration"),this.plus(e.seconds(),e.nano())},n.plus=function(e,t){return 1===arguments.length?this.plusDuration(e):2===arguments.length&&t instanceof Sr?this.plusAmountUnit(e,t):this.plusSecondsNanos(e,t)},n.plusAmountUnit=function(e,t){if(pr(e,"amountToAdd"),pr(t,"unit"),t===wr.DAYS)return this.plusSecondsNanos(Ar.safeMultiply(e,ca.SECONDS_PER_DAY),0);if(t.isDurationEstimated())throw new ar("Unit must not have an estimated duration");if(0===e)return this;if(t instanceof wr){switch(t){case wr.NANOS:return this.plusNanos(e);case wr.MICROS:return this.plusSecondsNanos(1e3*Ar.intDiv(e,1e9),1e3*Ar.intMod(e,1e9));case wr.MILLIS:return this.plusMillis(e);case wr.SECONDS:return this.plusSeconds(e)}return this.plusSecondsNanos(Ar.safeMultiply(t.duration().seconds(),e),0)}var n=t.duration().multipliedBy(e);return this.plusSecondsNanos(n.seconds(),n.nano())},n.plusDays=function(e){return this.plusSecondsNanos(Ar.safeMultiply(e,ca.SECONDS_PER_DAY),0)},n.plusHours=function(e){return this.plusSecondsNanos(Ar.safeMultiply(e,ca.SECONDS_PER_HOUR),0)},n.plusMinutes=function(e){return this.plusSecondsNanos(Ar.safeMultiply(e,ca.SECONDS_PER_MINUTE),0)},n.plusSeconds=function(e){return this.plusSecondsNanos(e,0)},n.plusMillis=function(e){return this.plusSecondsNanos(Ar.intDiv(e,1e3),1e6*Ar.intMod(e,1e3))},n.plusNanos=function(e){return this.plusSecondsNanos(0,e)},n.plusSecondsNanos=function(e,n){if(pr(e,"secondsToAdd"),pr(n,"nanosToAdd"),0===e&&0===n)return this;var r=Ar.safeAdd(this._seconds,e);r=Ar.safeAdd(r,Ar.intDiv(n,ca.NANOS_PER_SECOND)),n=Ar.intMod(n,ca.NANOS_PER_SECOND);var i=Ar.safeAdd(this._nanos,n);return t.ofSeconds(r,i)},n.minus=function(e,t){return 1===arguments.length?this.minusDuration(e):this.minusAmountUnit(e,t)},n.minusDuration=function(e){pr(e,"duration");var t=e.seconds(),n=e.nano();return t===vr?this.plus(gr,-n):this.plus(-t,-n)},n.minusAmountUnit=function(e,t){return pr(e,"amountToSubtract"),pr(t,"unit"),e===vr?this.plusAmountUnit(gr,t):this.plusAmountUnit(-e,t)},n.minusDays=function(e){return e===vr?this.plusDays(gr):this.plusDays(-e)},n.minusHours=function(e){return e===vr?this.plusHours(gr):this.plusHours(-e)},n.minusMinutes=function(e){return e===vr?this.plusMinutes(gr):this.plusMinutes(-e)},n.minusSeconds=function(e){return e===vr?this.plusSeconds(gr):this.plusSeconds(-e)},n.minusMillis=function(e){return e===vr?this.plusMillis(gr):this.plusMillis(-e)},n.minusNanos=function(e){return e===vr?this.plusNanos(gr):this.plusNanos(-e)},n.multipliedBy=function(e){if(0===e)return t.ZERO;if(1===e)return this;var n=Ar.safeMultiply(this._seconds,e),r=Ar.safeMultiply(this._nanos,e);return n+=Ar.intDiv(r,ca.NANOS_PER_SECOND),r=Ar.intMod(r,ca.NANOS_PER_SECOND),t.ofSeconds(n,r)},n.dividedBy=function(e){if(0===e)throw new or("Cannot divide by zero");if(1===e)return this;var n=Ar.intDiv(this._seconds,e),r=Ar.roundDown((this._seconds/e-n)*ca.NANOS_PER_SECOND),i=Ar.intDiv(this._nanos,e);return i=r+i,t.ofSeconds(n,i)},n.negated=function(){return this.multipliedBy(-1)},n.abs=function(){return this.isNegative()?this.negated():this},n.addTo=function(e){return pr(e,"temporal"),0!==this._seconds&&(e=e.plus(this._seconds,wr.SECONDS)),0!==this._nanos&&(e=e.plus(this._nanos,wr.NANOS)),e},n.subtractFrom=function(e){return pr(e,"temporal"),0!==this._seconds&&(e=e.minus(this._seconds,wr.SECONDS)),0!==this._nanos&&(e=e.minus(this._nanos,wr.NANOS)),e},n.toDays=function(){return Ar.intDiv(this._seconds,ca.SECONDS_PER_DAY)},n.toHours=function(){return Ar.intDiv(this._seconds,ca.SECONDS_PER_HOUR)},n.toMinutes=function(){return Ar.intDiv(this._seconds,ca.SECONDS_PER_MINUTE)},n.toMillis=function(){var e=Math.round(Ar.safeMultiply(this._seconds,1e3));return e=Ar.safeAdd(e,Ar.intDiv(this._nanos,1e6))},n.toNanos=function(){var e=Ar.safeMultiply(this._seconds,ca.NANOS_PER_SECOND);return e=Ar.safeAdd(e,this._nanos)},n.compareTo=function(e){pr(e,"otherDuration"),mr(e,t,"otherDuration");var n=Ar.compareNumbers(this._seconds,e.seconds());return 0!==n?n:this._nanos-e.nano()},n.equals=function(e){return this===e||e instanceof t&&(this.seconds()===e.seconds()&&this.nano()===e.nano())},n.toString=function(){if(this===t.ZERO)return"PT0S";var e,n=Ar.intDiv(this._seconds,ca.SECONDS_PER_HOUR),r=Ar.intDiv(Ar.intMod(this._seconds,ca.SECONDS_PER_HOUR),ca.SECONDS_PER_MINUTE),i=Ar.intMod(this._seconds,ca.SECONDS_PER_MINUTE),a="PT";if(0!==n&&(a+=n+"H"),0!==r&&(a+=r+"M"),0===i&&0===this._nanos&&a.length>2)return a;if(i<0&&this._nanos>0?a+=-1===i?"-0":i+1:a+=i,this._nanos>0)for(a+=".",a+=e=(e=i<0?""+(2*ca.NANOS_PER_SECOND-this._nanos):""+(ca.NANOS_PER_SECOND+this._nanos)).slice(1,e.length);"0"===a.charAt(a.length-1);)a=a.slice(0,a.length-1);return a+="S"},n.toJSON=function(){return this.toString()},t}(br);
|
|
34
|
-
/*
|
|
35
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
36
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
37
|
-
*/
|
|
38
|
-
var Tr=function(){};var wr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._name=t,r._duration=n,r}cr(t,e);var n=t.prototype;return n.duration=function(){return this._duration},n.isDurationEstimated=function(){return this.isDateBased()||this===t.FOREVER},n.isDateBased=function(){return this.compareTo(t.DAYS)>=0&&this!==t.FOREVER},n.isTimeBased=function(){return this.compareTo(t.DAYS)<0},n.isSupportedBy=function(e){if(this===t.FOREVER)return!1;try{return e.plus(1,this),!0}catch(t){try{return e.plus(-1,this),!0}catch(e){return!1}}},n.addTo=function(e,t){return e.plus(t,this)},n.between=function(e,t){return e.until(t,this)},n.toString=function(){return this._name},n.compareTo=function(e){return this.duration().compareTo(e.duration())},t}(Sr);
|
|
39
|
-
/**
|
|
40
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
41
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
42
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
43
|
-
*/
|
|
44
|
-
var Or=function(){function e(){}var t=e.prototype;return t.isDateBased=function(){_r("isDateBased")},t.isTimeBased=function(){_r("isTimeBased")},t.baseUnit=function(){_r("baseUnit")},t.rangeUnit=function(){_r("rangeUnit")},t.range=function(){_r("range")},t.rangeRefinedBy=function(e){_r("rangeRefinedBy")},t.getFrom=function(e){_r("getFrom")},t.adjustInto=function(e,t){_r("adjustInto")},t.isSupportedBy=function(e){_r("isSupportedBy")},t.displayName=function(){_r("displayName")},t.equals=function(e){_r("equals")},t.name=function(){_r("name")},e}(),Nr=function(){function e(e,t,n,r){hr(!(e>t),"Smallest minimum value '"+e+"' must be less than largest minimum value '"+t+"'",sr),hr(!(n>r),"Smallest maximum value '"+n+"' must be less than largest maximum value '"+r+"'",sr),hr(!(t>r),"Minimum value '"+t+"' must be less than maximum value '"+r+"'",sr),this._minSmallest=e,this._minLargest=t,this._maxLargest=r,this._maxSmallest=n}var t=e.prototype;return t.isFixed=function(){return this._minSmallest===this._minLargest&&this._maxSmallest===this._maxLargest},t.minimum=function(){return this._minSmallest},t.largestMinimum=function(){return this._minLargest},t.maximum=function(){return this._maxLargest},t.smallestMaximum=function(){return this._maxSmallest},t.isValidValue=function(e){return this.minimum()<=e&&e<=this.maximum()},t.checkValidValue=function(e,t){return this.isValidValue(e)?e:hr(!1,null!=t?"Invalid value for "+t+" (valid values "+this.toString()+"): "+e:"Invalid value (valid values "+this.toString()+"): "+e,rr)},t.checkValidIntValue=function(e,t){if(!1===this.isValidIntValue(e))throw new rr("Invalid int value for "+t+": "+e);return e},t.isValidIntValue=function(e){return this.isIntValue()&&this.isValidValue(e)},t.isIntValue=function(){return this.minimum()>=Ar.MIN_SAFE_INTEGER&&this.maximum()<=Ar.MAX_SAFE_INTEGER},t.equals=function(t){return t===this||t instanceof e&&(this._minSmallest===t._minSmallest&&this._minLargest===t._minLargest&&this._maxSmallest===t._maxSmallest&&this._maxLargest===t._maxLargest)},t.hashCode=function(){return Ar.hashCode(this._minSmallest,this._minLargest,this._maxSmallest,this._maxLargest)},t.toString=function(){var e=this.minimum()+(this.minimum()!==this.largestMinimum()?"/"+this.largestMinimum():"");return e+=" - ",e+=this.smallestMaximum()+(this.smallestMaximum()!==this.maximum()?"/"+this.maximum():"")},e.of=function(){return 2===arguments.length?new e(arguments[0],arguments[0],arguments[1],arguments[1]):3===arguments.length?new e(arguments[0],arguments[0],arguments[1],arguments[2]):4===arguments.length?new e(arguments[0],arguments[1],arguments[2],arguments[3]):hr(!1,"Invalid number of arguments "+arguments.length,sr)},e}(),Cr=function(e){function t(t,n,r,i){var a;return(a=e.call(this)||this)._name=t,a._baseUnit=n,a._rangeUnit=r,a._range=i,a}cr(t,e),t.byName=function(e){for(var n in t)if(t[n]&&t[n]instanceof t&&t[n].name()===e)return t[n]};var n=t.prototype;return n.name=function(){return this._name},n.baseUnit=function(){return this._baseUnit},n.rangeUnit=function(){return this._rangeUnit},n.range=function(){return this._range},n.displayName=function(){return this.toString()},n.checkValidValue=function(e){return this.range().checkValidValue(e,this)},n.checkValidIntValue=function(e){return this.range().checkValidIntValue(e,this)},n.isDateBased=function(){return this===t.DAY_OF_WEEK||this===t.ALIGNED_DAY_OF_WEEK_IN_MONTH||this===t.ALIGNED_DAY_OF_WEEK_IN_YEAR||this===t.DAY_OF_MONTH||this===t.DAY_OF_YEAR||this===t.EPOCH_DAY||this===t.ALIGNED_WEEK_OF_MONTH||this===t.ALIGNED_WEEK_OF_YEAR||this===t.MONTH_OF_YEAR||this===t.PROLEPTIC_MONTH||this===t.YEAR_OF_ERA||this===t.YEAR||this===t.ERA},n.isTimeBased=function(){return this===t.NANO_OF_SECOND||this===t.NANO_OF_DAY||this===t.MICRO_OF_SECOND||this===t.MICRO_OF_DAY||this===t.MILLI_OF_SECOND||this===t.MILLI_OF_DAY||this===t.SECOND_OF_MINUTE||this===t.SECOND_OF_DAY||this===t.MINUTE_OF_HOUR||this===t.MINUTE_OF_DAY||this===t.HOUR_OF_AMPM||this===t.CLOCK_HOUR_OF_AMPM||this===t.HOUR_OF_DAY||this===t.CLOCK_HOUR_OF_DAY||this===t.AMPM_OF_DAY},n.rangeRefinedBy=function(e){return e.range(this)},n.getFrom=function(e){return e.getLong(this)},n.toString=function(){return this.name()},n.equals=function(e){return this===e},n.adjustInto=function(e,t){return e.with(this,t)},n.isSupportedBy=function(e){return e.isSupported(this)},t}(Or);
|
|
45
|
-
/**
|
|
46
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
47
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
48
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
49
|
-
*/
|
|
50
|
-
/**
|
|
51
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
52
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
53
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
54
|
-
*/
|
|
55
|
-
var Lr=function(){function e(){}return e.zoneId=function(){return e.ZONE_ID},e.chronology=function(){return e.CHRONO},e.precision=function(){return e.PRECISION},e.zone=function(){return e.ZONE},e.offset=function(){return e.OFFSET},e.localDate=function(){return e.LOCAL_DATE},e.localTime=function(){return e.LOCAL_TIME},e}(),Dr=function(){function e(){}var t=e.prototype;return t.query=function(e){return e===Lr.zoneId()||e===Lr.chronology()||e===Lr.precision()?null:e.queryFrom(this)},t.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},t.getLong=function(e){_r("getLong")},t.range=function(e){if(e instanceof Cr){if(this.isSupported(e))return e.range();throw new ar("Unsupported field: "+e)}return e.rangeRefinedBy(this)},t.isSupported=function(e){_r("isSupported")},e}(),$r=function(e){function t(){return e.apply(this,arguments)||this}return cr(t,e),t.prototype.queryFrom=function(e){_r("queryFrom")},t}(Er);
|
|
56
|
-
/**
|
|
57
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
58
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
59
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
60
|
-
*/function xr(e,t){var n=function(e){function t(){return e.apply(this,arguments)||this}return cr(t,e),t}($r);return n.prototype.queryFrom=t,new n(e)}var Ir,kr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._ordinal=t,r._name=n,r}cr(t,e);var n=t.prototype;return n.ordinal=function(){return this._ordinal},n.name=function(){return this._name},t.values=function(){return Ir.slice()},t.valueOf=function(e){for(var n=0;n<Ir.length&&Ir[n].name()!==e;n++);return t.of(n+1)},t.of=function(e){if(e<1||e>7)throw new rr("Invalid value for DayOfWeek: "+e);return Ir[e-1]},t.from=function(e){if(hr(null!=e,"temporal",lr),e instanceof t)return e;try{return t.of(e.get(Cr.DAY_OF_WEEK))}catch(t){throw t instanceof rr?new rr("Unable to obtain DayOfWeek from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""),t):t}},n.value=function(){return this._ordinal+1},n.displayName=function(e,t){throw new sr("Pattern using (localized) text not implemented yet!")},n.isSupported=function(e){return e instanceof Cr?e===Cr.DAY_OF_WEEK:null!=e&&e.isSupportedBy(this)},n.range=function(e){if(e===Cr.DAY_OF_WEEK)return e.range();if(e instanceof Cr)throw new ar("Unsupported field: "+e);return e.rangeRefinedBy(this)},n.get=function(e){return e===Cr.DAY_OF_WEEK?this.value():this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(e===Cr.DAY_OF_WEEK)return this.value();if(e instanceof Cr)throw new ar("Unsupported field: "+e);return e.getFrom(this)},n.plus=function(e){var t=Ar.floorMod(e,7);return Ir[Ar.floorMod(this._ordinal+(t+7),7)]},n.minus=function(e){return this.plus(-1*Ar.floorMod(e,7))},n.query=function(e){return e===Lr.precision()?wr.DAYS:e===Lr.localDate()||e===Lr.localTime()||e===Lr.chronology()||e===Lr.zone()||e===Lr.zoneId()||e===Lr.offset()?null:(hr(null!=e,"query",lr),e.queryFrom(this))},n.adjustInto=function(e){return pr(e,"temporal"),e.with(Cr.DAY_OF_WEEK,this.value())},n.equals=function(e){return this===e},n.toString=function(){return this._name},n.compareTo=function(e){return pr(e,"other"),mr(e,t,"other"),this._ordinal-e._ordinal},n.toJSON=function(){return this.toString()},t}(Dr);var zr,Rr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._value=Ar.safeToInt(t),r._name=n,r}cr(t,e);var n=t.prototype;return n.value=function(){return this._value},n.ordinal=function(){return this._value-1},n.name=function(){return this._name},n.displayName=function(e,t){throw new sr("Pattern using (localized) text not implemented yet!")},n.isSupported=function(e){return null!==e&&(e instanceof Cr?e===Cr.MONTH_OF_YEAR:null!=e&&e.isSupportedBy(this))},n.get=function(e){return e===Cr.MONTH_OF_YEAR?this.value():this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(e===Cr.MONTH_OF_YEAR)return this.value();if(e instanceof Cr)throw new ar("Unsupported field: "+e);return e.getFrom(this)},n.plus=function(e){var n=Ar.intMod(e,12)+12,r=Ar.intMod(this.value()+n,12);return r=0===r?12:r,t.of(r)},n.minus=function(e){return this.plus(-1*Ar.intMod(e,12))},n.length=function(e){switch(this){case t.FEBRUARY:return e?29:28;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.minLength=function(){switch(this){case t.FEBRUARY:return 28;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.maxLength=function(){switch(this){case t.FEBRUARY:return 29;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.firstDayOfYear=function(e){var n=e?1:0;switch(this){case t.JANUARY:return 1;case t.FEBRUARY:return 32;case t.MARCH:return 60+n;case t.APRIL:return 91+n;case t.MAY:return 121+n;case t.JUNE:return 152+n;case t.JULY:return 182+n;case t.AUGUST:return 213+n;case t.SEPTEMBER:return 244+n;case t.OCTOBER:return 274+n;case t.NOVEMBER:return 305+n;case t.DECEMBER:default:return 335+n}},n.firstMonthOfQuarter=function(){switch(this){case t.JANUARY:case t.FEBRUARY:case t.MARCH:return t.JANUARY;case t.APRIL:case t.MAY:case t.JUNE:return t.APRIL;case t.JULY:case t.AUGUST:case t.SEPTEMBER:return t.JULY;case t.OCTOBER:case t.NOVEMBER:case t.DECEMBER:default:return t.OCTOBER}},n.query=function(t){return hr(null!=t,"query() parameter must not be null",rr),t===Lr.chronology()?ea.INSTANCE:t===Lr.precision()?wr.MONTHS:e.prototype.query.call(this,t)},n.toString=function(){switch(this){case t.JANUARY:return"JANUARY";case t.FEBRUARY:return"FEBRUARY";case t.MARCH:return"MARCH";case t.APRIL:return"APRIL";case t.MAY:return"MAY";case t.JUNE:return"JUNE";case t.JULY:return"JULY";case t.AUGUST:return"AUGUST";case t.SEPTEMBER:return"SEPTEMBER";case t.OCTOBER:return"OCTOBER";case t.NOVEMBER:return"NOVEMBER";case t.DECEMBER:return"DECEMBER";default:return"unknown Month, value: "+this.value()}},n.toJSON=function(){return this.toString()},n.adjustInto=function(e){return e.with(Cr.MONTH_OF_YEAR,this.value())},n.compareTo=function(e){return pr(e,"other"),mr(e,t,"other"),this._value-e._value},n.equals=function(e){return this===e},t.valueOf=function(e){for(var n=0;n<zr.length&&zr[n].name()!==e;n++);return t.of(n+1)},t.values=function(){return zr.slice()},t.of=function(e){return(e<1||e>12)&&hr(!1,"Invalid value for MonthOfYear: "+e,rr),zr[e-1]},t.from=function(e){if(e instanceof t)return e;try{return t.of(e.get(Cr.MONTH_OF_YEAR))}catch(t){throw new rr("Unable to obtain Month from TemporalAccessor: "+e+" of type "+(e&&null!=e.constructor?e.constructor.name:""),t)}},t}(Dr);var Zr=/([-+]?)P(?:([-+]?[0-9]+)Y)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)W)?(?:([-+]?[0-9]+)D)?/,Pr=function(e){function t(n,r,i){var a;a=e.call(this)||this;var o=Ar.safeToInt(n),s=Ar.safeToInt(r),u=Ar.safeToInt(i);return 0===o&&0===s&&0===u?(t.ZERO||(a._years=o,a._months=s,a._days=u,t.ZERO=fr(a)),t.ZERO||fr(a)):(a._years=o,a._months=s,a._days=u,a)}cr(t,e),t.ofYears=function(e){return t.create(e,0,0)},t.ofMonths=function(e){return t.create(0,e,0)},t.ofWeeks=function(e){return t.create(0,0,Ar.safeMultiply(e,7))},t.ofDays=function(e){return t.create(0,0,e)},t.of=function(e,n,r){return t.create(e,n,r)},t.from=function(e){if(e instanceof t)return e;pr(e,"amount");for(var n=0,r=0,i=0,a=e.units(),o=0;o<a.length;o++){var s=a[o],u=e.get(s);if(s===wr.YEARS)n=Ar.safeToInt(u);else if(s===wr.MONTHS)r=Ar.safeToInt(u);else{if(s!==wr.DAYS)throw new rr("Unit must be Years, Months or Days, but was "+s);i=Ar.safeToInt(u)}}return t.create(n,r,i)},t.between=function(e,t){return pr(e,"startDate"),pr(t,"endDate"),mr(e,sa,"startDate"),mr(t,sa,"endDate"),e.until(t)},t.parse=function(e){pr(e,"text");try{return t._parse(e)}catch(t){throw t instanceof or?new ir("Text cannot be parsed to a Period",e,0,t):t}},t._parse=function(e){var n=Zr.exec(e);if(null!=n){var r="-"===n[1]?-1:1,i=n[2],a=n[3],o=n[4],s=n[5];if(null!=i||null!=a||null!=o||null!=s){var u=t._parseNumber(e,i,r),l=t._parseNumber(e,a,r),c=t._parseNumber(e,o,r),d=t._parseNumber(e,s,r);return d=Ar.safeAdd(d,Ar.safeMultiply(c,7)),t.create(u,l,d)}}throw new ir("Text cannot be parsed to a Period",e,0)},t._parseNumber=function(e,t,n){if(null==t)return 0;var r=Ar.parseInt(t);return Ar.safeMultiply(r,n)},t.create=function(e,n,r){return new t(e,n,r)};var n=t.prototype;return n.units=function(){return[wr.YEARS,wr.MONTHS,wr.DAYS]},n.chronology=function(){return ea.INSTANCE},n.get=function(e){if(e===wr.YEARS)return this._years;if(e===wr.MONTHS)return this._months;if(e===wr.DAYS)return this._days;throw new ar("Unsupported unit: "+e)},n.isZero=function(){return this===t.ZERO},n.isNegative=function(){return this._years<0||this._months<0||this._days<0},n.years=function(){return this._years},n.months=function(){return this._months},n.days=function(){return this._days},n.withYears=function(e){return e===this._years?this:t.create(e,this._months,this._days)},n.withMonths=function(e){return e===this._months?this:t.create(this._years,e,this._days)},n.withDays=function(e){return e===this._days?this:t.create(this._years,this._months,e)},n.plus=function(e){var n=t.from(e);return t.create(Ar.safeAdd(this._years,n._years),Ar.safeAdd(this._months,n._months),Ar.safeAdd(this._days,n._days))},n.plusYears=function(e){return 0===e?this:t.create(Ar.safeToInt(Ar.safeAdd(this._years,e)),this._months,this._days)},n.plusMonths=function(e){return 0===e?this:t.create(this._years,Ar.safeToInt(Ar.safeAdd(this._months,e)),this._days)},n.plusDays=function(e){return 0===e?this:t.create(this._years,this._months,Ar.safeToInt(Ar.safeAdd(this._days,e)))},n.minus=function(e){var n=t.from(e);return t.create(Ar.safeSubtract(this._years,n._years),Ar.safeSubtract(this._months,n._months),Ar.safeSubtract(this._days,n._days))},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.multipliedBy=function(e){return this===t.ZERO||1===e?this:t.create(Ar.safeMultiply(this._years,e),Ar.safeMultiply(this._months,e),Ar.safeMultiply(this._days,e))},n.negated=function(){return this.multipliedBy(-1)},n.normalized=function(){var e=this.toTotalMonths(),n=Ar.intDiv(e,12),r=Ar.intMod(e,12);return n===this._years&&r===this._months?this:t.create(Ar.safeToInt(n),r,this._days)},n.toTotalMonths=function(){return 12*this._years+this._months},n.addTo=function(e){return pr(e,"temporal"),0!==this._years?e=0!==this._months?e.plus(this.toTotalMonths(),wr.MONTHS):e.plus(this._years,wr.YEARS):0!==this._months&&(e=e.plus(this._months,wr.MONTHS)),0!==this._days&&(e=e.plus(this._days,wr.DAYS)),e},n.subtractFrom=function(e){return pr(e,"temporal"),0!==this._years?e=0!==this._months?e.minus(this.toTotalMonths(),wr.MONTHS):e.minus(this._years,wr.YEARS):0!==this._months&&(e=e.minus(this._months,wr.MONTHS)),0!==this._days&&(e=e.minus(this._days,wr.DAYS)),e},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this._years===n._years&&this._months===n._months&&this._days===n._days}return!1},n.hashCode=function(){return Ar.hashCode(this._years,this._months,this._days)},n.toString=function(){if(this===t.ZERO)return"P0D";var e="P";return 0!==this._years&&(e+=this._years+"Y"),0!==this._months&&(e+=this._months+"M"),0!==this._days&&(e+=this._days+"D"),e},n.toJSON=function(){return this.toString()},t}(br);
|
|
61
|
-
/*
|
|
62
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
63
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
64
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
65
|
-
*/
|
|
66
|
-
var Fr=function(){function e(e){this._index=e,this._errorIndex=-1}var t=e.prototype;return t.getIndex=function(){return this._index},t.setIndex=function(e){this._index=e},t.getErrorIndex=function(){return this._errorIndex},t.setErrorIndex=function(e){this._errorIndex=e},e}(),Ur=function(){function e(){this._map={}}var t=e.prototype;return t.putAll=function(e){for(var t in e._map)this._map[t]=e._map[t];return this},t.containsKey=function(e){return this._map.hasOwnProperty(e.name())&&void 0!==this.get(e)},t.get=function(e){return this._map[e.name()]},t.put=function(e,t){return this.set(e,t)},t.set=function(e,t){return this._map[e.name()]=t,this},t.retainAll=function(e){for(var t={},n=0;n<e.length;n++){var r=e[n].name();t[r]=this._map[r]}return this._map=t,this},t.remove=function(e){var t=e.name(),n=this._map[t];return this._map[t]=void 0,n},t.keySet=function(){return this._map},t.clear=function(){this._map={}},e}(),Br=function(e){function t(){return e.apply(this,arguments)||this}return cr(t,e),t}(Er);
|
|
67
|
-
/*
|
|
68
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
69
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
70
|
-
*/Br.STRICT=new Br("STRICT"),Br.SMART=new Br("SMART"),Br.LENIENT=new Br("LENIENT");var Vr=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.isSupported=function(e){_r("isSupported")},n.minus=function(e,t){return arguments.length<2?this._minusAmount(e):this._minusUnit(e,t)},n._minusAmount=function(e){return pr(e,"amount"),mr(e,br,"amount"),e.subtractFrom(this)},n._minusUnit=function(e,t){return pr(e,"amountToSubtract"),pr(t,"unit"),mr(t,Sr,"unit"),this._plusUnit(-e,t)},n.plus=function(e,t){return arguments.length<2?this._plusAmount(e):this._plusUnit(e,t)},n._plusAmount=function(e){return pr(e,"amount"),mr(e,br,"amount"),e.addTo(this)},n._plusUnit=function(e,t){_r("_plusUnit")},n.until=function(e,t){_r("until")},n.with=function(e,t){return arguments.length<2?this._withAdjuster(e):this._withField(e,t)},n._withAdjuster=function(e){return pr(e,"adjuster"),hr("function"==typeof e.adjustInto,"adjuster must be a TemporalAdjuster",sr),e.adjustInto(this)},n._withField=function(e,t){_r("_withField")},t}(Dr);"undefined"!=typeof Symbol&&Symbol.toPrimitive&&(Vr.prototype[Symbol.toPrimitive]=function(e){if("number"!==e)return this.toString();throw new TypeError("A conversion from Temporal to a number is not allowed. To compare use the methods .equals(), .compareTo(), .isBefore() or one that is more suitable to your use case.")});var jr=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.isSupported=function(e){return e instanceof Cr||e instanceof wr?e.isDateBased():null!=e&&e.isSupportedBy(this)},n.query=function(t){return t===Lr.chronology()?this.chronology():t===Lr.precision()?wr.DAYS:t===Lr.localDate()?sa.ofEpochDay(this.toEpochDay()):t===Lr.localTime()||t===Lr.zone()||t===Lr.zoneId()||t===Lr.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return e.with(Cr.EPOCH_DAY,this.toEpochDay())},n.format=function(e){return pr(e,"formatter"),mr(e,Bi,"formatter"),e.format(this)},t}(Vr),Hr=function(){function e(){}return e.startsWith=function(e,t){return 0===e.indexOf(t)},e.hashCode=function(e){var t=e.length;if(0===t)return 0;for(var n=0,r=0;r<t;r++){n=(n<<5)-n+e.charCodeAt(r),n|=0}return Ar.smi(n)},e}(),Yr=function(){function e(){}e.systemDefault=function(){throw new rr("not supported operation")},e.getAvailableZoneIds=function(){throw new rr("not supported operation")},e.of=function(e){throw new rr("not supported operation"+e)},e.ofOffset=function(e,t){throw new rr("not supported operation"+e+t)},e.from=function(e){throw new rr("not supported operation"+e)};var t=e.prototype;return t.id=function(){_r("ZoneId.id")},t.rules=function(){_r("ZoneId.rules")},t.normalized=function(){var e=this.rules();return e.isFixedOffset()?e.offset(fa.EPOCH):this},t.equals=function(t){return this===t||t instanceof e&&this.id()===t.id()},t.hashCode=function(){return Hr.hashCode(this.id())},t.toString=function(){return this.id()},t.toJSON=function(){return this.toString()},e}(),Gr=function(){function e(){}e.of=function(e){return pr(e,"offset"),new Wr(e)};var t=e.prototype;return t.isFixedOffset=function(){_r("ZoneRules.isFixedOffset")},t.offset=function(e){return e instanceof fa?this.offsetOfInstant(e):this.offsetOfLocalDateTime(e)},t.offsetOfInstant=function(e){_r("ZoneRules.offsetInstant")},t.offsetOfEpochMilli=function(e){_r("ZoneRules.offsetOfEpochMilli")},t.offsetOfLocalDateTime=function(e){_r("ZoneRules.offsetLocalDateTime")},t.validOffsets=function(e){_r("ZoneRules.validOffsets")},t.transition=function(e){_r("ZoneRules.transition")},t.standardOffset=function(e){_r("ZoneRules.standardOffset")},t.daylightSavings=function(e){_r("ZoneRules.daylightSavings")},t.isDaylightSavings=function(e){_r("ZoneRules.isDaylightSavings")},t.isValidOffset=function(e,t){_r("ZoneRules.isValidOffset")},t.nextTransition=function(e){_r("ZoneRules.nextTransition")},t.previousTransition=function(e){_r("ZoneRules.previousTransition")},t.transitions=function(){_r("ZoneRules.transitions")},t.transitionRules=function(){_r("ZoneRules.transitionRules")},t.toString=function(){_r("ZoneRules.toString")},t.toJSON=function(){return this.toString()},e}(),Wr=function(e){function t(t){var n;return(n=e.call(this)||this)._offset=t,n}cr(t,e);var n=t.prototype;return n.isFixedOffset=function(){return!0},n.offsetOfInstant=function(){return this._offset},n.offsetOfEpochMilli=function(){return this._offset},n.offsetOfLocalDateTime=function(){return this._offset},n.validOffsets=function(){return[this._offset]},n.transition=function(){return null},n.standardOffset=function(){return this._offset},n.daylightSavings=function(){return Mr.ZERO},n.isDaylightSavings=function(){return!1},n.isValidOffset=function(e,t){return this._offset.equals(t)},n.nextTransition=function(){return null},n.previousTransition=function(){return null},n.transitions=function(){return[]},n.transitionRules=function(){return[]},n.equals=function(e){return this===e||e instanceof t&&this._offset.equals(e._offset)},n.toString=function(){return"FixedRules:"+this._offset.toString()},t}(Gr),qr={},Kr={},Jr=function(e){function t(n){var r;return r=e.call(this)||this,t._validateTotalSeconds(n),r._totalSeconds=Ar.safeToInt(n),r._rules=Gr.of(fr(r)),r._id=t._buildId(n),r}cr(t,e);var n=t.prototype;return n.totalSeconds=function(){return this._totalSeconds},n.id=function(){return this._id},t._buildId=function(e){if(0===e)return"Z";var t=Math.abs(e),n=Ar.intDiv(t,ca.SECONDS_PER_HOUR),r=Ar.intMod(Ar.intDiv(t,ca.SECONDS_PER_MINUTE),ca.MINUTES_PER_HOUR),i=(e<0?"-":"+")+(n<10?"0":"")+n+(r<10?":0":":")+r,a=Ar.intMod(t,ca.SECONDS_PER_MINUTE);return 0!==a&&(i+=(a<10?":0":":")+a),i},t._validateTotalSeconds=function(e){if(Math.abs(e)>t.MAX_SECONDS)throw new rr("Zone offset not in valid range: -18:00 to +18:00")},t._validate=function(e,t,n){if(e<-18||e>18)throw new rr("Zone offset hours not in valid range: value "+e+" is not in the range -18 to 18");if(e>0){if(t<0||n<0)throw new rr("Zone offset minutes and seconds must be positive because hours is positive")}else if(e<0){if(t>0||n>0)throw new rr("Zone offset minutes and seconds must be negative because hours is negative")}else if(t>0&&n<0||t<0&&n>0)throw new rr("Zone offset minutes and seconds must have the same sign");if(Math.abs(t)>59)throw new rr("Zone offset minutes not in valid range: abs(value) "+Math.abs(t)+" is not in the range 0 to 59");if(Math.abs(n)>59)throw new rr("Zone offset seconds not in valid range: abs(value) "+Math.abs(n)+" is not in the range 0 to 59");if(18===Math.abs(e)&&(Math.abs(t)>0||Math.abs(n)>0))throw new rr("Zone offset not in valid range: -18:00 to +18:00")},t.of=function(e){pr(e,"offsetId");var n,r,i,a=Kr[e];if(null!=a)return a;switch(e.length){case 2:e=e[0]+"0"+e[1];case 3:n=t._parseNumber(e,1,!1),r=0,i=0;break;case 5:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,3,!1),i=0;break;case 6:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,4,!0),i=0;break;case 7:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,3,!1),i=t._parseNumber(e,5,!1);break;case 9:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,4,!0),i=t._parseNumber(e,7,!0);break;default:throw new rr("Invalid ID for ZoneOffset, invalid format: "+e)}var o=e[0];if("+"!==o&&"-"!==o)throw new rr("Invalid ID for ZoneOffset, plus/minus not found when expected: "+e);return"-"===o?t.ofHoursMinutesSeconds(-n,-r,-i):t.ofHoursMinutesSeconds(n,r,i)},t._parseNumber=function(e,t,n){if(n&&":"!==e[t-1])throw new rr("Invalid ID for ZoneOffset, colon not found when expected: "+e);var r=e[t],i=e[t+1];if(r<"0"||r>"9"||i<"0"||i>"9")throw new rr("Invalid ID for ZoneOffset, non numeric characters found: "+e);return 10*(r.charCodeAt(0)-48)+(i.charCodeAt(0)-48)},t.ofHours=function(e){return t.ofHoursMinutesSeconds(e,0,0)},t.ofHoursMinutes=function(e,n){return t.ofHoursMinutesSeconds(e,n,0)},t.ofHoursMinutesSeconds=function(e,n,r){t._validate(e,n,r);var i=e*ca.SECONDS_PER_HOUR+n*ca.SECONDS_PER_MINUTE+r;return t.ofTotalSeconds(i)},t.ofTotalMinutes=function(e){var n=e*ca.SECONDS_PER_MINUTE;return t.ofTotalSeconds(n)},t.ofTotalSeconds=function(e){if(e%(15*ca.SECONDS_PER_MINUTE)==0){var n=e,r=qr[n];return null==r&&(r=new t(e),qr[n]=r,Kr[r.id()]=r),r}return new t(e)},n.rules=function(){return this._rules},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e===Cr.OFFSET_SECONDS)return this._totalSeconds;if(e instanceof Cr)throw new rr("Unsupported field: "+e);return e.getFrom(this)},n.query=function(e){return pr(e,"query"),e===Lr.offset()||e===Lr.zone()?this:e===Lr.localDate()||e===Lr.localTime()||e===Lr.precision()||e===Lr.chronology()||e===Lr.zoneId()?null:e.queryFrom(this)},n.adjustInto=function(e){return e.with(Cr.OFFSET_SECONDS,this._totalSeconds)},n.compareTo=function(e){return pr(e,"other"),e._totalSeconds-this._totalSeconds},n.equals=function(e){return this===e||e instanceof t&&this._totalSeconds===e._totalSeconds},n.hashCode=function(){return this._totalSeconds},n.toString=function(){return this._id},t}(Yr);
|
|
71
|
-
/*
|
|
72
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
73
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
74
|
-
*/var Xr=function(e){function t(){var t;return(t=e.call(this)||this).fieldValues=new Ur,t.chrono=null,t.zone=null,t.date=null,t.time=null,t.leapSecond=!1,t.excessDays=null,t}cr(t,e),t.create=function(e,n){var r=new t;return r._addFieldValue(e,n),r};var n=t.prototype;return n.getFieldValue0=function(e){return this.fieldValues.get(e)},n._addFieldValue=function(e,t){pr(e,"field");var n=this.getFieldValue0(e);if(null!=n&&n!==t)throw new rr("Conflict found: "+e+" "+n+" differs from "+e+" "+t+": "+this);return this._putFieldValue0(e,t)},n._putFieldValue0=function(e,t){return this.fieldValues.put(e,t),this},n.resolve=function(e,t){return null!=t&&this.fieldValues.retainAll(t),this._mergeDate(e),this._mergeTime(e),this._resolveTimeInferZeroes(e),null!=this.excessDays&&!1===this.excessDays.isZero()&&null!=this.date&&null!=this.time&&(this.date=this.date.plus(this.excessDays),this.excessDays=Pr.ZERO),this._resolveInstant(),this},n._mergeDate=function(e){this._checkDate(ea.INSTANCE.resolveDate(this.fieldValues,e))},n._checkDate=function(e){if(null!=e)for(var t in this._addObject(e),this.fieldValues.keySet()){var n=Cr.byName(t);if(n&&void 0!==this.fieldValues.get(n)&&n.isDateBased()){var r=void 0;try{r=e.getLong(n)}catch(e){if(e instanceof rr)continue;throw e}var i=this.fieldValues.get(n);if(r!==i)throw new rr("Conflict found: Field "+n+" "+r+" differs from "+n+" "+i+" derived from "+e)}}},n._mergeTime=function(e){if(this.fieldValues.containsKey(Cr.CLOCK_HOUR_OF_DAY)){var t=this.fieldValues.remove(Cr.CLOCK_HOUR_OF_DAY);e!==Br.LENIENT&&(e===Br.SMART&&0===t||Cr.CLOCK_HOUR_OF_DAY.checkValidValue(t)),this._addFieldValue(Cr.HOUR_OF_DAY,24===t?0:t)}if(this.fieldValues.containsKey(Cr.CLOCK_HOUR_OF_AMPM)){var n=this.fieldValues.remove(Cr.CLOCK_HOUR_OF_AMPM);e!==Br.LENIENT&&(e===Br.SMART&&0===n||Cr.CLOCK_HOUR_OF_AMPM.checkValidValue(n)),this._addFieldValue(Cr.HOUR_OF_AMPM,12===n?0:n)}if(e!==Br.LENIENT&&(this.fieldValues.containsKey(Cr.AMPM_OF_DAY)&&Cr.AMPM_OF_DAY.checkValidValue(this.fieldValues.get(Cr.AMPM_OF_DAY)),this.fieldValues.containsKey(Cr.HOUR_OF_AMPM)&&Cr.HOUR_OF_AMPM.checkValidValue(this.fieldValues.get(Cr.HOUR_OF_AMPM))),this.fieldValues.containsKey(Cr.AMPM_OF_DAY)&&this.fieldValues.containsKey(Cr.HOUR_OF_AMPM)){var r=this.fieldValues.remove(Cr.AMPM_OF_DAY),i=this.fieldValues.remove(Cr.HOUR_OF_AMPM);this._addFieldValue(Cr.HOUR_OF_DAY,12*r+i)}if(this.fieldValues.containsKey(Cr.NANO_OF_DAY)){var a=this.fieldValues.remove(Cr.NANO_OF_DAY);e!==Br.LENIENT&&Cr.NANO_OF_DAY.checkValidValue(a),this._addFieldValue(Cr.SECOND_OF_DAY,Ar.intDiv(a,1e9)),this._addFieldValue(Cr.NANO_OF_SECOND,Ar.intMod(a,1e9))}if(this.fieldValues.containsKey(Cr.MICRO_OF_DAY)){var o=this.fieldValues.remove(Cr.MICRO_OF_DAY);e!==Br.LENIENT&&Cr.MICRO_OF_DAY.checkValidValue(o),this._addFieldValue(Cr.SECOND_OF_DAY,Ar.intDiv(o,1e6)),this._addFieldValue(Cr.MICRO_OF_SECOND,Ar.intMod(o,1e6))}if(this.fieldValues.containsKey(Cr.MILLI_OF_DAY)){var s=this.fieldValues.remove(Cr.MILLI_OF_DAY);e!==Br.LENIENT&&Cr.MILLI_OF_DAY.checkValidValue(s),this._addFieldValue(Cr.SECOND_OF_DAY,Ar.intDiv(s,1e3)),this._addFieldValue(Cr.MILLI_OF_SECOND,Ar.intMod(s,1e3))}if(this.fieldValues.containsKey(Cr.SECOND_OF_DAY)){var u=this.fieldValues.remove(Cr.SECOND_OF_DAY);e!==Br.LENIENT&&Cr.SECOND_OF_DAY.checkValidValue(u),this._addFieldValue(Cr.HOUR_OF_DAY,Ar.intDiv(u,3600)),this._addFieldValue(Cr.MINUTE_OF_HOUR,Ar.intMod(Ar.intDiv(u,60),60)),this._addFieldValue(Cr.SECOND_OF_MINUTE,Ar.intMod(u,60))}if(this.fieldValues.containsKey(Cr.MINUTE_OF_DAY)){var l=this.fieldValues.remove(Cr.MINUTE_OF_DAY);e!==Br.LENIENT&&Cr.MINUTE_OF_DAY.checkValidValue(l),this._addFieldValue(Cr.HOUR_OF_DAY,Ar.intDiv(l,60)),this._addFieldValue(Cr.MINUTE_OF_HOUR,Ar.intMod(l,60))}if(e!==Br.LENIENT&&(this.fieldValues.containsKey(Cr.MILLI_OF_SECOND)&&Cr.MILLI_OF_SECOND.checkValidValue(this.fieldValues.get(Cr.MILLI_OF_SECOND)),this.fieldValues.containsKey(Cr.MICRO_OF_SECOND)&&Cr.MICRO_OF_SECOND.checkValidValue(this.fieldValues.get(Cr.MICRO_OF_SECOND))),this.fieldValues.containsKey(Cr.MILLI_OF_SECOND)&&this.fieldValues.containsKey(Cr.MICRO_OF_SECOND)){var c=this.fieldValues.remove(Cr.MILLI_OF_SECOND),d=this.fieldValues.get(Cr.MICRO_OF_SECOND);this._putFieldValue0(Cr.MICRO_OF_SECOND,1e3*c+Ar.intMod(d,1e3))}if(this.fieldValues.containsKey(Cr.MICRO_OF_SECOND)&&this.fieldValues.containsKey(Cr.NANO_OF_SECOND)){var f=this.fieldValues.get(Cr.NANO_OF_SECOND);this._putFieldValue0(Cr.MICRO_OF_SECOND,Ar.intDiv(f,1e3)),this.fieldValues.remove(Cr.MICRO_OF_SECOND)}if(this.fieldValues.containsKey(Cr.MILLI_OF_SECOND)&&this.fieldValues.containsKey(Cr.NANO_OF_SECOND)){var h=this.fieldValues.get(Cr.NANO_OF_SECOND);this._putFieldValue0(Cr.MILLI_OF_SECOND,Ar.intDiv(h,1e6)),this.fieldValues.remove(Cr.MILLI_OF_SECOND)}if(this.fieldValues.containsKey(Cr.MICRO_OF_SECOND)){var p=this.fieldValues.remove(Cr.MICRO_OF_SECOND);this._putFieldValue0(Cr.NANO_OF_SECOND,1e3*p)}else if(this.fieldValues.containsKey(Cr.MILLI_OF_SECOND)){var m=this.fieldValues.remove(Cr.MILLI_OF_SECOND);this._putFieldValue0(Cr.NANO_OF_SECOND,1e6*m)}},n._resolveTimeInferZeroes=function(e){var t=this.fieldValues.get(Cr.HOUR_OF_DAY),n=this.fieldValues.get(Cr.MINUTE_OF_HOUR),r=this.fieldValues.get(Cr.SECOND_OF_MINUTE),i=this.fieldValues.get(Cr.NANO_OF_SECOND);if(null!=t&&(null!=n||null==r&&null==i)&&(null==n||null!=r||null==i)){if(e!==Br.LENIENT){if(null!=t){e!==Br.SMART||24!==t||null!=n&&0!==n||null!=r&&0!==r||null!=i&&0!==i||(t=0,this.excessDays=Pr.ofDays(1));var a=Cr.HOUR_OF_DAY.checkValidIntValue(t);if(null!=n){var o=Cr.MINUTE_OF_HOUR.checkValidIntValue(n);if(null!=r){var s=Cr.SECOND_OF_MINUTE.checkValidIntValue(r);if(null!=i){var u=Cr.NANO_OF_SECOND.checkValidIntValue(i);this._addObject(ca.of(a,o,s,u))}else this._addObject(ca.of(a,o,s))}else null==i&&this._addObject(ca.of(a,o))}else null==r&&null==i&&this._addObject(ca.of(a,0))}}else if(null!=t){var l=t;if(null!=n)if(null!=r){null==i&&(i=0);var c=Ar.safeMultiply(l,36e11);c=Ar.safeAdd(c,Ar.safeMultiply(n,6e10)),c=Ar.safeAdd(c,Ar.safeMultiply(r,1e9)),c=Ar.safeAdd(c,i);var d=Ar.floorDiv(c,864e11),f=Ar.floorMod(c,864e11);this._addObject(ca.ofNanoOfDay(f)),this.excessDays=Pr.ofDays(d)}else{var h=Ar.safeMultiply(l,3600);h=Ar.safeAdd(h,Ar.safeMultiply(n,60));var p=Ar.floorDiv(h,86400),m=Ar.floorMod(h,86400);this._addObject(ca.ofSecondOfDay(m)),this.excessDays=Pr.ofDays(p)}else{var _=Ar.safeToInt(Ar.floorDiv(l,24));l=Ar.floorMod(l,24),this._addObject(ca.of(l,0)),this.excessDays=Pr.ofDays(_)}}this.fieldValues.remove(Cr.HOUR_OF_DAY),this.fieldValues.remove(Cr.MINUTE_OF_HOUR),this.fieldValues.remove(Cr.SECOND_OF_MINUTE),this.fieldValues.remove(Cr.NANO_OF_SECOND)}},n._addObject=function(e){e instanceof jr?this.date=e:e instanceof ca&&(this.time=e)},n._resolveInstant=function(){if(null!=this.date&&null!=this.time){var e=this.fieldValues.get(Cr.OFFSET_SECONDS);if(null!=e){var t=Jr.ofTotalSeconds(e),n=this.date.atTime(this.time).atZone(t).getLong(Cr.INSTANT_SECONDS);this.fieldValues.put(Cr.INSTANT_SECONDS,n)}else if(null!=this.zone){var r=this.date.atTime(this.time).atZone(this.zone).getLong(Cr.INSTANT_SECONDS);this.fieldValues.put(Cr.INSTANT_SECONDS,r)}}},n.build=function(e){return e.queryFrom(this)},n.isSupported=function(e){return null!=e&&(this.fieldValues.containsKey(e)&&void 0!==this.fieldValues.get(e)||null!=this.date&&this.date.isSupported(e)||null!=this.time&&this.time.isSupported(e))},n.getLong=function(e){pr(e,"field");var t=this.getFieldValue0(e);if(null==t){if(null!=this.date&&this.date.isSupported(e))return this.date.getLong(e);if(null!=this.time&&this.time.isSupported(e))return this.time.getLong(e);throw new rr("Field not found: "+e)}return t},n.query=function(e){return e===Lr.zoneId()?this.zone:e===Lr.chronology()?this.chrono:e===Lr.localDate()?null!=this.date?sa.from(this.date):null:e===Lr.localTime()?this.time:e===Lr.zone()||e===Lr.offset()?e.queryFrom(this):e===Lr.precision()?null:e.queryFrom(this)},t}(Dr),Qr=function(){function e(){if(1===arguments.length){if(arguments[0]instanceof e)return void this._constructorSelf.apply(this,arguments);this._constructorFormatter.apply(this,arguments)}else this._constructorParam.apply(this,arguments);this._caseSensitive=!0,this._strict=!0,this._parsed=[new ei(this)]}var t=e.prototype;return t._constructorParam=function(e,t,n){this._locale=e,this._symbols=t,this._overrideChronology=n},t._constructorFormatter=function(e){this._locale=e.locale(),this._symbols=e.decimalStyle(),this._overrideChronology=e.chronology()},t._constructorSelf=function(e){this._locale=e._locale,this._symbols=e._symbols,this._overrideChronology=e._overrideChronology,this._overrideZone=e._overrideZone,this._caseSensitive=e._caseSensitive,this._strict=e._strict,this._parsed=[new ei(this)]},t.copy=function(){return new e(this)},t.symbols=function(){return this._symbols},t.isStrict=function(){return this._strict},t.setStrict=function(e){this._strict=e},t.locale=function(){return this._locale},t.setLocale=function(e){this._locale=e},t.startOptional=function(){this._parsed.push(this.currentParsed().copy())},t.endOptional=function(e){e?this._parsed.splice(this._parsed.length-2,1):this._parsed.splice(this._parsed.length-1,1)},t.isCaseSensitive=function(){return this._caseSensitive},t.setCaseSensitive=function(e){this._caseSensitive=e},t.subSequenceEquals=function(e,t,n,r,i){if(t+i>e.length||r+i>n.length)return!1;this.isCaseSensitive()||(e=e.toLowerCase(),n=n.toLowerCase());for(var a=0;a<i;a++){if(e[t+a]!==n[r+a])return!1}return!0},t.charEquals=function(e,t){return this.isCaseSensitive()?e===t:this.charEqualsIgnoreCase(e,t)},t.charEqualsIgnoreCase=function(e,t){return e===t||e.toLowerCase()===t.toLowerCase()},t.setParsedField=function(e,t,n,r){var i=this.currentParsed().fieldValues,a=i.get(e);return i.set(e,t),null!=a&&a!==t?~n:r},t.setParsedZone=function(e){pr(e,"zone"),this.currentParsed().zone=e},t.getParsed=function(e){return this.currentParsed().fieldValues.get(e)},t.toParsed=function(){return this.currentParsed()},t.currentParsed=function(){return this._parsed[this._parsed.length-1]},t.setParsedLeapSecond=function(){this.currentParsed().leapSecond=!0},t.getEffectiveChronology=function(){var e=this.currentParsed().chrono;return null==e&&null==(e=this._overrideChronology)&&(e=ea.INSTANCE),e},e}(),ei=function(e){function t(t){var n;return(n=e.call(this)||this).chrono=null,n.zone=null,n.fieldValues=new Ur,n.leapSecond=!1,n.dateTimeParseContext=t,n}cr(t,e);var n=t.prototype;return n.copy=function(){var e=new t;return e.chrono=this.chrono,e.zone=this.zone,e.fieldValues.putAll(this.fieldValues),e.leapSecond=this.leapSecond,e.dateTimeParseContext=this.dateTimeParseContext,e},n.toString=function(){return this.fieldValues+", "+this.chrono+", "+this.zone},n.isSupported=function(e){return this.fieldValues.containsKey(e)},n.get=function(e){var t=this.fieldValues.get(e);return hr(null!=t),t},n.query=function(t){return t===Lr.chronology()?this.chrono:t===Lr.zoneId()||t===Lr.zone()?this.zone:e.prototype.query.call(this,t)},n.toBuilder=function(){var e=new Xr;return e.fieldValues.putAll(this.fieldValues),e.chrono=this.dateTimeParseContext.getEffectiveChronology(),null!=this.zone?e.zone=this.zone:e.zone=this.overrideZone,e.leapSecond=this.leapSecond,e.excessDays=this.excessDays,e},t}(Vr),ti=function(){function e(t,n,r){2===arguments.length&&arguments[1]instanceof Bi?(this._temporal=e.adjust(t,n),this._locale=n.locale(),this._symbols=n.decimalStyle()):(this._temporal=t,this._locale=n,this._symbols=r),this._optional=0}e.adjust=function(e,t){return e};var t=e.prototype;return t.symbols=function(){return this._symbols},t.startOptional=function(){this._optional++},t.endOptional=function(){this._optional--},t.getValueQuery=function(e){var t=this._temporal.query(e);if(null==t&&0===this._optional)throw new rr("Unable to extract value: "+this._temporal);return t},t.getValue=function(e){try{return this._temporal.getLong(e)}catch(e){if(e instanceof rr&&this._optional>0)return null;throw e}},t.temporal=function(){return this._temporal},t.locale=function(){return this._locale},t.setDateTime=function(e){this._temporal=e},t.setLocale=function(e){this._locale=e},e}(),ni={},ri=[0,90,181,273,0,91,182,274],ii=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n._isIso=function(){return!0},t._getWeekRangeByLocalDate=function(e){var n=t._getWeekBasedYear(e);return Nr.of(1,t._getWeekRangeByYear(n))},t._getWeekRangeByYear=function(e){var t=sa.of(e,1,1);return t.dayOfWeek()===kr.THURSDAY||t.dayOfWeek()===kr.WEDNESDAY&&t.isLeapYear()?53:52},t._getWeek=function(e){var n=e.dayOfWeek().ordinal(),r=e.dayOfYear()-1,i=r+(3-n),a=i-7*Ar.intDiv(i,7)-3;if(a<-3&&(a+=7),r<a)return t._getWeekRangeByLocalDate(e.withDayOfYear(180).minusYears(1)).maximum();var o=Ar.intDiv(r-a,7)+1;return 53===o&&!1===(-3===a||-2===a&&e.isLeapYear())&&(o=1),o},t._getWeekBasedYear=function(e){var t=e.year(),n=e.dayOfYear();if(n<=3)n-e.dayOfWeek().ordinal()<-2&&t--;else if(n>=363){var r=e.dayOfWeek().ordinal();(n=n-363-(e.isLeapYear()?1:0))-r>=0&&t++}return t},n.displayName=function(){return this.toString()},n.resolve=function(){return null},n.name=function(){return this.toString()},t}(Or),ai=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.toString=function(){return"DayOfQuarter"},n.baseUnit=function(){return wr.DAYS},n.rangeUnit=function(){return mi},n.range=function(){return Nr.of(1,90,92)},n.isSupportedBy=function(e){return e.isSupported(Cr.DAY_OF_YEAR)&&e.isSupported(Cr.MONTH_OF_YEAR)&&e.isSupported(Cr.YEAR)&&this._isIso(e)},n.rangeRefinedBy=function(e){if(!1===e.isSupported(this))throw new ar("Unsupported field: DayOfQuarter");var t=e.getLong(di);if(1===t){var n=e.getLong(Cr.YEAR);return ea.isLeapYear(n)?Nr.of(1,91):Nr.of(1,90)}return 2===t?Nr.of(1,91):3===t||4===t?Nr.of(1,92):this.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new ar("Unsupported field: DayOfQuarter");var t=e.get(Cr.DAY_OF_YEAR),n=e.get(Cr.MONTH_OF_YEAR),r=e.getLong(Cr.YEAR);return t-ri[Ar.intDiv(n-1,3)+(ea.isLeapYear(r)?4:0)]},n.adjustInto=function(e,t){var n=this.getFrom(e);return this.range().checkValidValue(t,this),e.with(Cr.DAY_OF_YEAR,e.getLong(Cr.DAY_OF_YEAR)+(t-n))},n.resolve=function(e,t,n){var r=e.get(Cr.YEAR),i=e.get(di);if(null==r||null==i)return null;var a,o=Cr.YEAR.checkValidIntValue(r),s=e.get(ci);if(n===Br.LENIENT){var u=i;a=(a=(a=sa.of(o,1,1)).plusMonths(Ar.safeMultiply(Ar.safeSubtract(u,1),3))).plusDays(Ar.safeSubtract(s,1))}else{var l=di.range().checkValidIntValue(i,di);if(n===Br.STRICT){var c=92;1===l?c=ea.isLeapYear(o)?91:90:2===l&&(c=91),Nr.of(1,c).checkValidValue(s,this)}else this.range().checkValidValue(s,this);a=sa.of(o,3*(l-1)+1,1).plusDays(s-1)}return e.remove(this),e.remove(Cr.YEAR),e.remove(di),a},t}(ii),oi=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.toString=function(){return"QuarterOfYear"},n.baseUnit=function(){return mi},n.rangeUnit=function(){return wr.YEARS},n.range=function(){return Nr.of(1,4)},n.isSupportedBy=function(e){return e.isSupported(Cr.MONTH_OF_YEAR)&&this._isIso(e)},n.rangeRefinedBy=function(e){return this.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new ar("Unsupported field: QuarterOfYear");var t=e.getLong(Cr.MONTH_OF_YEAR);return Ar.intDiv(t+2,3)},n.adjustInto=function(e,t){var n=this.getFrom(e);return this.range().checkValidValue(t,this),e.with(Cr.MONTH_OF_YEAR,e.getLong(Cr.MONTH_OF_YEAR)+3*(t-n))},t}(ii),si=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.toString=function(){return"WeekOfWeekBasedYear"},n.baseUnit=function(){return wr.WEEKS},n.rangeUnit=function(){return pi},n.range=function(){return Nr.of(1,52,53)},n.isSupportedBy=function(e){return e.isSupported(Cr.EPOCH_DAY)&&this._isIso(e)},n.rangeRefinedBy=function(e){if(!1===e.isSupported(this))throw new ar("Unsupported field: WeekOfWeekBasedYear");return ii._getWeekRangeByLocalDate(sa.from(e))},n.getFrom=function(e){if(!1===e.isSupported(this))throw new ar("Unsupported field: WeekOfWeekBasedYear");return ii._getWeek(sa.from(e))},n.adjustInto=function(e,t){return this.range().checkValidValue(t,this),e.plus(Ar.safeSubtract(t,this.getFrom(e)),wr.WEEKS)},n.resolve=function(e,t,n){var r=e.get(hi),i=e.get(Cr.DAY_OF_WEEK);if(null==r||null==i)return null;var a,o=hi.range().checkValidIntValue(r,hi),s=e.get(fi);if(n===Br.LENIENT){var u=i,l=0;u>7?(l=Ar.intDiv(u-1,7),u=Ar.intMod(u-1,7)+1):u<1&&(l=Ar.intDiv(u,7)-1,u=Ar.intMod(u,7)+7),a=sa.of(o,1,4).plusWeeks(s-1).plusWeeks(l).with(Cr.DAY_OF_WEEK,u)}else{var c=Cr.DAY_OF_WEEK.checkValidIntValue(i);if(n===Br.STRICT){var d=sa.of(o,1,4);ii._getWeekRangeByLocalDate(d).checkValidValue(s,this)}else this.range().checkValidValue(s,this);a=sa.of(o,1,4).plusWeeks(s-1).with(Cr.DAY_OF_WEEK,c)}return e.remove(this),e.remove(hi),e.remove(Cr.DAY_OF_WEEK),a},n.displayName=function(){return"Week"},t}(ii),ui=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.toString=function(){return"WeekBasedYear"},n.baseUnit=function(){return pi},n.rangeUnit=function(){return wr.FOREVER},n.range=function(){return Cr.YEAR.range()},n.isSupportedBy=function(e){return e.isSupported(Cr.EPOCH_DAY)&&this._isIso(e)},n.rangeRefinedBy=function(e){return Cr.YEAR.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new ar("Unsupported field: WeekBasedYear");return ii._getWeekBasedYear(sa.from(e))},n.adjustInto=function(e,t){if(!1===this.isSupportedBy(e))throw new ar("Unsupported field: WeekBasedYear");var n=this.range().checkValidIntValue(t,hi),r=sa.from(e),i=r.get(Cr.DAY_OF_WEEK),a=ii._getWeek(r);53===a&&52===ii._getWeekRangeByYear(n)&&(a=52);var o=sa.of(n,1,4),s=i-o.get(Cr.DAY_OF_WEEK)+7*(a-1);return o=o.plusDays(s),e.with(o)},t}(ii),li=function(e){function t(t,n){var r;return(r=e.call(this)||this)._name=t,r._duration=n,r}cr(t,e);var n=t.prototype;return n.duration=function(){return this._duration},n.isDurationEstimated=function(){return!0},n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n.isSupportedBy=function(e){return e.isSupported(Cr.EPOCH_DAY)},n.addTo=function(e,t){switch(this){case pi:var n=Ar.safeAdd(e.get(hi),t);return e.with(hi,n);case mi:return e.plus(Ar.intDiv(t,256),wr.YEARS).plus(3*Ar.intMod(t,256),wr.MONTHS);default:throw new ur("Unreachable")}},n.between=function(e,t){switch(this){case pi:return Ar.safeSubtract(t.getLong(hi),e.getLong(hi));case mi:return Ar.intDiv(e.until(t,wr.MONTHS),3);default:throw new ur("Unreachable")}},n.toString=function(){return this._name},t}(Sr),ci=null,di=null,fi=null,hi=null,pi=null,mi=null;
|
|
75
|
-
/**
|
|
76
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
77
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
78
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
79
|
-
*/
|
|
80
|
-
var _i=function(){function e(e,t,n,r){this._zeroDigit=e,this._zeroDigitCharCode=e.charCodeAt(0),this._positiveSign=t,this._negativeSign=n,this._decimalSeparator=r}var t=e.prototype;return t.positiveSign=function(){return this._positiveSign},t.withPositiveSign=function(t){return t===this._positiveSign?this:new e(this._zeroDigit,t,this._negativeSign,this._decimalSeparator)},t.negativeSign=function(){return this._negativeSign},t.withNegativeSign=function(t){return t===this._negativeSign?this:new e(this._zeroDigit,this._positiveSign,t,this._decimalSeparator)},t.zeroDigit=function(){return this._zeroDigit},t.withZeroDigit=function(t){return t===this._zeroDigit?this:new e(t,this._positiveSign,this._negativeSign,this._decimalSeparator)},t.decimalSeparator=function(){return this._decimalSeparator},t.withDecimalSeparator=function(t){return t===this._decimalSeparator?this:new e(this._zeroDigit,this._positiveSign,this._negativeSign,t)},t.convertToDigit=function(e){var t=e.charCodeAt(0)-this._zeroDigitCharCode;return t>=0&&t<=9?t:-1},t.convertNumberToI18N=function(e){if("0"===this._zeroDigit)return e;for(var t=this._zeroDigitCharCode-"0".charCodeAt(0),n="",r=0;r<e.length;r++)n+=String.fromCharCode(e.charCodeAt(r)+t);return n},t.equals=function(t){return this===t||t instanceof e&&(this._zeroDigit===t._zeroDigit&&this._positiveSign===t._positiveSign&&this._negativeSign===t._negativeSign&&this._decimalSeparator===t._decimalSeparator)},t.hashCode=function(){return this._zeroDigit+this._positiveSign+this._negativeSign+this._decimalSeparator},t.toString=function(){return"DecimalStyle["+this._zeroDigit+this._positiveSign+this._negativeSign+this._decimalSeparator+"]"},e.of=function(){throw new Error("not yet supported")},e.availableLocales=function(){throw new Error("not yet supported")},e}();_i.STANDARD=new _i("0","+","-",".");var yi=function(e){function t(){return e.apply(this,arguments)||this}return cr(t,e),t.prototype.parse=function(e,n,r){switch(this){case t.NORMAL:return!e||!n;case t.ALWAYS:case t.EXCEEDS_PAD:return!0;default:return!n&&!r}},t}(Er);yi.NORMAL=new yi("NORMAL"),yi.NEVER=new yi("NEVER"),yi.ALWAYS=new yi("ALWAYS"),yi.EXCEEDS_PAD=new yi("EXCEEDS_PAD"),yi.NOT_NEGATIVE=new yi("NOT_NEGATIVE");var gi=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.isStandalone=function(){switch(this){case t.FULL_STANDALONE:case t.SHORT_STANDALONE:case t.NARROW_STANDALONE:return!0;default:return!1}},n.asStandalone=function(){switch(this){case t.FULL:return t.FULL_STANDALONE;case t.SHORT:return t.SHORT_STANDALONE;case t.NARROW:return t.NARROW_STANDALONE;default:return this}},n.asNormal=function(){switch(this){case t.FULL_STANDALONE:return t.FULL;case t.SHORT_STANDALONE:return t.SHORT;case t.NARROW_STANDALONE:return t.NARROW;default:return this}},t}(Er);gi.FULL=new gi("FULL"),gi.FULL_STANDALONE=new gi("FULL_STANDALONE"),gi.SHORT=new gi("SHORT"),gi.SHORT_STANDALONE=new gi("SHORT_STANDALONE"),gi.NARROW=new gi("NARROW"),gi.NARROW_STANDALONE=new gi("NARROW_STANDALONE");
|
|
81
|
-
/**
|
|
82
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
83
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
84
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
85
|
-
*/
|
|
86
|
-
var vi=function(){function e(e){if(e.length>1)throw new sr('invalid literal, too long: "'+e+'"');this._literal=e}var t=e.prototype;return t.print=function(e,t){return t.append(this._literal),!0},t.parse=function(e,t,n){if(n===t.length)return~n;var r=t.charAt(n);return!1===e.charEquals(this._literal,r)?~n:n+this._literal.length},t.toString=function(){return"'"===this._literal?"''":"'"+this._literal+"'"},e}(),Ai=function(){function e(e,t){this._printerParsers=e,this._optional=t}var t=e.prototype;return t.withOptional=function(t){return t===this._optional?this:new e(this._printerParsers,t)},t.print=function(e,t){var n=t.length();this._optional&&e.startOptional();try{for(var r=0;r<this._printerParsers.length;r++){if(!1===this._printerParsers[r].print(e,t))return t.setLength(n),!0}}finally{this._optional&&e.endOptional()}return!0},t.parse=function(e,t,n){if(this._optional){e.startOptional();for(var r=n,i=0;i<this._printerParsers.length;i++){if((r=this._printerParsers[i].parse(e,t,r))<0)return e.endOptional(!1),n}return e.endOptional(!0),r}for(var a=0;a<this._printerParsers.length;a++){if((n=this._printerParsers[a].parse(e,t,n))<0)break}return n},t.toString=function(){var e="";if(null!=this._printerParsers){e+=this._optional?"[":"(";for(var t=0;t<this._printerParsers.length;t++){e+=this._printerParsers[t].toString()}e+=this._optional?"]":")"}return e},e}(),Ei=function(){function e(e,t,n,r){if(pr(e,"field"),!1===e.range().isFixed())throw new sr("Field must have a fixed set of values: "+e);if(t<0||t>9)throw new sr("Minimum width must be from 0 to 9 inclusive but was "+t);if(n<1||n>9)throw new sr("Maximum width must be from 1 to 9 inclusive but was "+n);if(n<t)throw new sr("Maximum width must exceed or equal the minimum width but "+n+" < "+t);this.field=e,this.minWidth=t,this.maxWidth=n,this.decimalPoint=r}var t=e.prototype;return t.print=function(e,t){var n=e.getValue(this.field);if(null===n)return!1;var r=e.symbols();if(0===n){if(this.minWidth>0){this.decimalPoint&&t.append(r.decimalSeparator());for(var i=0;i<this.minWidth;i++)t.append(r.zeroDigit())}}else{var a=this.convertToFraction(n,r.zeroDigit()),o=Math.min(Math.max(a.length,this.minWidth),this.maxWidth);if(1*(a=a.substr(0,o))>0)for(;a.length>this.minWidth&&"0"===a[a.length-1];)a=a.substr(0,a.length-1);var s=a;s=r.convertNumberToI18N(s),this.decimalPoint&&t.append(r.decimalSeparator()),t.append(s)}return!0},t.parse=function(e,t,n){var r=e.isStrict()?this.minWidth:0,i=e.isStrict()?this.maxWidth:9,a=t.length;if(n===a)return r>0?~n:n;if(this.decimalPoint){if(t[n]!==e.symbols().decimalSeparator())return r>0?~n:n;n++}var o=n+r;if(o>a)return~n;for(var s=Math.min(n+i,a),u=0,l=n;l<s;){var c=t.charAt(l++),d=e.symbols().convertToDigit(c);if(d<0){if(l<o)return~n;l--;break}u=10*u+d}var f=l-n,h=Math.pow(10,f),p=this.convertFromFraction(u,h);return e.setParsedField(this.field,p,n,l)},t.convertToFraction=function(e,t){var n=this.field.range();n.checkValidValue(e,this.field);for(var r=n.minimum(),i=n.maximum()-r+1,a=e-r,o=""+Ar.intDiv(1e9*a,i);o.length<9;)o=t+o;return o},t.convertFromFraction=function(e,t){var n=this.field.range(),r=n.minimum(),i=n.maximum()-r+1;return Ar.intDiv(e*i,t)},t.toString=function(){var e=this.decimalPoint?",DecimalPoint":"";return"Fraction("+this.field+","+this.minWidth+","+this.maxWidth+e+")"},e}(),bi=[0,10,100,1e3,1e4,1e5,1e6,1e7,1e8,1e9],Si=function(){function e(e,t,n,r,i){void 0===i&&(i=0),this._field=e,this._minWidth=t,this._maxWidth=n,this._signStyle=r,this._subsequentWidth=i}var t=e.prototype;return t.field=function(){return this._field},t.minWidth=function(){return this._minWidth},t.maxWidth=function(){return this._maxWidth},t.signStyle=function(){return this._signStyle},t.withFixedWidth=function(){return-1===this._subsequentWidth?this:new e(this._field,this._minWidth,this._maxWidth,this._signStyle,-1)},t.withSubsequentWidth=function(t){return new e(this._field,this._minWidth,this._maxWidth,this._signStyle,this._subsequentWidth+t)},t._isFixedWidth=function(){return-1===this._subsequentWidth||this._subsequentWidth>0&&this._minWidth===this._maxWidth&&this._signStyle===yi.NOT_NEGATIVE},t.print=function(e,t){var n=e.getValue(this._field);if(null==n)return!1;var r=this._getValue(e,n),i=e.symbols(),a=""+Math.abs(r);if(a.length>this._maxWidth)throw new rr("Field "+this._field+" cannot be printed as the value "+r+" exceeds the maximum print width of "+this._maxWidth);if(a=i.convertNumberToI18N(a),r>=0)switch(this._signStyle){case yi.EXCEEDS_PAD:this._minWidth<15&&r>=bi[this._minWidth]&&t.append(i.positiveSign());break;case yi.ALWAYS:t.append(i.positiveSign())}else switch(this._signStyle){case yi.NORMAL:case yi.EXCEEDS_PAD:case yi.ALWAYS:t.append(i.negativeSign());break;case yi.NOT_NEGATIVE:throw new rr("Field "+this._field+" cannot be printed as the value "+r+" cannot be negative according to the SignStyle")}for(var o=0;o<this._minWidth-a.length;o++)t.append(i.zeroDigit());return t.append(a),!0},t.parse=function(e,t,n){var r=t.length;if(n===r)return~n;hr(n>=0&&n<r);var i=t.charAt(n),a=!1,o=!1;if(i===e.symbols().positiveSign()){if(!1===this._signStyle.parse(!0,e.isStrict(),this._minWidth===this._maxWidth))return~n;o=!0,n++}else if(i===e.symbols().negativeSign()){if(!1===this._signStyle.parse(!1,e.isStrict(),this._minWidth===this._maxWidth))return~n;a=!0,n++}else if(this._signStyle===yi.ALWAYS&&e.isStrict())return~n;var s=e.isStrict()||this._isFixedWidth()?this._minWidth:1,u=n+s;if(u>r)return~n;for(var l=(e.isStrict()||this._isFixedWidth()?this._maxWidth:9)+Math.max(this._subsequentWidth,0),c=0,d=n,f=0;f<2;f++){for(var h=Math.min(d+l,r);d<h;){var p=t.charAt(d++),m=e.symbols().convertToDigit(p);if(m<0){if(--d<u)return~n;break}if(d-n>15)throw new or("number text exceeds length");c=10*c+m}if(!(this._subsequentWidth>0&&0===f))break;var _=d-n;l=Math.max(s,_-this._subsequentWidth),d=n,c=0}if(a){if(0===c&&e.isStrict())return~(n-1);0!==c&&(c=-c)}else if(this._signStyle===yi.EXCEEDS_PAD&&e.isStrict()){var y=d-n;if(o){if(y<=this._minWidth)return~(n-1)}else if(y>this._minWidth)return~n}return this._setValue(e,c,n,d)},t._getValue=function(e,t){return t},t._setValue=function(e,t,n,r){return e.setParsedField(this._field,t,n,r)},t.toString=function(){return 1===this._minWidth&&15===this._maxWidth&&this._signStyle===yi.NORMAL?"Value("+this._field+")":this._minWidth===this._maxWidth&&this._signStyle===yi.NOT_NEGATIVE?"Value("+this._field+","+this._minWidth+")":"Value("+this._field+","+this._minWidth+","+this._maxWidth+","+this._signStyle+")"},e}(),Mi=function(e){function t(t,n,r,i,a){var o;if(o=e.call(this,t,n,r,yi.NOT_NEGATIVE)||this,n<1||n>10)throw new sr("The width must be from 1 to 10 inclusive but was "+n);if(r<1||r>10)throw new sr("The maxWidth must be from 1 to 10 inclusive but was "+r);if(r<n)throw new sr("The maxWidth must be greater than the width");if(null===a){if(!1===t.range().isValidValue(i))throw new sr("The base value must be within the range of the field");if(i+bi[n]>Ar.MAX_SAFE_INTEGER)throw new rr("Unable to add printer-parser as the range exceeds the capacity of an int")}return o._baseValue=i,o._baseDate=a,o}cr(t,e);var n=t.prototype;return n._getValue=function(e,t){var n=Math.abs(t),r=this._baseValue;null!==this._baseDate&&(e.temporal(),r=ea.INSTANCE.date(this._baseDate).get(this._field));return t>=r&&t<r+bi[this._minWidth]?n%bi[this._minWidth]:n%bi[this._maxWidth]},n._setValue=function(e,t,n,r){var i=this._baseValue;null!=this._baseDate&&(i=e.getEffectiveChronology().date(this._baseDate).get(this._field));if(r-n===this._minWidth&&t>=0){var a=bi[this._minWidth],o=i-i%a;(t=i>0?o+t:o-t)<i&&(t+=a)}return e.setParsedField(this._field,t,n,r)},n.withFixedWidth=function(){return-1===this._subsequentWidth?this:new t(this._field,this._minWidth,this._maxWidth,this._baseValue,this._baseDate)},n.withSubsequentWidth=function(e){return new t(this._field,this._minWidth,this._maxWidth,this._baseValue,this._baseDate,this._subsequentWidth+e)},n.isFixedWidth=function(t){return!1!==t.isStrict()&&e.prototype.isFixedWidth.call(this,t)},n.toString=function(){return"ReducedValue("+this._field+","+this._minWidth+","+this._maxWidth+","+(null!=this._baseDate?this._baseDate:this._baseValue)+")"},t}(Si),Ti=["+HH","+HHmm","+HH:mm","+HHMM","+HH:MM","+HHMMss","+HH:MM:ss","+HHMMSS","+HH:MM:SS"],wi=function(){function e(e,t){pr(e,"noOffsetText"),pr(t,"pattern"),this.noOffsetText=e,this.type=this._checkPattern(t)}var t=e.prototype;return t._checkPattern=function(e){for(var t=0;t<Ti.length;t++)if(Ti[t]===e)return t;throw new sr("Invalid zone offset pattern: "+e)},t.print=function(e,t){var n=e.getValue(Cr.OFFSET_SECONDS);if(null==n)return!1;var r=Ar.safeToInt(n);if(0===r)t.append(this.noOffsetText);else{var i=Math.abs(Ar.intMod(Ar.intDiv(r,3600),100)),a=Math.abs(Ar.intMod(Ar.intDiv(r,60),60)),o=Math.abs(Ar.intMod(r,60)),s=t.length(),u=i;t.append(r<0?"-":"+").appendChar(Ar.intDiv(i,10)+"0").appendChar(Ar.intMod(i,10)+"0"),(this.type>=3||this.type>=1&&a>0)&&(t.append(this.type%2==0?":":"").appendChar(Ar.intDiv(a,10)+"0").appendChar(a%10+"0"),u+=a,(this.type>=7||this.type>=5&&o>0)&&(t.append(this.type%2==0?":":"").appendChar(Ar.intDiv(o,10)+"0").appendChar(o%10+"0"),u+=o)),0===u&&(t.setLength(s),t.append(this.noOffsetText))}return!0},t.parse=function(e,t,n){var r=t.length,i=this.noOffsetText.length;if(0===i){if(n===r)return e.setParsedField(Cr.OFFSET_SECONDS,0,n,n)}else{if(n===r)return~n;if(e.subSequenceEquals(t,n,this.noOffsetText,0,i))return e.setParsedField(Cr.OFFSET_SECONDS,0,n,n+i)}var a=t[n];if("+"===a||"-"===a){var o="-"===a?-1:1,s=[0,0,0,0];if(s[0]=n+1,!1===(this._parseNumber(s,1,t,!0)||this._parseNumber(s,2,t,this.type>=3)||this._parseNumber(s,3,t,!1))){var u=Ar.safeZero(o*(3600*s[1]+60*s[2]+s[3]));return e.setParsedField(Cr.OFFSET_SECONDS,u,n,s[0])}}return 0===i?e.setParsedField(Cr.OFFSET_SECONDS,0,n,n+i):~n},t._parseNumber=function(e,t,n,r){if((this.type+3)/2<t)return!1;var i=e[0];if(this.type%2==0&&t>1){if(i+1>n.length||":"!==n[i])return r;i++}if(i+2>n.length)return r;var a=n[i++],o=n[i++];if(a<"0"||a>"9"||o<"0"||o>"9")return r;var s=10*(a.charCodeAt(0)-48)+(o.charCodeAt(0)-48);return s<0||s>59?r:(e[t]=s,e[0]=i,!1)},t.toString=function(){var e=this.noOffsetText.replace("'","''");return"Offset("+Ti[this.type]+",'"+e+"')"},e}();
|
|
87
|
-
/**
|
|
88
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
89
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
90
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
91
|
-
*/wi.INSTANCE_ID=new wi("Z","+HH:MM:ss"),wi.PATTERNS=Ti;
|
|
92
|
-
/**
|
|
93
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
94
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
95
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
96
|
-
*/
|
|
97
|
-
var Oi=function(){function e(e,t,n){this._printerParser=e,this._padWidth=t,this._padChar=n}var t=e.prototype;return t.print=function(e,t){var n=t.length();if(!1===this._printerParser.print(e,t))return!1;var r=t.length()-n;if(r>this._padWidth)throw new rr("Cannot print as output of "+r+" characters exceeds pad width of "+this._padWidth);for(var i=0;i<this._padWidth-r;i++)t.insert(n,this._padChar);return!0},t.parse=function(e,t,n){var r=e.isStrict(),i=e.isCaseSensitive();if(hr(!(n>t.length)),hr(n>=0),n===t.length)return~n;var a=n+this._padWidth;if(a>t.length){if(r)return~n;a=t.length}for(var o=n;o<a&&(i?t[o]===this._padChar:e.charEquals(t[o],this._padChar));)o++;t=t.substring(0,a);var s=this._printerParser.parse(e,t,o);return s!==a&&r?~(n+o):s},t.toString=function(){return"Pad("+this._printerParser+","+this._padWidth+(" "===this._padChar?")":",'"+this._padChar+"')")},e}(),Ni=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.print=function(){return!0},n.parse=function(e,n,r){switch(this){case t.SENSITIVE:e.setCaseSensitive(!0);break;case t.INSENSITIVE:e.setCaseSensitive(!1);break;case t.STRICT:e.setStrict(!0);break;case t.LENIENT:e.setStrict(!1)}return r},n.toString=function(){switch(this){case t.SENSITIVE:return"ParseCaseSensitive(true)";case t.INSENSITIVE:return"ParseCaseSensitive(false)";case t.STRICT:return"ParseStrict(true)";case t.LENIENT:return"ParseStrict(false)"}},t}(Er);Ni.SENSITIVE=new Ni("SENSITIVE"),Ni.INSENSITIVE=new Ni("INSENSITIVE"),Ni.STRICT=new Ni("STRICT"),Ni.LENIENT=new Ni("LENIENT");
|
|
98
|
-
/**
|
|
99
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
100
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
101
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
102
|
-
*/
|
|
103
|
-
var Ci=function(){function e(e){this._literal=e}var t=e.prototype;return t.print=function(e,t){return t.append(this._literal),!0},t.parse=function(e,t,n){return hr(!(n>t.length||n<0)),!1===e.subSequenceEquals(t,n,this._literal,0,this._literal.length)?~n:n+this._literal.length},t.toString=function(){return"'"+this._literal.replace("'","''")+"'"},e}(),Li=function(){function e(){}return e.getRules=function(e){throw new rr("unsupported ZoneId:"+e)},e.getAvailableZoneIds=function(){return[]},e}(),Di=function(e){function t(t,n){var r;return(r=e.call(this)||this)._id=t,r._rules=n,r}cr(t,e),t.ofId=function(e){return new t(e,Li.getRules(e))};var n=t.prototype;return n.id=function(){return this._id},n.rules=function(){return this._rules},t}(Yr),$i=function(){function e(e,t){this.query=e,this.description=t}var t=e.prototype;return t.print=function(e,t){var n=e.getValueQuery(this.query);return null!=n&&(t.append(n.id()),!0)},t.parse=function(e,t,n){var r=t.length;if(n>r)return~n;if(n===r)return~n;var i=t.charAt(n);if("+"===i||"-"===i){var a=e.copy(),o=wi.INSTANCE_ID.parse(a,t,n);if(o<0)return o;var s=a.getParsed(Cr.OFFSET_SECONDS),u=Jr.ofTotalSeconds(s);return e.setParsedZone(u),o}if(r>=n+2){var l=t.charAt(n+1);if(e.charEquals(i,"U")&&e.charEquals(l,"T"))return r>=n+3&&e.charEquals(t.charAt(n+2),"C")?this._parsePrefixedOffset(e,t,n,n+3):this._parsePrefixedOffset(e,t,n,n+2);if(e.charEquals(i,"G")&&r>=n+3&&e.charEquals(l,"M")&&e.charEquals(t.charAt(n+2),"T"))return this._parsePrefixedOffset(e,t,n,n+3)}if("SYSTEM"===t.substr(n,6))return e.setParsedZone(Yr.systemDefault()),n+6;if(e.charEquals(i,"Z"))return e.setParsedZone(Jr.UTC),n+1;var c=Li.getAvailableZoneIds();ki.size!==c.length&&(ki=xi.createTreeMap(c));for(var d=r-n,f=ki.treeMap,h=null,p=0;null!=f;){var m=t.substr(n,Math.min(f.length,d));null!=(f=f.get(m))&&f.isLeaf&&(h=m,p=f.length)}return null!=h?(e.setParsedZone(Di.ofId(h)),n+p):~n},t._parsePrefixedOffset=function(e,t,n,r){var i=t.substring(n,r).toUpperCase(),a=e.copy();if(r<t.length&&e.charEquals(t.charAt(r),"Z"))return e.setParsedZone(Yr.ofOffset(i,Jr.UTC)),r;var o=wi.INSTANCE_ID.parse(a,t,r);if(o<0)return e.setParsedZone(Yr.ofOffset(i,Jr.UTC)),r;var s=a.getParsed(Cr.OFFSET_SECONDS),u=Jr.ofTotalSeconds(s);return e.setParsedZone(Yr.ofOffset(i,u)),o},t.toString=function(){return this.description},e}(),xi=function(){function e(e,t){this.size=e,this.treeMap=t}return e.createTreeMap=function(t){for(var n=t.sort((function(e,t){return e.length-t.length})),r=new Ii(n[0].length,!1),i=0;i<n.length;i++)r.add(n[i]);return new e(n.length,r)},e}(),Ii=function(){function e(e,t){void 0===e&&(e=0),void 0===t&&(t=!1),this.length=e,this.isLeaf=t,this._treeMap={}}var t=e.prototype;return t.add=function(t){var n=t.length;if(n===this.length)this._treeMap[t]=new e(n,!0);else if(n>this.length){var r=t.substr(0,this.length),i=this._treeMap[r];null==i&&(i=new e(n,!1),this._treeMap[r]=i),i.add(t)}},t.get=function(e){return this._treeMap[e]},e}(),ki=new xi([]),zi=15,Ri=function(){function e(){this._active=this,this._parent=null,this._printerParsers=[],this._optional=!1,this._padNextWidth=0,this._padNextChar=null,this._valueParserIndex=-1}e._of=function(t,n){pr(t,"parent"),pr(n,"optional");var r=new e;return r._parent=t,r._optional=n,r};var t=e.prototype;return t.parseCaseSensitive=function(){return this._appendInternalPrinterParser(Ni.SENSITIVE),this},t.parseCaseInsensitive=function(){return this._appendInternalPrinterParser(Ni.INSENSITIVE),this},t.parseStrict=function(){return this._appendInternalPrinterParser(Ni.STRICT),this},t.parseLenient=function(){return this._appendInternalPrinterParser(Ni.LENIENT),this},t.appendValue=function(){return 1===arguments.length?this._appendValue1.apply(this,arguments):2===arguments.length?this._appendValue2.apply(this,arguments):this._appendValue4.apply(this,arguments)},t._appendValue1=function(e){return pr(e),this._appendValuePrinterParser(new Si(e,1,zi,yi.NORMAL)),this},t._appendValue2=function(e,t){if(pr(e),t<1||t>zi)throw new sr("The width must be from 1 to 15 inclusive but was "+t);var n=new Si(e,t,t,yi.NOT_NEGATIVE);return this._appendValuePrinterParser(n),this},t._appendValue4=function(e,t,n,r){if(pr(e),pr(r),t===n&&r===yi.NOT_NEGATIVE)return this._appendValue2(e,n);if(t<1||t>zi)throw new sr("The minimum width must be from 1 to 15 inclusive but was "+t);if(n<1||n>zi)throw new sr("The minimum width must be from 1 to 15 inclusive but was "+n);if(n<t)throw new sr("The maximum width must exceed or equal the minimum width but "+n+" < "+t);var i=new Si(e,t,n,r);return this._appendValuePrinterParser(i),this},t.appendValueReduced=function(){return 4===arguments.length&&arguments[3]instanceof jr?this._appendValueReducedFieldWidthMaxWidthBaseDate.apply(this,arguments):this._appendValueReducedFieldWidthMaxWidthBaseValue.apply(this,arguments)},t._appendValueReducedFieldWidthMaxWidthBaseValue=function(e,t,n,r){pr(e,"field");var i=new Mi(e,t,n,r,null);return this._appendValuePrinterParser(i),this},t._appendValueReducedFieldWidthMaxWidthBaseDate=function(e,t,n,r){pr(e,"field"),pr(r,"baseDate"),mr(r,jr,"baseDate");var i=new Mi(e,t,n,0,r);return this._appendValuePrinterParser(i),this},t._appendValuePrinterParser=function(e){if(hr(null!=e),this._active._valueParserIndex>=0&&this._active._printerParsers[this._active._valueParserIndex]instanceof Si){var t=this._active._valueParserIndex,n=this._active._printerParsers[t];e.minWidth()===e.maxWidth()&&e.signStyle()===yi.NOT_NEGATIVE?(n=n.withSubsequentWidth(e.maxWidth()),this._appendInternal(e.withFixedWidth()),this._active._valueParserIndex=t):(n=n.withFixedWidth(),this._active._valueParserIndex=this._appendInternal(e)),this._active._printerParsers[t]=n}else this._active._valueParserIndex=this._appendInternal(e);return this},t.appendFraction=function(e,t,n,r){return this._appendInternal(new Ei(e,t,n,r)),this},t.appendInstant=function(e){if(void 0===e&&(e=-2),e<-2||e>9)throw new sr("Invalid fractional digits: "+e);return this._appendInternal(new Fi(e)),this},t.appendOffsetId=function(){return this._appendInternal(wi.INSTANCE_ID),this},t.appendOffset=function(e,t){return this._appendInternalPrinterParser(new wi(t,e)),this},t.appendZoneId=function(){return this._appendInternal(new $i(Lr.zoneId(),"ZoneId()")),this},t.appendPattern=function(e){return pr(e,"pattern"),this._parsePattern(e),this},t.appendZoneText=function(){throw new sr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendText=function(){throw new sr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendLocalizedOffset=function(){throw new sr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendWeekField=function(){throw new sr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t._parsePattern=function(e){for(var t={G:Cr.ERA,y:Cr.YEAR_OF_ERA,u:Cr.YEAR,Q:ni.QUARTER_OF_YEAR,q:ni.QUARTER_OF_YEAR,M:Cr.MONTH_OF_YEAR,L:Cr.MONTH_OF_YEAR,D:Cr.DAY_OF_YEAR,d:Cr.DAY_OF_MONTH,F:Cr.ALIGNED_DAY_OF_WEEK_IN_MONTH,E:Cr.DAY_OF_WEEK,c:Cr.DAY_OF_WEEK,e:Cr.DAY_OF_WEEK,a:Cr.AMPM_OF_DAY,H:Cr.HOUR_OF_DAY,k:Cr.CLOCK_HOUR_OF_DAY,K:Cr.HOUR_OF_AMPM,h:Cr.CLOCK_HOUR_OF_AMPM,m:Cr.MINUTE_OF_HOUR,s:Cr.SECOND_OF_MINUTE,S:Cr.NANO_OF_SECOND,A:Cr.MILLI_OF_DAY,n:Cr.NANO_OF_SECOND,N:Cr.NANO_OF_DAY},n=0;n<e.length;n++){var r=e.charAt(n);if(r>="A"&&r<="Z"||r>="a"&&r<="z"){for(var i=n++;n<e.length&&e.charAt(n)===r;n++);var a=n-i;if("p"===r){var o=0;if(n<e.length&&((r=e.charAt(n))>="A"&&r<="Z"||r>="a"&&r<="z")){for(o=a,i=n++;n<e.length&&e.charAt(n)===r;n++);a=n-i}if(0===o)throw new sr("Pad letter 'p' must be followed by valid pad pattern: "+e);this.padNext(o)}var s=t[r];if(null!=s)this._parseField(r,a,s);else if("z"===r){if(a>4)throw new sr("Too many pattern letters: "+r);4===a?this.appendZoneText(gi.FULL):this.appendZoneText(gi.SHORT)}else if("V"===r){if(2!==a)throw new sr("Pattern letter count must be 2: "+r);this.appendZoneId()}else if("Z"===r)if(a<4)this.appendOffset("+HHMM","+0000");else if(4===a)this.appendLocalizedOffset(gi.FULL);else{if(5!==a)throw new sr("Too many pattern letters: "+r);this.appendOffset("+HH:MM:ss","Z")}else if("O"===r)if(1===a)this.appendLocalizedOffset(gi.SHORT);else{if(4!==a)throw new sr("Pattern letter count must be 1 or 4: "+r);this.appendLocalizedOffset(gi.FULL)}else if("X"===r){if(a>5)throw new sr("Too many pattern letters: "+r);this.appendOffset(wi.PATTERNS[a+(1===a?0:1)],"Z")}else if("x"===r){if(a>5)throw new sr("Too many pattern letters: "+r);var u=1===a?"+00":a%2==0?"+0000":"+00:00";this.appendOffset(wi.PATTERNS[a+(1===a?0:1)],u)}else if("W"===r){if(a>1)throw new sr("Too many pattern letters: "+r);this.appendWeekField("W",a)}else if("w"===r){if(a>2)throw new sr("Too many pattern letters: "+r);this.appendWeekField("w",a)}else{if("Y"!==r)throw new sr("Unknown pattern letter: "+r);this.appendWeekField("Y",a)}n--}else if("'"===r){for(var l=n++;n<e.length;n++)if("'"===e.charAt(n)){if(!(n+1<e.length&&"'"===e.charAt(n+1)))break;n++}if(n>=e.length)throw new sr("Pattern ends with an incomplete string literal: "+e);var c=e.substring(l+1,n);0===c.length?this.appendLiteral("'"):this.appendLiteral(c.replace("''","'"))}else if("["===r)this.optionalStart();else if("]"===r){if(null===this._active._parent)throw new sr("Pattern invalid as it contains ] without previous [");this.optionalEnd()}else{if("{"===r||"}"===r||"#"===r)throw new sr("Pattern includes reserved character: '"+r+"'");this.appendLiteral(r)}}},t._parseField=function(e,t,n){switch(e){case"u":case"y":2===t?this.appendValueReduced(n,2,2,Mi.BASE_DATE):t<4?this.appendValue(n,t,zi,yi.NORMAL):this.appendValue(n,t,zi,yi.EXCEEDS_PAD);break;case"M":case"Q":switch(t){case 1:this.appendValue(n);break;case 2:this.appendValue(n,2);break;case 3:this.appendText(n,gi.SHORT);break;case 4:this.appendText(n,gi.FULL);break;case 5:this.appendText(n,gi.NARROW);break;default:throw new sr("Too many pattern letters: "+e)}break;case"L":case"q":switch(t){case 1:this.appendValue(n);break;case 2:this.appendValue(n,2);break;case 3:this.appendText(n,gi.SHORT_STANDALONE);break;case 4:this.appendText(n,gi.FULL_STANDALONE);break;case 5:this.appendText(n,gi.NARROW_STANDALONE);break;default:throw new sr("Too many pattern letters: "+e)}break;case"e":switch(t){case 1:case 2:this.appendWeekField("e",t);break;case 3:this.appendText(n,gi.SHORT);break;case 4:this.appendText(n,gi.FULL);break;case 5:this.appendText(n,gi.NARROW);break;default:throw new sr("Too many pattern letters: "+e)}break;case"c":switch(t){case 1:this.appendWeekField("c",t);break;case 2:throw new sr("Invalid number of pattern letters: "+e);case 3:this.appendText(n,gi.SHORT_STANDALONE);break;case 4:this.appendText(n,gi.FULL_STANDALONE);break;case 5:this.appendText(n,gi.NARROW_STANDALONE);break;default:throw new sr("Too many pattern letters: "+e)}break;case"a":if(1!==t)throw new sr("Too many pattern letters: "+e);this.appendText(n,gi.SHORT);break;case"E":case"G":switch(t){case 1:case 2:case 3:this.appendText(n,gi.SHORT);break;case 4:this.appendText(n,gi.FULL);break;case 5:this.appendText(n,gi.NARROW);break;default:throw new sr("Too many pattern letters: "+e)}break;case"S":this.appendFraction(Cr.NANO_OF_SECOND,t,t,!1);break;case"F":if(1!==t)throw new sr("Too many pattern letters: "+e);this.appendValue(n);break;case"d":case"h":case"H":case"k":case"K":case"m":case"s":if(1===t)this.appendValue(n);else{if(2!==t)throw new sr("Too many pattern letters: "+e);this.appendValue(n,t)}break;case"D":if(1===t)this.appendValue(n);else{if(!(t<=3))throw new sr("Too many pattern letters: "+e);this.appendValue(n,t)}break;default:1===t?this.appendValue(n):this.appendValue(n,t)}},t.padNext=function(){return 1===arguments.length?this._padNext1.apply(this,arguments):this._padNext2.apply(this,arguments)},t._padNext1=function(e){return this._padNext2(e," ")},t._padNext2=function(e,t){if(e<1)throw new sr("The pad width must be at least one but was "+e);return this._active._padNextWidth=e,this._active._padNextChar=t,this._active._valueParserIndex=-1,this},t.optionalStart=function(){return this._active._valueParserIndex=-1,this._active=e._of(this._active,!0),this},t.optionalEnd=function(){if(null==this._active._parent)throw new ur("Cannot call optionalEnd() as there was no previous call to optionalStart()");if(this._active._printerParsers.length>0){var e=new Ai(this._active._printerParsers,this._active._optional);this._active=this._active._parent,this._appendInternal(e)}else this._active=this._active._parent;return this},t._appendInternal=function(e){return hr(null!=e),this._active._padNextWidth>0&&(null!=e&&(e=new Oi(e,this._active._padNextWidth,this._active._padNextChar)),this._active._padNextWidth=0,this._active._padNextChar=0),this._active._printerParsers.push(e),this._active._valueParserIndex=-1,this._active._printerParsers.length-1},t.appendLiteral=function(e){return hr(null!=e),e.length>0&&(1===e.length?this._appendInternalPrinterParser(new vi(e.charAt(0))):this._appendInternalPrinterParser(new Ci(e))),this},t._appendInternalPrinterParser=function(e){return hr(null!=e),this._active._padNextWidth>0&&(null!=e&&(e=new Oi(e,this._active._padNextWidth,this._active._padNextChar)),this._active._padNextWidth=0,this._active._padNextChar=0),this._active._printerParsers.push(e),this._active._valueParserIndex=-1,this._active._printerParsers.length-1},t.append=function(e){return pr(e,"formatter"),this._appendInternal(e._toPrinterParser(!1)),this},t.toFormatter=function(e){for(void 0===e&&(e=Br.SMART);null!=this._active._parent;)this.optionalEnd();var t=new Ai(this._printerParsers,!1);return new Bi(t,null,_i.STANDARD,e,null,null,null)},e}(),Zi=31556952e4,Pi=62167219200,Fi=function(){function e(e){this.fractionalDigits=e}var t=e.prototype;return t.print=function(e,t){var n=e.getValue(Cr.INSTANT_SECONDS),r=0;if(e.temporal().isSupported(Cr.NANO_OF_SECOND)&&(r=e.temporal().getLong(Cr.NANO_OF_SECOND)),null==n)return!1;var i=n,a=Cr.NANO_OF_SECOND.checkValidIntValue(r);if(i>=-62167219200){var o=i-Zi+Pi,s=Ar.floorDiv(o,Zi)+1,u=Ar.floorMod(o,Zi),l=la.ofEpochSecond(u-Pi,0,Jr.UTC);s>0&&t.append("+").append(s),t.append(l.toString()),0===l.second()&&t.append(":00")}else{var c=i+Pi,d=Ar.intDiv(c,Zi),f=Ar.intMod(c,Zi),h=la.ofEpochSecond(f-Pi,0,Jr.UTC),p=t.length();t.append(h.toString()),0===h.second()&&t.append(":00"),d<0&&(-1e4===h.year()?t.replace(p,p+2,""+(d-1)):0===f?t.insert(p,d):t.insert(p+1,Math.abs(d)))}if(-2===this.fractionalDigits)0!==a&&(t.append("."),0===Ar.intMod(a,1e6)?t.append((""+(Ar.intDiv(a,1e6)+1e3)).substring(1)):0===Ar.intMod(a,1e3)?t.append((""+(Ar.intDiv(a,1e3)+1e6)).substring(1)):t.append((""+(a+1e9)).substring(1)));else if(this.fractionalDigits>0||-1===this.fractionalDigits&&a>0){t.append(".");for(var m=1e8,_=0;-1===this.fractionalDigits&&a>0||_<this.fractionalDigits;_++){var y=Ar.intDiv(a,m);t.append(y),a-=y*m,m=Ar.intDiv(m,10)}}return t.append("Z"),!0},t.parse=function(e,t,n){var r=e.copy(),i=this.fractionalDigits<0?0:this.fractionalDigits,a=this.fractionalDigits<0?9:this.fractionalDigits,o=(new Ri).append(Bi.ISO_LOCAL_DATE).appendLiteral("T").appendValue(Cr.HOUR_OF_DAY,2).appendLiteral(":").appendValue(Cr.MINUTE_OF_HOUR,2).appendLiteral(":").appendValue(Cr.SECOND_OF_MINUTE,2).appendFraction(Cr.NANO_OF_SECOND,i,a,!0).appendLiteral("Z").toFormatter()._toPrinterParser(!1).parse(r,t,n);if(o<0)return o;var s,u=r.getParsed(Cr.YEAR),l=r.getParsed(Cr.MONTH_OF_YEAR),c=r.getParsed(Cr.DAY_OF_MONTH),d=r.getParsed(Cr.HOUR_OF_DAY),f=r.getParsed(Cr.MINUTE_OF_HOUR),h=r.getParsed(Cr.SECOND_OF_MINUTE),p=r.getParsed(Cr.NANO_OF_SECOND),m=null!=h?h:0,_=null!=p?p:0,y=Ar.intMod(u,1e4),g=0;24===d&&0===f&&0===m&&0===_?(d=0,g=1):23===d&&59===f&&60===m&&(e.setParsedLeapSecond(),m=59);try{s=la.of(y,l,c,d,f,m,0).plusDays(g).toEpochSecond(Jr.UTC),s+=Ar.safeMultiply(Ar.intDiv(u,1e4),Zi)}catch(e){return~n}var v=o;return v=e.setParsedField(Cr.INSTANT_SECONDS,s,n,v),e.setParsedField(Cr.NANO_OF_SECOND,_,n,v)},t.toString=function(){return"Instant()"},e}();
|
|
104
|
-
/*
|
|
105
|
-
* @copyright (c) 2016, Philipp Thürwächter, Pattrick Hüper
|
|
106
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
107
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
108
|
-
*/
|
|
109
|
-
/*
|
|
110
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
111
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
112
|
-
*/
|
|
113
|
-
var Ui=function(){function e(){this._str=""}var t=e.prototype;return t.append=function(e){return this._str+=e,this},t.appendChar=function(e){return this._str+=e[0],this},t.insert=function(e,t){return this._str=this._str.slice(0,e)+t+this._str.slice(e),this},t.replace=function(e,t,n){return this._str=this._str.slice(0,e)+n+this._str.slice(t),this},t.length=function(){return this._str.length},t.setLength=function(e){return this._str=this._str.slice(0,e),this},t.toString=function(){return this._str},e}(),Bi=function(){function e(e,t,n,r,i,a,o){void 0===a&&(a=ea.INSTANCE),hr(null!=e),hr(null!=n),hr(null!=r),this._printerParser=e,this._locale=t,this._decimalStyle=n,this._resolverStyle=r,this._resolverFields=i,this._chrono=a,this._zone=o}e.parsedExcessDays=function(){return e.PARSED_EXCESS_DAYS},e.parsedLeapSecond=function(){return e.PARSED_LEAP_SECOND},e.ofPattern=function(e){return(new Ri).appendPattern(e).toFormatter()};var t=e.prototype;return t.locale=function(){return this._locale},t.decimalStyle=function(){return this._decimalStyle},t.chronology=function(){return this._chrono},t.withChronology=function(t){return null!=this._chrono&&this._chrono.equals(t)?this:new e(this._printerParser,this._locale,this._decimalStyle,this._resolverStyle,this._resolverFields,t,this._zone)},t.withLocale=function(){return this},t.withResolverStyle=function(t){return pr(t,"resolverStyle"),t.equals(this._resolverStyle)?this:new e(this._printerParser,this._locale,this._decimalStyle,t,this._resolverFields,this._chrono,this._zone)},t.format=function(e){var t=new Ui(32);return this._formatTo(e,t),t.toString()},t._formatTo=function(e,t){pr(e,"temporal"),pr(t,"appendable");var n=new ti(e,this);this._printerParser.print(n,t)},t.parse=function(e,t){return 1===arguments.length?this.parse1(e):this.parse2(e,t)},t.parse1=function(e){pr(e,"text");try{return this._parseToBuilder(e,null).resolve(this._resolverStyle,this._resolverFields)}catch(t){throw t instanceof ir?t:this._createError(e,t)}},t.parse2=function(e,t){pr(e,"text"),pr(t,"type");try{return this._parseToBuilder(e,null).resolve(this._resolverStyle,this._resolverFields).build(t)}catch(t){throw t instanceof ir?t:this._createError(e,t)}},t._createError=function(e,t){var n="";return n=e.length>64?e.substring(0,64)+"...":e,new ir("Text '"+n+"' could not be parsed: "+t.message,e,0,t)},t._parseToBuilder=function(e,t){var n=null!=t?t:new Fr(0),r=this._parseUnresolved0(e,n);if(null==r||n.getErrorIndex()>=0||null==t&&n.getIndex()<e.length){var i="";throw i=e.length>64?e.substr(0,64).toString()+"...":e,n.getErrorIndex()>=0?new ir("Text '"+i+"' could not be parsed at index "+n.getErrorIndex(),e,n.getErrorIndex()):new ir("Text '"+i+"' could not be parsed, unparsed text found at index "+n.getIndex(),e,n.getIndex())}return r.toBuilder()},t.parseUnresolved=function(e,t){return this._parseUnresolved0(e,t)},t._parseUnresolved0=function(e,t){hr(null!=e,"text",lr),hr(null!=t,"position",lr);var n=new Qr(this),r=t.getIndex();return(r=this._printerParser.parse(n,e,r))<0?(t.setErrorIndex(~r),null):(t.setIndex(r),n.toParsed())},t._toPrinterParser=function(e){return this._printerParser.withOptional(e)},t.toString=function(){var e=this._printerParser.toString();return 0===e.indexOf("[")?e:e.substring(1,e.length-1)},e}();
|
|
114
|
-
/**
|
|
115
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
116
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
117
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
118
|
-
*/var Vi,ji=function(e){function t(t,n){var r;return(r=e.call(this)||this)._month=Ar.safeToInt(t),r._day=Ar.safeToInt(n),r}cr(t,e),t.now=function(e){return 0===arguments.length?t.now0():1===arguments.length&&e instanceof Yr?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return this.nowClock(ha.systemDefaultZone())},t.nowZoneId=function(e){return pr(e,"zone"),this.nowClock(ha.system(e))},t.nowClock=function(e){pr(e,"clock");var n=sa.now(e);return t.of(n.month(),n.dayOfMonth())},t.of=function(e,n){return 2===arguments.length&&e instanceof Rr?t.ofMonthNumber(e,n):t.ofNumberNumber(e,n)},t.ofMonthNumber=function(e,n){if(pr(e,"month"),Cr.DAY_OF_MONTH.checkValidValue(n),n>e.maxLength())throw new rr("Illegal value for DayOfMonth field, value "+n+" is not valid for month "+e.toString());return new t(e.value(),n)},t.ofNumberNumber=function(e,n){return pr(e,"month"),pr(n,"dayOfMonth"),t.of(Rr.of(e),n)},t.from=function(e){if(pr(e,"temporal"),mr(e,Dr,"temporal"),e instanceof t)return e;try{return t.of(e.get(Cr.MONTH_OF_YEAR),e.get(Cr.DAY_OF_MONTH))}catch(t){throw new rr("Unable to obtain MonthDay from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return 1===arguments.length?t.parseString(e):t.parseStringFormatter(e,n)},t.parseString=function(e){return t.parseStringFormatter(e,Vi)},t.parseStringFormatter=function(e,n){return pr(e,"text"),pr(n,"formatter"),mr(n,Bi,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.monthValue=function(){return this._month},n.month=function(){return Rr.of(this._month)},n.dayOfMonth=function(){return this._day},n.isSupported=function(e){return e instanceof Cr?e===Cr.MONTH_OF_YEAR||e===Cr.DAY_OF_MONTH:null!=e&&e.isSupportedBy(this)},n.range=function(t){return t===Cr.MONTH_OF_YEAR?t.range():t===Cr.DAY_OF_MONTH?Nr.of(1,this.month().minLength(),this.month().maxLength()):e.prototype.range.call(this,t)},n.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(pr(e,"field"),e instanceof Cr){switch(e){case Cr.DAY_OF_MONTH:return this._day;case Cr.MONTH_OF_YEAR:return this._month}throw new ar("Unsupported field: "+e)}return e.getFrom(this)},n.isValidYear=function(e){return!1==(29===this._day&&2===this._month&&!1===Wi.isLeap(e))},n.withMonth=function(e){return this.with(Rr.of(e))},n.with=function(e){if(pr(e,"month"),e.value()===this._month)return this;var n=Math.min(this._day,e.maxLength());return new t(e.value(),n)},n.withDayOfMonth=function(e){return e===this._day?this:t.of(this._month,e)},n.query=function(t){return pr(t,"query"),mr(t,$r,"query"),t===Lr.chronology()?ea.INSTANCE:e.prototype.query.call(this,t)},n.adjustInto=function(e){return pr(e,"temporal"),(e=e.with(Cr.MONTH_OF_YEAR,this._month)).with(Cr.DAY_OF_MONTH,Math.min(e.range(Cr.DAY_OF_MONTH).maximum(),this._day))},n.atYear=function(e){return sa.of(e,this._month,this.isValidYear(e)?this._day:28)},n.compareTo=function(e){pr(e,"other"),mr(e,t,"other");var n=this._month-e.monthValue();return 0===n&&(n=this._day-e.dayOfMonth()),n},n.isAfter=function(e){return pr(e,"other"),mr(e,t,"other"),this.compareTo(e)>0},n.isBefore=function(e){return pr(e,"other"),mr(e,t,"other"),this.compareTo(e)<0},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this.monthValue()===n.monthValue()&&this.dayOfMonth()===n.dayOfMonth()}return!1},n.toString=function(){return"--"+(this._month<10?"0":"")+this._month+(this._day<10?"-0":"-")+this._day},n.toJSON=function(){return this.toString()},n.format=function(e){return pr(e,"formatter"),mr(e,Bi,"formatter"),e.format(this)},t}(Dr);var Hi,Yi=function(e){function t(t,n){var r;return(r=e.call(this)||this)._year=Ar.safeToInt(t),r._month=Ar.safeToInt(n),r}cr(t,e),t.now=function(e){return 0===arguments.length?t.now0():1===arguments.length&&e instanceof Yr?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return t.nowClock(ha.systemDefaultZone())},t.nowZoneId=function(e){return t.nowClock(ha.system(e))},t.nowClock=function(e){var n=sa.now(e);return t.of(n.year(),n.month())},t.of=function(e,n){return 2===arguments.length&&n instanceof Rr?t.ofNumberMonth(e,n):t.ofNumberNumber(e,n)},t.ofNumberMonth=function(e,n){return pr(n,"month"),mr(n,Rr,"month"),t.ofNumberNumber(e,n.value())},t.ofNumberNumber=function(e,n){return pr(e,"year"),pr(n,"month"),Cr.YEAR.checkValidValue(e),Cr.MONTH_OF_YEAR.checkValidValue(n),new t(e,n)},t.from=function(e){if(pr(e,"temporal"),e instanceof t)return e;try{return t.of(e.get(Cr.YEAR),e.get(Cr.MONTH_OF_YEAR))}catch(t){throw new rr("Unable to obtain YearMonth from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return 1===arguments.length?t.parseString(e):t.parseStringFormatter(e,n)},t.parseString=function(e){return t.parseStringFormatter(e,Hi)},t.parseStringFormatter=function(e,n){return pr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.isSupported=function(e){return 1===arguments.length&&e instanceof Or?this.isSupportedField(e):this.isSupportedUnit(e)},n.isSupportedField=function(e){return e instanceof Cr?e===Cr.YEAR||e===Cr.MONTH_OF_YEAR||e===Cr.PROLEPTIC_MONTH||e===Cr.YEAR_OF_ERA||e===Cr.ERA:null!=e&&e.isSupportedBy(this)},n.isSupportedUnit=function(e){return e instanceof wr?e===wr.MONTHS||e===wr.YEARS||e===wr.DECADES||e===wr.CENTURIES||e===wr.MILLENNIA||e===wr.ERAS:null!=e&&e.isSupportedBy(this)},n.range=function(t){return t===Cr.YEAR_OF_ERA?this.year()<=0?Nr.of(1,Wi.MAX_VALUE+1):Nr.of(1,Wi.MAX_VALUE):e.prototype.range.call(this,t)},n.get=function(e){return pr(e,"field"),mr(e,Or,"field"),this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(pr(e,"field"),mr(e,Or,"field"),e instanceof Cr){switch(e){case Cr.MONTH_OF_YEAR:return this._month;case Cr.PROLEPTIC_MONTH:return this._getProlepticMonth();case Cr.YEAR_OF_ERA:return this._year<1?1-this._year:this._year;case Cr.YEAR:return this._year;case Cr.ERA:return this._year<1?0:1}throw new ar("Unsupported field: "+e)}return e.getFrom(this)},n._getProlepticMonth=function(){return Ar.safeAdd(Ar.safeMultiply(this._year,12),this._month-1)},n.year=function(){return this._year},n.monthValue=function(){return this._month},n.month=function(){return Rr.of(this._month)},n.isLeapYear=function(){return ea.isLeapYear(this._year)},n.isValidDay=function(e){return e>=1&&e<=this.lengthOfMonth()},n.lengthOfMonth=function(){return this.month().length(this.isLeapYear())},n.lengthOfYear=function(){return this.isLeapYear()?366:365},n.with=function(e,t){return 1===arguments.length?this._withAdjuster(e):this._withField(e,t)},n._withField=function(e,t){if(pr(e,"field"),mr(e,Or,"field"),e instanceof Cr){var n=e;switch(n.checkValidValue(t),n){case Cr.MONTH_OF_YEAR:return this.withMonth(t);case Cr.PROLEPTIC_MONTH:return this.plusMonths(t-this.getLong(Cr.PROLEPTIC_MONTH));case Cr.YEAR_OF_ERA:return this.withYear(this._year<1?1-t:t);case Cr.YEAR:return this.withYear(t);case Cr.ERA:return this.getLong(Cr.ERA)===t?this:this.withYear(1-this._year)}throw new ar("Unsupported field: "+e)}return e.adjustInto(this,t)},n.withYear=function(e){return Cr.YEAR.checkValidValue(e),new t(e,this._month)},n.withMonth=function(e){return Cr.MONTH_OF_YEAR.checkValidValue(e),new t(this._year,e)},n._plusUnit=function(e,t){if(pr(t,"unit"),mr(t,Sr,"unit"),t instanceof wr){switch(t){case wr.MONTHS:return this.plusMonths(e);case wr.YEARS:return this.plusYears(e);case wr.DECADES:return this.plusYears(Ar.safeMultiply(e,10));case wr.CENTURIES:return this.plusYears(Ar.safeMultiply(e,100));case wr.MILLENNIA:return this.plusYears(Ar.safeMultiply(e,1e3));case wr.ERAS:return this.with(Cr.ERA,Ar.safeAdd(this.getLong(Cr.ERA),e))}throw new ar("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){if(0===e)return this;var t=Cr.YEAR.checkValidIntValue(this._year+e);return this.withYear(t)},n.plusMonths=function(e){if(0===e)return this;var n=12*this._year+(this._month-1)+e;return new t(Cr.YEAR.checkValidIntValue(Ar.floorDiv(n,12)),Ar.floorMod(n,12)+1)},n.minusYears=function(e){return e===Ar.MIN_SAFE_INTEGER?this.plusYears(Ar.MIN_SAFE_INTEGER).plusYears(1):this.plusYears(-e)},n.minusMonths=function(e){return e===Ar.MIN_SAFE_INTEGER?this.plusMonths(Math.MAX_SAFE_INTEGER).plusMonths(1):this.plusMonths(-e)},n.query=function(t){return pr(t,"query"),mr(t,$r,"query"),t===Lr.chronology()?ea.INSTANCE:t===Lr.precision()?wr.MONTHS:t===Lr.localDate()||t===Lr.localTime()||t===Lr.zone()||t===Lr.zoneId()||t===Lr.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return pr(e,"temporal"),mr(e,Vr,"temporal"),e.with(Cr.PROLEPTIC_MONTH,this._getProlepticMonth())},n.until=function(e,n){pr(e,"endExclusive"),pr(n,"unit"),mr(e,Vr,"endExclusive"),mr(n,Sr,"unit");var r=t.from(e);if(n instanceof wr){var i=r._getProlepticMonth()-this._getProlepticMonth();switch(n){case wr.MONTHS:return i;case wr.YEARS:return Ar.intDiv(i,12);case wr.DECADES:return Ar.intDiv(i,120);case wr.CENTURIES:return Ar.intDiv(i,1200);case wr.MILLENNIA:return Ar.intDiv(i,12e3);case wr.ERAS:return r.getLong(Cr.ERA)-this.getLong(Cr.ERA)}throw new ar("Unsupported unit: "+n)}return n.between(this,r)},n.atDay=function(e){return pr(e,"dayOfMonth"),sa.of(this._year,this._month,e)},n.atEndOfMonth=function(){return sa.of(this._year,this._month,this.lengthOfMonth())},n.compareTo=function(e){pr(e,"other"),mr(e,t,"other");var n=this._year-e.year();return 0===n&&(n=this._month-e.monthValue()),n},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this.year()===n.year()&&this.monthValue()===n.monthValue()}return!1},n.toString=function(){return Hi.format(this)},n.toJSON=function(){return this.toString()},n.format=function(e){return pr(e,"formatter"),e.format(this)},t}(Vr);var Gi,Wi=function(e){function t(t){var n;return(n=e.call(this)||this)._year=Ar.safeToInt(t),n}cr(t,e);var n=t.prototype;return n.value=function(){return this._year},t.now=function(e){return void 0===e&&(e=void 0),void 0===e?t.now0():e instanceof Yr?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return t.nowClock(ha.systemDefaultZone())},t.nowZoneId=function(e){return pr(e,"zone"),mr(e,Yr,"zone"),t.nowClock(ha.system(e))},t.nowClock=function(e){pr(e,"clock"),mr(e,ha,"clock");var n=sa.now(e);return t.of(n.year())},t.of=function(e){return pr(e,"isoYear"),Cr.YEAR.checkValidValue(e),new t(e)},t.from=function(e){if(pr(e,"temporal"),mr(e,Dr,"temporal"),e instanceof t)return e;try{return t.of(e.get(Cr.YEAR))}catch(t){throw new rr("Unable to obtain Year from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return arguments.length<=1?t.parseText(e):t.parseTextFormatter(e,n)},t.parseText=function(e){return pr(e,"text"),t.parse(e,Gi)},t.parseTextFormatter=function(e,n){return void 0===n&&(n=Gi),pr(e,"text"),pr(n,"formatter"),mr(n,Bi,"formatter"),n.parse(e,t.FROM)},t.isLeap=function(e){return 0===Ar.intMod(e,4)&&(0!==Ar.intMod(e,100)||0===Ar.intMod(e,400))},n.isSupported=function(e){return 1===arguments.length&&e instanceof Or?this.isSupportedField(e):this.isSupportedUnit(e)},n.isSupportedField=function(e){return e instanceof Cr?e===Cr.YEAR||e===Cr.YEAR_OF_ERA||e===Cr.ERA:null!=e&&e.isSupportedBy(this)},n.isSupportedUnit=function(e){return e instanceof wr?e===wr.YEARS||e===wr.DECADES||e===wr.CENTURIES||e===wr.MILLENNIA||e===wr.ERAS:null!=e&&e.isSupportedBy(this)},n.range=function(t){if(this.isSupported(t))return t.range();if(t instanceof Cr)throw new ar("Unsupported field: "+t);return e.prototype.range.call(this,t)},n.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(pr(e,"field"),e instanceof Cr){switch(e){case Cr.YEAR_OF_ERA:return this._year<1?1-this._year:this._year;case Cr.YEAR:return this._year;case Cr.ERA:return this._year<1?0:1}throw new ar("Unsupported field: "+e)}return e.getFrom(this)},n.isLeap=function(){return t.isLeap(this._year)},n._withField=function(e,n){if(pr(e,"field"),mr(e,Or,"field"),e instanceof Cr){switch(e.checkValidValue(n),e){case Cr.YEAR_OF_ERA:return t.of(this._year<1?1-n:n);case Cr.YEAR:return t.of(n);case Cr.ERA:return this.getLong(Cr.ERA)===n?this:t.of(1-this._year)}throw new ar("Unsupported field: "+e)}return e.adjustInto(this,n)},n._plusUnit=function(e,t){if(pr(e,"amountToAdd"),pr(t,"unit"),mr(t,Sr,"unit"),t instanceof wr){switch(t){case wr.YEARS:return this.plusYears(e);case wr.DECADES:return this.plusYears(Ar.safeMultiply(e,10));case wr.CENTURIES:return this.plusYears(Ar.safeMultiply(e,100));case wr.MILLENNIA:return this.plusYears(Ar.safeMultiply(e,1e3));case wr.ERAS:return this.with(Cr.ERA,Ar.safeAdd(this.getLong(Cr.ERA),e))}throw new ar("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){return 0===e?this:t.of(Cr.YEAR.checkValidIntValue(Ar.safeAdd(this._year,e)))},n.minusYears=function(e){return e===Ar.MIN_SAFE_INTEGER?this.plusYears(Ar.MAX_SAFE_INTEGER).plusYears(1):this.plusYears(-e)},n.adjustInto=function(e){return pr(e,"temporal"),e.with(Cr.YEAR,this._year)},n.isValidMonthDay=function(e){return null!=e&&e.isValidYear(this._year)},n.length=function(){return this.isLeap()?366:365},n.atDay=function(e){return sa.ofYearDay(this._year,e)},n.atMonth=function(e){return 1===arguments.length&&e instanceof Rr?this.atMonthMonth(e):this.atMonthNumber(e)},n.atMonthMonth=function(e){return pr(e,"month"),mr(e,Rr,"month"),Yi.of(this._year,e)},n.atMonthNumber=function(e){return pr(e,"month"),Yi.of(this._year,e)},n.atMonthDay=function(e){return pr(e,"monthDay"),mr(e,ji,"monthDay"),e.atYear(this._year)},n.query=function(t){return pr(t,"query()"),mr(t,$r,"query()"),t===Lr.chronology()?ea.INSTANCE:t===Lr.precision()?wr.YEARS:t===Lr.localDate()||t===Lr.localTime()||t===Lr.zone()||t===Lr.zoneId()||t===Lr.offset()?null:e.prototype.query.call(this,t)},n.compareTo=function(e){return pr(e,"other"),mr(e,t,"other"),this._year-e._year},n.isAfter=function(e){return pr(e,"other"),mr(e,t,"other"),this._year>e._year},n.isBefore=function(e){return pr(e,"other"),mr(e,t,"other"),this._year<e._year},n.format=function(e){return pr(e,"formatter"),mr(e,Bi,"formatter"),e.format(this)},n.equals=function(e){return this===e||e instanceof t&&this.value()===e.value()},n.toString=function(){return""+this._year},n.toJSON=function(){return this.toString()},n.until=function(e,n){var r=t.from(e);if(n instanceof wr){var i=r.value()-this.value();switch(n){case wr.YEARS:return i;case wr.DECADES:return Ar.intDiv(i,10);case wr.CENTURIES:return Ar.intDiv(i,100);case wr.MILLENNIA:return Ar.intDiv(i,1e3);case wr.ERAS:return r.getLong(Cr.ERA)-this.getLong(Cr.ERA)}throw new ar("Unsupported unit: "+n)}return n.between(this,r)},t}(Vr);
|
|
119
|
-
/*
|
|
120
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
121
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
122
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
123
|
-
*/
|
|
124
|
-
var qi=function(){function e(){}return e.prototype.adjustInto=function(e){_r("adjustInto")},e}(),Ki=function(){function e(){}return e.firstDayOfMonth=function(){return Ji.FIRST_DAY_OF_MONTH},e.lastDayOfMonth=function(){return Ji.LAST_DAY_OF_MONTH},e.firstDayOfNextMonth=function(){return Ji.FIRST_DAY_OF_NEXT_MONTH},e.firstDayOfYear=function(){return Ji.FIRST_DAY_OF_YEAR},e.lastDayOfYear=function(){return Ji.LAST_DAY_OF_YEAR},e.firstDayOfNextYear=function(){return Ji.FIRST_DAY_OF_NEXT_YEAR},e.firstInMonth=function(e){return pr(e,"dayOfWeek"),new Xi(1,e)},e.lastInMonth=function(e){return pr(e,"dayOfWeek"),new Xi(-1,e)},e.dayOfWeekInMonth=function(e,t){return pr(t,"dayOfWeek"),new Xi(e,t)},e.next=function(e){return new Qi(2,e)},e.nextOrSame=function(e){return new Qi(0,e)},e.previous=function(e){return new Qi(3,e)},e.previousOrSame=function(e){return new Qi(1,e)},e}(),Ji=function(e){function t(t){var n;return(n=e.call(this)||this)._ordinal=t,n}return cr(t,e),t.prototype.adjustInto=function(e){switch(this._ordinal){case 0:return e.with(Cr.DAY_OF_MONTH,1);case 1:return e.with(Cr.DAY_OF_MONTH,e.range(Cr.DAY_OF_MONTH).maximum());case 2:return e.with(Cr.DAY_OF_MONTH,1).plus(1,wr.MONTHS);case 3:return e.with(Cr.DAY_OF_YEAR,1);case 4:return e.with(Cr.DAY_OF_YEAR,e.range(Cr.DAY_OF_YEAR).maximum());case 5:return e.with(Cr.DAY_OF_YEAR,1).plus(1,wr.YEARS)}throw new ur("Unreachable")},t}(qi);Ji.FIRST_DAY_OF_MONTH=new Ji(0),Ji.LAST_DAY_OF_MONTH=new Ji(1),Ji.FIRST_DAY_OF_NEXT_MONTH=new Ji(2),Ji.FIRST_DAY_OF_YEAR=new Ji(3),Ji.LAST_DAY_OF_YEAR=new Ji(4),Ji.FIRST_DAY_OF_NEXT_YEAR=new Ji(5);var Xi=function(e){function t(t,n){var r;return(r=e.call(this)||this)._ordinal=t,r._dowValue=n.value(),r}return cr(t,e),t.prototype.adjustInto=function(e){if(this._ordinal>=0){var t=e.with(Cr.DAY_OF_MONTH,1),n=t.get(Cr.DAY_OF_WEEK),r=Ar.intMod(this._dowValue-n+7,7);return r+=7*(this._ordinal-1),t.plus(r,wr.DAYS)}var i=e.with(Cr.DAY_OF_MONTH,e.range(Cr.DAY_OF_MONTH).maximum()),a=i.get(Cr.DAY_OF_WEEK),o=this._dowValue-a;return o=0===o?0:o>0?o-7:o,o-=7*(-this._ordinal-1),i.plus(o,wr.DAYS)},t}(qi),Qi=function(e){function t(t,n){var r;return r=e.call(this)||this,pr(n,"dayOfWeek"),r._relative=t,r._dowValue=n.value(),r}return cr(t,e),t.prototype.adjustInto=function(e){var t=e.get(Cr.DAY_OF_WEEK);if(this._relative<2&&t===this._dowValue)return e;if(0==(1&this._relative)){var n=t-this._dowValue;return e.plus(n>=0?7-n:-n,wr.DAYS)}var r=this._dowValue-t;return e.minus(r>=0?7-r:-r,wr.DAYS)},t}(qi),ea=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e),t.isLeapYear=function(e){return 0==(3&e)&&(e%100!=0||e%400==0)};var n=t.prototype;return n._updateResolveMap=function(e,t,n){pr(e,"fieldValues"),pr(t,"field");var r=e.get(t);if(null!=r&&r!==n)throw new rr("Invalid state, field: "+t+" "+r+" conflicts with "+t+" "+n);e.put(t,n)},n.resolveDate=function(e,t){if(e.containsKey(Cr.EPOCH_DAY))return sa.ofEpochDay(e.remove(Cr.EPOCH_DAY));var n=e.remove(Cr.PROLEPTIC_MONTH);null!=n&&(t!==Br.LENIENT&&Cr.PROLEPTIC_MONTH.checkValidValue(n),this._updateResolveMap(e,Cr.MONTH_OF_YEAR,Ar.floorMod(n,12)+1),this._updateResolveMap(e,Cr.YEAR,Ar.floorDiv(n,12)));var r=e.remove(Cr.YEAR_OF_ERA);if(null!=r){t!==Br.LENIENT&&Cr.YEAR_OF_ERA.checkValidValue(r);var i=e.remove(Cr.ERA);if(null==i){var a=e.get(Cr.YEAR);t===Br.STRICT?null!=a?this._updateResolveMap(e,Cr.YEAR,a>0?r:Ar.safeSubtract(1,r)):e.put(Cr.YEAR_OF_ERA,r):this._updateResolveMap(e,Cr.YEAR,null==a||a>0?r:Ar.safeSubtract(1,r))}else if(1===i)this._updateResolveMap(e,Cr.YEAR,r);else{if(0!==i)throw new rr("Invalid value for era: "+i);this._updateResolveMap(e,Cr.YEAR,Ar.safeSubtract(1,r))}}else e.containsKey(Cr.ERA)&&Cr.ERA.checkValidValue(e.get(Cr.ERA));if(e.containsKey(Cr.YEAR)){if(e.containsKey(Cr.MONTH_OF_YEAR)&&e.containsKey(Cr.DAY_OF_MONTH)){var o=Cr.YEAR.checkValidIntValue(e.remove(Cr.YEAR)),s=e.remove(Cr.MONTH_OF_YEAR),u=e.remove(Cr.DAY_OF_MONTH);if(t===Br.LENIENT){var l=s-1,c=u-1;return sa.of(o,1,1).plusMonths(l).plusDays(c)}return t===Br.SMART?(Cr.DAY_OF_MONTH.checkValidValue(u),4===s||6===s||9===s||11===s?u=Math.min(u,30):2===s&&(u=Math.min(u,Rr.FEBRUARY.length(Wi.isLeap(o)))),sa.of(o,s,u)):sa.of(o,s,u)}if(e.containsKey(Cr.DAY_OF_YEAR)){var d=Cr.YEAR.checkValidIntValue(e.remove(Cr.YEAR));if(t===Br.LENIENT){var f=Ar.safeSubtract(e.remove(Cr.DAY_OF_YEAR),1);return sa.ofYearDay(d,1).plusDays(f)}var h=Cr.DAY_OF_YEAR.checkValidIntValue(e.remove(Cr.DAY_OF_YEAR));return sa.ofYearDay(d,h)}if(e.containsKey(Cr.ALIGNED_WEEK_OF_YEAR)){if(e.containsKey(Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR)){var p=Cr.YEAR.checkValidIntValue(e.remove(Cr.YEAR));if(t===Br.LENIENT){var m=Ar.safeSubtract(e.remove(Cr.ALIGNED_WEEK_OF_YEAR),1),_=Ar.safeSubtract(e.remove(Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR),1);return sa.of(p,1,1).plusWeeks(m).plusDays(_)}var y=Cr.ALIGNED_WEEK_OF_YEAR.checkValidIntValue(e.remove(Cr.ALIGNED_WEEK_OF_YEAR)),g=Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR.checkValidIntValue(e.remove(Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR)),v=sa.of(p,1,1).plusDays(7*(y-1)+(g-1));if(t===Br.STRICT&&v.get(Cr.YEAR)!==p)throw new rr("Strict mode rejected date parsed to a different year");return v}if(e.containsKey(Cr.DAY_OF_WEEK)){var A=Cr.YEAR.checkValidIntValue(e.remove(Cr.YEAR));if(t===Br.LENIENT){var E=Ar.safeSubtract(e.remove(Cr.ALIGNED_WEEK_OF_YEAR),1),b=Ar.safeSubtract(e.remove(Cr.DAY_OF_WEEK),1);return sa.of(A,1,1).plusWeeks(E).plusDays(b)}var S=Cr.ALIGNED_WEEK_OF_YEAR.checkValidIntValue(e.remove(Cr.ALIGNED_WEEK_OF_YEAR)),M=Cr.DAY_OF_WEEK.checkValidIntValue(e.remove(Cr.DAY_OF_WEEK)),T=sa.of(A,1,1).plusWeeks(S-1).with(Ki.nextOrSame(kr.of(M)));if(t===Br.STRICT&&T.get(Cr.YEAR)!==A)throw new rr("Strict mode rejected date parsed to a different month");return T}}}return null},n.date=function(e){return sa.from(e)},t}(Er);var ta=function(e){function t(t,n){var r;return r=e.call(this)||this,pr(t,"time"),mr(t,ca,"time"),pr(n,"offset"),mr(n,Jr,"offset"),r._time=t,r._offset=n,r}cr(t,e),t.from=function(e){if(pr(e,"temporal"),e instanceof t)return e;if(e instanceof ia)return e.toOffsetTime();try{return new t(ca.from(e),Jr.from(e))}catch(t){throw new rr("Unable to obtain OffsetTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.now=function(e){return 0===arguments.length?t._now(ha.systemDefaultZone()):e instanceof ha?t._now(e):t._now(ha.system(e))},t._now=function(e){pr(e,"clock");var n=e.instant();return t.ofInstant(n,e.zone().rules().offset(n))},t.of=function(){return arguments.length<=2?t.ofTimeAndOffset.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofNumbers=function(e,n,r,i,a){return new t(ca.of(e,n,r,i),a)},t.ofTimeAndOffset=function(e,n){return new t(e,n)},t.ofInstant=function(e,n){pr(e,"instant"),mr(e,fa,"instant"),pr(n,"zone"),mr(n,Yr,"zone");var r=n.rules().offset(e),i=e.epochSecond()%ca.SECONDS_PER_DAY;return(i=(i+r.totalSeconds())%ca.SECONDS_PER_DAY)<0&&(i+=ca.SECONDS_PER_DAY),new t(ca.ofSecondOfDay(i,e.nano()),r)},t.parse=function(e,n){return void 0===n&&(n=Bi.ISO_OFFSET_TIME),pr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.adjustInto=function(e){return e.with(Cr.NANO_OF_DAY,this._time.toNanoOfDay()).with(Cr.OFFSET_SECONDS,this.offset().totalSeconds())},n.atDate=function(e){return ia.of(e,this._time,this._offset)},n.format=function(e){return pr(e,"formatter"),e.format(this,t.FROM)},n.get=function(t){return e.prototype.get.call(this,t)},n.getLong=function(e){return e instanceof Cr?e===Cr.OFFSET_SECONDS?this._offset.totalSeconds():this._time.getLong(e):e.getFrom(this)},n.hour=function(){return this._time.hour()},n.minute=function(){return this._time.minute()},n.second=function(){return this._time.second()},n.nano=function(){return this._time.nano()},n.offset=function(){return this._offset},n.isAfter=function(e){return pr(e,"other"),this._toEpochNano()>e._toEpochNano()},n.isBefore=function(e){return pr(e,"other"),this._toEpochNano()<e._toEpochNano()},n.isEqual=function(e){return pr(e,"other"),this._toEpochNano()===e._toEpochNano()},n.isSupported=function(e){return e instanceof Cr?e.isTimeBased()||e===Cr.OFFSET_SECONDS:e instanceof wr?e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.minusHours=function(e){return this._withLocalTimeOffset(this._time.minusHours(e),this._offset)},n.minusMinutes=function(e){return this._withLocalTimeOffset(this._time.minusMinutes(e),this._offset)},n.minusSeconds=function(e){return this._withLocalTimeOffset(this._time.minusSeconds(e),this._offset)},n.minusNanos=function(e){return this._withLocalTimeOffset(this._time.minusNanos(e),this._offset)},n._minusAmount=function(e){return pr(e),e.subtractFrom(this)},n._minusUnit=function(e,t){return this.plus(-1*e,t)},n._plusAmount=function(e){return pr(e),e.addTo(this)},n._plusUnit=function(e,t){return t instanceof wr?this._withLocalTimeOffset(this._time.plus(e,t),this._offset):t.addTo(this,e)},n.plusHours=function(e){return this._withLocalTimeOffset(this._time.plusHours(e),this._offset)},n.plusMinutes=function(e){return this._withLocalTimeOffset(this._time.plusMinutes(e),this._offset)},n.plusSeconds=function(e){return this._withLocalTimeOffset(this._time.plusSeconds(e),this._offset)},n.plusNanos=function(e){return this._withLocalTimeOffset(this._time.plusNanos(e),this._offset)},n.query=function(t){return pr(t,"query"),t===Lr.precision()?wr.NANOS:t===Lr.offset()||t===Lr.zone()?this.offset():t===Lr.localTime()?this._time:t===Lr.chronology()||t===Lr.localDate()||t===Lr.zoneId()?null:e.prototype.query.call(this,t)},n.range=function(e){return e instanceof Cr?e===Cr.OFFSET_SECONDS?e.range():this._time.range(e):e.rangeRefinedBy(this)},n.toLocalTime=function(){return this._time},n.truncatedTo=function(e){return this._withLocalTimeOffset(this._time.truncatedTo(e),this._offset)},n.until=function(e,n){pr(e,"endExclusive"),pr(n,"unit");var r=t.from(e);if(n instanceof wr){var i=r._toEpochNano()-this._toEpochNano();switch(n){case wr.NANOS:return i;case wr.MICROS:return Ar.intDiv(i,1e3);case wr.MILLIS:return Ar.intDiv(i,1e6);case wr.SECONDS:return Ar.intDiv(i,ca.NANOS_PER_SECOND);case wr.MINUTES:return Ar.intDiv(i,ca.NANOS_PER_MINUTE);case wr.HOURS:return Ar.intDiv(i,ca.NANOS_PER_HOUR);case wr.HALF_DAYS:return Ar.intDiv(i,12*ca.NANOS_PER_HOUR)}throw new ar("Unsupported unit: "+n)}return n.between(this,r)},n.withHour=function(e){return this._withLocalTimeOffset(this._time.withHour(e),this._offset)},n.withMinute=function(e){return this._withLocalTimeOffset(this._time.withMinute(e),this._offset)},n.withSecond=function(e){return this._withLocalTimeOffset(this._time.withSecond(e),this._offset)},n.withNano=function(e){return this._withLocalTimeOffset(this._time.withNano(e),this._offset)},n.withOffsetSameInstant=function(e){if(pr(e,"offset"),e.equals(this._offset))return this;var n=e.totalSeconds()-this._offset.totalSeconds();return new t(this._time.plusSeconds(n),e)},n.withOffsetSameLocal=function(e){return null!=e&&e.equals(this._offset)?this:new t(this._time,e)},n._toEpochNano=function(){return this._time.toNanoOfDay()-this._offset.totalSeconds()*ca.NANOS_PER_SECOND},n._withAdjuster=function(e){return pr(e,"adjuster"),e instanceof ca?this._withLocalTimeOffset(e,this._offset):e instanceof Jr?this._withLocalTimeOffset(this._time,e):e instanceof t?e:e.adjustInto(this)},n._withField=function(e,t){return pr(e,"field"),e instanceof Cr?e===Cr.OFFSET_SECONDS?this._withLocalTimeOffset(this._time,Jr.ofTotalSeconds(e.checkValidIntValue(t))):this._withLocalTimeOffset(this._time.with(e,t),this._offset):e.adjustInto(this,t)},n._withLocalTimeOffset=function(e,n){return this._time===e&&this._offset.equals(n)?this:new t(e,n)},n.compareTo=function(e){if(pr(e,"other"),mr(e,t,"other"),this._offset.equals(e._offset))return this._time.compareTo(e._time);var n=Ar.compareNumbers(this._toEpochNano(),e._toEpochNano());return 0===n?this._time.compareTo(e._time):n},n.equals=function(e){return this===e||e instanceof t&&(this._time.equals(e._time)&&this._offset.equals(e._offset))},n.hashCode=function(){return this._time.hashCode()^this._offset.hashCode()},n.toString=function(){return this._time.toString()+this._offset.toString()},n.toJSON=function(){return this.toString()},t}(Vr);var na=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.query=function(t){return t===Lr.zoneId()||t===Lr.zone()?this.zone():t===Lr.chronology()?this.toLocalDate().chronology():t===Lr.precision()?wr.NANOS:t===Lr.offset()?this.offset():t===Lr.localDate()?sa.ofEpochDay(this.toLocalDate().toEpochDay()):t===Lr.localTime()?this.toLocalTime():e.prototype.query.call(this,t)},n.format=function(e){return pr(e,"formatter"),e.format(this)},n.toInstant=function(){return fa.ofEpochSecond(this.toEpochSecond(),this.toLocalTime().nano())},n.toEpochSecond=function(){var e=86400*this.toLocalDate().toEpochDay()+this.toLocalTime().toSecondOfDay();return e-=this.offset().totalSeconds()},n.compareTo=function(e){pr(e,"other");var t=Ar.compareNumbers(this.toEpochSecond(),e.toEpochSecond());return 0===t&&0===(t=this.toLocalTime().nano()-e.toLocalTime().nano())&&0===(t=this.toLocalDateTime().compareTo(e.toLocalDateTime()))&&(t=function(e,t){if(e<t)return-1;if(e>t)return 1;return 0}(this.zone().id(),e.zone().id())),t},n.isAfter=function(e){pr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t>n||t===n&&this.toLocalTime().nano()>e.toLocalTime().nano()},n.isBefore=function(e){pr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t<n||t===n&&this.toLocalTime().nano()<e.toLocalTime().nano()},n.isEqual=function(e){return pr(e,"other"),this.toEpochSecond()===e.toEpochSecond()&&this.toLocalTime().nano()===e.toLocalTime().nano()},n.equals=function(e){return this===e||e instanceof t&&0===this.compareTo(e)},t}(Vr);var ra=function(e){function t(t,n,r){var i;return pr(t,"dateTime"),pr(n,"offset"),pr(r,"zone"),(i=e.call(this)||this)._dateTime=t,i._offset=n,i._zone=r,i}cr(t,e),t.now=function(e){var n;return n=e instanceof Yr?ha.system(e):null==e?ha.systemDefaultZone():e,t.ofInstant(n.instant(),n.zone())},t.of=function(){return arguments.length<=2?t.of2.apply(this,arguments):3===arguments.length&&arguments[0]instanceof sa?t.of3.apply(this,arguments):t.of8.apply(this,arguments)},t.of3=function(e,n,r){return t.of2(la.of(e,n),r)},t.of2=function(e,n){return t.ofLocal(e,n,null)},t.of8=function(e,n,r,i,a,o,s,u){var l=la.of(e,n,r,i,a,o,s);return t.ofLocal(l,u,null)},t.ofLocal=function(e,n,r){if(pr(e,"localDateTime"),pr(n,"zone"),n instanceof Jr)return new t(e,n,n);var i=null,a=n.rules(),o=a.validOffsets(e);if(1===o.length)i=o[0];else if(0===o.length){var s=a.transition(e);e=e.plusSeconds(s.duration().seconds()),i=s.offsetAfter()}else i=null!=r&&o.some((function(e){return e.equals(r)}))?r:pr(o[0],"offset");return new t(e,i,n)},t.ofInstant=function(){return 2===arguments.length?t.ofInstant2.apply(this,arguments):t.ofInstant3.apply(this,arguments)},t.ofInstant2=function(e,n){return pr(e,"instant"),pr(n,"zone"),t._create(e.epochSecond(),e.nano(),n)},t.ofInstant3=function(e,n,r){return pr(e,"localDateTime"),pr(n,"offset"),pr(r,"zone"),t._create(e.toEpochSecond(n),e.nano(),r)},t._create=function(e,n,r){var i=r.rules(),a=fa.ofEpochSecond(e,n),o=i.offset(a);return new t(la.ofEpochSecond(e,n,o),o,r)},t.ofStrict=function(e,n,r){pr(e,"localDateTime"),pr(n,"offset"),pr(r,"zone");var i=r.rules();if(!1===i.isValidOffset(e,n)){var a=i.transition(e);if(null!=a&&a.isGap())throw new rr("LocalDateTime "+e+" does not exist in zone "+r+" due to a gap in the local time-line, typically caused by daylight savings");throw new rr('ZoneOffset "'+n+'" is not valid for LocalDateTime "'+e+'" in zone "'+r+'"')}return new t(e,n,r)},t.ofLenient=function(e,n,r){if(pr(e,"localDateTime"),pr(n,"offset"),pr(r,"zone"),r instanceof Jr&&!1===n.equals(r))throw new sr("ZoneId must match ZoneOffset");return new t(e,n,r)},t.from=function(e){if(pr(e,"temporal"),e instanceof t)return e;var n=Yr.from(e);if(e.isSupported(Cr.INSTANT_SECONDS)){var r=t._from(e,n);if(null!=r)return r}var i=la.from(e);return t.of2(i,n)},t._from=function(e,n){try{return t.__from(e,n)}catch(e){if(!(e instanceof rr))throw e}},t.__from=function(e,n){var r=e.getLong(Cr.INSTANT_SECONDS),i=e.get(Cr.NANO_OF_SECOND);return t._create(r,i,n)},t.parse=function(e,n){return void 0===n&&(n=Bi.ISO_ZONED_DATE_TIME),pr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n._resolveLocal=function(e){return pr(e,"newDateTime"),t.ofLocal(e,this._zone,this._offset)},n._resolveInstant=function(e){return t.ofInstant3(e,this._offset,this._zone)},n._resolveOffset=function(e){return!1===e.equals(this._offset)&&this._zone.rules().isValidOffset(this._dateTime,e)?new t(this._dateTime,e,this._zone):this},n.isSupported=function(e){return e instanceof Cr||(e instanceof wr?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this))},n.range=function(e){return e instanceof Cr?e===Cr.INSTANT_SECONDS||e===Cr.OFFSET_SECONDS?e.range():this._dateTime.range(e):e.rangeRefinedBy(this)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e instanceof Cr){switch(e){case Cr.INSTANT_SECONDS:return this.toEpochSecond();case Cr.OFFSET_SECONDS:return this._offset.totalSeconds()}return this._dateTime.getLong(e)}return pr(e,"field"),e.getFrom(this)},n.offset=function(){return this._offset},n.withEarlierOffsetAtOverlap=function(){var e=this._zone.rules().transition(this._dateTime);if(null!=e&&e.isOverlap()){var n=e.offsetBefore();if(!1===n.equals(this._offset))return new t(this._dateTime,n,this._zone)}return this},n.withLaterOffsetAtOverlap=function(){var e=this._zone.rules().transition(this.toLocalDateTime());if(null!=e){var n=e.offsetAfter();if(!1===n.equals(this._offset))return new t(this._dateTime,n,this._zone)}return this},n.zone=function(){return this._zone},n.withZoneSameLocal=function(e){return pr(e,"zone"),this._zone.equals(e)?this:t.ofLocal(this._dateTime,e,this._offset)},n.withZoneSameInstant=function(e){return pr(e,"zone"),this._zone.equals(e)?this:t._create(this._dateTime.toEpochSecond(this._offset),this._dateTime.nano(),e)},n.withFixedOffsetZone=function(){return this._zone.equals(this._offset)?this:new t(this._dateTime,this._offset,this._offset)},n.year=function(){return this._dateTime.year()},n.monthValue=function(){return this._dateTime.monthValue()},n.month=function(){return this._dateTime.month()},n.dayOfMonth=function(){return this._dateTime.dayOfMonth()},n.dayOfYear=function(){return this._dateTime.dayOfYear()},n.dayOfWeek=function(){return this._dateTime.dayOfWeek()},n.hour=function(){return this._dateTime.hour()},n.minute=function(){return this._dateTime.minute()},n.second=function(){return this._dateTime.second()},n.nano=function(){return this._dateTime.nano()},n._withAdjuster=function(n){if(n instanceof sa)return this._resolveLocal(la.of(n,this._dateTime.toLocalTime()));if(n instanceof ca)return this._resolveLocal(la.of(this._dateTime.toLocalDate(),n));if(n instanceof la)return this._resolveLocal(n);if(n instanceof fa){var r=n;return t._create(r.epochSecond(),r.nano(),this._zone)}return n instanceof Jr?this._resolveOffset(n):e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(e instanceof Cr){switch(e){case Cr.INSTANT_SECONDS:return t._create(n,this.nano(),this._zone);case Cr.OFFSET_SECONDS:var r=Jr.ofTotalSeconds(e.checkValidIntValue(n));return this._resolveOffset(r)}return this._resolveLocal(this._dateTime.with(e,n))}return e.adjustInto(this,n)},n.withYear=function(e){return this._resolveLocal(this._dateTime.withYear(e))},n.withMonth=function(e){return this._resolveLocal(this._dateTime.withMonth(e))},n.withDayOfMonth=function(e){return this._resolveLocal(this._dateTime.withDayOfMonth(e))},n.withDayOfYear=function(e){return this._resolveLocal(this._dateTime.withDayOfYear(e))},n.withHour=function(e){return this._resolveLocal(this._dateTime.withHour(e))},n.withMinute=function(e){return this._resolveLocal(this._dateTime.withMinute(e))},n.withSecond=function(e){return this._resolveLocal(this._dateTime.withSecond(e))},n.withNano=function(e){return this._resolveLocal(this._dateTime.withNano(e))},n.truncatedTo=function(e){return this._resolveLocal(this._dateTime.truncatedTo(e))},n._plusUnit=function(e,t){return t instanceof wr?t.isDateBased()?this._resolveLocal(this._dateTime.plus(e,t)):this._resolveInstant(this._dateTime.plus(e,t)):(pr(t,"unit"),t.addTo(this,e))},n.plusYears=function(e){return this._resolveLocal(this._dateTime.plusYears(e))},n.plusMonths=function(e){return this._resolveLocal(this._dateTime.plusMonths(e))},n.plusWeeks=function(e){return this._resolveLocal(this._dateTime.plusWeeks(e))},n.plusDays=function(e){return this._resolveLocal(this._dateTime.plusDays(e))},n.plusHours=function(e){return this._resolveInstant(this._dateTime.plusHours(e))},n.plusMinutes=function(e){return this._resolveInstant(this._dateTime.plusMinutes(e))},n.plusSeconds=function(e){return this._resolveInstant(this._dateTime.plusSeconds(e))},n.plusNanos=function(e){return this._resolveInstant(this._dateTime.plusNanos(e))},n._minusUnit=function(e,t){return this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.minusHours=function(e){return this.plusHours(-1*e)},n.minusMinutes=function(e){return this.plusMinutes(-1*e)},n.minusSeconds=function(e){return this.plusSeconds(-1*e)},n.minusNanos=function(e){return this.plusNanos(-1*e)},n.query=function(t){return t===Lr.localDate()?this.toLocalDate():(pr(t,"query"),e.prototype.query.call(this,t))},n.until=function(e,n){var r=t.from(e);if(n instanceof wr){if(r=r.withZoneSameInstant(this._zone),n.isDateBased())return this._dateTime.until(r._dateTime,n);var i=this._offset.totalSeconds()-r._offset.totalSeconds(),a=r._dateTime.plusSeconds(i);return this._dateTime.until(a,n)}return n.between(this,r)},n.toLocalDateTime=function(){return this._dateTime},n.toLocalDate=function(){return this._dateTime.toLocalDate()},n.toLocalTime=function(){return this._dateTime.toLocalTime()},n.toOffsetDateTime=function(){return ia.of(this._dateTime,this._offset)},n.equals=function(e){return this===e||e instanceof t&&(this._dateTime.equals(e._dateTime)&&this._offset.equals(e._offset)&&this._zone.equals(e._zone))},n.hashCode=function(){return Ar.hashCode(this._dateTime.hashCode(),this._offset.hashCode(),this._zone.hashCode())},n.toString=function(){var e=this._dateTime.toString()+this._offset.toString();return this._offset!==this._zone&&(e+="["+this._zone.toString()+"]"),e},n.toJSON=function(){return this.toString()},n.format=function(t){return e.prototype.format.call(this,t)},t}(na);var ia=function(e){function t(t,n){var r;return r=e.call(this)||this,pr(t,"dateTime"),mr(t,la,"dateTime"),pr(n,"offset"),mr(n,Jr,"offset"),r._dateTime=t,r._offset=n,r}cr(t,e),t.from=function(e){if(pr(e,"temporal"),e instanceof t)return e;try{var n=Jr.from(e);try{var r=la.from(e);return t.of(r,n)}catch(r){var i=fa.from(e);return t.ofInstant(i,n)}}catch(t){throw new rr("Unable to obtain OffsetDateTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.now=function(e){if(0===arguments.length)return t.now(ha.systemDefaultZone());if(pr(e,"clockOrZone"),e instanceof Yr)return t.now(ha.system(e));if(e instanceof ha){var n=e.instant();return t.ofInstant(n,e.zone().rules().offset(n))}throw new sr("clockOrZone must be an instance of ZoneId or Clock")},t.of=function(){return arguments.length<=2?t.ofDateTime.apply(this,arguments):3===arguments.length?t.ofDateAndTime.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofDateTime=function(e,n){return new t(e,n)},t.ofDateAndTime=function(e,n,r){return new t(la.of(e,n),r)},t.ofNumbers=function(e,n,r,i,a,o,s,u){return void 0===i&&(i=0),void 0===a&&(a=0),void 0===o&&(o=0),void 0===s&&(s=0),new t(la.of(e,n,r,i,a,o,s),u)},t.ofInstant=function(e,n){pr(e,"instant"),pr(n,"zone");var r=n.rules().offset(e);return new t(la.ofEpochSecond(e.epochSecond(),e.nano(),r),r)},t.parse=function(e,n){return void 0===n&&(n=Bi.ISO_OFFSET_DATE_TIME),pr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.adjustInto=function(e){return e.with(Cr.EPOCH_DAY,this.toLocalDate().toEpochDay()).with(Cr.NANO_OF_DAY,this.toLocalTime().toNanoOfDay()).with(Cr.OFFSET_SECONDS,this.offset().totalSeconds())},n.until=function(e,n){var r=t.from(e);return n instanceof wr?(r=r.withOffsetSameInstant(this._offset),this._dateTime.until(r._dateTime,n)):n.between(this,r)},n.atZoneSameInstant=function(e){return ra.ofInstant(this._dateTime,this._offset,e)},n.atZoneSimilarLocal=function(e){return ra.ofLocal(this._dateTime,e,this._offset)},n.query=function(t){return pr(t,"query"),t===Lr.chronology()?ea.INSTANCE:t===Lr.precision()?wr.NANOS:t===Lr.offset()||t===Lr.zone()?this.offset():t===Lr.localDate()?this.toLocalDate():t===Lr.localTime()?this.toLocalTime():t===Lr.zoneId()?null:e.prototype.query.call(this,t)},n.get=function(t){if(t instanceof Cr){switch(t){case Cr.INSTANT_SECONDS:throw new rr("Field too large for an int: "+t);case Cr.OFFSET_SECONDS:return this.offset().totalSeconds()}return this._dateTime.get(t)}return e.prototype.get.call(this,t)},n.getLong=function(e){if(e instanceof Cr){switch(e){case Cr.INSTANT_SECONDS:return this.toEpochSecond();case Cr.OFFSET_SECONDS:return this.offset().totalSeconds()}return this._dateTime.getLong(e)}return e.getFrom(this)},n.offset=function(){return this._offset},n.year=function(){return this._dateTime.year()},n.monthValue=function(){return this._dateTime.monthValue()},n.month=function(){return this._dateTime.month()},n.dayOfMonth=function(){return this._dateTime.dayOfMonth()},n.dayOfYear=function(){return this._dateTime.dayOfYear()},n.dayOfWeek=function(){return this._dateTime.dayOfWeek()},n.hour=function(){return this._dateTime.hour()},n.minute=function(){return this._dateTime.minute()},n.second=function(){return this._dateTime.second()},n.nano=function(){return this._dateTime.nano()},n.toLocalDateTime=function(){return this._dateTime},n.toLocalDate=function(){return this._dateTime.toLocalDate()},n.toLocalTime=function(){return this._dateTime.toLocalTime()},n.toOffsetTime=function(){return ta.of(this._dateTime.toLocalTime(),this._offset)},n.toZonedDateTime=function(){return ra.of(this._dateTime,this._offset)},n.toInstant=function(){return this._dateTime.toInstant(this._offset)},n.toEpochSecond=function(){return this._dateTime.toEpochSecond(this._offset)},n.isSupported=function(e){return e instanceof Cr||e instanceof wr?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(e){return e instanceof Cr?e===Cr.INSTANT_SECONDS||e===Cr.OFFSET_SECONDS?e.range():this._dateTime.range(e):e.rangeRefinedBy(this)},n._withAdjuster=function(e){return pr(e),e instanceof sa||e instanceof ca||e instanceof la?this._withDateTimeOffset(this._dateTime.with(e),this._offset):e instanceof fa?t.ofInstant(e,this._offset):e instanceof Jr?this._withDateTimeOffset(this._dateTime,e):e instanceof t?e:e.adjustInto(this)},n._withField=function(e,n){if(pr(e),e instanceof Cr){var r=e;switch(r){case Cr.INSTANT_SECONDS:return t.ofInstant(fa.ofEpochSecond(n,this.nano()),this._offset);case Cr.OFFSET_SECONDS:return this._withDateTimeOffset(this._dateTime,Jr.ofTotalSeconds(r.checkValidIntValue(n)))}return this._withDateTimeOffset(this._dateTime.with(e,n),this._offset)}return e.adjustInto(this,n)},n._withDateTimeOffset=function(e,n){return this._dateTime===e&&this._offset.equals(n)?this:new t(e,n)},n.withYear=function(e){return this._withDateTimeOffset(this._dateTime.withYear(e),this._offset)},n.withMonth=function(e){return this._withDateTimeOffset(this._dateTime.withMonth(e),this._offset)},n.withDayOfMonth=function(e){return this._withDateTimeOffset(this._dateTime.withDayOfMonth(e),this._offset)},n.withDayOfYear=function(e){return this._withDateTimeOffset(this._dateTime.withDayOfYear(e),this._offset)},n.withHour=function(e){return this._withDateTimeOffset(this._dateTime.withHour(e),this._offset)},n.withMinute=function(e){return this._withDateTimeOffset(this._dateTime.withMinute(e),this._offset)},n.withSecond=function(e){return this._withDateTimeOffset(this._dateTime.withSecond(e),this._offset)},n.withNano=function(e){return this._withDateTimeOffset(this._dateTime.withNano(e),this._offset)},n.withOffsetSameLocal=function(e){return pr(e,"offset"),this._withDateTimeOffset(this._dateTime,e)},n.withOffsetSameInstant=function(e){if(pr(e,"offset"),e.equals(this._offset))return this;var n=e.totalSeconds()-this._offset.totalSeconds();return new t(this._dateTime.plusSeconds(n),e)},n.truncatedTo=function(e){return this._withDateTimeOffset(this._dateTime.truncatedTo(e),this._offset)},n._plusAmount=function(e){return pr(e,"amount"),e.addTo(this)},n._plusUnit=function(e,t){return t instanceof wr?this._withDateTimeOffset(this._dateTime.plus(e,t),this._offset):t.addTo(this,e)},n.plusYears=function(e){return this._withDateTimeOffset(this._dateTime.plusYears(e),this._offset)},n.plusMonths=function(e){return this._withDateTimeOffset(this._dateTime.plusMonths(e),this._offset)},n.plusWeeks=function(e){return this._withDateTimeOffset(this._dateTime.plusWeeks(e),this._offset)},n.plusDays=function(e){return this._withDateTimeOffset(this._dateTime.plusDays(e),this._offset)},n.plusHours=function(e){return this._withDateTimeOffset(this._dateTime.plusHours(e),this._offset)},n.plusMinutes=function(e){return this._withDateTimeOffset(this._dateTime.plusMinutes(e),this._offset)},n.plusSeconds=function(e){return this._withDateTimeOffset(this._dateTime.plusSeconds(e),this._offset)},n.plusNanos=function(e){return this._withDateTimeOffset(this._dateTime.plusNanos(e),this._offset)},n._minusAmount=function(e){return pr(e),e.subtractFrom(this)},n._minusUnit=function(e,t){return this.plus(-1*e,t)},n.minusYears=function(e){return this._withDateTimeOffset(this._dateTime.minusYears(e),this._offset)},n.minusMonths=function(e){return this._withDateTimeOffset(this._dateTime.minusMonths(e),this._offset)},n.minusWeeks=function(e){return this._withDateTimeOffset(this._dateTime.minusWeeks(e),this._offset)},n.minusDays=function(e){return this._withDateTimeOffset(this._dateTime.minusDays(e),this._offset)},n.minusHours=function(e){return this._withDateTimeOffset(this._dateTime.minusHours(e),this._offset)},n.minusMinutes=function(e){return this._withDateTimeOffset(this._dateTime.minusMinutes(e),this._offset)},n.minusSeconds=function(e){return this._withDateTimeOffset(this._dateTime.minusSeconds(e),this._offset)},n.minusNanos=function(e){return this._withDateTimeOffset(this._dateTime.minusNanos(e),this._offset)},n.compareTo=function(e){if(pr(e,"other"),mr(e,t,"other"),this.offset().equals(e.offset()))return this.toLocalDateTime().compareTo(e.toLocalDateTime());var n=Ar.compareNumbers(this.toEpochSecond(),e.toEpochSecond());return 0===n&&0===(n=this.toLocalTime().nano()-e.toLocalTime().nano())&&(n=this.toLocalDateTime().compareTo(e.toLocalDateTime())),n},n.isAfter=function(e){pr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t>n||t===n&&this.toLocalTime().nano()>e.toLocalTime().nano()},n.isBefore=function(e){pr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t<n||t===n&&this.toLocalTime().nano()<e.toLocalTime().nano()},n.isEqual=function(e){return pr(e,"other"),this.toEpochSecond()===e.toEpochSecond()&&this.toLocalTime().nano()===e.toLocalTime().nano()},n.equals=function(e){return this===e||e instanceof t&&(this._dateTime.equals(e._dateTime)&&this._offset.equals(e._offset))},n.hashCode=function(){return this._dateTime.hashCode()^this._offset.hashCode()},n.toString=function(){return this._dateTime.toString()+this._offset.toString()},n.toJSON=function(){return this.toString()},n.format=function(e){return pr(e,"formatter"),e.format(this)},t}(Vr);var aa=146097,oa=719528,sa=function(e){function t(n,r,i){var a;return a=e.call(this)||this,pr(n,"year"),pr(r,"month"),pr(i,"dayOfMonth"),r instanceof Rr&&(r=r.value()),a._year=Ar.safeToInt(n),a._month=Ar.safeToInt(r),a._day=Ar.safeToInt(i),t._validate(a._year,a._month,a._day),a}cr(t,e),t.now=function(e){var n;return n=null==e?ha.systemDefaultZone():e instanceof Yr?ha.system(e):e,t.ofInstant(n.instant(),n.zone())},t.ofInstant=function(e,n){void 0===n&&(n=Yr.systemDefault()),pr(e,"instant");var r=n.rules().offset(e),i=e.epochSecond()+r.totalSeconds(),a=Ar.floorDiv(i,ca.SECONDS_PER_DAY);return t.ofEpochDay(a)},t.of=function(e,n,r){return new t(e,n,r)},t.ofYearDay=function(e,n){Cr.YEAR.checkValidValue(e);var r=ea.isLeapYear(e);366===n&&!1===r&&hr(!1,"Invalid date 'DayOfYear 366' as '"+e+"' is not a leap year",rr);var i=Rr.of(Math.floor((n-1)/31+1));n>i.firstDayOfYear(r)+i.length(r)-1&&(i=i.plus(1));var a=n-i.firstDayOfYear(r)+1;return new t(e,i.value(),a)},t.ofEpochDay=function(e){var n,r,i,a,o;void 0===e&&(e=0),o=e+oa,n=0,(o-=60)<0&&(n=400*(r=Ar.intDiv(o+1,aa)-1),o+=-r*aa),(i=o-(365*(a=Ar.intDiv(400*o+591,aa))+Ar.intDiv(a,4)-Ar.intDiv(a,100)+Ar.intDiv(a,400)))<0&&(i=o-(365*--a+Ar.intDiv(a,4)-Ar.intDiv(a,100)+Ar.intDiv(a,400))),a+=n;var s=i,u=Ar.intDiv(5*s+2,153),l=(u+2)%12+1,c=s-Ar.intDiv(306*u+5,10)+1;return new t(a+=Ar.intDiv(u,10),l,c)},t.from=function(e){pr(e,"temporal");var t=e.query(Lr.localDate());if(null==t)throw new rr("Unable to obtain LocalDate from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},t.parse=function(e,n){return void 0===n&&(n=Bi.ISO_LOCAL_DATE),hr(null!=n,"formatter",lr),n.parse(e,t.FROM)},t._resolvePreviousValid=function(e,n,r){switch(n){case 2:r=Math.min(r,ea.isLeapYear(e)?29:28);break;case 4:case 6:case 9:case 11:r=Math.min(r,30)}return t.of(e,n,r)},t._validate=function(e,t,n){var r;if(Cr.YEAR.checkValidValue(e),Cr.MONTH_OF_YEAR.checkValidValue(t),Cr.DAY_OF_MONTH.checkValidValue(n),n>28){switch(r=31,t){case 2:r=ea.isLeapYear(e)?29:28;break;case 4:case 6:case 9:case 11:r=30}n>r&&hr(!1,29===n?"Invalid date 'February 29' as '"+e+"' is not a leap year":"Invalid date '"+e+"' '"+t+"' '"+n+"'",rr)}};var n=t.prototype;return n.isSupported=function(t){return e.prototype.isSupported.call(this,t)},n.range=function(e){if(e instanceof Cr){if(e.isDateBased()){switch(e){case Cr.DAY_OF_MONTH:return Nr.of(1,this.lengthOfMonth());case Cr.DAY_OF_YEAR:return Nr.of(1,this.lengthOfYear());case Cr.ALIGNED_WEEK_OF_MONTH:return Nr.of(1,this.month()===Rr.FEBRUARY&&!1===this.isLeapYear()?4:5);case Cr.YEAR_OF_ERA:return this._year<=0?Nr.of(1,Wi.MAX_VALUE+1):Nr.of(1,Wi.MAX_VALUE)}return e.range()}throw new ar("Unsupported field: "+e)}return e.rangeRefinedBy(this)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){return hr(null!=e,"",lr),e instanceof Cr?this._get0(e):e.getFrom(this)},n._get0=function(e){switch(e){case Cr.DAY_OF_WEEK:return this.dayOfWeek().value();case Cr.ALIGNED_DAY_OF_WEEK_IN_MONTH:return Ar.intMod(this._day-1,7)+1;case Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR:return Ar.intMod(this.dayOfYear()-1,7)+1;case Cr.DAY_OF_MONTH:return this._day;case Cr.DAY_OF_YEAR:return this.dayOfYear();case Cr.EPOCH_DAY:return this.toEpochDay();case Cr.ALIGNED_WEEK_OF_MONTH:return Ar.intDiv(this._day-1,7)+1;case Cr.ALIGNED_WEEK_OF_YEAR:return Ar.intDiv(this.dayOfYear()-1,7)+1;case Cr.MONTH_OF_YEAR:return this._month;case Cr.PROLEPTIC_MONTH:return this._prolepticMonth();case Cr.YEAR_OF_ERA:return this._year>=1?this._year:1-this._year;case Cr.YEAR:return this._year;case Cr.ERA:return this._year>=1?1:0}throw new ar("Unsupported field: "+e)},n._prolepticMonth=function(){return 12*this._year+(this._month-1)},n.chronology=function(){return ea.INSTANCE},n.year=function(){return this._year},n.monthValue=function(){return this._month},n.month=function(){return Rr.of(this._month)},n.dayOfMonth=function(){return this._day},n.dayOfYear=function(){return this.month().firstDayOfYear(this.isLeapYear())+this._day-1},n.dayOfWeek=function(){var e=Ar.floorMod(this.toEpochDay()+3,7);return kr.of(e+1)},n.isLeapYear=function(){return ea.isLeapYear(this._year)},n.lengthOfMonth=function(){switch(this._month){case 2:return this.isLeapYear()?29:28;case 4:case 6:case 9:case 11:return 30;default:return 31}},n.lengthOfYear=function(){return this.isLeapYear()?366:365},n._withAdjuster=function(n){return pr(n,"adjuster"),n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(hr(null!=e,"field",lr),e instanceof Cr){var r=e;switch(r.checkValidValue(n),r){case Cr.DAY_OF_WEEK:return this.plusDays(n-this.dayOfWeek().value());case Cr.ALIGNED_DAY_OF_WEEK_IN_MONTH:return this.plusDays(n-this.getLong(Cr.ALIGNED_DAY_OF_WEEK_IN_MONTH));case Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR:return this.plusDays(n-this.getLong(Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR));case Cr.DAY_OF_MONTH:return this.withDayOfMonth(n);case Cr.DAY_OF_YEAR:return this.withDayOfYear(n);case Cr.EPOCH_DAY:return t.ofEpochDay(n);case Cr.ALIGNED_WEEK_OF_MONTH:return this.plusWeeks(n-this.getLong(Cr.ALIGNED_WEEK_OF_MONTH));case Cr.ALIGNED_WEEK_OF_YEAR:return this.plusWeeks(n-this.getLong(Cr.ALIGNED_WEEK_OF_YEAR));case Cr.MONTH_OF_YEAR:return this.withMonth(n);case Cr.PROLEPTIC_MONTH:return this.plusMonths(n-this.getLong(Cr.PROLEPTIC_MONTH));case Cr.YEAR_OF_ERA:return this.withYear(this._year>=1?n:1-n);case Cr.YEAR:return this.withYear(n);case Cr.ERA:return this.getLong(Cr.ERA)===n?this:this.withYear(1-this._year)}throw new ar("Unsupported field: "+e)}return e.adjustInto(this,n)},n.withYear=function(e){return this._year===e?this:(Cr.YEAR.checkValidValue(e),t._resolvePreviousValid(e,this._month,this._day))},n.withMonth=function(e){var n=e instanceof Rr?e.value():e;return this._month===n?this:(Cr.MONTH_OF_YEAR.checkValidValue(n),t._resolvePreviousValid(this._year,n,this._day))},n.withDayOfMonth=function(e){return this._day===e?this:t.of(this._year,this._month,e)},n.withDayOfYear=function(e){return this.dayOfYear()===e?this:t.ofYearDay(this._year,e)},n._plusUnit=function(e,t){if(pr(e,"amountToAdd"),pr(t,"unit"),t instanceof wr){switch(t){case wr.DAYS:return this.plusDays(e);case wr.WEEKS:return this.plusWeeks(e);case wr.MONTHS:return this.plusMonths(e);case wr.YEARS:return this.plusYears(e);case wr.DECADES:return this.plusYears(Ar.safeMultiply(e,10));case wr.CENTURIES:return this.plusYears(Ar.safeMultiply(e,100));case wr.MILLENNIA:return this.plusYears(Ar.safeMultiply(e,1e3));case wr.ERAS:return this.with(Cr.ERA,Ar.safeAdd(this.getLong(Cr.ERA),e))}throw new ar("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){if(0===e)return this;var n=Cr.YEAR.checkValidIntValue(this._year+e);return t._resolvePreviousValid(n,this._month,this._day)},n.plusMonths=function(e){if(0===e)return this;var n=12*this._year+(this._month-1)+e,r=Cr.YEAR.checkValidIntValue(Ar.floorDiv(n,12)),i=Ar.floorMod(n,12)+1;return t._resolvePreviousValid(r,i,this._day)},n.plusWeeks=function(e){return this.plusDays(Ar.safeMultiply(e,7))},n.plusDays=function(e){if(0===e)return this;var n=Ar.safeAdd(this.toEpochDay(),e);return t.ofEpochDay(n)},n._minusUnit=function(e,t){return pr(e,"amountToSubtract"),pr(t,"unit"),this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.query=function(t){return pr(t,"query"),t===Lr.localDate()?this:e.prototype.query.call(this,t)},n.adjustInto=function(t){return e.prototype.adjustInto.call(this,t)},n.until=function(e,t){return arguments.length<2?this.until1(e):this.until2(e,t)},n.until2=function(e,n){var r=t.from(e);if(n instanceof wr){switch(n){case wr.DAYS:return this.daysUntil(r);case wr.WEEKS:return Ar.intDiv(this.daysUntil(r),7);case wr.MONTHS:return this._monthsUntil(r);case wr.YEARS:return Ar.intDiv(this._monthsUntil(r),12);case wr.DECADES:return Ar.intDiv(this._monthsUntil(r),120);case wr.CENTURIES:return Ar.intDiv(this._monthsUntil(r),1200);case wr.MILLENNIA:return Ar.intDiv(this._monthsUntil(r),12e3);case wr.ERAS:return r.getLong(Cr.ERA)-this.getLong(Cr.ERA)}throw new ar("Unsupported unit: "+n)}return n.between(this,r)},n.daysUntil=function(e){return e.toEpochDay()-this.toEpochDay()},n._monthsUntil=function(e){var t=32*this._prolepticMonth()+this.dayOfMonth(),n=32*e._prolepticMonth()+e.dayOfMonth();return Ar.intDiv(n-t,32)},n.until1=function(e){var n=t.from(e),r=n._prolepticMonth()-this._prolepticMonth(),i=n._day-this._day;if(r>0&&i<0){r--;var a=this.plusMonths(r);i=n.toEpochDay()-a.toEpochDay()}else r<0&&i>0&&(r++,i-=n.lengthOfMonth());var o=Ar.intDiv(r,12),s=Ar.intMod(r,12);return Pr.of(o,s,i)},n.atTime=function(){return 1===arguments.length?this.atTime1.apply(this,arguments):this.atTime4.apply(this,arguments)},n.atTime1=function(e){if(pr(e,"time"),e instanceof ca)return la.of(this,e);if(e instanceof ta)return this._atTimeOffsetTime(e);throw new sr("time must be an instance of LocalTime or OffsetTime"+(e&&e.constructor&&e.constructor.name?", but is "+e.constructor.name:""))},n.atTime4=function(e,t,n,r){return void 0===n&&(n=0),void 0===r&&(r=0),this.atTime1(ca.of(e,t,n,r))},n._atTimeOffsetTime=function(e){return ia.of(la.of(this,e.toLocalTime()),e.offset())},n.atStartOfDay=function(e){return null!=e?this._atStartOfDayWithZone(e):la.of(this,ca.MIDNIGHT)},n._atStartOfDayWithZone=function(e){pr(e,"zone");var t=this.atTime(ca.MIDNIGHT);if(e instanceof Jr==!1){var n=e.rules().transition(t);null!=n&&n.isGap()&&(t=n.dateTimeAfter())}return ra.of(t,e)},n.toEpochDay=function(){var e=this._year,t=this._month,n=0;return n+=365*e,e>=0?n+=Ar.intDiv(e+3,4)-Ar.intDiv(e+99,100)+Ar.intDiv(e+399,400):n-=Ar.intDiv(e,-4)-Ar.intDiv(e,-100)+Ar.intDiv(e,-400),n+=Ar.intDiv(367*t-362,12),n+=this.dayOfMonth()-1,t>2&&(n--,ea.isLeapYear(e)||n--),n-oa},n.compareTo=function(e){return pr(e,"other"),mr(e,t,"other"),this._compareTo0(e)},n._compareTo0=function(e){var t=this._year-e._year;return 0===t&&0===(t=this._month-e._month)&&(t=this._day-e._day),t},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.isEqual=function(e){return 0===this.compareTo(e)},n.equals=function(e){return this===e||e instanceof t&&0===this._compareTo0(e)},n.hashCode=function(){var e=this._year,t=this._month,n=this._day;return Ar.hash(4294965248&e^(e<<11)+(t<<6)+n)},n.toString=function(){var e=this._year,t=this._month,n=this._day;return(Math.abs(e)<1e3?e<0?"-"+(""+(e-1e4)).slice(-4):(""+(e+1e4)).slice(-4):e>9999?"+"+e:""+e)+(t<10?"-0"+t:"-"+t)+(n<10?"-0"+n:"-"+n)},n.toJSON=function(){return this.toString()},n.format=function(t){return pr(t,"formatter"),mr(t,Bi,"formatter"),e.prototype.format.call(this,t)},t}(jr);var ua=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.chronology=function(){return this.toLocalDate().chronology()},n.query=function(t){return t===Lr.chronology()?this.chronology():t===Lr.precision()?wr.NANOS:t===Lr.localDate()?sa.ofEpochDay(this.toLocalDate().toEpochDay()):t===Lr.localTime()?this.toLocalTime():t===Lr.zone()||t===Lr.zoneId()||t===Lr.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return e.with(Cr.EPOCH_DAY,this.toLocalDate().toEpochDay()).with(Cr.NANO_OF_DAY,this.toLocalTime().toNanoOfDay())},n.toInstant=function(e){return mr(e,Jr,"zoneId"),fa.ofEpochSecond(this.toEpochSecond(e),this.toLocalTime().nano())},n.toEpochSecond=function(e){pr(e,"offset");var t=86400*this.toLocalDate().toEpochDay()+this.toLocalTime().toSecondOfDay();return t-=e.totalSeconds(),Ar.safeToInt(t)},t}(Vr),la=function(e){function t(t,n){var r;return r=e.call(this)||this,mr(t,sa,"date"),mr(n,ca,"time"),r._date=t,r._time=n,r}cr(t,e),t.now=function(e){return null==e?t._now(ha.systemDefaultZone()):e instanceof ha?t._now(e):t._now(ha.system(e))},t._now=function(e){return pr(e,"clock"),t.ofInstant(e.instant(),e.zone())},t._ofEpochMillis=function(e,n){var r=Ar.floorDiv(e,1e3)+n.totalSeconds(),i=Ar.floorDiv(r,ca.SECONDS_PER_DAY),a=Ar.floorMod(r,ca.SECONDS_PER_DAY),o=1e6*Ar.floorMod(e,1e3);return new t(sa.ofEpochDay(i),ca.ofSecondOfDay(a,o))},t.of=function(){return arguments.length<=2?t.ofDateAndTime.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofNumbers=function(e,n,r,i,a,o,s){return void 0===i&&(i=0),void 0===a&&(a=0),void 0===o&&(o=0),void 0===s&&(s=0),new t(sa.of(e,n,r),ca.of(i,a,o,s))},t.ofDateAndTime=function(e,n){return pr(e,"date"),pr(n,"time"),new t(e,n)},t.ofInstant=function(e,n){void 0===n&&(n=Yr.systemDefault()),pr(e,"instant"),mr(e,fa,"instant"),pr(n,"zone");var r=n.rules().offset(e);return t.ofEpochSecond(e.epochSecond(),e.nano(),r)},t.ofEpochSecond=function(e,n,r){void 0===e&&(e=0),void 0===n&&(n=0),2===arguments.length&&n instanceof Jr&&(r=n,n=0),pr(r,"offset");var i=e+r.totalSeconds(),a=Ar.floorDiv(i,ca.SECONDS_PER_DAY),o=Ar.floorMod(i,ca.SECONDS_PER_DAY);return new t(sa.ofEpochDay(a),ca.ofSecondOfDay(o,n))},t.from=function(e){if(pr(e,"temporal"),e instanceof t)return e;if(e instanceof ra)return e.toLocalDateTime();try{return new t(sa.from(e),ca.from(e))}catch(t){throw new rr("Unable to obtain LocalDateTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return void 0===n&&(n=Bi.ISO_LOCAL_DATE_TIME),pr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n._withDateTime=function(e,n){return this._date.equals(e)&&this._time.equals(n)?this:new t(e,n)},n.isSupported=function(e){return e instanceof Cr||e instanceof wr?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(e){return e instanceof Cr?e.isTimeBased()?this._time.range(e):this._date.range(e):e.rangeRefinedBy(this)},n.get=function(t){return t instanceof Cr?t.isTimeBased()?this._time.get(t):this._date.get(t):e.prototype.get.call(this,t)},n.getLong=function(e){return pr(e,"field"),e instanceof Cr?e.isTimeBased()?this._time.getLong(e):this._date.getLong(e):e.getFrom(this)},n.year=function(){return this._date.year()},n.monthValue=function(){return this._date.monthValue()},n.month=function(){return this._date.month()},n.dayOfMonth=function(){return this._date.dayOfMonth()},n.dayOfYear=function(){return this._date.dayOfYear()},n.dayOfWeek=function(){return this._date.dayOfWeek()},n.hour=function(){return this._time.hour()},n.minute=function(){return this._time.minute()},n.second=function(){return this._time.second()},n.nano=function(){return this._time.nano()},n._withAdjuster=function(n){return pr(n,"adjuster"),n instanceof sa?this._withDateTime(n,this._time):n instanceof ca?this._withDateTime(this._date,n):n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,t){return pr(e,"field"),e instanceof Cr?e.isTimeBased()?this._withDateTime(this._date,this._time.with(e,t)):this._withDateTime(this._date.with(e,t),this._time):e.adjustInto(this,t)},n.withYear=function(e){return this._withDateTime(this._date.withYear(e),this._time)},n.withMonth=function(e){return this._withDateTime(this._date.withMonth(e),this._time)},n.withDayOfMonth=function(e){return this._withDateTime(this._date.withDayOfMonth(e),this._time)},n.withDayOfYear=function(e){return this._withDateTime(this._date.withDayOfYear(e),this._time)},n.withHour=function(e){var t=this._time.withHour(e);return this._withDateTime(this._date,t)},n.withMinute=function(e){var t=this._time.withMinute(e);return this._withDateTime(this._date,t)},n.withSecond=function(e){var t=this._time.withSecond(e);return this._withDateTime(this._date,t)},n.withNano=function(e){var t=this._time.withNano(e);return this._withDateTime(this._date,t)},n.truncatedTo=function(e){return this._withDateTime(this._date,this._time.truncatedTo(e))},n._plusUnit=function(e,t){if(pr(t,"unit"),t instanceof wr){switch(t){case wr.NANOS:return this.plusNanos(e);case wr.MICROS:return this.plusDays(Ar.intDiv(e,ca.MICROS_PER_DAY)).plusNanos(1e3*Ar.intMod(e,ca.MICROS_PER_DAY));case wr.MILLIS:return this.plusDays(Ar.intDiv(e,ca.MILLIS_PER_DAY)).plusNanos(1e6*Ar.intMod(e,ca.MILLIS_PER_DAY));case wr.SECONDS:return this.plusSeconds(e);case wr.MINUTES:return this.plusMinutes(e);case wr.HOURS:return this.plusHours(e);case wr.HALF_DAYS:return this.plusDays(Ar.intDiv(e,256)).plusHours(12*Ar.intMod(e,256))}return this._withDateTime(this._date.plus(e,t),this._time)}return t.addTo(this,e)},n.plusYears=function(e){var t=this._date.plusYears(e);return this._withDateTime(t,this._time)},n.plusMonths=function(e){var t=this._date.plusMonths(e);return this._withDateTime(t,this._time)},n.plusWeeks=function(e){var t=this._date.plusWeeks(e);return this._withDateTime(t,this._time)},n.plusDays=function(e){var t=this._date.plusDays(e);return this._withDateTime(t,this._time)},n.plusHours=function(e){return this._plusWithOverflow(this._date,e,0,0,0,1)},n.plusMinutes=function(e){return this._plusWithOverflow(this._date,0,e,0,0,1)},n.plusSeconds=function(e){return this._plusWithOverflow(this._date,0,0,e,0,1)},n.plusNanos=function(e){return this._plusWithOverflow(this._date,0,0,0,e,1)},n._minusUnit=function(e,t){return pr(t,"unit"),this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.minusHours=function(e){return this._plusWithOverflow(this._date,e,0,0,0,-1)},n.minusMinutes=function(e){return this._plusWithOverflow(this._date,0,e,0,0,-1)},n.minusSeconds=function(e){return this._plusWithOverflow(this._date,0,0,e,0,-1)},n.minusNanos=function(e){return this._plusWithOverflow(this._date,0,0,0,e,-1)},n._plusWithOverflow=function(e,t,n,r,i,a){if(0===t&&0===n&&0===r&&0===i)return this._withDateTime(e,this._time);var o=Ar.intDiv(i,ca.NANOS_PER_DAY)+Ar.intDiv(r,ca.SECONDS_PER_DAY)+Ar.intDiv(n,ca.MINUTES_PER_DAY)+Ar.intDiv(t,ca.HOURS_PER_DAY);o*=a;var s=Ar.intMod(i,ca.NANOS_PER_DAY)+Ar.intMod(r,ca.SECONDS_PER_DAY)*ca.NANOS_PER_SECOND+Ar.intMod(n,ca.MINUTES_PER_DAY)*ca.NANOS_PER_MINUTE+Ar.intMod(t,ca.HOURS_PER_DAY)*ca.NANOS_PER_HOUR,u=this._time.toNanoOfDay();s=s*a+u,o+=Ar.floorDiv(s,ca.NANOS_PER_DAY);var l=Ar.floorMod(s,ca.NANOS_PER_DAY),c=l===u?this._time:ca.ofNanoOfDay(l);return this._withDateTime(e.plusDays(o),c)},n.query=function(t){return pr(t,"query"),t===Lr.localDate()?this.toLocalDate():e.prototype.query.call(this,t)},n.adjustInto=function(t){return e.prototype.adjustInto.call(this,t)},n.until=function(e,n){pr(e,"endExclusive"),pr(n,"unit");var r=t.from(e);if(n instanceof wr){if(n.isTimeBased()){var i=this._date.daysUntil(r._date),a=r._time.toNanoOfDay()-this._time.toNanoOfDay();i>0&&a<0?(i--,a+=ca.NANOS_PER_DAY):i<0&&a>0&&(i++,a-=ca.NANOS_PER_DAY);var o=i;switch(n){case wr.NANOS:return o=Ar.safeMultiply(o,ca.NANOS_PER_DAY),Ar.safeAdd(o,a);case wr.MICROS:return o=Ar.safeMultiply(o,ca.MICROS_PER_DAY),Ar.safeAdd(o,Ar.intDiv(a,1e3));case wr.MILLIS:return o=Ar.safeMultiply(o,ca.MILLIS_PER_DAY),Ar.safeAdd(o,Ar.intDiv(a,1e6));case wr.SECONDS:return o=Ar.safeMultiply(o,ca.SECONDS_PER_DAY),Ar.safeAdd(o,Ar.intDiv(a,ca.NANOS_PER_SECOND));case wr.MINUTES:return o=Ar.safeMultiply(o,ca.MINUTES_PER_DAY),Ar.safeAdd(o,Ar.intDiv(a,ca.NANOS_PER_MINUTE));case wr.HOURS:return o=Ar.safeMultiply(o,ca.HOURS_PER_DAY),Ar.safeAdd(o,Ar.intDiv(a,ca.NANOS_PER_HOUR));case wr.HALF_DAYS:return o=Ar.safeMultiply(o,2),Ar.safeAdd(o,Ar.intDiv(a,12*ca.NANOS_PER_HOUR))}throw new ar("Unsupported unit: "+n)}var s=r._date,u=r._time;return s.isAfter(this._date)&&u.isBefore(this._time)?s=s.minusDays(1):s.isBefore(this._date)&&u.isAfter(this._time)&&(s=s.plusDays(1)),this._date.until(s,n)}return n.between(this,r)},n.atOffset=function(e){return ia.of(this,e)},n.atZone=function(e){return ra.of(this,e)},n.toLocalDate=function(){return this._date},n.toLocalTime=function(){return this._time},n.compareTo=function(e){return pr(e,"other"),mr(e,t,"other"),this._compareTo0(e)},n._compareTo0=function(e){var t=this._date.compareTo(e.toLocalDate());return 0===t&&(t=this._time.compareTo(e.toLocalTime())),t},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.isEqual=function(e){return 0===this.compareTo(e)},n.equals=function(e){return this===e||e instanceof t&&(this._date.equals(e._date)&&this._time.equals(e._time))},n.hashCode=function(){return this._date.hashCode()^this._time.hashCode()},n.toString=function(){return this._date.toString()+"T"+this._time.toString()},n.toJSON=function(){return this.toString()},n.format=function(e){return pr(e,"formatter"),e.format(this)},t}(ua);var ca=function(e){function t(n,r,i,a){var o;void 0===n&&(n=0),void 0===r&&(r=0),void 0===i&&(i=0),void 0===a&&(a=0),o=e.call(this)||this;var s=Ar.safeToInt(n),u=Ar.safeToInt(r),l=Ar.safeToInt(i),c=Ar.safeToInt(a);return t._validate(s,u,l,c),0===u&&0===l&&0===c?(t.HOURS[s]||(o._hour=s,o._minute=u,o._second=l,o._nano=c,t.HOURS[s]=fr(o)),t.HOURS[s]||fr(o)):(o._hour=s,o._minute=u,o._second=l,o._nano=c,o)}cr(t,e),t.now=function(e){return null==e?t._now(ha.systemDefaultZone()):e instanceof ha?t._now(e):t._now(ha.system(e))},t._now=function(e){return void 0===e&&(e=ha.systemDefaultZone()),pr(e,"clock"),t.ofInstant(e.instant(),e.zone())},t.ofInstant=function(e,n){void 0===n&&(n=Yr.systemDefault());var r=n.rules().offset(e),i=Ar.intMod(e.epochSecond(),t.SECONDS_PER_DAY);return(i=Ar.intMod(i+r.totalSeconds(),t.SECONDS_PER_DAY))<0&&(i+=t.SECONDS_PER_DAY),t.ofSecondOfDay(i,e.nano())},t.of=function(e,n,r,i){return new t(e,n,r,i)},t.ofSecondOfDay=function(e,n){void 0===e&&(e=0),void 0===n&&(n=0),Cr.SECOND_OF_DAY.checkValidValue(e),Cr.NANO_OF_SECOND.checkValidValue(n);var r=Ar.intDiv(e,t.SECONDS_PER_HOUR);e-=r*t.SECONDS_PER_HOUR;var i=Ar.intDiv(e,t.SECONDS_PER_MINUTE);return new t(r,i,e-=i*t.SECONDS_PER_MINUTE,n)},t.ofNanoOfDay=function(e){void 0===e&&(e=0),Cr.NANO_OF_DAY.checkValidValue(e);var n=Ar.intDiv(e,t.NANOS_PER_HOUR);e-=n*t.NANOS_PER_HOUR;var r=Ar.intDiv(e,t.NANOS_PER_MINUTE);e-=r*t.NANOS_PER_MINUTE;var i=Ar.intDiv(e,t.NANOS_PER_SECOND);return new t(n,r,i,e-=i*t.NANOS_PER_SECOND)},t.from=function(e){pr(e,"temporal");var t=e.query(Lr.localTime());if(null==t)throw new rr("Unable to obtain LocalTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},t.parse=function(e,n){return void 0===n&&(n=Bi.ISO_LOCAL_TIME),pr(n,"formatter"),n.parse(e,t.FROM)},t._validate=function(e,t,n,r){Cr.HOUR_OF_DAY.checkValidValue(e),Cr.MINUTE_OF_HOUR.checkValidValue(t),Cr.SECOND_OF_MINUTE.checkValidValue(n),Cr.NANO_OF_SECOND.checkValidValue(r)};var n=t.prototype;return n.isSupported=function(e){return e instanceof Cr||e instanceof wr?e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(t){return pr(t),e.prototype.range.call(this,t)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){return pr(e,"field"),e instanceof Cr?this._get0(e):e.getFrom(this)},n._get0=function(e){switch(e){case Cr.NANO_OF_SECOND:return this._nano;case Cr.NANO_OF_DAY:return this.toNanoOfDay();case Cr.MICRO_OF_SECOND:return Ar.intDiv(this._nano,1e3);case Cr.MICRO_OF_DAY:return Ar.intDiv(this.toNanoOfDay(),1e3);case Cr.MILLI_OF_SECOND:return Ar.intDiv(this._nano,1e6);case Cr.MILLI_OF_DAY:return Ar.intDiv(this.toNanoOfDay(),1e6);case Cr.SECOND_OF_MINUTE:return this._second;case Cr.SECOND_OF_DAY:return this.toSecondOfDay();case Cr.MINUTE_OF_HOUR:return this._minute;case Cr.MINUTE_OF_DAY:return 60*this._hour+this._minute;case Cr.HOUR_OF_AMPM:return Ar.intMod(this._hour,12);case Cr.CLOCK_HOUR_OF_AMPM:var t=Ar.intMod(this._hour,12);return t%12==0?12:t;case Cr.HOUR_OF_DAY:return this._hour;case Cr.CLOCK_HOUR_OF_DAY:return 0===this._hour?24:this._hour;case Cr.AMPM_OF_DAY:return Ar.intDiv(this._hour,12)}throw new ar("Unsupported field: "+e)},n.hour=function(){return this._hour},n.minute=function(){return this._minute},n.second=function(){return this._second},n.nano=function(){return this._nano},n._withAdjuster=function(n){return pr(n,"adjuster"),n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(pr(e,"field"),mr(e,Or,"field"),e instanceof Cr){switch(e.checkValidValue(n),e){case Cr.NANO_OF_SECOND:return this.withNano(n);case Cr.NANO_OF_DAY:return t.ofNanoOfDay(n);case Cr.MICRO_OF_SECOND:return this.withNano(1e3*n);case Cr.MICRO_OF_DAY:return t.ofNanoOfDay(1e3*n);case Cr.MILLI_OF_SECOND:return this.withNano(1e6*n);case Cr.MILLI_OF_DAY:return t.ofNanoOfDay(1e6*n);case Cr.SECOND_OF_MINUTE:return this.withSecond(n);case Cr.SECOND_OF_DAY:return this.plusSeconds(n-this.toSecondOfDay());case Cr.MINUTE_OF_HOUR:return this.withMinute(n);case Cr.MINUTE_OF_DAY:return this.plusMinutes(n-(60*this._hour+this._minute));case Cr.HOUR_OF_AMPM:return this.plusHours(n-Ar.intMod(this._hour,12));case Cr.CLOCK_HOUR_OF_AMPM:return this.plusHours((12===n?0:n)-Ar.intMod(this._hour,12));case Cr.HOUR_OF_DAY:return this.withHour(n);case Cr.CLOCK_HOUR_OF_DAY:return this.withHour(24===n?0:n);case Cr.AMPM_OF_DAY:return this.plusHours(12*(n-Ar.intDiv(this._hour,12)))}throw new ar("Unsupported field: "+e)}return e.adjustInto(this,n)},n.withHour=function(e){return void 0===e&&(e=0),this._hour===e?this:new t(e,this._minute,this._second,this._nano)},n.withMinute=function(e){return void 0===e&&(e=0),this._minute===e?this:new t(this._hour,e,this._second,this._nano)},n.withSecond=function(e){return void 0===e&&(e=0),this._second===e?this:new t(this._hour,this._minute,e,this._nano)},n.withNano=function(e){return void 0===e&&(e=0),this._nano===e?this:new t(this._hour,this._minute,this._second,e)},n.truncatedTo=function(e){if(pr(e,"unit"),e===wr.NANOS)return this;var n=e.duration();if(n.seconds()>t.SECONDS_PER_DAY)throw new rr("Unit is too large to be used for truncation");var r=n.toNanos();if(0!==Ar.intMod(t.NANOS_PER_DAY,r))throw new rr("Unit must divide into a standard day without remainder");var i=this.toNanoOfDay();return t.ofNanoOfDay(Ar.intDiv(i,r)*r)},n._plusUnit=function(e,n){if(pr(n,"unit"),n instanceof wr){switch(n){case wr.NANOS:return this.plusNanos(e);case wr.MICROS:return this.plusNanos(1e3*Ar.intMod(e,t.MICROS_PER_DAY));case wr.MILLIS:return this.plusNanos(1e6*Ar.intMod(e,t.MILLIS_PER_DAY));case wr.SECONDS:return this.plusSeconds(e);case wr.MINUTES:return this.plusMinutes(e);case wr.HOURS:return this.plusHours(e);case wr.HALF_DAYS:return this.plusHours(12*Ar.intMod(e,2))}throw new ar("Unsupported unit: "+n)}return n.addTo(this,e)},n.plusHours=function(e){return 0===e?this:new t(Ar.intMod(Ar.intMod(e,t.HOURS_PER_DAY)+this._hour+t.HOURS_PER_DAY,t.HOURS_PER_DAY),this._minute,this._second,this._nano)},n.plusMinutes=function(e){if(0===e)return this;var n=this._hour*t.MINUTES_PER_HOUR+this._minute,r=Ar.intMod(Ar.intMod(e,t.MINUTES_PER_DAY)+n+t.MINUTES_PER_DAY,t.MINUTES_PER_DAY);return n===r?this:new t(Ar.intDiv(r,t.MINUTES_PER_HOUR),Ar.intMod(r,t.MINUTES_PER_HOUR),this._second,this._nano)},n.plusSeconds=function(e){if(0===e)return this;var n=this._hour*t.SECONDS_PER_HOUR+this._minute*t.SECONDS_PER_MINUTE+this._second,r=Ar.intMod(Ar.intMod(e,t.SECONDS_PER_DAY)+n+t.SECONDS_PER_DAY,t.SECONDS_PER_DAY);return n===r?this:new t(Ar.intDiv(r,t.SECONDS_PER_HOUR),Ar.intMod(Ar.intDiv(r,t.SECONDS_PER_MINUTE),t.MINUTES_PER_HOUR),Ar.intMod(r,t.SECONDS_PER_MINUTE),this._nano)},n.plusNanos=function(e){if(0===e)return this;var n=this.toNanoOfDay(),r=Ar.intMod(Ar.intMod(e,t.NANOS_PER_DAY)+n+t.NANOS_PER_DAY,t.NANOS_PER_DAY);return n===r?this:new t(Ar.intDiv(r,t.NANOS_PER_HOUR),Ar.intMod(Ar.intDiv(r,t.NANOS_PER_MINUTE),t.MINUTES_PER_HOUR),Ar.intMod(Ar.intDiv(r,t.NANOS_PER_SECOND),t.SECONDS_PER_MINUTE),Ar.intMod(r,t.NANOS_PER_SECOND))},n._minusUnit=function(e,t){return pr(t,"unit"),this._plusUnit(-1*e,t)},n.minusHours=function(e){return this.plusHours(-1*Ar.intMod(e,t.HOURS_PER_DAY))},n.minusMinutes=function(e){return this.plusMinutes(-1*Ar.intMod(e,t.MINUTES_PER_DAY))},n.minusSeconds=function(e){return this.plusSeconds(-1*Ar.intMod(e,t.SECONDS_PER_DAY))},n.minusNanos=function(e){return this.plusNanos(-1*Ar.intMod(e,t.NANOS_PER_DAY))},n.query=function(e){return pr(e,"query"),e===Lr.precision()?wr.NANOS:e===Lr.localTime()?this:e===Lr.chronology()||e===Lr.zoneId()||e===Lr.zone()||e===Lr.offset()||e===Lr.localDate()?null:e.queryFrom(this)},n.adjustInto=function(e){return e.with(t.NANO_OF_DAY,this.toNanoOfDay())},n.until=function(e,n){pr(e,"endExclusive"),pr(n,"unit");var r=t.from(e);if(n instanceof wr){var i=r.toNanoOfDay()-this.toNanoOfDay();switch(n){case wr.NANOS:return i;case wr.MICROS:return Ar.intDiv(i,1e3);case wr.MILLIS:return Ar.intDiv(i,1e6);case wr.SECONDS:return Ar.intDiv(i,t.NANOS_PER_SECOND);case wr.MINUTES:return Ar.intDiv(i,t.NANOS_PER_MINUTE);case wr.HOURS:return Ar.intDiv(i,t.NANOS_PER_HOUR);case wr.HALF_DAYS:return Ar.intDiv(i,12*t.NANOS_PER_HOUR)}throw new ar("Unsupported unit: "+n)}return n.between(this,r)},n.atDate=function(e){return la.of(e,this)},n.atOffset=function(e){return ta.of(this,e)},n.toSecondOfDay=function(){var e=this._hour*t.SECONDS_PER_HOUR;return e+=this._minute*t.SECONDS_PER_MINUTE,e+=this._second},n.toNanoOfDay=function(){var e=this._hour*t.NANOS_PER_HOUR;return e+=this._minute*t.NANOS_PER_MINUTE,e+=this._second*t.NANOS_PER_SECOND,e+=this._nano},n.compareTo=function(e){pr(e,"other"),mr(e,t,"other");var n=Ar.compareNumbers(this._hour,e._hour);return 0===n&&0===(n=Ar.compareNumbers(this._minute,e._minute))&&0===(n=Ar.compareNumbers(this._second,e._second))&&(n=Ar.compareNumbers(this._nano,e._nano)),n},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){return this===e||e instanceof t&&(this._hour===e._hour&&this._minute===e._minute&&this._second===e._second&&this._nano===e._nano)},n.hashCode=function(){var e=this.toNanoOfDay();return Ar.hash(e)},n.toString=function(){var e="",t=this._hour,n=this._minute,r=this._second,i=this._nano;return e+=t<10?"0":"",e+=t,e+=n<10?":0":":",e+=n,(r>0||i>0)&&(e+=r<10?":0":":",e+=r,i>0&&(e+=".",0===Ar.intMod(i,1e6)?e+=(""+(Ar.intDiv(i,1e6)+1e3)).substring(1):0===Ar.intMod(i,1e3)?e+=(""+(Ar.intDiv(i,1e3)+1e6)).substring(1):e+=(""+(i+1e9)).substring(1))),e},n.toJSON=function(){return this.toString()},n.format=function(e){return pr(e,"formatter"),e.format(this)},t}(Vr);ca.HOURS_PER_DAY=24,ca.MINUTES_PER_HOUR=60,ca.MINUTES_PER_DAY=ca.MINUTES_PER_HOUR*ca.HOURS_PER_DAY,ca.SECONDS_PER_MINUTE=60,ca.SECONDS_PER_HOUR=ca.SECONDS_PER_MINUTE*ca.MINUTES_PER_HOUR,ca.SECONDS_PER_DAY=ca.SECONDS_PER_HOUR*ca.HOURS_PER_DAY,ca.MILLIS_PER_DAY=1e3*ca.SECONDS_PER_DAY,ca.MICROS_PER_DAY=1e6*ca.SECONDS_PER_DAY,ca.NANOS_PER_SECOND=1e9,ca.NANOS_PER_MINUTE=ca.NANOS_PER_SECOND*ca.SECONDS_PER_MINUTE,ca.NANOS_PER_HOUR=ca.NANOS_PER_MINUTE*ca.MINUTES_PER_HOUR,ca.NANOS_PER_DAY=ca.NANOS_PER_HOUR*ca.HOURS_PER_DAY;var da=1e6,fa=function(e){function t(n,r){var i;return i=e.call(this)||this,t._validate(n,r),i._seconds=Ar.safeToInt(n),i._nanos=Ar.safeToInt(r),i}cr(t,e),t.now=function(e){return void 0===e&&(e=ha.systemUTC()),e.instant()},t.ofEpochSecond=function(e,n){void 0===n&&(n=0);var r=e+Ar.floorDiv(n,ca.NANOS_PER_SECOND),i=Ar.floorMod(n,ca.NANOS_PER_SECOND);return t._create(r,i)},t.ofEpochMilli=function(e){var n=Ar.floorDiv(e,1e3),r=Ar.floorMod(e,1e3);return t._create(n,1e6*r)},t.ofEpochMicro=function(e){var n=Ar.floorDiv(e,1e6),r=Ar.floorMod(e,1e6);return t._create(n,1e3*r)},t.from=function(e){try{var n=e.getLong(Cr.INSTANT_SECONDS),r=e.get(Cr.NANO_OF_SECOND);return t.ofEpochSecond(n,r)}catch(t){throw new rr("Unable to obtain Instant from TemporalAccessor: "+e+", type "+typeof e,t)}},t.parse=function(e){return Bi.ISO_INSTANT.parse(e,t.FROM)},t._create=function(e,n){return 0===e&&0===n?t.EPOCH:new t(e,n)},t._validate=function(e,n){if(e<t.MIN_SECONDS||e>t.MAX_SECONDS)throw new rr("Instant exceeds minimum or maximum instant");if(n<0||n>ca.NANOS_PER_SECOND)throw new rr("Instant exceeds minimum or maximum instant")};var n=t.prototype;return n.isSupported=function(e){return e instanceof Cr?e===Cr.INSTANT_SECONDS||e===Cr.NANO_OF_SECOND||e===Cr.MICRO_OF_SECOND||e===Cr.MILLI_OF_SECOND:e instanceof wr?e.isTimeBased()||e===wr.DAYS:null!=e&&e.isSupportedBy(this)},n.range=function(t){return e.prototype.range.call(this,t)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e instanceof Cr){switch(e){case Cr.NANO_OF_SECOND:return this._nanos;case Cr.MICRO_OF_SECOND:return Ar.intDiv(this._nanos,1e3);case Cr.MILLI_OF_SECOND:return Ar.intDiv(this._nanos,da);case Cr.INSTANT_SECONDS:return this._seconds}throw new ar("Unsupported field: "+e)}return e.getFrom(this)},n.epochSecond=function(){return this._seconds},n.nano=function(){return this._nanos},n._withField=function(e,n){if(pr(e,"field"),e instanceof Cr){switch(e.checkValidValue(n),e){case Cr.MILLI_OF_SECOND:var r=n*da;return r!==this._nanos?t._create(this._seconds,r):this;case Cr.MICRO_OF_SECOND:var i=1e3*n;return i!==this._nanos?t._create(this._seconds,i):this;case Cr.NANO_OF_SECOND:return n!==this._nanos?t._create(this._seconds,n):this;case Cr.INSTANT_SECONDS:return n!==this._seconds?t._create(n,this._nanos):this}throw new ar("Unsupported field: "+e)}return e.adjustInto(this,n)},n.truncatedTo=function(e){if(pr(e,"unit"),e===wr.NANOS)return this;var t=e.duration();if(t.seconds()>ca.SECONDS_PER_DAY)throw new rr("Unit is too large to be used for truncation");var n=t.toNanos();if(0!==Ar.intMod(ca.NANOS_PER_DAY,n))throw new rr("Unit must divide into a standard day without remainder");var r=Ar.intMod(this._seconds,ca.SECONDS_PER_DAY)*ca.NANOS_PER_SECOND+this._nanos,i=Ar.intDiv(r,n)*n;return this.plusNanos(i-r)},n._plusUnit=function(e,t){if(pr(e,"amountToAdd"),pr(t,"unit"),mr(t,Sr),t instanceof wr){switch(t){case wr.NANOS:return this.plusNanos(e);case wr.MICROS:return this.plusMicros(e);case wr.MILLIS:return this.plusMillis(e);case wr.SECONDS:return this.plusSeconds(e);case wr.MINUTES:return this.plusSeconds(Ar.safeMultiply(e,ca.SECONDS_PER_MINUTE));case wr.HOURS:return this.plusSeconds(Ar.safeMultiply(e,ca.SECONDS_PER_HOUR));case wr.HALF_DAYS:return this.plusSeconds(Ar.safeMultiply(e,ca.SECONDS_PER_DAY/2));case wr.DAYS:return this.plusSeconds(Ar.safeMultiply(e,ca.SECONDS_PER_DAY))}throw new ar("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusSeconds=function(e){return this._plus(e,0)},n.plusMillis=function(e){return this._plus(Ar.intDiv(e,1e3),Ar.intMod(e,1e3)*da)},n.plusNanos=function(e){return this._plus(0,e)},n.plusMicros=function(e){return this._plus(Ar.intDiv(e,1e6),1e3*Ar.intMod(e,1e6))},n._plus=function(e,n){if(0===e&&0===n)return this;var r=this._seconds+e;r+=Ar.intDiv(n,ca.NANOS_PER_SECOND);var i=this._nanos+n%ca.NANOS_PER_SECOND;return t.ofEpochSecond(r,i)},n._minusUnit=function(e,t){return this._plusUnit(-1*e,t)},n.minusSeconds=function(e){return this.plusSeconds(-1*e)},n.minusMillis=function(e){return this.plusMillis(-1*e)},n.minusNanos=function(e){return this.plusNanos(-1*e)},n.minusMicros=function(e){return this.plusMicros(-1*e)},n.query=function(e){return pr(e,"query"),e===Lr.precision()?wr.NANOS:e===Lr.localDate()||e===Lr.localTime()||e===Lr.chronology()||e===Lr.zoneId()||e===Lr.zone()||e===Lr.offset()?null:e.queryFrom(this)},n.adjustInto=function(e){return pr(e,"temporal"),e.with(Cr.INSTANT_SECONDS,this._seconds).with(Cr.NANO_OF_SECOND,this._nanos)},n.until=function(e,n){pr(e,"endExclusive"),pr(n,"unit");var r=t.from(e);if(n instanceof wr){switch(n){case wr.NANOS:return this._nanosUntil(r);case wr.MICROS:return this._microsUntil(r);case wr.MILLIS:return Ar.safeSubtract(r.toEpochMilli(),this.toEpochMilli());case wr.SECONDS:return this._secondsUntil(r);case wr.MINUTES:return Ar.intDiv(this._secondsUntil(r),ca.SECONDS_PER_MINUTE);case wr.HOURS:return Ar.intDiv(this._secondsUntil(r),ca.SECONDS_PER_HOUR);case wr.HALF_DAYS:return Ar.intDiv(this._secondsUntil(r),12*ca.SECONDS_PER_HOUR);case wr.DAYS:return Ar.intDiv(this._secondsUntil(r),ca.SECONDS_PER_DAY)}throw new ar("Unsupported unit: "+n)}return n.between(this,r)},n._microsUntil=function(e){var t=Ar.safeSubtract(e.epochSecond(),this.epochSecond()),n=Ar.safeMultiply(t,1e6);return Ar.safeAdd(n,Ar.intDiv(e.nano()-this.nano(),1e3))},n._nanosUntil=function(e){var t=Ar.safeSubtract(e.epochSecond(),this.epochSecond()),n=Ar.safeMultiply(t,ca.NANOS_PER_SECOND);return Ar.safeAdd(n,e.nano()-this.nano())},n._secondsUntil=function(e){var t=Ar.safeSubtract(e.epochSecond(),this.epochSecond()),n=e.nano()-this.nano();return t>0&&n<0?t--:t<0&&n>0&&t++,t},n.atOffset=function(e){return ia.ofInstant(this,e)},n.atZone=function(e){return ra.ofInstant(this,e)},n.toEpochMilli=function(){return Ar.safeMultiply(this._seconds,1e3)+Ar.intDiv(this._nanos,da)},n.compareTo=function(e){pr(e,"otherInstant"),mr(e,t,"otherInstant");var n=Ar.compareNumbers(this._seconds,e._seconds);return 0!==n?n:this._nanos-e._nanos},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){return this===e||e instanceof t&&(this.epochSecond()===e.epochSecond()&&this.nano()===e.nano())},n.hashCode=function(){return Ar.hashCode(this._seconds,this._nanos)},n.toString=function(){return Bi.ISO_INSTANT.format(this)},n.toJSON=function(){return this.toString()},t}(Vr);var ha=function(){function e(){}e.systemUTC=function(){return new pa(Jr.UTC)},e.systemDefaultZone=function(){return new pa(Yr.systemDefault())},e.system=function(e){return new pa(e)},e.fixed=function(e,t){return new ma(e,t)},e.offset=function(e,t){return new _a(e,t)};var t=e.prototype;return t.millis=function(){_r("Clock.millis")},t.instant=function(){_r("Clock.instant")},t.zone=function(){_r("Clock.zone")},t.withZone=function(){_r("Clock.withZone")},e}(),pa=function(e){function t(t){var n;return pr(t,"zone"),(n=e.call(this)||this)._zone=t,n}cr(t,e);var n=t.prototype;return n.zone=function(){return this._zone},n.millis=function(){return(new Date).getTime()},n.instant=function(){return fa.ofEpochMilli(this.millis())},n.equals=function(e){return e instanceof t&&this._zone.equals(e._zone)},n.withZone=function(e){return e.equals(this._zone)?this:new t(e)},n.toString=function(){return"SystemClock["+this._zone.toString()+"]"},t}(ha),ma=function(e){function t(t,n){var r;return(r=e.call(this)||this)._instant=t,r._zoneId=n,r}cr(t,e);var n=t.prototype;return n.instant=function(){return this._instant},n.millis=function(){return this._instant.toEpochMilli()},n.zone=function(){return this._zoneId},n.toString=function(){return"FixedClock[]"},n.equals=function(e){return e instanceof t&&(this._instant.equals(e._instant)&&this._zoneId.equals(e._zoneId))},n.withZone=function(e){return e.equals(this._zoneId)?this:new t(this._instant,e)},t}(ha),_a=function(e){function t(t,n){var r;return(r=e.call(this)||this)._baseClock=t,r._offset=n,r}cr(t,e);var n=t.prototype;return n.zone=function(){return this._baseClock.zone()},n.withZone=function(e){return e.equals(this._baseClock.zone())?this:new t(this._baseClock.withZone(e),this._offset)},n.millis=function(){return this._baseClock.millis()+this._offset.toMillis()},n.instant=function(){return this._baseClock.instant().plus(this._offset)},n.equals=function(e){return e instanceof t&&(this._baseClock.equals(e._baseClock)&&this._offset.equals(e._offset))},n.toString=function(){return"OffsetClock["+this._baseClock+","+this._offset+"]"},t}(ha),ya=function(){function e(e,t,n){if(pr(e,"transition"),pr(t,"offsetBefore"),pr(n,"offsetAfter"),t.equals(n))throw new sr("Offsets must not be equal");if(0!==e.nano())throw new sr("Nano-of-second must be zero");this._transition=e instanceof la?e:la.ofEpochSecond(e,0,t),this._offsetBefore=t,this._offsetAfter=n}e.of=function(t,n,r){return new e(t,n,r)};var t=e.prototype;return t.instant=function(){return this._transition.toInstant(this._offsetBefore)},t.toEpochSecond=function(){return this._transition.toEpochSecond(this._offsetBefore)},t.dateTimeBefore=function(){return this._transition},t.dateTimeAfter=function(){return this._transition.plusSeconds(this.durationSeconds())},t.offsetBefore=function(){return this._offsetBefore},t.offsetAfter=function(){return this._offsetAfter},t.duration=function(){return Mr.ofSeconds(this.durationSeconds())},t.durationSeconds=function(){return this._offsetAfter.totalSeconds()-this._offsetBefore.totalSeconds()},t.isGap=function(){return this._offsetAfter.totalSeconds()>this._offsetBefore.totalSeconds()},t.isOverlap=function(){return this._offsetAfter.totalSeconds()<this._offsetBefore.totalSeconds()},t.isValidOffset=function(e){return!this.isGap()&&(this._offsetBefore.equals(e)||this._offsetAfter.equals(e))},t.validOffsets=function(){return this.isGap()?[]:[this._offsetBefore,this._offsetAfter]},t.compareTo=function(e){return this.instant().compareTo(e.instant())},t.equals=function(t){if(t===this)return!0;if(t instanceof e){var n=t;return this._transition.equals(n._transition)&&this._offsetBefore.equals(n.offsetBefore())&&this._offsetAfter.equals(n.offsetAfter())}return!1},t.hashCode=function(){return this._transition.hashCode()^this._offsetBefore.hashCode()^this._offsetAfter.hashCode()>>>16},t.toString=function(){return"Transition["+(this.isGap()?"Gap":"Overlap")+" at "+this._transition.toString()+this._offsetBefore.toString()+" to "+this._offsetAfter+"]"},e}();var ga=function(e){function t(){return e.apply(this,arguments)||this}cr(t,e);var n=t.prototype;return n.isFixedOffset=function(){return!1},n.offsetOfInstant=function(e){var t=new Date(e.toEpochMilli()).getTimezoneOffset();return Jr.ofTotalMinutes(-1*t)},n.offsetOfEpochMilli=function(e){var t=new Date(e).getTimezoneOffset();return Jr.ofTotalMinutes(-1*t)},n.offsetOfLocalDateTime=function(e){var t=1e3*e.toEpochSecond(Jr.UTC),n=new Date(t).getTimezoneOffset(),r=new Date(t+6e4*n).getTimezoneOffset();return Jr.ofTotalMinutes(-1*r)},n.validOffsets=function(e){return[this.offsetOfLocalDateTime(e)]},n.transition=function(){return null},n.standardOffset=function(e){return this.offsetOfInstant(e)},n.daylightSavings=function(){this._throwNotSupported()},n.isDaylightSavings=function(){this._throwNotSupported()},n.isValidOffset=function(e,t){return this.offsetOfLocalDateTime(e).equals(t)},n.nextTransition=function(){this._throwNotSupported()},n.previousTransition=function(){this._throwNotSupported()},n.transitions=function(){this._throwNotSupported()},n.transitionRules=function(){this._throwNotSupported()},n._throwNotSupported=function(){throw new rr("not supported operation")},n.equals=function(e){return this===e||e instanceof t},n.toString=function(){return"SYSTEM"},t}(Gr),va=function(e){function t(){var t;return(t=e.call(this)||this)._rules=new ga,t}cr(t,e);var n=t.prototype;return n.rules=function(){return this._rules},n.equals=function(e){return this===e},n.id=function(){return"SYSTEM"},t}(Yr),Aa=function(){function e(){}return e.systemDefault=function(){return Ea},e.getAvailableZoneIds=function(){return Li.getAvailableZoneIds()},e.of=function(e){if(pr(e,"zoneId"),"Z"===e)return Jr.UTC;if(1===e.length)throw new rr("Invalid zone: "+e);if(Hr.startsWith(e,"+")||Hr.startsWith(e,"-"))return Jr.of(e);if("UTC"===e||"GMT"===e||"GMT0"===e||"UT"===e)return new Di(e,Jr.UTC.rules());if(Hr.startsWith(e,"UTC+")||Hr.startsWith(e,"GMT+")||Hr.startsWith(e,"UTC-")||Hr.startsWith(e,"GMT-")){var t=Jr.of(e.substring(3));return 0===t.totalSeconds()?new Di(e.substring(0,3),t.rules()):new Di(e.substring(0,3)+t.id(),t.rules())}if(Hr.startsWith(e,"UT+")||Hr.startsWith(e,"UT-")){var n=Jr.of(e.substring(2));return 0===n.totalSeconds()?new Di("UT",n.rules()):new Di("UT"+n.id(),n.rules())}return"SYSTEM"===e?Yr.systemDefault():Di.ofId(e)},e.ofOffset=function(e,t){if(pr(e,"prefix"),pr(t,"offset"),0===e.length)return t;if("GMT"===e||"UTC"===e||"UT"===e)return 0===t.totalSeconds()?new Di(e,t.rules()):new Di(e+t.id(),t.rules());throw new sr("Invalid prefix, must be GMT, UTC or UT: "+e)},e.from=function(e){pr(e,"temporal");var t=e.query(Lr.zone());if(null==t)throw new rr("Unable to obtain ZoneId from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},e}(),Ea=null;
|
|
125
|
-
/*
|
|
126
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
127
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
128
|
-
*/
|
|
129
|
-
var ba=!1;ba||(ba=!0,Tr.MIN_VALUE=-999999,Tr.MAX_VALUE=999999,Mr.ZERO=new Mr(0,0),wr.NANOS=new wr("Nanos",Mr.ofNanos(1)),wr.MICROS=new wr("Micros",Mr.ofNanos(1e3)),wr.MILLIS=new wr("Millis",Mr.ofNanos(1e6)),wr.SECONDS=new wr("Seconds",Mr.ofSeconds(1)),wr.MINUTES=new wr("Minutes",Mr.ofSeconds(60)),wr.HOURS=new wr("Hours",Mr.ofSeconds(3600)),wr.HALF_DAYS=new wr("HalfDays",Mr.ofSeconds(43200)),wr.DAYS=new wr("Days",Mr.ofSeconds(86400)),wr.WEEKS=new wr("Weeks",Mr.ofSeconds(604800)),wr.MONTHS=new wr("Months",Mr.ofSeconds(2629746)),wr.YEARS=new wr("Years",Mr.ofSeconds(31556952)),wr.DECADES=new wr("Decades",Mr.ofSeconds(315569520)),wr.CENTURIES=new wr("Centuries",Mr.ofSeconds(3155695200)),wr.MILLENNIA=new wr("Millennia",Mr.ofSeconds(31556952e3)),wr.ERAS=new wr("Eras",Mr.ofSeconds(31556952*(Tr.MAX_VALUE+1))),wr.FOREVER=new wr("Forever",Mr.ofSeconds(Ar.MAX_SAFE_INTEGER,999999999)),Cr.NANO_OF_SECOND=new Cr("NanoOfSecond",wr.NANOS,wr.SECONDS,Nr.of(0,999999999)),Cr.NANO_OF_DAY=new Cr("NanoOfDay",wr.NANOS,wr.DAYS,Nr.of(0,86399999999999)),Cr.MICRO_OF_SECOND=new Cr("MicroOfSecond",wr.MICROS,wr.SECONDS,Nr.of(0,999999)),Cr.MICRO_OF_DAY=new Cr("MicroOfDay",wr.MICROS,wr.DAYS,Nr.of(0,86399999999)),Cr.MILLI_OF_SECOND=new Cr("MilliOfSecond",wr.MILLIS,wr.SECONDS,Nr.of(0,999)),Cr.MILLI_OF_DAY=new Cr("MilliOfDay",wr.MILLIS,wr.DAYS,Nr.of(0,86399999)),Cr.SECOND_OF_MINUTE=new Cr("SecondOfMinute",wr.SECONDS,wr.MINUTES,Nr.of(0,59)),Cr.SECOND_OF_DAY=new Cr("SecondOfDay",wr.SECONDS,wr.DAYS,Nr.of(0,86399)),Cr.MINUTE_OF_HOUR=new Cr("MinuteOfHour",wr.MINUTES,wr.HOURS,Nr.of(0,59)),Cr.MINUTE_OF_DAY=new Cr("MinuteOfDay",wr.MINUTES,wr.DAYS,Nr.of(0,1439)),Cr.HOUR_OF_AMPM=new Cr("HourOfAmPm",wr.HOURS,wr.HALF_DAYS,Nr.of(0,11)),Cr.CLOCK_HOUR_OF_AMPM=new Cr("ClockHourOfAmPm",wr.HOURS,wr.HALF_DAYS,Nr.of(1,12)),Cr.HOUR_OF_DAY=new Cr("HourOfDay",wr.HOURS,wr.DAYS,Nr.of(0,23)),Cr.CLOCK_HOUR_OF_DAY=new Cr("ClockHourOfDay",wr.HOURS,wr.DAYS,Nr.of(1,24)),Cr.AMPM_OF_DAY=new Cr("AmPmOfDay",wr.HALF_DAYS,wr.DAYS,Nr.of(0,1)),Cr.DAY_OF_WEEK=new Cr("DayOfWeek",wr.DAYS,wr.WEEKS,Nr.of(1,7)),Cr.ALIGNED_DAY_OF_WEEK_IN_MONTH=new Cr("AlignedDayOfWeekInMonth",wr.DAYS,wr.WEEKS,Nr.of(1,7)),Cr.ALIGNED_DAY_OF_WEEK_IN_YEAR=new Cr("AlignedDayOfWeekInYear",wr.DAYS,wr.WEEKS,Nr.of(1,7)),Cr.DAY_OF_MONTH=new Cr("DayOfMonth",wr.DAYS,wr.MONTHS,Nr.of(1,28,31),"day"),Cr.DAY_OF_YEAR=new Cr("DayOfYear",wr.DAYS,wr.YEARS,Nr.of(1,365,366)),Cr.EPOCH_DAY=new Cr("EpochDay",wr.DAYS,wr.FOREVER,Nr.of(-365961662,364522971)),Cr.ALIGNED_WEEK_OF_MONTH=new Cr("AlignedWeekOfMonth",wr.WEEKS,wr.MONTHS,Nr.of(1,4,5)),Cr.ALIGNED_WEEK_OF_YEAR=new Cr("AlignedWeekOfYear",wr.WEEKS,wr.YEARS,Nr.of(1,53)),Cr.MONTH_OF_YEAR=new Cr("MonthOfYear",wr.MONTHS,wr.YEARS,Nr.of(1,12),"month"),Cr.PROLEPTIC_MONTH=new Cr("ProlepticMonth",wr.MONTHS,wr.FOREVER,Nr.of(12*Tr.MIN_VALUE,12*Tr.MAX_VALUE+11)),Cr.YEAR_OF_ERA=new Cr("YearOfEra",wr.YEARS,wr.FOREVER,Nr.of(1,Tr.MAX_VALUE,Tr.MAX_VALUE+1)),Cr.YEAR=new Cr("Year",wr.YEARS,wr.FOREVER,Nr.of(Tr.MIN_VALUE,Tr.MAX_VALUE),"year"),Cr.ERA=new Cr("Era",wr.ERAS,wr.FOREVER,Nr.of(0,1)),Cr.INSTANT_SECONDS=new Cr("InstantSeconds",wr.SECONDS,wr.FOREVER,Nr.of(vr,gr)),Cr.OFFSET_SECONDS=new Cr("OffsetSeconds",wr.SECONDS,wr.FOREVER,Nr.of(-64800,64800)),function(){ca.HOURS=[];for(var e=0;e<24;e++)ca.of(e,0,0,0);ca.MIN=ca.HOURS[0],ca.MAX=new ca(23,59,59,999999999),ca.MIDNIGHT=ca.HOURS[0],ca.NOON=ca.HOURS[12],ca.FROM=xr("LocalTime.FROM",(function(e){return ca.from(e)}))}(),ci=new ai,di=new oi,fi=new si,hi=new ui,pi=new li("WeekBasedYears",Mr.ofSeconds(31556952)),mi=new li("QuarterYears",Mr.ofSeconds(7889238)),ni.DAY_OF_QUARTER=ci,ni.QUARTER_OF_YEAR=di,ni.WEEK_OF_WEEK_BASED_YEAR=fi,ni.WEEK_BASED_YEAR=hi,ni.WEEK_BASED_YEARS=pi,ni.QUARTER_YEARS=mi,sa.prototype.isoWeekOfWeekyear=function(){return this.get(ni.WEEK_OF_WEEK_BASED_YEAR)},sa.prototype.isoWeekyear=function(){return this.get(ni.WEEK_BASED_YEAR)},Lr.ZONE_ID=xr("ZONE_ID",(function(e){return e.query(Lr.ZONE_ID)})),Lr.CHRONO=xr("CHRONO",(function(e){return e.query(Lr.CHRONO)})),Lr.PRECISION=xr("PRECISION",(function(e){return e.query(Lr.PRECISION)})),Lr.OFFSET=xr("OFFSET",(function(e){return e.isSupported(Cr.OFFSET_SECONDS)?Jr.ofTotalSeconds(e.get(Cr.OFFSET_SECONDS)):null})),Lr.ZONE=xr("ZONE",(function(e){var t=e.query(Lr.ZONE_ID);return null!=t?t:e.query(Lr.OFFSET)})),Lr.LOCAL_DATE=xr("LOCAL_DATE",(function(e){return e.isSupported(Cr.EPOCH_DAY)?sa.ofEpochDay(e.getLong(Cr.EPOCH_DAY)):null})),Lr.LOCAL_TIME=xr("LOCAL_TIME",(function(e){return e.isSupported(Cr.NANO_OF_DAY)?ca.ofNanoOfDay(e.getLong(Cr.NANO_OF_DAY)):null})),kr.MONDAY=new kr(0,"MONDAY"),kr.TUESDAY=new kr(1,"TUESDAY"),kr.WEDNESDAY=new kr(2,"WEDNESDAY"),kr.THURSDAY=new kr(3,"THURSDAY"),kr.FRIDAY=new kr(4,"FRIDAY"),kr.SATURDAY=new kr(5,"SATURDAY"),kr.SUNDAY=new kr(6,"SUNDAY"),kr.FROM=xr("DayOfWeek.FROM",(function(e){return kr.from(e)})),Ir=[kr.MONDAY,kr.TUESDAY,kr.WEDNESDAY,kr.THURSDAY,kr.FRIDAY,kr.SATURDAY,kr.SUNDAY],fa.MIN_SECONDS=-31619119219200,fa.MAX_SECONDS=31494816403199,fa.EPOCH=new fa(0,0),fa.MIN=fa.ofEpochSecond(fa.MIN_SECONDS,0),fa.MAX=fa.ofEpochSecond(fa.MAX_SECONDS,999999999),fa.FROM=xr("Instant.FROM",(function(e){return fa.from(e)})),sa.MIN=sa.of(Tr.MIN_VALUE,1,1),sa.MAX=sa.of(Tr.MAX_VALUE,12,31),sa.EPOCH_0=sa.ofEpochDay(0),sa.FROM=xr("LocalDate.FROM",(function(e){return sa.from(e)})),la.MIN=la.of(sa.MIN,ca.MIN),la.MAX=la.of(sa.MAX,ca.MAX),la.FROM=xr("LocalDateTime.FROM",(function(e){return la.from(e)})),Wi.MIN_VALUE=Tr.MIN_VALUE,Wi.MAX_VALUE=Tr.MAX_VALUE,Gi=(new Ri).appendValue(Cr.YEAR,4,10,yi.EXCEEDS_PAD).toFormatter(),Wi.FROM=xr("Year.FROM",(function(e){return Wi.from(e)})),Rr.JANUARY=new Rr(1,"JANUARY"),Rr.FEBRUARY=new Rr(2,"FEBRUARY"),Rr.MARCH=new Rr(3,"MARCH"),Rr.APRIL=new Rr(4,"APRIL"),Rr.MAY=new Rr(5,"MAY"),Rr.JUNE=new Rr(6,"JUNE"),Rr.JULY=new Rr(7,"JULY"),Rr.AUGUST=new Rr(8,"AUGUST"),Rr.SEPTEMBER=new Rr(9,"SEPTEMBER"),Rr.OCTOBER=new Rr(10,"OCTOBER"),Rr.NOVEMBER=new Rr(11,"NOVEMBER"),Rr.DECEMBER=new Rr(12,"DECEMBER"),zr=[Rr.JANUARY,Rr.FEBRUARY,Rr.MARCH,Rr.APRIL,Rr.MAY,Rr.JUNE,Rr.JULY,Rr.AUGUST,Rr.SEPTEMBER,Rr.OCTOBER,Rr.NOVEMBER,Rr.DECEMBER],Hi=(new Ri).appendValue(Cr.YEAR,4,10,yi.EXCEEDS_PAD).appendLiteral("-").appendValue(Cr.MONTH_OF_YEAR,2).toFormatter(),Yi.FROM=xr("YearMonth.FROM",(function(e){return Yi.from(e)})),Vi=(new Ri).appendLiteral("--").appendValue(Cr.MONTH_OF_YEAR,2).appendLiteral("-").appendValue(Cr.DAY_OF_MONTH,2).toFormatter(),ji.FROM=xr("MonthDay.FROM",(function(e){return ji.from(e)})),Pr.ofDays(0),Jr.MAX_SECONDS=18*ca.SECONDS_PER_HOUR,Jr.UTC=Jr.ofTotalSeconds(0),Jr.MIN=Jr.ofTotalSeconds(-Jr.MAX_SECONDS),Jr.MAX=Jr.ofTotalSeconds(Jr.MAX_SECONDS),ra.FROM=xr("ZonedDateTime.FROM",(function(e){return ra.from(e)})),Ea=new va,Yr.systemDefault=Aa.systemDefault,Yr.getAvailableZoneIds=Aa.getAvailableZoneIds,Yr.of=Aa.of,Yr.ofOffset=Aa.ofOffset,Yr.from=Aa.from,Jr.from=Aa.from,Yr.SYSTEM=Ea,Yr.UTC=Jr.ofTotalSeconds(0),ea.INSTANCE=new ea("IsoChronology"),Bi.ISO_LOCAL_DATE=(new Ri).appendValue(Cr.YEAR,4,10,yi.EXCEEDS_PAD).appendLiteral("-").appendValue(Cr.MONTH_OF_YEAR,2).appendLiteral("-").appendValue(Cr.DAY_OF_MONTH,2).toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_LOCAL_TIME=(new Ri).appendValue(Cr.HOUR_OF_DAY,2).appendLiteral(":").appendValue(Cr.MINUTE_OF_HOUR,2).optionalStart().appendLiteral(":").appendValue(Cr.SECOND_OF_MINUTE,2).optionalStart().appendFraction(Cr.NANO_OF_SECOND,0,9,!0).toFormatter(Br.STRICT),Bi.ISO_LOCAL_DATE_TIME=(new Ri).parseCaseInsensitive().append(Bi.ISO_LOCAL_DATE).appendLiteral("T").append(Bi.ISO_LOCAL_TIME).toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_INSTANT=(new Ri).parseCaseInsensitive().appendInstant().toFormatter(Br.STRICT),Bi.ISO_OFFSET_DATE_TIME=(new Ri).parseCaseInsensitive().append(Bi.ISO_LOCAL_DATE_TIME).appendOffsetId().toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_ZONED_DATE_TIME=(new Ri).append(Bi.ISO_OFFSET_DATE_TIME).optionalStart().appendLiteral("[").parseCaseSensitive().appendZoneId().appendLiteral("]").toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.BASIC_ISO_DATE=(new Ri).appendValue(Cr.YEAR,4,10,yi.EXCEEDS_PAD).appendValue(Cr.MONTH_OF_YEAR,2).appendValue(Cr.DAY_OF_MONTH,2).toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_OFFSET_DATE=(new Ri).parseCaseInsensitive().append(Bi.ISO_LOCAL_DATE).appendOffsetId().toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_OFFSET_TIME=(new Ri).parseCaseInsensitive().append(Bi.ISO_LOCAL_TIME).appendOffsetId().toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_ORDINAL_DATE=(new Ri).appendValue(Cr.YEAR,4,10,yi.EXCEEDS_PAD).appendLiteral("-").appendValue(Cr.DAY_OF_YEAR).toFormatter(Br.STRICT),Bi.ISO_WEEK_DATE=(new Ri).appendValue(Cr.YEAR,4,10,yi.EXCEEDS_PAD).appendLiteral("-W").appendValue(Cr.ALIGNED_WEEK_OF_YEAR).appendLiteral("-").appendValue(Cr.DAY_OF_WEEK).toFormatter(Br.STRICT),Bi.ISO_DATE=(new Ri).parseCaseInsensitive().append(Bi.ISO_LOCAL_DATE).optionalStart().appendOffsetId().optionalEnd().toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.ISO_TIME=(new Ri).parseCaseInsensitive().append(Bi.ISO_LOCAL_TIME).optionalStart().appendOffsetId().optionalEnd().toFormatter(Br.STRICT),Bi.ISO_DATE_TIME=(new Ri).append(Bi.ISO_LOCAL_DATE_TIME).optionalStart().appendOffsetId().optionalEnd().toFormatter(Br.STRICT).withChronology(ea.INSTANCE),Bi.PARSED_EXCESS_DAYS=xr("PARSED_EXCESS_DAYS",(function(e){return e instanceof Xr?e.excessDays:Pr.ZERO})),Bi.PARSED_LEAP_SECOND=xr("PARSED_LEAP_SECOND",(function(e){return e instanceof Xr&&e.leapSecond})),Mi.BASE_DATE=sa.of(2e3,1,1),Ri.CompositePrinterParser=Ai,Ri.PadPrinterParserDecorator=Oi,Ri.SettingsParser=Ni,Ri.CharLiteralPrinterParser=Ci,Ri.StringLiteralPrinterParser=Ci,Ri.CharLiteralPrinterParser=vi,Ri.NumberPrinterParser=Si,Ri.ReducedPrinterParser=Mi,Ri.FractionPrinterParser=Ei,Ri.OffsetIdPrinterParser=wi,Ri.ZoneIdPrinterParser=$i,ia.MIN=la.MIN.atOffset(Jr.MAX),ia.MAX=la.MAX.atOffset(Jr.MIN),ia.FROM=xr("OffsetDateTime.FROM",(function(e){return ia.from(e)})),ta.MIN=ta.ofNumbers(0,0,0,0,Jr.MAX),ta.MAX=ta.ofNumbers(23,59,59,999999999,Jr.MIN),ta.FROM=xr("OffsetTime.FROM",(function(e){return ta.from(e)})));
|
|
130
|
-
/*
|
|
131
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
132
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
133
|
-
*/
|
|
134
|
-
var Sa=function(){function e(e,t){var n;if(e instanceof fa)this.instant=e;else{if(e instanceof sa)t=null==t?Yr.systemDefault():t,n=e.atStartOfDay(t);else if(e instanceof la)t=null==t?Yr.systemDefault():t,n=e.atZone(t);else{if(!(e instanceof ra))throw new sr("unsupported instance for convert operation:"+e);n=null==t?e:e.withZoneSameInstant(t)}this.instant=n.toInstant()}}var t=e.prototype;return t.toDate=function(){return new Date(this.instant.toEpochMilli())},t.toEpochMilli=function(){return this.instant.toEpochMilli()},e}();function Ma(e,t){return new Sa(e,t)}
|
|
135
|
-
/*
|
|
136
|
-
* @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors
|
|
137
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
138
|
-
*/function Ta(e,t){if(void 0===t&&(t=Yr.systemDefault()),pr(e,"date"),pr(t,"zone"),e instanceof Date)return fa.ofEpochMilli(e.getTime()).atZone(t);if("function"==typeof e.toDate&&e.toDate()instanceof Date)return fa.ofEpochMilli(e.toDate().getTime()).atZone(t);throw new sr("date must be a javascript Date or a moment instance")}
|
|
139
|
-
/**
|
|
140
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
141
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
142
|
-
*/
|
|
143
|
-
var wa,Oa,Na={assert:yr,DateTimeBuilder:Xr,DateTimeParseContext:Qr,DateTimePrintContext:ti,MathUtil:Ar,StringUtil:Hr,StringBuilder:Ui},Ca={_:Na,convert:Ma,nativeJs:Ta,ArithmeticException:or,DateTimeException:rr,DateTimeParseException:ir,IllegalArgumentException:sr,IllegalStateException:ur,UnsupportedTemporalTypeException:ar,NullPointerException:lr,Clock:ha,DayOfWeek:kr,Duration:Mr,Instant:fa,LocalDate:sa,LocalTime:ca,LocalDateTime:la,OffsetTime:ta,OffsetDateTime:ia,Month:Rr,MonthDay:ji,ParsePosition:Fr,Period:Pr,Year:Wi,YearConstants:Tr,YearMonth:Yi,ZonedDateTime:ra,ZoneOffset:Jr,ZoneId:Yr,ZoneRegion:Di,ZoneOffsetTransition:ya,ZoneRules:Gr,ZoneRulesProvider:Li,ChronoLocalDate:jr,ChronoLocalDateTime:ua,ChronoZonedDateTime:na,IsoChronology:ea,ChronoField:Cr,ChronoUnit:wr,IsoFields:ni,Temporal:Vr,TemporalAccessor:Dr,TemporalAdjuster:qi,TemporalAdjusters:Ki,TemporalAmount:br,TemporalField:Or,TemporalQueries:Lr,TemporalQuery:$r,TemporalUnit:Sr,ValueRange:Nr,DateTimeFormatter:Bi,DateTimeFormatterBuilder:Ri,DecimalStyle:_i,ResolverStyle:Br,SignStyle:yi,TextStyle:gi},La=(wa=Ca,Oa=[],function(e){return~Oa.indexOf(e)||(e(wa),Oa.push(e)),wa});Ca.use=La;var Da={exports:{}};!function(e,t){function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,i(e,t)}function i(e,t){return i=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},i(e,t)}function a(e,t){if(e){if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=a(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var u=function(){function e(e,t,n){this._field=e,this._textStyle=t,this._provider=n}var n=e.prototype;return n.field=function(){return this._field},n.textStyle=function(){return this._textStyle},n.provider=function(){return this._provider},n.print=function(e,t){var n=e.getValue(this._field);if(null===n)return!1;var r=this._provider.getText(this._field,n,this._textStyle,e.locale());return null===r?this._numberPrinterParser().print(e,t):(t.append(r),!0)},n.parse=function(e,n,r){var i=n.length;if(r<0||r>i)throw new t.IllegalArgumentException("The position is invalid: "+r);var a=e.isStrict()?this._textStyle:null,o=this._provider.getTextIterator(this._field,a,e.locale());if(null!=o){for(var u,l=s(o);!(u=l()).done;){var c=u.value,d=c.key;if(e.subSequenceEquals(d,0,n,r,d.length))return e.setParsedField(this._field,c.value,r,r+d.length)}if(e.isStrict())return~r}return this._numberPrinterParser().parse(e,n,r)},n._numberPrinterParser=function(){return null==this._currentNumberPrinterParser&&(this._currentNumberPrinterParser=new t.DateTimeFormatterBuilder.NumberPrinterParser(this._field,1,19,t.SignStyle.NORMAL)),this._currentNumberPrinterParser},n.toString=function(){return this._textStyle===t.TextStyle.FULL?"Text("+this._field+")":"Text("+this._field+","+this._textStyle+")"},e}(),l={supplemental:{version:{_unicodeVersion:"12.1.0",_cldrVersion:"36"},likelySubtags:{aa:"aa-Latn-ET",aai:"aai-Latn-ZZ",aak:"aak-Latn-ZZ",aau:"aau-Latn-ZZ",ab:"ab-Cyrl-GE",abi:"abi-Latn-ZZ",abq:"abq-Cyrl-ZZ",abr:"abr-Latn-GH",abt:"abt-Latn-ZZ",aby:"aby-Latn-ZZ",acd:"acd-Latn-ZZ",ace:"ace-Latn-ID",ach:"ach-Latn-UG",ada:"ada-Latn-GH",ade:"ade-Latn-ZZ",adj:"adj-Latn-ZZ",adp:"adp-Tibt-BT",ady:"ady-Cyrl-RU",adz:"adz-Latn-ZZ",ae:"ae-Avst-IR",aeb:"aeb-Arab-TN",aey:"aey-Latn-ZZ",af:"af-Latn-ZA",agc:"agc-Latn-ZZ",agd:"agd-Latn-ZZ",agg:"agg-Latn-ZZ",agm:"agm-Latn-ZZ",ago:"ago-Latn-ZZ",agq:"agq-Latn-CM",aha:"aha-Latn-ZZ",ahl:"ahl-Latn-ZZ",aho:"aho-Ahom-IN",ajg:"ajg-Latn-ZZ",ak:"ak-Latn-GH",akk:"akk-Xsux-IQ",ala:"ala-Latn-ZZ",ali:"ali-Latn-ZZ",aln:"aln-Latn-XK",alt:"alt-Cyrl-RU",am:"am-Ethi-ET",amm:"amm-Latn-ZZ",amn:"amn-Latn-ZZ",amo:"amo-Latn-NG",amp:"amp-Latn-ZZ",an:"an-Latn-ES",anc:"anc-Latn-ZZ",ank:"ank-Latn-ZZ",ann:"ann-Latn-ZZ",any:"any-Latn-ZZ",aoj:"aoj-Latn-ZZ",aom:"aom-Latn-ZZ",aoz:"aoz-Latn-ID",apc:"apc-Arab-ZZ",apd:"apd-Arab-TG",ape:"ape-Latn-ZZ",apr:"apr-Latn-ZZ",aps:"aps-Latn-ZZ",apz:"apz-Latn-ZZ",ar:"ar-Arab-EG",arc:"arc-Armi-IR","arc-Nbat":"arc-Nbat-JO","arc-Palm":"arc-Palm-SY",arh:"arh-Latn-ZZ",arn:"arn-Latn-CL",aro:"aro-Latn-BO",arq:"arq-Arab-DZ",ars:"ars-Arab-SA",ary:"ary-Arab-MA",arz:"arz-Arab-EG",as:"as-Beng-IN",asa:"asa-Latn-TZ",ase:"ase-Sgnw-US",asg:"asg-Latn-ZZ",aso:"aso-Latn-ZZ",ast:"ast-Latn-ES",ata:"ata-Latn-ZZ",atg:"atg-Latn-ZZ",atj:"atj-Latn-CA",auy:"auy-Latn-ZZ",av:"av-Cyrl-RU",avl:"avl-Arab-ZZ",avn:"avn-Latn-ZZ",avt:"avt-Latn-ZZ",avu:"avu-Latn-ZZ",awa:"awa-Deva-IN",awb:"awb-Latn-ZZ",awo:"awo-Latn-ZZ",awx:"awx-Latn-ZZ",ay:"ay-Latn-BO",ayb:"ayb-Latn-ZZ",az:"az-Latn-AZ","az-Arab":"az-Arab-IR","az-IQ":"az-Arab-IQ","az-IR":"az-Arab-IR","az-RU":"az-Cyrl-RU",ba:"ba-Cyrl-RU",bal:"bal-Arab-PK",ban:"ban-Latn-ID",bap:"bap-Deva-NP",bar:"bar-Latn-AT",bas:"bas-Latn-CM",bav:"bav-Latn-ZZ",bax:"bax-Bamu-CM",bba:"bba-Latn-ZZ",bbb:"bbb-Latn-ZZ",bbc:"bbc-Latn-ID",bbd:"bbd-Latn-ZZ",bbj:"bbj-Latn-CM",bbp:"bbp-Latn-ZZ",bbr:"bbr-Latn-ZZ",bcf:"bcf-Latn-ZZ",bch:"bch-Latn-ZZ",bci:"bci-Latn-CI",bcm:"bcm-Latn-ZZ",bcn:"bcn-Latn-ZZ",bco:"bco-Latn-ZZ",bcq:"bcq-Ethi-ZZ",bcu:"bcu-Latn-ZZ",bdd:"bdd-Latn-ZZ",be:"be-Cyrl-BY",bef:"bef-Latn-ZZ",beh:"beh-Latn-ZZ",bej:"bej-Arab-SD",bem:"bem-Latn-ZM",bet:"bet-Latn-ZZ",bew:"bew-Latn-ID",bex:"bex-Latn-ZZ",bez:"bez-Latn-TZ",bfd:"bfd-Latn-CM",bfq:"bfq-Taml-IN",bft:"bft-Arab-PK",bfy:"bfy-Deva-IN",bg:"bg-Cyrl-BG",bgc:"bgc-Deva-IN",bgn:"bgn-Arab-PK",bgx:"bgx-Grek-TR",bhb:"bhb-Deva-IN",bhg:"bhg-Latn-ZZ",bhi:"bhi-Deva-IN",bhl:"bhl-Latn-ZZ",bho:"bho-Deva-IN",bhy:"bhy-Latn-ZZ",bi:"bi-Latn-VU",bib:"bib-Latn-ZZ",big:"big-Latn-ZZ",bik:"bik-Latn-PH",bim:"bim-Latn-ZZ",bin:"bin-Latn-NG",bio:"bio-Latn-ZZ",biq:"biq-Latn-ZZ",bjh:"bjh-Latn-ZZ",bji:"bji-Ethi-ZZ",bjj:"bjj-Deva-IN",bjn:"bjn-Latn-ID",bjo:"bjo-Latn-ZZ",bjr:"bjr-Latn-ZZ",bjt:"bjt-Latn-SN",bjz:"bjz-Latn-ZZ",bkc:"bkc-Latn-ZZ",bkm:"bkm-Latn-CM",bkq:"bkq-Latn-ZZ",bku:"bku-Latn-PH",bkv:"bkv-Latn-ZZ",blt:"blt-Tavt-VN",bm:"bm-Latn-ML",bmh:"bmh-Latn-ZZ",bmk:"bmk-Latn-ZZ",bmq:"bmq-Latn-ML",bmu:"bmu-Latn-ZZ",bn:"bn-Beng-BD",bng:"bng-Latn-ZZ",bnm:"bnm-Latn-ZZ",bnp:"bnp-Latn-ZZ",bo:"bo-Tibt-CN",boj:"boj-Latn-ZZ",bom:"bom-Latn-ZZ",bon:"bon-Latn-ZZ",bpy:"bpy-Beng-IN",bqc:"bqc-Latn-ZZ",bqi:"bqi-Arab-IR",bqp:"bqp-Latn-ZZ",bqv:"bqv-Latn-CI",br:"br-Latn-FR",bra:"bra-Deva-IN",brh:"brh-Arab-PK",brx:"brx-Deva-IN",brz:"brz-Latn-ZZ",bs:"bs-Latn-BA",bsj:"bsj-Latn-ZZ",bsq:"bsq-Bass-LR",bss:"bss-Latn-CM",bst:"bst-Ethi-ZZ",bto:"bto-Latn-PH",btt:"btt-Latn-ZZ",btv:"btv-Deva-PK",bua:"bua-Cyrl-RU",buc:"buc-Latn-YT",bud:"bud-Latn-ZZ",bug:"bug-Latn-ID",buk:"buk-Latn-ZZ",bum:"bum-Latn-CM",buo:"buo-Latn-ZZ",bus:"bus-Latn-ZZ",buu:"buu-Latn-ZZ",bvb:"bvb-Latn-GQ",bwd:"bwd-Latn-ZZ",bwr:"bwr-Latn-ZZ",bxh:"bxh-Latn-ZZ",bye:"bye-Latn-ZZ",byn:"byn-Ethi-ER",byr:"byr-Latn-ZZ",bys:"bys-Latn-ZZ",byv:"byv-Latn-CM",byx:"byx-Latn-ZZ",bza:"bza-Latn-ZZ",bze:"bze-Latn-ML",bzf:"bzf-Latn-ZZ",bzh:"bzh-Latn-ZZ",bzw:"bzw-Latn-ZZ",ca:"ca-Latn-ES",can:"can-Latn-ZZ",cbj:"cbj-Latn-ZZ",cch:"cch-Latn-NG",ccp:"ccp-Cakm-BD",ce:"ce-Cyrl-RU",ceb:"ceb-Latn-PH",cfa:"cfa-Latn-ZZ",cgg:"cgg-Latn-UG",ch:"ch-Latn-GU",chk:"chk-Latn-FM",chm:"chm-Cyrl-RU",cho:"cho-Latn-US",chp:"chp-Latn-CA",chr:"chr-Cher-US",cic:"cic-Latn-US",cja:"cja-Arab-KH",cjm:"cjm-Cham-VN",cjv:"cjv-Latn-ZZ",ckb:"ckb-Arab-IQ",ckl:"ckl-Latn-ZZ",cko:"cko-Latn-ZZ",cky:"cky-Latn-ZZ",cla:"cla-Latn-ZZ",cme:"cme-Latn-ZZ",cmg:"cmg-Soyo-MN",co:"co-Latn-FR",cop:"cop-Copt-EG",cps:"cps-Latn-PH",cr:"cr-Cans-CA",crh:"crh-Cyrl-UA",crj:"crj-Cans-CA",crk:"crk-Cans-CA",crl:"crl-Cans-CA",crm:"crm-Cans-CA",crs:"crs-Latn-SC",cs:"cs-Latn-CZ",csb:"csb-Latn-PL",csw:"csw-Cans-CA",ctd:"ctd-Pauc-MM",cu:"cu-Cyrl-RU","cu-Glag":"cu-Glag-BG",cv:"cv-Cyrl-RU",cy:"cy-Latn-GB",da:"da-Latn-DK",dad:"dad-Latn-ZZ",daf:"daf-Latn-ZZ",dag:"dag-Latn-ZZ",dah:"dah-Latn-ZZ",dak:"dak-Latn-US",dar:"dar-Cyrl-RU",dav:"dav-Latn-KE",dbd:"dbd-Latn-ZZ",dbq:"dbq-Latn-ZZ",dcc:"dcc-Arab-IN",ddn:"ddn-Latn-ZZ",de:"de-Latn-DE",ded:"ded-Latn-ZZ",den:"den-Latn-CA",dga:"dga-Latn-ZZ",dgh:"dgh-Latn-ZZ",dgi:"dgi-Latn-ZZ",dgl:"dgl-Arab-ZZ",dgr:"dgr-Latn-CA",dgz:"dgz-Latn-ZZ",dia:"dia-Latn-ZZ",dje:"dje-Latn-NE",dnj:"dnj-Latn-CI",dob:"dob-Latn-ZZ",doi:"doi-Arab-IN",dop:"dop-Latn-ZZ",dow:"dow-Latn-ZZ",drh:"drh-Mong-CN",dri:"dri-Latn-ZZ",drs:"drs-Ethi-ZZ",dsb:"dsb-Latn-DE",dtm:"dtm-Latn-ML",dtp:"dtp-Latn-MY",dts:"dts-Latn-ZZ",dty:"dty-Deva-NP",dua:"dua-Latn-CM",duc:"duc-Latn-ZZ",dud:"dud-Latn-ZZ",dug:"dug-Latn-ZZ",dv:"dv-Thaa-MV",dva:"dva-Latn-ZZ",dww:"dww-Latn-ZZ",dyo:"dyo-Latn-SN",dyu:"dyu-Latn-BF",dz:"dz-Tibt-BT",dzg:"dzg-Latn-ZZ",ebu:"ebu-Latn-KE",ee:"ee-Latn-GH",efi:"efi-Latn-NG",egl:"egl-Latn-IT",egy:"egy-Egyp-EG",eka:"eka-Latn-ZZ",eky:"eky-Kali-MM",el:"el-Grek-GR",ema:"ema-Latn-ZZ",emi:"emi-Latn-ZZ",en:"en-Latn-US","en-Shaw":"en-Shaw-GB",enn:"enn-Latn-ZZ",enq:"enq-Latn-ZZ",eo:"eo-Latn-001",eri:"eri-Latn-ZZ",es:"es-Latn-ES",esg:"esg-Gonm-IN",esu:"esu-Latn-US",et:"et-Latn-EE",etr:"etr-Latn-ZZ",ett:"ett-Ital-IT",etu:"etu-Latn-ZZ",etx:"etx-Latn-ZZ",eu:"eu-Latn-ES",ewo:"ewo-Latn-CM",ext:"ext-Latn-ES",fa:"fa-Arab-IR",faa:"faa-Latn-ZZ",fab:"fab-Latn-ZZ",fag:"fag-Latn-ZZ",fai:"fai-Latn-ZZ",fan:"fan-Latn-GQ",ff:"ff-Latn-SN","ff-Adlm":"ff-Adlm-GN",ffi:"ffi-Latn-ZZ",ffm:"ffm-Latn-ML",fi:"fi-Latn-FI",fia:"fia-Arab-SD",fil:"fil-Latn-PH",fit:"fit-Latn-SE",fj:"fj-Latn-FJ",flr:"flr-Latn-ZZ",fmp:"fmp-Latn-ZZ",fo:"fo-Latn-FO",fod:"fod-Latn-ZZ",fon:"fon-Latn-BJ",for:"for-Latn-ZZ",fpe:"fpe-Latn-ZZ",fqs:"fqs-Latn-ZZ",fr:"fr-Latn-FR",frc:"frc-Latn-US",frp:"frp-Latn-FR",frr:"frr-Latn-DE",frs:"frs-Latn-DE",fub:"fub-Arab-CM",fud:"fud-Latn-WF",fue:"fue-Latn-ZZ",fuf:"fuf-Latn-GN",fuh:"fuh-Latn-ZZ",fuq:"fuq-Latn-NE",fur:"fur-Latn-IT",fuv:"fuv-Latn-NG",fuy:"fuy-Latn-ZZ",fvr:"fvr-Latn-SD",fy:"fy-Latn-NL",ga:"ga-Latn-IE",gaa:"gaa-Latn-GH",gaf:"gaf-Latn-ZZ",gag:"gag-Latn-MD",gah:"gah-Latn-ZZ",gaj:"gaj-Latn-ZZ",gam:"gam-Latn-ZZ",gan:"gan-Hans-CN",gaw:"gaw-Latn-ZZ",gay:"gay-Latn-ID",gba:"gba-Latn-ZZ",gbf:"gbf-Latn-ZZ",gbm:"gbm-Deva-IN",gby:"gby-Latn-ZZ",gbz:"gbz-Arab-IR",gcr:"gcr-Latn-GF",gd:"gd-Latn-GB",gde:"gde-Latn-ZZ",gdn:"gdn-Latn-ZZ",gdr:"gdr-Latn-ZZ",geb:"geb-Latn-ZZ",gej:"gej-Latn-ZZ",gel:"gel-Latn-ZZ",gez:"gez-Ethi-ET",gfk:"gfk-Latn-ZZ",ggn:"ggn-Deva-NP",ghs:"ghs-Latn-ZZ",gil:"gil-Latn-KI",gim:"gim-Latn-ZZ",gjk:"gjk-Arab-PK",gjn:"gjn-Latn-ZZ",gju:"gju-Arab-PK",gkn:"gkn-Latn-ZZ",gkp:"gkp-Latn-ZZ",gl:"gl-Latn-ES",glk:"glk-Arab-IR",gmm:"gmm-Latn-ZZ",gmv:"gmv-Ethi-ZZ",gn:"gn-Latn-PY",gnd:"gnd-Latn-ZZ",gng:"gng-Latn-ZZ",god:"god-Latn-ZZ",gof:"gof-Ethi-ZZ",goi:"goi-Latn-ZZ",gom:"gom-Deva-IN",gon:"gon-Telu-IN",gor:"gor-Latn-ID",gos:"gos-Latn-NL",got:"got-Goth-UA",grb:"grb-Latn-ZZ",grc:"grc-Cprt-CY","grc-Linb":"grc-Linb-GR",grt:"grt-Beng-IN",grw:"grw-Latn-ZZ",gsw:"gsw-Latn-CH",gu:"gu-Gujr-IN",gub:"gub-Latn-BR",guc:"guc-Latn-CO",gud:"gud-Latn-ZZ",gur:"gur-Latn-GH",guw:"guw-Latn-ZZ",gux:"gux-Latn-ZZ",guz:"guz-Latn-KE",gv:"gv-Latn-IM",gvf:"gvf-Latn-ZZ",gvr:"gvr-Deva-NP",gvs:"gvs-Latn-ZZ",gwc:"gwc-Arab-ZZ",gwi:"gwi-Latn-CA",gwt:"gwt-Arab-ZZ",gyi:"gyi-Latn-ZZ",ha:"ha-Latn-NG","ha-CM":"ha-Arab-CM","ha-SD":"ha-Arab-SD",hag:"hag-Latn-ZZ",hak:"hak-Hans-CN",ham:"ham-Latn-ZZ",haw:"haw-Latn-US",haz:"haz-Arab-AF",hbb:"hbb-Latn-ZZ",hdy:"hdy-Ethi-ZZ",he:"he-Hebr-IL",hhy:"hhy-Latn-ZZ",hi:"hi-Deva-IN",hia:"hia-Latn-ZZ",hif:"hif-Latn-FJ",hig:"hig-Latn-ZZ",hih:"hih-Latn-ZZ",hil:"hil-Latn-PH",hla:"hla-Latn-ZZ",hlu:"hlu-Hluw-TR",hmd:"hmd-Plrd-CN",hmt:"hmt-Latn-ZZ",hnd:"hnd-Arab-PK",hne:"hne-Deva-IN",hnj:"hnj-Hmng-LA",hnn:"hnn-Latn-PH",hno:"hno-Arab-PK",ho:"ho-Latn-PG",hoc:"hoc-Deva-IN",hoj:"hoj-Deva-IN",hot:"hot-Latn-ZZ",hr:"hr-Latn-HR",hsb:"hsb-Latn-DE",hsn:"hsn-Hans-CN",ht:"ht-Latn-HT",hu:"hu-Latn-HU",hui:"hui-Latn-ZZ",hy:"hy-Armn-AM",hz:"hz-Latn-NA",ia:"ia-Latn-001",ian:"ian-Latn-ZZ",iar:"iar-Latn-ZZ",iba:"iba-Latn-MY",ibb:"ibb-Latn-NG",iby:"iby-Latn-ZZ",ica:"ica-Latn-ZZ",ich:"ich-Latn-ZZ",id:"id-Latn-ID",idd:"idd-Latn-ZZ",idi:"idi-Latn-ZZ",idu:"idu-Latn-ZZ",ife:"ife-Latn-TG",ig:"ig-Latn-NG",igb:"igb-Latn-ZZ",ige:"ige-Latn-ZZ",ii:"ii-Yiii-CN",ijj:"ijj-Latn-ZZ",ik:"ik-Latn-US",ikk:"ikk-Latn-ZZ",ikt:"ikt-Latn-CA",ikw:"ikw-Latn-ZZ",ikx:"ikx-Latn-ZZ",ilo:"ilo-Latn-PH",imo:"imo-Latn-ZZ",in:"in-Latn-ID",inh:"inh-Cyrl-RU",io:"io-Latn-001",iou:"iou-Latn-ZZ",iri:"iri-Latn-ZZ",is:"is-Latn-IS",it:"it-Latn-IT",iu:"iu-Cans-CA",iw:"iw-Hebr-IL",iwm:"iwm-Latn-ZZ",iws:"iws-Latn-ZZ",izh:"izh-Latn-RU",izi:"izi-Latn-ZZ",ja:"ja-Jpan-JP",jab:"jab-Latn-ZZ",jam:"jam-Latn-JM",jbo:"jbo-Latn-001",jbu:"jbu-Latn-ZZ",jen:"jen-Latn-ZZ",jgk:"jgk-Latn-ZZ",jgo:"jgo-Latn-CM",ji:"ji-Hebr-UA",jib:"jib-Latn-ZZ",jmc:"jmc-Latn-TZ",jml:"jml-Deva-NP",jra:"jra-Latn-ZZ",jut:"jut-Latn-DK",jv:"jv-Latn-ID",jw:"jw-Latn-ID",ka:"ka-Geor-GE",kaa:"kaa-Cyrl-UZ",kab:"kab-Latn-DZ",kac:"kac-Latn-MM",kad:"kad-Latn-ZZ",kai:"kai-Latn-ZZ",kaj:"kaj-Latn-NG",kam:"kam-Latn-KE",kao:"kao-Latn-ML",kbd:"kbd-Cyrl-RU",kbm:"kbm-Latn-ZZ",kbp:"kbp-Latn-ZZ",kbq:"kbq-Latn-ZZ",kbx:"kbx-Latn-ZZ",kby:"kby-Arab-NE",kcg:"kcg-Latn-NG",kck:"kck-Latn-ZW",kcl:"kcl-Latn-ZZ",kct:"kct-Latn-ZZ",kde:"kde-Latn-TZ",kdh:"kdh-Arab-TG",kdl:"kdl-Latn-ZZ",kdt:"kdt-Thai-TH",kea:"kea-Latn-CV",ken:"ken-Latn-CM",kez:"kez-Latn-ZZ",kfo:"kfo-Latn-CI",kfr:"kfr-Deva-IN",kfy:"kfy-Deva-IN",kg:"kg-Latn-CD",kge:"kge-Latn-ID",kgf:"kgf-Latn-ZZ",kgp:"kgp-Latn-BR",kha:"kha-Latn-IN",khb:"khb-Talu-CN",khn:"khn-Deva-IN",khq:"khq-Latn-ML",khs:"khs-Latn-ZZ",kht:"kht-Mymr-IN",khw:"khw-Arab-PK",khz:"khz-Latn-ZZ",ki:"ki-Latn-KE",kij:"kij-Latn-ZZ",kiu:"kiu-Latn-TR",kiw:"kiw-Latn-ZZ",kj:"kj-Latn-NA",kjd:"kjd-Latn-ZZ",kjg:"kjg-Laoo-LA",kjs:"kjs-Latn-ZZ",kjy:"kjy-Latn-ZZ",kk:"kk-Cyrl-KZ","kk-AF":"kk-Arab-AF","kk-Arab":"kk-Arab-CN","kk-CN":"kk-Arab-CN","kk-IR":"kk-Arab-IR","kk-MN":"kk-Arab-MN",kkc:"kkc-Latn-ZZ",kkj:"kkj-Latn-CM",kl:"kl-Latn-GL",kln:"kln-Latn-KE",klq:"klq-Latn-ZZ",klt:"klt-Latn-ZZ",klx:"klx-Latn-ZZ",km:"km-Khmr-KH",kmb:"kmb-Latn-AO",kmh:"kmh-Latn-ZZ",kmo:"kmo-Latn-ZZ",kms:"kms-Latn-ZZ",kmu:"kmu-Latn-ZZ",kmw:"kmw-Latn-ZZ",kn:"kn-Knda-IN",knf:"knf-Latn-GW",knp:"knp-Latn-ZZ",ko:"ko-Kore-KR",koi:"koi-Cyrl-RU",kok:"kok-Deva-IN",kol:"kol-Latn-ZZ",kos:"kos-Latn-FM",koz:"koz-Latn-ZZ",kpe:"kpe-Latn-LR",kpf:"kpf-Latn-ZZ",kpo:"kpo-Latn-ZZ",kpr:"kpr-Latn-ZZ",kpx:"kpx-Latn-ZZ",kqb:"kqb-Latn-ZZ",kqf:"kqf-Latn-ZZ",kqs:"kqs-Latn-ZZ",kqy:"kqy-Ethi-ZZ",kr:"kr-Latn-ZZ",krc:"krc-Cyrl-RU",kri:"kri-Latn-SL",krj:"krj-Latn-PH",krl:"krl-Latn-RU",krs:"krs-Latn-ZZ",kru:"kru-Deva-IN",ks:"ks-Arab-IN",ksb:"ksb-Latn-TZ",ksd:"ksd-Latn-ZZ",ksf:"ksf-Latn-CM",ksh:"ksh-Latn-DE",ksj:"ksj-Latn-ZZ",ksr:"ksr-Latn-ZZ",ktb:"ktb-Ethi-ZZ",ktm:"ktm-Latn-ZZ",kto:"kto-Latn-ZZ",ktr:"ktr-Latn-MY",ku:"ku-Latn-TR","ku-Arab":"ku-Arab-IQ","ku-LB":"ku-Arab-LB",kub:"kub-Latn-ZZ",kud:"kud-Latn-ZZ",kue:"kue-Latn-ZZ",kuj:"kuj-Latn-ZZ",kum:"kum-Cyrl-RU",kun:"kun-Latn-ZZ",kup:"kup-Latn-ZZ",kus:"kus-Latn-ZZ",kv:"kv-Cyrl-RU",kvg:"kvg-Latn-ZZ",kvr:"kvr-Latn-ID",kvx:"kvx-Arab-PK",kw:"kw-Latn-GB",kwj:"kwj-Latn-ZZ",kwo:"kwo-Latn-ZZ",kwq:"kwq-Latn-ZZ",kxa:"kxa-Latn-ZZ",kxc:"kxc-Ethi-ZZ",kxe:"kxe-Latn-ZZ",kxm:"kxm-Thai-TH",kxp:"kxp-Arab-PK",kxw:"kxw-Latn-ZZ",kxz:"kxz-Latn-ZZ",ky:"ky-Cyrl-KG","ky-Arab":"ky-Arab-CN","ky-CN":"ky-Arab-CN","ky-Latn":"ky-Latn-TR","ky-TR":"ky-Latn-TR",kye:"kye-Latn-ZZ",kyx:"kyx-Latn-ZZ",kzj:"kzj-Latn-MY",kzr:"kzr-Latn-ZZ",kzt:"kzt-Latn-MY",la:"la-Latn-VA",lab:"lab-Lina-GR",lad:"lad-Hebr-IL",lag:"lag-Latn-TZ",lah:"lah-Arab-PK",laj:"laj-Latn-UG",las:"las-Latn-ZZ",lb:"lb-Latn-LU",lbe:"lbe-Cyrl-RU",lbu:"lbu-Latn-ZZ",lbw:"lbw-Latn-ID",lcm:"lcm-Latn-ZZ",lcp:"lcp-Thai-CN",ldb:"ldb-Latn-ZZ",led:"led-Latn-ZZ",lee:"lee-Latn-ZZ",lem:"lem-Latn-ZZ",lep:"lep-Lepc-IN",leq:"leq-Latn-ZZ",leu:"leu-Latn-ZZ",lez:"lez-Cyrl-RU",lg:"lg-Latn-UG",lgg:"lgg-Latn-ZZ",li:"li-Latn-NL",lia:"lia-Latn-ZZ",lid:"lid-Latn-ZZ",lif:"lif-Deva-NP","lif-Limb":"lif-Limb-IN",lig:"lig-Latn-ZZ",lih:"lih-Latn-ZZ",lij:"lij-Latn-IT",lis:"lis-Lisu-CN",ljp:"ljp-Latn-ID",lki:"lki-Arab-IR",lkt:"lkt-Latn-US",lle:"lle-Latn-ZZ",lln:"lln-Latn-ZZ",lmn:"lmn-Telu-IN",lmo:"lmo-Latn-IT",lmp:"lmp-Latn-ZZ",ln:"ln-Latn-CD",lns:"lns-Latn-ZZ",lnu:"lnu-Latn-ZZ",lo:"lo-Laoo-LA",loj:"loj-Latn-ZZ",lok:"lok-Latn-ZZ",lol:"lol-Latn-CD",lor:"lor-Latn-ZZ",los:"los-Latn-ZZ",loz:"loz-Latn-ZM",lrc:"lrc-Arab-IR",lt:"lt-Latn-LT",ltg:"ltg-Latn-LV",lu:"lu-Latn-CD",lua:"lua-Latn-CD",luo:"luo-Latn-KE",luy:"luy-Latn-KE",luz:"luz-Arab-IR",lv:"lv-Latn-LV",lwl:"lwl-Thai-TH",lzh:"lzh-Hans-CN",lzz:"lzz-Latn-TR",mad:"mad-Latn-ID",maf:"maf-Latn-CM",mag:"mag-Deva-IN",mai:"mai-Deva-IN",mak:"mak-Latn-ID",man:"man-Latn-GM","man-GN":"man-Nkoo-GN","man-Nkoo":"man-Nkoo-GN",mas:"mas-Latn-KE",maw:"maw-Latn-ZZ",maz:"maz-Latn-MX",mbh:"mbh-Latn-ZZ",mbo:"mbo-Latn-ZZ",mbq:"mbq-Latn-ZZ",mbu:"mbu-Latn-ZZ",mbw:"mbw-Latn-ZZ",mci:"mci-Latn-ZZ",mcp:"mcp-Latn-ZZ",mcq:"mcq-Latn-ZZ",mcr:"mcr-Latn-ZZ",mcu:"mcu-Latn-ZZ",mda:"mda-Latn-ZZ",mde:"mde-Arab-ZZ",mdf:"mdf-Cyrl-RU",mdh:"mdh-Latn-PH",mdj:"mdj-Latn-ZZ",mdr:"mdr-Latn-ID",mdx:"mdx-Ethi-ZZ",med:"med-Latn-ZZ",mee:"mee-Latn-ZZ",mek:"mek-Latn-ZZ",men:"men-Latn-SL",mer:"mer-Latn-KE",met:"met-Latn-ZZ",meu:"meu-Latn-ZZ",mfa:"mfa-Arab-TH",mfe:"mfe-Latn-MU",mfn:"mfn-Latn-ZZ",mfo:"mfo-Latn-ZZ",mfq:"mfq-Latn-ZZ",mg:"mg-Latn-MG",mgh:"mgh-Latn-MZ",mgl:"mgl-Latn-ZZ",mgo:"mgo-Latn-CM",mgp:"mgp-Deva-NP",mgy:"mgy-Latn-TZ",mh:"mh-Latn-MH",mhi:"mhi-Latn-ZZ",mhl:"mhl-Latn-ZZ",mi:"mi-Latn-NZ",mif:"mif-Latn-ZZ",min:"min-Latn-ID",mis:"mis-Hatr-IQ","mis-Medf":"mis-Medf-NG",miw:"miw-Latn-ZZ",mk:"mk-Cyrl-MK",mki:"mki-Arab-ZZ",mkl:"mkl-Latn-ZZ",mkp:"mkp-Latn-ZZ",mkw:"mkw-Latn-ZZ",ml:"ml-Mlym-IN",mle:"mle-Latn-ZZ",mlp:"mlp-Latn-ZZ",mls:"mls-Latn-SD",mmo:"mmo-Latn-ZZ",mmu:"mmu-Latn-ZZ",mmx:"mmx-Latn-ZZ",mn:"mn-Cyrl-MN","mn-CN":"mn-Mong-CN","mn-Mong":"mn-Mong-CN",mna:"mna-Latn-ZZ",mnf:"mnf-Latn-ZZ",mni:"mni-Beng-IN",mnw:"mnw-Mymr-MM",mo:"mo-Latn-RO",moa:"moa-Latn-ZZ",moe:"moe-Latn-CA",moh:"moh-Latn-CA",mos:"mos-Latn-BF",mox:"mox-Latn-ZZ",mpp:"mpp-Latn-ZZ",mps:"mps-Latn-ZZ",mpt:"mpt-Latn-ZZ",mpx:"mpx-Latn-ZZ",mql:"mql-Latn-ZZ",mr:"mr-Deva-IN",mrd:"mrd-Deva-NP",mrj:"mrj-Cyrl-RU",mro:"mro-Mroo-BD",ms:"ms-Latn-MY","ms-CC":"ms-Arab-CC","ms-ID":"ms-Arab-ID",mt:"mt-Latn-MT",mtc:"mtc-Latn-ZZ",mtf:"mtf-Latn-ZZ",mti:"mti-Latn-ZZ",mtr:"mtr-Deva-IN",mua:"mua-Latn-CM",mur:"mur-Latn-ZZ",mus:"mus-Latn-US",mva:"mva-Latn-ZZ",mvn:"mvn-Latn-ZZ",mvy:"mvy-Arab-PK",mwk:"mwk-Latn-ML",mwr:"mwr-Deva-IN",mwv:"mwv-Latn-ID",mww:"mww-Hmnp-US",mxc:"mxc-Latn-ZW",mxm:"mxm-Latn-ZZ",my:"my-Mymr-MM",myk:"myk-Latn-ZZ",mym:"mym-Ethi-ZZ",myv:"myv-Cyrl-RU",myw:"myw-Latn-ZZ",myx:"myx-Latn-UG",myz:"myz-Mand-IR",mzk:"mzk-Latn-ZZ",mzm:"mzm-Latn-ZZ",mzn:"mzn-Arab-IR",mzp:"mzp-Latn-ZZ",mzw:"mzw-Latn-ZZ",mzz:"mzz-Latn-ZZ",na:"na-Latn-NR",nac:"nac-Latn-ZZ",naf:"naf-Latn-ZZ",nak:"nak-Latn-ZZ",nan:"nan-Hans-CN",nap:"nap-Latn-IT",naq:"naq-Latn-NA",nas:"nas-Latn-ZZ",nb:"nb-Latn-NO",nca:"nca-Latn-ZZ",nce:"nce-Latn-ZZ",ncf:"ncf-Latn-ZZ",nch:"nch-Latn-MX",nco:"nco-Latn-ZZ",ncu:"ncu-Latn-ZZ",nd:"nd-Latn-ZW",ndc:"ndc-Latn-MZ",nds:"nds-Latn-DE",ne:"ne-Deva-NP",neb:"neb-Latn-ZZ",new:"new-Deva-NP",nex:"nex-Latn-ZZ",nfr:"nfr-Latn-ZZ",ng:"ng-Latn-NA",nga:"nga-Latn-ZZ",ngb:"ngb-Latn-ZZ",ngl:"ngl-Latn-MZ",nhb:"nhb-Latn-ZZ",nhe:"nhe-Latn-MX",nhw:"nhw-Latn-MX",nif:"nif-Latn-ZZ",nii:"nii-Latn-ZZ",nij:"nij-Latn-ID",nin:"nin-Latn-ZZ",niu:"niu-Latn-NU",niy:"niy-Latn-ZZ",niz:"niz-Latn-ZZ",njo:"njo-Latn-IN",nkg:"nkg-Latn-ZZ",nko:"nko-Latn-ZZ",nl:"nl-Latn-NL",nmg:"nmg-Latn-CM",nmz:"nmz-Latn-ZZ",nn:"nn-Latn-NO",nnf:"nnf-Latn-ZZ",nnh:"nnh-Latn-CM",nnk:"nnk-Latn-ZZ",nnm:"nnm-Latn-ZZ",nnp:"nnp-Wcho-IN",no:"no-Latn-NO",nod:"nod-Lana-TH",noe:"noe-Deva-IN",non:"non-Runr-SE",nop:"nop-Latn-ZZ",nou:"nou-Latn-ZZ",nqo:"nqo-Nkoo-GN",nr:"nr-Latn-ZA",nrb:"nrb-Latn-ZZ",nsk:"nsk-Cans-CA",nsn:"nsn-Latn-ZZ",nso:"nso-Latn-ZA",nss:"nss-Latn-ZZ",ntm:"ntm-Latn-ZZ",ntr:"ntr-Latn-ZZ",nui:"nui-Latn-ZZ",nup:"nup-Latn-ZZ",nus:"nus-Latn-SS",nuv:"nuv-Latn-ZZ",nux:"nux-Latn-ZZ",nv:"nv-Latn-US",nwb:"nwb-Latn-ZZ",nxq:"nxq-Latn-CN",nxr:"nxr-Latn-ZZ",ny:"ny-Latn-MW",nym:"nym-Latn-TZ",nyn:"nyn-Latn-UG",nzi:"nzi-Latn-GH",oc:"oc-Latn-FR",ogc:"ogc-Latn-ZZ",okr:"okr-Latn-ZZ",okv:"okv-Latn-ZZ",om:"om-Latn-ET",ong:"ong-Latn-ZZ",onn:"onn-Latn-ZZ",ons:"ons-Latn-ZZ",opm:"opm-Latn-ZZ",or:"or-Orya-IN",oro:"oro-Latn-ZZ",oru:"oru-Arab-ZZ",os:"os-Cyrl-GE",osa:"osa-Osge-US",ota:"ota-Arab-ZZ",otk:"otk-Orkh-MN",ozm:"ozm-Latn-ZZ",pa:"pa-Guru-IN","pa-Arab":"pa-Arab-PK","pa-PK":"pa-Arab-PK",pag:"pag-Latn-PH",pal:"pal-Phli-IR","pal-Phlp":"pal-Phlp-CN",pam:"pam-Latn-PH",pap:"pap-Latn-AW",pau:"pau-Latn-PW",pbi:"pbi-Latn-ZZ",pcd:"pcd-Latn-FR",pcm:"pcm-Latn-NG",pdc:"pdc-Latn-US",pdt:"pdt-Latn-CA",ped:"ped-Latn-ZZ",peo:"peo-Xpeo-IR",pex:"pex-Latn-ZZ",pfl:"pfl-Latn-DE",phl:"phl-Arab-ZZ",phn:"phn-Phnx-LB",pil:"pil-Latn-ZZ",pip:"pip-Latn-ZZ",pka:"pka-Brah-IN",pko:"pko-Latn-KE",pl:"pl-Latn-PL",pla:"pla-Latn-ZZ",pms:"pms-Latn-IT",png:"png-Latn-ZZ",pnn:"pnn-Latn-ZZ",pnt:"pnt-Grek-GR",pon:"pon-Latn-FM",ppa:"ppa-Deva-IN",ppo:"ppo-Latn-ZZ",pra:"pra-Khar-PK",prd:"prd-Arab-IR",prg:"prg-Latn-001",ps:"ps-Arab-AF",pss:"pss-Latn-ZZ",pt:"pt-Latn-BR",ptp:"ptp-Latn-ZZ",puu:"puu-Latn-GA",pwa:"pwa-Latn-ZZ",qu:"qu-Latn-PE",quc:"quc-Latn-GT",qug:"qug-Latn-EC",rai:"rai-Latn-ZZ",raj:"raj-Deva-IN",rao:"rao-Latn-ZZ",rcf:"rcf-Latn-RE",rej:"rej-Latn-ID",rel:"rel-Latn-ZZ",res:"res-Latn-ZZ",rgn:"rgn-Latn-IT",rhg:"rhg-Arab-MM",ria:"ria-Latn-IN",rif:"rif-Tfng-MA","rif-NL":"rif-Latn-NL",rjs:"rjs-Deva-NP",rkt:"rkt-Beng-BD",rm:"rm-Latn-CH",rmf:"rmf-Latn-FI",rmo:"rmo-Latn-CH",rmt:"rmt-Arab-IR",rmu:"rmu-Latn-SE",rn:"rn-Latn-BI",rna:"rna-Latn-ZZ",rng:"rng-Latn-MZ",ro:"ro-Latn-RO",rob:"rob-Latn-ID",rof:"rof-Latn-TZ",roo:"roo-Latn-ZZ",rro:"rro-Latn-ZZ",rtm:"rtm-Latn-FJ",ru:"ru-Cyrl-RU",rue:"rue-Cyrl-UA",rug:"rug-Latn-SB",rw:"rw-Latn-RW",rwk:"rwk-Latn-TZ",rwo:"rwo-Latn-ZZ",ryu:"ryu-Kana-JP",sa:"sa-Deva-IN",saf:"saf-Latn-GH",sah:"sah-Cyrl-RU",saq:"saq-Latn-KE",sas:"sas-Latn-ID",sat:"sat-Latn-IN",sav:"sav-Latn-SN",saz:"saz-Saur-IN",sba:"sba-Latn-ZZ",sbe:"sbe-Latn-ZZ",sbp:"sbp-Latn-TZ",sc:"sc-Latn-IT",sck:"sck-Deva-IN",scl:"scl-Arab-ZZ",scn:"scn-Latn-IT",sco:"sco-Latn-GB",scs:"scs-Latn-CA",sd:"sd-Arab-PK","sd-Deva":"sd-Deva-IN","sd-Khoj":"sd-Khoj-IN","sd-Sind":"sd-Sind-IN",sdc:"sdc-Latn-IT",sdh:"sdh-Arab-IR",se:"se-Latn-NO",sef:"sef-Latn-CI",seh:"seh-Latn-MZ",sei:"sei-Latn-MX",ses:"ses-Latn-ML",sg:"sg-Latn-CF",sga:"sga-Ogam-IE",sgs:"sgs-Latn-LT",sgw:"sgw-Ethi-ZZ",sgz:"sgz-Latn-ZZ",shi:"shi-Tfng-MA",shk:"shk-Latn-ZZ",shn:"shn-Mymr-MM",shu:"shu-Arab-ZZ",si:"si-Sinh-LK",sid:"sid-Latn-ET",sig:"sig-Latn-ZZ",sil:"sil-Latn-ZZ",sim:"sim-Latn-ZZ",sjr:"sjr-Latn-ZZ",sk:"sk-Latn-SK",skc:"skc-Latn-ZZ",skr:"skr-Arab-PK",sks:"sks-Latn-ZZ",sl:"sl-Latn-SI",sld:"sld-Latn-ZZ",sli:"sli-Latn-PL",sll:"sll-Latn-ZZ",sly:"sly-Latn-ID",sm:"sm-Latn-WS",sma:"sma-Latn-SE",smj:"smj-Latn-SE",smn:"smn-Latn-FI",smp:"smp-Samr-IL",smq:"smq-Latn-ZZ",sms:"sms-Latn-FI",sn:"sn-Latn-ZW",snc:"snc-Latn-ZZ",snk:"snk-Latn-ML",snp:"snp-Latn-ZZ",snx:"snx-Latn-ZZ",sny:"sny-Latn-ZZ",so:"so-Latn-SO",sog:"sog-Sogd-UZ",sok:"sok-Latn-ZZ",soq:"soq-Latn-ZZ",sou:"sou-Thai-TH",soy:"soy-Latn-ZZ",spd:"spd-Latn-ZZ",spl:"spl-Latn-ZZ",sps:"sps-Latn-ZZ",sq:"sq-Latn-AL",sr:"sr-Cyrl-RS","sr-ME":"sr-Latn-ME","sr-RO":"sr-Latn-RO","sr-RU":"sr-Latn-RU","sr-TR":"sr-Latn-TR",srb:"srb-Sora-IN",srn:"srn-Latn-SR",srr:"srr-Latn-SN",srx:"srx-Deva-IN",ss:"ss-Latn-ZA",ssd:"ssd-Latn-ZZ",ssg:"ssg-Latn-ZZ",ssy:"ssy-Latn-ER",st:"st-Latn-ZA",stk:"stk-Latn-ZZ",stq:"stq-Latn-DE",su:"su-Latn-ID",sua:"sua-Latn-ZZ",sue:"sue-Latn-ZZ",suk:"suk-Latn-TZ",sur:"sur-Latn-ZZ",sus:"sus-Latn-GN",sv:"sv-Latn-SE",sw:"sw-Latn-TZ",swb:"swb-Arab-YT",swc:"swc-Latn-CD",swg:"swg-Latn-DE",swp:"swp-Latn-ZZ",swv:"swv-Deva-IN",sxn:"sxn-Latn-ID",sxw:"sxw-Latn-ZZ",syl:"syl-Beng-BD",syr:"syr-Syrc-IQ",szl:"szl-Latn-PL",ta:"ta-Taml-IN",taj:"taj-Deva-NP",tal:"tal-Latn-ZZ",tan:"tan-Latn-ZZ",taq:"taq-Latn-ZZ",tbc:"tbc-Latn-ZZ",tbd:"tbd-Latn-ZZ",tbf:"tbf-Latn-ZZ",tbg:"tbg-Latn-ZZ",tbo:"tbo-Latn-ZZ",tbw:"tbw-Latn-PH",tbz:"tbz-Latn-ZZ",tci:"tci-Latn-ZZ",tcy:"tcy-Knda-IN",tdd:"tdd-Tale-CN",tdg:"tdg-Deva-NP",tdh:"tdh-Deva-NP",tdu:"tdu-Latn-MY",te:"te-Telu-IN",ted:"ted-Latn-ZZ",tem:"tem-Latn-SL",teo:"teo-Latn-UG",tet:"tet-Latn-TL",tfi:"tfi-Latn-ZZ",tg:"tg-Cyrl-TJ","tg-Arab":"tg-Arab-PK","tg-PK":"tg-Arab-PK",tgc:"tgc-Latn-ZZ",tgo:"tgo-Latn-ZZ",tgu:"tgu-Latn-ZZ",th:"th-Thai-TH",thl:"thl-Deva-NP",thq:"thq-Deva-NP",thr:"thr-Deva-NP",ti:"ti-Ethi-ET",tif:"tif-Latn-ZZ",tig:"tig-Ethi-ER",tik:"tik-Latn-ZZ",tim:"tim-Latn-ZZ",tio:"tio-Latn-ZZ",tiv:"tiv-Latn-NG",tk:"tk-Latn-TM",tkl:"tkl-Latn-TK",tkr:"tkr-Latn-AZ",tkt:"tkt-Deva-NP",tl:"tl-Latn-PH",tlf:"tlf-Latn-ZZ",tlx:"tlx-Latn-ZZ",tly:"tly-Latn-AZ",tmh:"tmh-Latn-NE",tmy:"tmy-Latn-ZZ",tn:"tn-Latn-ZA",tnh:"tnh-Latn-ZZ",to:"to-Latn-TO",tof:"tof-Latn-ZZ",tog:"tog-Latn-MW",toq:"toq-Latn-ZZ",tpi:"tpi-Latn-PG",tpm:"tpm-Latn-ZZ",tpz:"tpz-Latn-ZZ",tqo:"tqo-Latn-ZZ",tr:"tr-Latn-TR",tru:"tru-Latn-TR",trv:"trv-Latn-TW",trw:"trw-Arab-ZZ",ts:"ts-Latn-ZA",tsd:"tsd-Grek-GR",tsf:"tsf-Deva-NP",tsg:"tsg-Latn-PH",tsj:"tsj-Tibt-BT",tsw:"tsw-Latn-ZZ",tt:"tt-Cyrl-RU",ttd:"ttd-Latn-ZZ",tte:"tte-Latn-ZZ",ttj:"ttj-Latn-UG",ttr:"ttr-Latn-ZZ",tts:"tts-Thai-TH",ttt:"ttt-Latn-AZ",tuh:"tuh-Latn-ZZ",tul:"tul-Latn-ZZ",tum:"tum-Latn-MW",tuq:"tuq-Latn-ZZ",tvd:"tvd-Latn-ZZ",tvl:"tvl-Latn-TV",tvu:"tvu-Latn-ZZ",twh:"twh-Latn-ZZ",twq:"twq-Latn-NE",txg:"txg-Tang-CN",ty:"ty-Latn-PF",tya:"tya-Latn-ZZ",tyv:"tyv-Cyrl-RU",tzm:"tzm-Latn-MA",ubu:"ubu-Latn-ZZ",udm:"udm-Cyrl-RU",ug:"ug-Arab-CN","ug-Cyrl":"ug-Cyrl-KZ","ug-KZ":"ug-Cyrl-KZ","ug-MN":"ug-Cyrl-MN",uga:"uga-Ugar-SY",uk:"uk-Cyrl-UA",uli:"uli-Latn-FM",umb:"umb-Latn-AO",und:"en-Latn-US","und-002":"en-Latn-NG","und-003":"en-Latn-US","und-005":"pt-Latn-BR","und-009":"en-Latn-AU","und-011":"en-Latn-NG","und-013":"es-Latn-MX","und-014":"sw-Latn-TZ","und-015":"ar-Arab-EG","und-017":"sw-Latn-CD","und-018":"en-Latn-ZA","und-019":"en-Latn-US","und-021":"en-Latn-US","und-029":"es-Latn-CU","und-030":"zh-Hans-CN","und-034":"hi-Deva-IN","und-035":"id-Latn-ID","und-039":"it-Latn-IT","und-053":"en-Latn-AU","und-054":"en-Latn-PG","und-057":"en-Latn-GU","und-061":"sm-Latn-WS","und-142":"zh-Hans-CN","und-143":"uz-Latn-UZ","und-145":"ar-Arab-SA","und-150":"ru-Cyrl-RU","und-151":"ru-Cyrl-RU","und-154":"en-Latn-GB","und-155":"de-Latn-DE","und-202":"en-Latn-NG","und-419":"es-Latn-419","und-AD":"ca-Latn-AD","und-Adlm":"ff-Adlm-GN","und-AE":"ar-Arab-AE","und-AF":"fa-Arab-AF","und-Aghb":"lez-Aghb-RU","und-Ahom":"aho-Ahom-IN","und-AL":"sq-Latn-AL","und-AM":"hy-Armn-AM","und-AO":"pt-Latn-AO","und-AQ":"und-Latn-AQ","und-AR":"es-Latn-AR","und-Arab":"ar-Arab-EG","und-Arab-CC":"ms-Arab-CC","und-Arab-CN":"ug-Arab-CN","und-Arab-GB":"ks-Arab-GB","und-Arab-ID":"ms-Arab-ID","und-Arab-IN":"ur-Arab-IN","und-Arab-KH":"cja-Arab-KH","und-Arab-MM":"rhg-Arab-MM","und-Arab-MN":"kk-Arab-MN","und-Arab-MU":"ur-Arab-MU","und-Arab-NG":"ha-Arab-NG","und-Arab-PK":"ur-Arab-PK","und-Arab-TG":"apd-Arab-TG","und-Arab-TH":"mfa-Arab-TH","und-Arab-TJ":"fa-Arab-TJ","und-Arab-TR":"az-Arab-TR","und-Arab-YT":"swb-Arab-YT","und-Armi":"arc-Armi-IR","und-Armn":"hy-Armn-AM","und-AS":"sm-Latn-AS","und-AT":"de-Latn-AT","und-Avst":"ae-Avst-IR","und-AW":"nl-Latn-AW","und-AX":"sv-Latn-AX","und-AZ":"az-Latn-AZ","und-BA":"bs-Latn-BA","und-Bali":"ban-Bali-ID","und-Bamu":"bax-Bamu-CM","und-Bass":"bsq-Bass-LR","und-Batk":"bbc-Batk-ID","und-BD":"bn-Beng-BD","und-BE":"nl-Latn-BE","und-Beng":"bn-Beng-BD","und-BF":"fr-Latn-BF","und-BG":"bg-Cyrl-BG","und-BH":"ar-Arab-BH","und-Bhks":"sa-Bhks-IN","und-BI":"rn-Latn-BI","und-BJ":"fr-Latn-BJ","und-BL":"fr-Latn-BL","und-BN":"ms-Latn-BN","und-BO":"es-Latn-BO","und-Bopo":"zh-Bopo-TW","und-BQ":"pap-Latn-BQ","und-BR":"pt-Latn-BR","und-Brah":"pka-Brah-IN","und-Brai":"fr-Brai-FR","und-BT":"dz-Tibt-BT","und-Bugi":"bug-Bugi-ID","und-Buhd":"bku-Buhd-PH","und-BV":"und-Latn-BV","und-BY":"be-Cyrl-BY","und-Cakm":"ccp-Cakm-BD","und-Cans":"cr-Cans-CA","und-Cari":"xcr-Cari-TR","und-CD":"sw-Latn-CD","und-CF":"fr-Latn-CF","und-CG":"fr-Latn-CG","und-CH":"de-Latn-CH","und-Cham":"cjm-Cham-VN","und-Cher":"chr-Cher-US","und-CI":"fr-Latn-CI","und-CL":"es-Latn-CL","und-CM":"fr-Latn-CM","und-CN":"zh-Hans-CN","und-CO":"es-Latn-CO","und-Copt":"cop-Copt-EG","und-CP":"und-Latn-CP","und-Cprt":"grc-Cprt-CY","und-CR":"es-Latn-CR","und-CU":"es-Latn-CU","und-CV":"pt-Latn-CV","und-CW":"pap-Latn-CW","und-CY":"el-Grek-CY","und-Cyrl":"ru-Cyrl-RU","und-Cyrl-AL":"mk-Cyrl-AL","und-Cyrl-BA":"sr-Cyrl-BA","und-Cyrl-GE":"ab-Cyrl-GE","und-Cyrl-GR":"mk-Cyrl-GR","und-Cyrl-MD":"uk-Cyrl-MD","und-Cyrl-RO":"bg-Cyrl-RO","und-Cyrl-SK":"uk-Cyrl-SK","und-Cyrl-TR":"kbd-Cyrl-TR","und-Cyrl-XK":"sr-Cyrl-XK","und-CZ":"cs-Latn-CZ","und-DE":"de-Latn-DE","und-Deva":"hi-Deva-IN","und-Deva-BT":"ne-Deva-BT","und-Deva-FJ":"hif-Deva-FJ","und-Deva-MU":"bho-Deva-MU","und-Deva-PK":"btv-Deva-PK","und-DJ":"aa-Latn-DJ","und-DK":"da-Latn-DK","und-DO":"es-Latn-DO","und-Dogr":"doi-Dogr-IN","und-Dupl":"fr-Dupl-FR","und-DZ":"ar-Arab-DZ","und-EA":"es-Latn-EA","und-EC":"es-Latn-EC","und-EE":"et-Latn-EE","und-EG":"ar-Arab-EG","und-Egyp":"egy-Egyp-EG","und-EH":"ar-Arab-EH","und-Elba":"sq-Elba-AL","und-Elym":"arc-Elym-IR","und-ER":"ti-Ethi-ER","und-ES":"es-Latn-ES","und-ET":"am-Ethi-ET","und-Ethi":"am-Ethi-ET","und-EU":"en-Latn-GB","und-EZ":"de-Latn-EZ","und-FI":"fi-Latn-FI","und-FO":"fo-Latn-FO","und-FR":"fr-Latn-FR","und-GA":"fr-Latn-GA","und-GE":"ka-Geor-GE","und-Geor":"ka-Geor-GE","und-GF":"fr-Latn-GF","und-GH":"ak-Latn-GH","und-GL":"kl-Latn-GL","und-Glag":"cu-Glag-BG","und-GN":"fr-Latn-GN","und-Gong":"wsg-Gong-IN","und-Gonm":"esg-Gonm-IN","und-Goth":"got-Goth-UA","und-GP":"fr-Latn-GP","und-GQ":"es-Latn-GQ","und-GR":"el-Grek-GR","und-Gran":"sa-Gran-IN","und-Grek":"el-Grek-GR","und-Grek-TR":"bgx-Grek-TR","und-GS":"und-Latn-GS","und-GT":"es-Latn-GT","und-Gujr":"gu-Gujr-IN","und-Guru":"pa-Guru-IN","und-GW":"pt-Latn-GW","und-Hanb":"zh-Hanb-TW","und-Hang":"ko-Hang-KR","und-Hani":"zh-Hani-CN","und-Hano":"hnn-Hano-PH","und-Hans":"zh-Hans-CN","und-Hant":"zh-Hant-TW","und-Hatr":"mis-Hatr-IQ","und-Hebr":"he-Hebr-IL","und-Hebr-CA":"yi-Hebr-CA","und-Hebr-GB":"yi-Hebr-GB","und-Hebr-SE":"yi-Hebr-SE","und-Hebr-UA":"yi-Hebr-UA","und-Hebr-US":"yi-Hebr-US","und-Hira":"ja-Hira-JP","und-HK":"zh-Hant-HK","und-Hluw":"hlu-Hluw-TR","und-HM":"und-Latn-HM","und-Hmng":"hnj-Hmng-LA","und-Hmnp":"mww-Hmnp-US","und-HN":"es-Latn-HN","und-HR":"hr-Latn-HR","und-HT":"ht-Latn-HT","und-HU":"hu-Latn-HU","und-Hung":"hu-Hung-HU","und-IC":"es-Latn-IC","und-ID":"id-Latn-ID","und-IL":"he-Hebr-IL","und-IN":"hi-Deva-IN","und-IQ":"ar-Arab-IQ","und-IR":"fa-Arab-IR","und-IS":"is-Latn-IS","und-IT":"it-Latn-IT","und-Ital":"ett-Ital-IT","und-Jamo":"ko-Jamo-KR","und-Java":"jv-Java-ID","und-JO":"ar-Arab-JO","und-JP":"ja-Jpan-JP","und-Jpan":"ja-Jpan-JP","und-Kali":"eky-Kali-MM","und-Kana":"ja-Kana-JP","und-KE":"sw-Latn-KE","und-KG":"ky-Cyrl-KG","und-KH":"km-Khmr-KH","und-Khar":"pra-Khar-PK","und-Khmr":"km-Khmr-KH","und-Khoj":"sd-Khoj-IN","und-KM":"ar-Arab-KM","und-Knda":"kn-Knda-IN","und-Kore":"ko-Kore-KR","und-KP":"ko-Kore-KP","und-KR":"ko-Kore-KR","und-Kthi":"bho-Kthi-IN","und-KW":"ar-Arab-KW","und-KZ":"ru-Cyrl-KZ","und-LA":"lo-Laoo-LA","und-Lana":"nod-Lana-TH","und-Laoo":"lo-Laoo-LA","und-Latn-AF":"tk-Latn-AF","und-Latn-AM":"ku-Latn-AM","und-Latn-CN":"za-Latn-CN","und-Latn-CY":"tr-Latn-CY","und-Latn-DZ":"fr-Latn-DZ","und-Latn-ET":"en-Latn-ET","und-Latn-GE":"ku-Latn-GE","und-Latn-IR":"tk-Latn-IR","und-Latn-KM":"fr-Latn-KM","und-Latn-MA":"fr-Latn-MA","und-Latn-MK":"sq-Latn-MK","und-Latn-MM":"kac-Latn-MM","und-Latn-MO":"pt-Latn-MO","und-Latn-MR":"fr-Latn-MR","und-Latn-RU":"krl-Latn-RU","und-Latn-SY":"fr-Latn-SY","und-Latn-TN":"fr-Latn-TN","und-Latn-TW":"trv-Latn-TW","und-Latn-UA":"pl-Latn-UA","und-LB":"ar-Arab-LB","und-Lepc":"lep-Lepc-IN","und-LI":"de-Latn-LI","und-Limb":"lif-Limb-IN","und-Lina":"lab-Lina-GR","und-Linb":"grc-Linb-GR","und-Lisu":"lis-Lisu-CN","und-LK":"si-Sinh-LK","und-LS":"st-Latn-LS","und-LT":"lt-Latn-LT","und-LU":"fr-Latn-LU","und-LV":"lv-Latn-LV","und-LY":"ar-Arab-LY","und-Lyci":"xlc-Lyci-TR","und-Lydi":"xld-Lydi-TR","und-MA":"ar-Arab-MA","und-Mahj":"hi-Mahj-IN","und-Maka":"mak-Maka-ID","und-Mand":"myz-Mand-IR","und-Mani":"xmn-Mani-CN","und-Marc":"bo-Marc-CN","und-MC":"fr-Latn-MC","und-MD":"ro-Latn-MD","und-ME":"sr-Latn-ME","und-Medf":"mis-Medf-NG","und-Mend":"men-Mend-SL","und-Merc":"xmr-Merc-SD","und-Mero":"xmr-Mero-SD","und-MF":"fr-Latn-MF","und-MG":"mg-Latn-MG","und-MK":"mk-Cyrl-MK","und-ML":"bm-Latn-ML","und-Mlym":"ml-Mlym-IN","und-MM":"my-Mymr-MM","und-MN":"mn-Cyrl-MN","und-MO":"zh-Hant-MO","und-Modi":"mr-Modi-IN","und-Mong":"mn-Mong-CN","und-MQ":"fr-Latn-MQ","und-MR":"ar-Arab-MR","und-Mroo":"mro-Mroo-BD","und-MT":"mt-Latn-MT","und-Mtei":"mni-Mtei-IN","und-MU":"mfe-Latn-MU","und-Mult":"skr-Mult-PK","und-MV":"dv-Thaa-MV","und-MX":"es-Latn-MX","und-MY":"ms-Latn-MY","und-Mymr":"my-Mymr-MM","und-Mymr-IN":"kht-Mymr-IN","und-Mymr-TH":"mnw-Mymr-TH","und-MZ":"pt-Latn-MZ","und-NA":"af-Latn-NA","und-Nand":"sa-Nand-IN","und-Narb":"xna-Narb-SA","und-Nbat":"arc-Nbat-JO","und-NC":"fr-Latn-NC","und-NE":"ha-Latn-NE","und-Newa":"new-Newa-NP","und-NI":"es-Latn-NI","und-Nkoo":"man-Nkoo-GN","und-NL":"nl-Latn-NL","und-NO":"nb-Latn-NO","und-NP":"ne-Deva-NP","und-Nshu":"zhx-Nshu-CN","und-Ogam":"sga-Ogam-IE","und-Olck":"sat-Olck-IN","und-OM":"ar-Arab-OM","und-Orkh":"otk-Orkh-MN","und-Orya":"or-Orya-IN","und-Osge":"osa-Osge-US","und-Osma":"so-Osma-SO","und-PA":"es-Latn-PA","und-Palm":"arc-Palm-SY","und-Pauc":"ctd-Pauc-MM","und-PE":"es-Latn-PE","und-Perm":"kv-Perm-RU","und-PF":"fr-Latn-PF","und-PG":"tpi-Latn-PG","und-PH":"fil-Latn-PH","und-Phag":"lzh-Phag-CN","und-Phli":"pal-Phli-IR","und-Phlp":"pal-Phlp-CN","und-Phnx":"phn-Phnx-LB","und-PK":"ur-Arab-PK","und-PL":"pl-Latn-PL","und-Plrd":"hmd-Plrd-CN","und-PM":"fr-Latn-PM","und-PR":"es-Latn-PR","und-Prti":"xpr-Prti-IR","und-PS":"ar-Arab-PS","und-PT":"pt-Latn-PT","und-PW":"pau-Latn-PW","und-PY":"gn-Latn-PY","und-QA":"ar-Arab-QA","und-QO":"en-Latn-DG","und-RE":"fr-Latn-RE","und-Rjng":"rej-Rjng-ID","und-RO":"ro-Latn-RO","und-Rohg":"rhg-Rohg-MM","und-RS":"sr-Cyrl-RS","und-RU":"ru-Cyrl-RU","und-Runr":"non-Runr-SE","und-RW":"rw-Latn-RW","und-SA":"ar-Arab-SA","und-Samr":"smp-Samr-IL","und-Sarb":"xsa-Sarb-YE","und-Saur":"saz-Saur-IN","und-SC":"fr-Latn-SC","und-SD":"ar-Arab-SD","und-SE":"sv-Latn-SE","und-Sgnw":"ase-Sgnw-US","und-Shaw":"en-Shaw-GB","und-Shrd":"sa-Shrd-IN","und-SI":"sl-Latn-SI","und-Sidd":"sa-Sidd-IN","und-Sind":"sd-Sind-IN","und-Sinh":"si-Sinh-LK","und-SJ":"nb-Latn-SJ","und-SK":"sk-Latn-SK","und-SM":"it-Latn-SM","und-SN":"fr-Latn-SN","und-SO":"so-Latn-SO","und-Sogd":"sog-Sogd-UZ","und-Sogo":"sog-Sogo-UZ","und-Sora":"srb-Sora-IN","und-Soyo":"cmg-Soyo-MN","und-SR":"nl-Latn-SR","und-ST":"pt-Latn-ST","und-Sund":"su-Sund-ID","und-SV":"es-Latn-SV","und-SY":"ar-Arab-SY","und-Sylo":"syl-Sylo-BD","und-Syrc":"syr-Syrc-IQ","und-Tagb":"tbw-Tagb-PH","und-Takr":"doi-Takr-IN","und-Tale":"tdd-Tale-CN","und-Talu":"khb-Talu-CN","und-Taml":"ta-Taml-IN","und-Tang":"txg-Tang-CN","und-Tavt":"blt-Tavt-VN","und-TD":"fr-Latn-TD","und-Telu":"te-Telu-IN","und-TF":"fr-Latn-TF","und-Tfng":"zgh-Tfng-MA","und-TG":"fr-Latn-TG","und-Tglg":"fil-Tglg-PH","und-TH":"th-Thai-TH","und-Thaa":"dv-Thaa-MV","und-Thai":"th-Thai-TH","und-Thai-CN":"lcp-Thai-CN","und-Thai-KH":"kdt-Thai-KH","und-Thai-LA":"kdt-Thai-LA","und-Tibt":"bo-Tibt-CN","und-Tirh":"mai-Tirh-IN","und-TJ":"tg-Cyrl-TJ","und-TK":"tkl-Latn-TK","und-TL":"pt-Latn-TL","und-TM":"tk-Latn-TM","und-TN":"ar-Arab-TN","und-TO":"to-Latn-TO","und-TR":"tr-Latn-TR","und-TV":"tvl-Latn-TV","und-TW":"zh-Hant-TW","und-TZ":"sw-Latn-TZ","und-UA":"uk-Cyrl-UA","und-UG":"sw-Latn-UG","und-Ugar":"uga-Ugar-SY","und-UY":"es-Latn-UY","und-UZ":"uz-Latn-UZ","und-VA":"it-Latn-VA","und-Vaii":"vai-Vaii-LR","und-VE":"es-Latn-VE","und-VN":"vi-Latn-VN","und-VU":"bi-Latn-VU","und-Wara":"hoc-Wara-IN","und-Wcho":"nnp-Wcho-IN","und-WF":"fr-Latn-WF","und-WS":"sm-Latn-WS","und-XK":"sq-Latn-XK","und-Xpeo":"peo-Xpeo-IR","und-Xsux":"akk-Xsux-IQ","und-YE":"ar-Arab-YE","und-Yiii":"ii-Yiii-CN","und-YT":"fr-Latn-YT","und-Zanb":"cmg-Zanb-MN","und-ZW":"sn-Latn-ZW",unr:"unr-Beng-IN","unr-Deva":"unr-Deva-NP","unr-NP":"unr-Deva-NP",unx:"unx-Beng-IN",uok:"uok-Latn-ZZ",ur:"ur-Arab-PK",uri:"uri-Latn-ZZ",urt:"urt-Latn-ZZ",urw:"urw-Latn-ZZ",usa:"usa-Latn-ZZ",utr:"utr-Latn-ZZ",uvh:"uvh-Latn-ZZ",uvl:"uvl-Latn-ZZ",uz:"uz-Latn-UZ","uz-AF":"uz-Arab-AF","uz-Arab":"uz-Arab-AF","uz-CN":"uz-Cyrl-CN",vag:"vag-Latn-ZZ",vai:"vai-Vaii-LR",van:"van-Latn-ZZ",ve:"ve-Latn-ZA",vec:"vec-Latn-IT",vep:"vep-Latn-RU",vi:"vi-Latn-VN",vic:"vic-Latn-SX",viv:"viv-Latn-ZZ",vls:"vls-Latn-BE",vmf:"vmf-Latn-DE",vmw:"vmw-Latn-MZ",vo:"vo-Latn-001",vot:"vot-Latn-RU",vro:"vro-Latn-EE",vun:"vun-Latn-TZ",vut:"vut-Latn-ZZ",wa:"wa-Latn-BE",wae:"wae-Latn-CH",waj:"waj-Latn-ZZ",wal:"wal-Ethi-ET",wan:"wan-Latn-ZZ",war:"war-Latn-PH",wbp:"wbp-Latn-AU",wbq:"wbq-Telu-IN",wbr:"wbr-Deva-IN",wci:"wci-Latn-ZZ",wer:"wer-Latn-ZZ",wgi:"wgi-Latn-ZZ",whg:"whg-Latn-ZZ",wib:"wib-Latn-ZZ",wiu:"wiu-Latn-ZZ",wiv:"wiv-Latn-ZZ",wja:"wja-Latn-ZZ",wji:"wji-Latn-ZZ",wls:"wls-Latn-WF",wmo:"wmo-Latn-ZZ",wnc:"wnc-Latn-ZZ",wni:"wni-Arab-KM",wnu:"wnu-Latn-ZZ",wo:"wo-Latn-SN",wob:"wob-Latn-ZZ",wos:"wos-Latn-ZZ",wrs:"wrs-Latn-ZZ",wsg:"wsg-Gong-IN",wsk:"wsk-Latn-ZZ",wtm:"wtm-Deva-IN",wuu:"wuu-Hans-CN",wuv:"wuv-Latn-ZZ",wwa:"wwa-Latn-ZZ",xav:"xav-Latn-BR",xbi:"xbi-Latn-ZZ",xcr:"xcr-Cari-TR",xes:"xes-Latn-ZZ",xh:"xh-Latn-ZA",xla:"xla-Latn-ZZ",xlc:"xlc-Lyci-TR",xld:"xld-Lydi-TR",xmf:"xmf-Geor-GE",xmn:"xmn-Mani-CN",xmr:"xmr-Merc-SD",xna:"xna-Narb-SA",xnr:"xnr-Deva-IN",xog:"xog-Latn-UG",xon:"xon-Latn-ZZ",xpr:"xpr-Prti-IR",xrb:"xrb-Latn-ZZ",xsa:"xsa-Sarb-YE",xsi:"xsi-Latn-ZZ",xsm:"xsm-Latn-ZZ",xsr:"xsr-Deva-NP",xwe:"xwe-Latn-ZZ",yam:"yam-Latn-ZZ",yao:"yao-Latn-MZ",yap:"yap-Latn-FM",yas:"yas-Latn-ZZ",yat:"yat-Latn-ZZ",yav:"yav-Latn-CM",yay:"yay-Latn-ZZ",yaz:"yaz-Latn-ZZ",yba:"yba-Latn-ZZ",ybb:"ybb-Latn-CM",yby:"yby-Latn-ZZ",yer:"yer-Latn-ZZ",ygr:"ygr-Latn-ZZ",ygw:"ygw-Latn-ZZ",yi:"yi-Hebr-001",yko:"yko-Latn-ZZ",yle:"yle-Latn-ZZ",ylg:"ylg-Latn-ZZ",yll:"yll-Latn-ZZ",yml:"yml-Latn-ZZ",yo:"yo-Latn-NG",yon:"yon-Latn-ZZ",yrb:"yrb-Latn-ZZ",yre:"yre-Latn-ZZ",yrl:"yrl-Latn-BR",yss:"yss-Latn-ZZ",yua:"yua-Latn-MX",yue:"yue-Hant-HK","yue-CN":"yue-Hans-CN","yue-Hans":"yue-Hans-CN",yuj:"yuj-Latn-ZZ",yut:"yut-Latn-ZZ",yuw:"yuw-Latn-ZZ",za:"za-Latn-CN",zag:"zag-Latn-SD",zdj:"zdj-Arab-KM",zea:"zea-Latn-NL",zgh:"zgh-Tfng-MA",zh:"zh-Hans-CN","zh-AU":"zh-Hant-AU","zh-BN":"zh-Hant-BN","zh-Bopo":"zh-Bopo-TW","zh-GB":"zh-Hant-GB","zh-GF":"zh-Hant-GF","zh-Hanb":"zh-Hanb-TW","zh-Hant":"zh-Hant-TW","zh-HK":"zh-Hant-HK","zh-ID":"zh-Hant-ID","zh-MO":"zh-Hant-MO","zh-MY":"zh-Hant-MY","zh-PA":"zh-Hant-PA","zh-PF":"zh-Hant-PF","zh-PH":"zh-Hant-PH","zh-SR":"zh-Hant-SR","zh-TH":"zh-Hant-TH","zh-TW":"zh-Hant-TW","zh-US":"zh-Hant-US","zh-VN":"zh-Hant-VN",zhx:"zhx-Nshu-CN",zia:"zia-Latn-ZZ",zlm:"zlm-Latn-TG",zmi:"zmi-Latn-MY",zne:"zne-Latn-ZZ",zu:"zu-Latn-ZA",zza:"zza-Latn-TR"}}},c={supplemental:{version:{_unicodeVersion:"12.1.0",_cldrVersion:"36"},metaZones:{metazoneInfo:{timezone:{Africa:{Abidjan:[{usesMetazone:{_mzone:"GMT"}}],Accra:[{usesMetazone:{_mzone:"GMT"}}],Addis_Ababa:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Algiers:[{usesMetazone:{_mzone:"Europe_Western",_to:"1977-10-20 23:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1977-10-20 23:00",_to:"1979-10-25 23:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1979-10-25 23:00",_to:"1981-05-01 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1981-05-01 00:00"}}],Asmera:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Bamako:[{usesMetazone:{_mzone:"GMT"}}],Bangui:[{usesMetazone:{_mzone:"Africa_Western"}}],Banjul:[{usesMetazone:{_mzone:"GMT"}}],Bissau:[{usesMetazone:{_mzone:"Africa_FarWestern",_to:"1975-01-01 01:00"}},{usesMetazone:{_mzone:"GMT",_from:"1975-01-01 01:00"}}],Blantyre:[{usesMetazone:{_mzone:"Africa_Central"}}],Brazzaville:[{usesMetazone:{_mzone:"Africa_Western"}}],Bujumbura:[{usesMetazone:{_mzone:"Africa_Central"}}],Cairo:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Casablanca:[{usesMetazone:{_mzone:"Europe_Western",_to:"1984-03-16 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1984-03-16 00:00",_to:"1985-12-31 23:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1985-12-31 23:00",_to:"2018-10-28 02:00"}}],Ceuta:[{usesMetazone:{_mzone:"Europe_Western",_to:"1984-03-16 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1984-03-16 00:00"}}],Conakry:[{usesMetazone:{_mzone:"GMT"}}],Dakar:[{usesMetazone:{_mzone:"GMT"}}],Dar_es_Salaam:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Djibouti:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Douala:[{usesMetazone:{_mzone:"Africa_Western"}}],El_Aaiun:[{usesMetazone:{_mzone:"Africa_FarWestern",_to:"1976-04-14 01:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1976-04-14 01:00",_to:"2018-10-28 02:00"}}],Freetown:[{usesMetazone:{_mzone:"GMT"}}],Gaborone:[{usesMetazone:{_mzone:"Africa_Central"}}],Harare:[{usesMetazone:{_mzone:"Africa_Central"}}],Johannesburg:[{usesMetazone:{_mzone:"Africa_Southern"}}],Juba:[{usesMetazone:{_mzone:"Africa_Central",_to:"2000-01-15 10:00"}},{usesMetazone:{_mzone:"Africa_Eastern",_from:"2000-01-15 10:00"}}],Kampala:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Khartoum:[{usesMetazone:{_mzone:"Africa_Central",_to:"2000-01-15 10:00"}},{usesMetazone:{_mzone:"Africa_Eastern",_from:"2000-01-15 10:00",_to:"2017-10-31 21:00"}},{usesMetazone:{_mzone:"Africa_Central",_from:"2017-10-31 21:00"}}],Kigali:[{usesMetazone:{_mzone:"Africa_Central"}}],Kinshasa:[{usesMetazone:{_mzone:"Africa_Western"}}],Lagos:[{usesMetazone:{_mzone:"Africa_Western"}}],Libreville:[{usesMetazone:{_mzone:"Africa_Western"}}],Lome:[{usesMetazone:{_mzone:"GMT"}}],Luanda:[{usesMetazone:{_mzone:"Africa_Western"}}],Lubumbashi:[{usesMetazone:{_mzone:"Africa_Central"}}],Lusaka:[{usesMetazone:{_mzone:"Africa_Central"}}],Malabo:[{usesMetazone:{_mzone:"Africa_Western"}}],Maputo:[{usesMetazone:{_mzone:"Africa_Central"}}],Maseru:[{usesMetazone:{_mzone:"Africa_Southern"}}],Mbabane:[{usesMetazone:{_mzone:"Africa_Southern"}}],Mogadishu:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Monrovia:[{usesMetazone:{_mzone:"Liberia",_to:"1972-05-01 00:45"}},{usesMetazone:{_mzone:"GMT",_from:"1972-05-01 00:45"}}],Nairobi:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Ndjamena:[{usesMetazone:{_mzone:"Africa_Western"}}],Niamey:[{usesMetazone:{_mzone:"Africa_Western"}}],Nouakchott:[{usesMetazone:{_mzone:"GMT"}}],Ouagadougou:[{usesMetazone:{_mzone:"GMT"}}],"Porto-Novo":[{usesMetazone:{_mzone:"Africa_Western"}}],Sao_Tome:[{usesMetazone:{_mzone:"GMT",_to:"2018-01-01 01:00"}},{usesMetazone:{_mzone:"Africa_Western",_from:"2018-01-01 01:00",_to:"2019-01-01 01:00"}},{usesMetazone:{_mzone:"GMT",_from:"2019-01-01 01:00"}}],Tripoli:[{usesMetazone:{_mzone:"Europe_Eastern",_to:"1981-12-31 22:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1981-12-31 22:00",_to:"1990-05-03 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-05-03 23:00",_to:"1996-09-29 22:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1996-09-29 22:00",_to:"1997-10-03 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1997-10-03 22:00",_to:"2012-11-10 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"2012-11-10 00:00",_to:"2013-10-25 00:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"2013-10-25 00:00"}}],Tunis:[{usesMetazone:{_mzone:"Europe_Central"}}],Windhoek:[{usesMetazone:{_mzone:"Africa_Southern",_to:"1990-03-20 22:00"}},{usesMetazone:{_mzone:"Africa_Central",_from:"1990-03-20 22:00",_to:"1994-03-20 22:00"}},{usesMetazone:{_mzone:"Africa_Western",_from:"1994-03-20 22:00",_to:"2017-10-23 22:00"}},{usesMetazone:{_mzone:"Africa_Central",_from:"2017-10-23 22:00"}}]},America:{Adak:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Hawaii_Aleutian",_from:"1983-11-30 10:00"}}],Anchorage:[{usesMetazone:{_mzone:"Alaska_Hawaii",_to:"1983-10-30 11:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 11:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Anguilla:[{usesMetazone:{_mzone:"Atlantic"}}],Antigua:[{usesMetazone:{_mzone:"Atlantic"}}],Araguaina:[{usesMetazone:{_mzone:"Brasilia"}}],Argentina:{La_Rioja:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-01 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1991-03-01 02:00",_to:"1991-05-07 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-05-07 04:00",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-20 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}],Rio_Gallegos:[{usesMetazone:{_mzone:"Argentina",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-20 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}],Salta:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00"}}],San_Juan:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-01 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1991-03-01 02:00",_to:"1991-05-07 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-05-07 04:00",_to:"2004-05-31 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-05-31 03:00",_to:"2004-07-25 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-07-25 04:00"}}],San_Luis:[{usesMetazone:{_mzone:"Argentina",_to:"1990-03-14 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1990-03-14 02:00",_to:"1991-06-01 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-06-01 04:00",_to:"1999-10-03 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1999-10-03 03:00",_to:"2000-03-03 03:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2000-03-03 03:00",_to:"2004-05-31 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-05-31 03:00",_to:"2004-07-25 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-07-25 04:00",_to:"2008-01-21 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2008-01-21 02:00"}}],Tucuman:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-13 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-13 04:00"}}],Ushuaia:[{usesMetazone:{_mzone:"Argentina",_to:"2004-05-30 03:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}]},Aruba:[{usesMetazone:{_mzone:"Atlantic"}}],Asuncion:[{usesMetazone:{_mzone:"Paraguay"}}],Bahia:[{usesMetazone:{_mzone:"Brasilia"}}],Bahia_Banderas:[{usesMetazone:{_mzone:"America_Pacific",_to:"1970-01-01 08:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1970-01-01 08:00",_to:"2010-04-04 09:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2010-04-04 09:00"}}],Barbados:[{usesMetazone:{_mzone:"Atlantic"}}],Belem:[{usesMetazone:{_mzone:"Brasilia"}}],Belize:[{usesMetazone:{_mzone:"America_Central"}}],"Blanc-Sablon":[{usesMetazone:{_mzone:"Atlantic"}}],Boa_Vista:[{usesMetazone:{_mzone:"Amazon"}}],Bogota:[{usesMetazone:{_mzone:"Colombia"}}],Boise:[{usesMetazone:{_mzone:"America_Mountain"}}],Buenos_Aires:[{usesMetazone:{_mzone:"Argentina"}}],Cambridge_Bay:[{usesMetazone:{_mzone:"America_Mountain",_to:"1999-10-31 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1999-10-31 08:00",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00",_to:"2000-11-05 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2000-11-05 05:00",_to:"2001-04-01 09:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"2001-04-01 09:00"}}],Campo_Grande:[{usesMetazone:{_mzone:"Amazon"}}],Cancun:[{usesMetazone:{_mzone:"America_Central",_to:"1981-12-23 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1981-12-23 06:00",_to:"1998-08-02 06:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1998-08-02 06:00",_to:"2015-02-01 08:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2015-02-01 08:00"}}],Caracas:[{usesMetazone:{_mzone:"Venezuela"}}],Catamarca:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-20 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}],Cayenne:[{usesMetazone:{_mzone:"French_Guiana"}}],Cayman:[{usesMetazone:{_mzone:"America_Eastern"}}],Chicago:[{usesMetazone:{_mzone:"America_Central"}}],Chihuahua:[{usesMetazone:{_mzone:"America_Central",_to:"1998-04-05 09:00"}},{usesMetazone:{_mzone:"Mexico_Pacific",_from:"1998-04-05 09:00"}}],Coral_Harbour:[{usesMetazone:{_mzone:"America_Eastern"}}],Cordoba:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00"}}],Costa_Rica:[{usesMetazone:{_mzone:"America_Central"}}],Creston:[{usesMetazone:{_mzone:"America_Mountain"}}],Cuiaba:[{usesMetazone:{_mzone:"Amazon"}}],Curacao:[{usesMetazone:{_mzone:"Atlantic"}}],Danmarkshavn:[{usesMetazone:{_mzone:"Greenland_Western",_to:"1996-01-01 03:00"}},{usesMetazone:{_mzone:"GMT",_from:"1996-01-01 03:00"}}],Dawson:[{usesMetazone:{_mzone:"Yukon",_to:"1973-10-28 09:00"}},{usesMetazone:{_mzone:"America_Pacific",_from:"1973-10-28 09:00"}}],Dawson_Creek:[{usesMetazone:{_mzone:"America_Pacific",_to:"1972-08-30 09:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1972-08-30 09:00"}}],Denver:[{usesMetazone:{_mzone:"America_Mountain"}}],Detroit:[{usesMetazone:{_mzone:"America_Eastern"}}],Dominica:[{usesMetazone:{_mzone:"Atlantic"}}],Edmonton:[{usesMetazone:{_mzone:"America_Mountain"}}],Eirunepe:[{usesMetazone:{_mzone:"Acre",_to:"2008-06-24 05:00"}},{usesMetazone:{_mzone:"Amazon",_from:"2008-06-24 05:00",_to:"2013-11-10 04:00"}},{usesMetazone:{_mzone:"Acre",_from:"2013-11-10 04:00"}}],El_Salvador:[{usesMetazone:{_mzone:"America_Central"}}],Fort_Nelson:[{usesMetazone:{_mzone:"America_Pacific",_to:"2015-03-08 10:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"2015-03-08 10:00"}}],Fortaleza:[{usesMetazone:{_mzone:"Brasilia"}}],Glace_Bay:[{usesMetazone:{_mzone:"Atlantic"}}],Godthab:[{usesMetazone:{_mzone:"Greenland_Western"}}],Goose_Bay:[{usesMetazone:{_mzone:"Atlantic",_to:"1988-04-03 04:01"}},{usesMetazone:{_mzone:"Goose_Bay",_from:"1988-04-03 04:01",_to:"1988-10-30 02:01"}},{usesMetazone:{_mzone:"Atlantic",_from:"1988-10-30 02:01"}}],Grand_Turk:[{usesMetazone:{_mzone:"America_Eastern",_to:"2015-11-01 06:00"}},{usesMetazone:{_mzone:"Atlantic",_from:"2015-11-01 06:00",_to:"2018-03-11 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2018-03-11 07:00"}}],Grenada:[{usesMetazone:{_mzone:"Atlantic"}}],Guadeloupe:[{usesMetazone:{_mzone:"Atlantic"}}],Guatemala:[{usesMetazone:{_mzone:"America_Central"}}],Guayaquil:[{usesMetazone:{_mzone:"Ecuador"}}],Guyana:[{usesMetazone:{_mzone:"Guyana"}}],Halifax:[{usesMetazone:{_mzone:"Atlantic"}}],Havana:[{usesMetazone:{_mzone:"Cuba"}}],Hermosillo:[{usesMetazone:{_mzone:"America_Pacific",_to:"1970-01-01 08:00"}},{usesMetazone:{_mzone:"Mexico_Pacific",_from:"1970-01-01 08:00"}}],Indiana:{Knox:[{usesMetazone:{_mzone:"America_Central",_to:"1991-10-27 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1991-10-27 07:00",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00"}}],Marengo:[{usesMetazone:{_mzone:"America_Eastern",_to:"1974-01-06 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1974-01-06 07:00",_to:"1974-10-27 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1974-10-27 07:00"}}],Petersburg:[{usesMetazone:{_mzone:"America_Central",_to:"1977-10-30 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1977-10-30 07:00",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00",_to:"2007-11-04 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2007-11-04 07:00"}}],Tell_City:[{usesMetazone:{_mzone:"America_Eastern",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00"}}],Vevay:[{usesMetazone:{_mzone:"America_Eastern"}}],Vincennes:[{usesMetazone:{_mzone:"America_Eastern",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00",_to:"2007-11-04 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2007-11-04 07:00"}}],Winamac:[{usesMetazone:{_mzone:"America_Eastern",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00",_to:"2007-03-11 08:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2007-03-11 08:00"}}]},Indianapolis:[{usesMetazone:{_mzone:"America_Eastern"}}],Inuvik:[{usesMetazone:{_mzone:"America_Pacific",_to:"1979-04-29 10:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1979-04-29 10:00"}}],Iqaluit:[{usesMetazone:{_mzone:"America_Eastern",_to:"1999-10-31 06:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1999-10-31 06:00",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00"}}],Jamaica:[{usesMetazone:{_mzone:"America_Eastern"}}],Jujuy:[{usesMetazone:{_mzone:"Argentina",_to:"1990-03-04 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-06 04:00"}}],Juneau:[{usesMetazone:{_mzone:"America_Pacific",_to:"1980-04-27 10:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1980-04-27 10:00",_to:"1980-10-26 10:00"}},{usesMetazone:{_mzone:"America_Pacific",_from:"1980-10-26 10:00",_to:"1983-10-30 09:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 09:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Kentucky:{Monticello:[{usesMetazone:{_mzone:"America_Central",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00"}}]},Kralendijk:[{usesMetazone:{_mzone:"Atlantic"}}],La_Paz:[{usesMetazone:{_mzone:"Bolivia"}}],Lima:[{usesMetazone:{_mzone:"Peru"}}],Los_Angeles:[{usesMetazone:{_mzone:"America_Pacific"}}],Louisville:[{usesMetazone:{_mzone:"America_Eastern",_to:"1974-01-06 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1974-01-06 07:00",_to:"1974-10-27 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1974-10-27 07:00"}}],Lower_Princes:[{usesMetazone:{_mzone:"Atlantic"}}],Maceio:[{usesMetazone:{_mzone:"Brasilia"}}],Managua:[{usesMetazone:{_mzone:"America_Central",_to:"1973-05-01 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1973-05-01 06:00",_to:"1975-02-16 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1975-02-16 05:00",_to:"1992-01-01 10:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1992-01-01 10:00",_to:"1992-09-24 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1992-09-24 05:00",_to:"1993-01-01 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1993-01-01 06:00",_to:"1997-01-01 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1997-01-01 05:00"}}],Manaus:[{usesMetazone:{_mzone:"Amazon"}}],Marigot:[{usesMetazone:{_mzone:"Atlantic"}}],Martinique:[{usesMetazone:{_mzone:"Atlantic"}}],Matamoros:[{usesMetazone:{_mzone:"America_Central"}}],Mazatlan:[{usesMetazone:{_mzone:"America_Pacific",_to:"1970-01-01 08:00"}},{usesMetazone:{_mzone:"Mexico_Pacific",_from:"1970-01-01 08:00"}}],Mendoza:[{usesMetazone:{_mzone:"Argentina",_to:"1990-03-04 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1992-10-18 04:00",_to:"2004-05-23 03:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-09-26 04:00"}}],Menominee:[{usesMetazone:{_mzone:"America_Eastern",_to:"1973-04-29 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1973-04-29 07:00"}}],Merida:[{usesMetazone:{_mzone:"America_Central",_to:"1981-12-23 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1981-12-23 06:00",_to:"1982-12-02 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1982-12-02 05:00"}}],Metlakatla:[{usesMetazone:{_mzone:"America_Pacific",_to:"2015-11-01 10:00"}},{usesMetazone:{_mzone:"Alaska",_from:"2015-11-01 10:00",_to:"2018-11-04 10:00"}},{usesMetazone:{_mzone:"America_Pacific",_from:"2018-11-04 10:00",_to:"2019-01-20 10:00"}},{usesMetazone:{_mzone:"Alaska",_from:"2019-01-20 10:00"}}],Mexico_City:[{usesMetazone:{_mzone:"America_Central"}}],Miquelon:[{usesMetazone:{_mzone:"Atlantic",_to:"1980-05-01 04:00"}},{usesMetazone:{_mzone:"Pierre_Miquelon",_from:"1980-05-01 04:00"}}],Moncton:[{usesMetazone:{_mzone:"Atlantic"}}],Monterrey:[{usesMetazone:{_mzone:"America_Central"}}],Montevideo:[{usesMetazone:{_mzone:"Uruguay"}}],Montserrat:[{usesMetazone:{_mzone:"Atlantic"}}],Nassau:[{usesMetazone:{_mzone:"America_Eastern"}}],New_York:[{usesMetazone:{_mzone:"America_Eastern"}}],Nipigon:[{usesMetazone:{_mzone:"America_Eastern"}}],Nome:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 12:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Noronha:[{usesMetazone:{_mzone:"Noronha"}}],North_Dakota:{Beulah:[{usesMetazone:{_mzone:"America_Mountain",_to:"2010-11-07 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2010-11-07 08:00"}}],Center:[{usesMetazone:{_mzone:"America_Mountain",_to:"1992-10-25 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1992-10-25 08:00"}}],New_Salem:[{usesMetazone:{_mzone:"America_Mountain",_to:"2003-10-26 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2003-10-26 08:00"}}]},Ojinaga:[{usesMetazone:{_mzone:"America_Central",_to:"1998-04-05 09:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1998-04-05 09:00"}}],Panama:[{usesMetazone:{_mzone:"America_Eastern"}}],Pangnirtung:[{usesMetazone:{_mzone:"Atlantic",_to:"1995-04-02 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1995-04-02 06:00",_to:"1999-10-31 06:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1999-10-31 06:00",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00"}}],Paramaribo:[{usesMetazone:{_mzone:"Dutch_Guiana",_to:"1975-11-20 03:30"}},{usesMetazone:{_mzone:"Suriname",_from:"1975-11-20 03:30"}}],Phoenix:[{usesMetazone:{_mzone:"America_Mountain"}}],Port_of_Spain:[{usesMetazone:{_mzone:"Atlantic"}}],"Port-au-Prince":[{usesMetazone:{_mzone:"America_Eastern"}}],Porto_Velho:[{usesMetazone:{_mzone:"Amazon"}}],Puerto_Rico:[{usesMetazone:{_mzone:"Atlantic"}}],Punta_Arenas:[{usesMetazone:{_mzone:"Chile",_to:"2016-12-03 23:00"}}],Rainy_River:[{usesMetazone:{_mzone:"America_Central"}}],Rankin_Inlet:[{usesMetazone:{_mzone:"America_Central",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00",_to:"2001-04-01 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2001-04-01 08:00"}}],Recife:[{usesMetazone:{_mzone:"Brasilia"}}],Regina:[{usesMetazone:{_mzone:"America_Central"}}],Resolute:[{usesMetazone:{_mzone:"America_Central",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00",_to:"2001-04-01 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2001-04-01 08:00",_to:"2006-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2006-10-29 07:00",_to:"2007-03-11 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2007-03-11 08:00"}}],Rio_Branco:[{usesMetazone:{_mzone:"Acre",_to:"2008-06-24 05:00"}},{usesMetazone:{_mzone:"Amazon",_from:"2008-06-24 05:00",_to:"2013-11-10 04:00"}},{usesMetazone:{_mzone:"Acre",_from:"2013-11-10 04:00"}}],Santa_Isabel:[{usesMetazone:{_mzone:"Mexico_Northwest"}}],Santarem:[{usesMetazone:{_mzone:"Amazon",_to:"2008-06-24 04:00"}},{usesMetazone:{_mzone:"Brasilia",_from:"2008-06-24 04:00"}}],Santiago:[{usesMetazone:{_mzone:"Chile"}}],Santo_Domingo:[{usesMetazone:{_mzone:"Dominican",_to:"1974-10-27 05:00"}},{usesMetazone:{_mzone:"Atlantic",_from:"1974-10-27 05:00",_to:"2000-10-29 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 06:00",_to:"2000-12-03 06:00"}},{usesMetazone:{_mzone:"Atlantic",_from:"2000-12-03 06:00"}}],Sao_Paulo:[{usesMetazone:{_mzone:"Brasilia"}}],Scoresbysund:[{usesMetazone:{_mzone:"Greenland_Central",_to:"1981-03-29 02:00"}},{usesMetazone:{_mzone:"Greenland_Eastern",_from:"1981-03-29 02:00"}}],Sitka:[{usesMetazone:{_mzone:"America_Pacific",_to:"1983-10-30 09:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 09:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],St_Barthelemy:[{usesMetazone:{_mzone:"Atlantic"}}],St_Johns:[{usesMetazone:{_mzone:"Newfoundland"}}],St_Kitts:[{usesMetazone:{_mzone:"Atlantic"}}],St_Lucia:[{usesMetazone:{_mzone:"Atlantic"}}],St_Thomas:[{usesMetazone:{_mzone:"Atlantic"}}],St_Vincent:[{usesMetazone:{_mzone:"Atlantic"}}],Swift_Current:[{usesMetazone:{_mzone:"America_Mountain",_to:"1972-04-30 09:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1972-04-30 09:00"}}],Tegucigalpa:[{usesMetazone:{_mzone:"America_Central"}}],Thule:[{usesMetazone:{_mzone:"Atlantic"}}],Thunder_Bay:[{usesMetazone:{_mzone:"America_Eastern"}}],Tijuana:[{usesMetazone:{_mzone:"America_Pacific"}}],Toronto:[{usesMetazone:{_mzone:"America_Eastern"}}],Tortola:[{usesMetazone:{_mzone:"Atlantic"}}],Vancouver:[{usesMetazone:{_mzone:"America_Pacific"}}],Whitehorse:[{usesMetazone:{_mzone:"America_Pacific"}}],Winnipeg:[{usesMetazone:{_mzone:"America_Central"}}],Yakutat:[{usesMetazone:{_mzone:"Yukon",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Yellowknife:[{usesMetazone:{_mzone:"America_Mountain"}}]},Antarctica:{Casey:[{usesMetazone:{_mzone:"Australia_Western",_to:"2009-10-17 18:00"}},{usesMetazone:{_mzone:"Casey",_from:"2009-10-17 18:00",_to:"2010-03-04 15:00"}},{usesMetazone:{_mzone:"Australia_Western",_from:"2010-03-04 15:00",_to:"2011-10-27 18:00"}},{usesMetazone:{_mzone:"Casey",_from:"2011-10-27 18:00",_to:"2012-02-21 17:00"}},{usesMetazone:{_mzone:"Australia_Western",_from:"2012-02-21 17:00",_to:"2016-10-21 16:00"}},{usesMetazone:{_mzone:"Casey",_from:"2016-10-21 16:00",_to:"2018-03-10 17:00"}},{usesMetazone:{_mzone:"Australia_Western",_from:"2018-03-10 17:00"}}],Davis:[{usesMetazone:{_mzone:"Davis"}}],DumontDUrville:[{usesMetazone:{_mzone:"DumontDUrville"}}],Macquarie:[{usesMetazone:{_mzone:"Australia_Eastern",_to:"2010-04-03 16:00"}},{usesMetazone:{_mzone:"Macquarie",_from:"2010-04-03 16:00"}}],Mawson:[{usesMetazone:{_mzone:"Mawson"}}],McMurdo:[{usesMetazone:{_mzone:"New_Zealand"}}],Palmer:[{usesMetazone:{_mzone:"Argentina",_to:"1982-05-01 03:00"}},{usesMetazone:{_mzone:"Chile",_from:"1982-05-01 03:00",_to:"2016-12-03 23:00"}}],Rothera:[{usesMetazone:{_mzone:"Rothera"}}],Syowa:[{usesMetazone:{_mzone:"Syowa"}}],Troll:[{usesMetazone:{_mzone:"GMT"}}],Vostok:[{usesMetazone:{_mzone:"Vostok"}}]},Arctic:{Longyearbyen:[{usesMetazone:{_mzone:"Europe_Central"}}]},Asia:{Aden:[{usesMetazone:{_mzone:"Arabian"}}],Almaty:[{usesMetazone:{_mzone:"Almaty",_to:"2004-10-30 20:00"}},{usesMetazone:{_mzone:"Kazakhstan_Eastern",_from:"2004-10-30 20:00"}}],Amman:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Anadyr:[{usesMetazone:{_mzone:"Anadyr",_to:"2010-03-27 14:00"}},{usesMetazone:{_mzone:"Magadan",_from:"2010-03-27 14:00",_to:"2014-10-25 14:00"}},{usesMetazone:{_mzone:"Anadyr",_from:"2014-10-25 14:00"}}],Aqtau:[{usesMetazone:{_mzone:"Shevchenko",_to:"1991-12-15 19:00"}},{usesMetazone:{_mzone:"Aqtau",_from:"1991-12-15 19:00",_to:"2004-10-30 22:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2004-10-30 22:00"}}],Aqtobe:[{usesMetazone:{_mzone:"Aktyubinsk",_to:"1991-12-15 19:00"}},{usesMetazone:{_mzone:"Aqtobe",_from:"1991-12-15 19:00",_to:"2004-10-30 21:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2005-10-30 21:00"}}],Ashgabat:[{usesMetazone:{_mzone:"Ashkhabad",_to:"1991-10-26 20:00"}},{usesMetazone:{_mzone:"Turkmenistan",_from:"1991-10-26 20:00"}}],Atyrau:[{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2004-10-30 22:00"}}],Baghdad:[{usesMetazone:{_mzone:"Arabian"}}],Bahrain:[{usesMetazone:{_mzone:"Gulf",_to:"1972-05-31 20:00"}},{usesMetazone:{_mzone:"Arabian",_from:"1972-05-31 20:00"}}],Baku:[{usesMetazone:{_mzone:"Baku",_to:"1991-08-29 20:00"}},{usesMetazone:{_mzone:"Azerbaijan",_from:"1991-08-29 20:00"}}],Bangkok:[{usesMetazone:{_mzone:"Indochina"}}],Beirut:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Bishkek:[{usesMetazone:{_mzone:"Frunze",_to:"1991-08-30 20:00"}},{usesMetazone:{_mzone:"Kyrgystan",_from:"1991-08-30 20:00"}}],Brunei:[{usesMetazone:{_mzone:"Brunei"}}],Calcutta:[{usesMetazone:{_mzone:"India"}}],Chita:[{usesMetazone:{_mzone:"Yakutsk",_to:"2014-10-25 16:00"}},{usesMetazone:{_mzone:"Irkutsk",_from:"2014-10-25 16:00",_to:"2016-03-26 18:00"}},{usesMetazone:{_mzone:"Yakutsk",_from:"2016-03-26 18:00"}}],Choibalsan:[{usesMetazone:{_mzone:"Mongolia",_to:"1983-03-31 16:00"}},{usesMetazone:{_mzone:"Choibalsan",_from:"1983-03-31 16:00"}}],Colombo:[{usesMetazone:{_mzone:"India",_to:"1996-05-24 18:30"}},{usesMetazone:{_mzone:"Lanka",_from:"1996-05-24 18:30",_to:"2006-04-14 18:30"}},{usesMetazone:{_mzone:"India",_from:"2006-04-14 18:30"}}],Damascus:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Dhaka:[{usesMetazone:{_mzone:"Dacca",_to:"1971-03-25 18:00"}},{usesMetazone:{_mzone:"Bangladesh",_from:"1971-03-25 18:00"}}],Dili:[{usesMetazone:{_mzone:"East_Timor",_to:"1976-05-02 15:00"}},{usesMetazone:{_mzone:"Indonesia_Central",_from:"1976-05-02 15:00",_to:"2000-09-16 16:00"}},{usesMetazone:{_mzone:"East_Timor",_from:"2000-09-16 16:00"}}],Dubai:[{usesMetazone:{_mzone:"Gulf"}}],Dushanbe:[{usesMetazone:{_mzone:"Dushanbe",_to:"1991-09-08 21:00"}},{usesMetazone:{_mzone:"Tajikistan",_from:"1991-09-08 21:00"}}],Famagusta:[{usesMetazone:{_mzone:"Europe_Eastern",_to:"2016-09-07 21:00"}}],Gaza:[{usesMetazone:{_mzone:"Israel",_to:"1995-12-31 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1995-12-31 22:00"}}],Hebron:[{usesMetazone:{_mzone:"Israel",_to:"1995-12-31 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1995-12-31 22:00"}}],Hong_Kong:[{usesMetazone:{_mzone:"Hong_Kong"}}],Hovd:[{usesMetazone:{_mzone:"Hovd"}}],Irkutsk:[{usesMetazone:{_mzone:"Irkutsk"}}],Jakarta:[{usesMetazone:{_mzone:"Indonesia_Western"}}],Jayapura:[{usesMetazone:{_mzone:"Indonesia_Eastern"}}],Jerusalem:[{usesMetazone:{_mzone:"Israel"}}],Kabul:[{usesMetazone:{_mzone:"Afghanistan"}}],Kamchatka:[{usesMetazone:{_mzone:"Kamchatka"}}],Karachi:[{usesMetazone:{_mzone:"Karachi",_to:"1971-03-25 19:00"}},{usesMetazone:{_mzone:"Pakistan",_from:"1971-03-25 19:00"}}],Katmandu:[{usesMetazone:{_mzone:"Nepal"}}],Khandyga:[{usesMetazone:{_mzone:"Yakutsk",_to:"2003-12-31 15:00"}},{usesMetazone:{_mzone:"Vladivostok",_from:"2003-12-31 15:00",_to:"2011-09-12 13:00"}},{usesMetazone:{_mzone:"Yakutsk",_from:"2011-09-12 13:00"}}],Krasnoyarsk:[{usesMetazone:{_mzone:"Krasnoyarsk"}}],Kuala_Lumpur:[{usesMetazone:{_mzone:"Malaya",_to:"1981-12-31 16:30"}},{usesMetazone:{_mzone:"Malaysia",_from:"1981-12-31 16:30"}}],Kuching:[{usesMetazone:{_mzone:"Borneo",_to:"1981-12-31 16:00"}},{usesMetazone:{_mzone:"Malaysia",_from:"1981-12-31 16:00"}}],Kuwait:[{usesMetazone:{_mzone:"Arabian"}}],Macau:[{usesMetazone:{_mzone:"Macau",_to:"1999-12-19 16:00"}},{usesMetazone:{_mzone:"China",_from:"1999-12-19 16:00"}}],Magadan:[{usesMetazone:{_mzone:"Magadan"}}],Makassar:[{usesMetazone:{_mzone:"Indonesia_Central"}}],Manila:[{usesMetazone:{_mzone:"Philippines"}}],Muscat:[{usesMetazone:{_mzone:"Gulf"}}],Nicosia:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Novokuznetsk:[{usesMetazone:{_mzone:"Krasnoyarsk",_to:"2010-03-27 19:00"}},{usesMetazone:{_mzone:"Novosibirsk",_from:"2010-03-27 19:00",_to:"2014-10-25 19:00"}},{usesMetazone:{_mzone:"Krasnoyarsk",_from:"2014-10-25 19:00"}}],Novosibirsk:[{usesMetazone:{_mzone:"Novosibirsk"}}],Omsk:[{usesMetazone:{_mzone:"Omsk"}}],Oral:[{usesMetazone:{_mzone:"Uralsk",_to:"1991-12-15 20:00"}},{usesMetazone:{_mzone:"Oral",_from:"1991-12-15 20:00",_to:"2004-10-30 22:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2004-10-30 22:00"}}],Phnom_Penh:[{usesMetazone:{_mzone:"Indochina"}}],Pontianak:[{usesMetazone:{_mzone:"Indonesia_Central",_to:"1987-12-31 16:00"}},{usesMetazone:{_mzone:"Indonesia_Western",_from:"1987-12-31 16:00"}}],Pyongyang:[{usesMetazone:{_mzone:"Korea",_to:"2015-08-14 15:00"}},{usesMetazone:{_mzone:"Pyongyang",_from:"2015-08-14 15:00",_to:"2018-05-04 15:00"}},{usesMetazone:{_mzone:"Korea",_from:"2018-05-04 15:00"}}],Qatar:[{usesMetazone:{_mzone:"Gulf",_to:"1972-05-31 20:00"}},{usesMetazone:{_mzone:"Arabian",_from:"1972-05-31 20:00"}}],Qostanay:[{usesMetazone:{_mzone:"Kazakhstan_Eastern",_from:"2004-10-30 21:00"}}],Qyzylorda:[{usesMetazone:{_mzone:"Kizilorda",_to:"1991-12-15 19:00"}},{usesMetazone:{_mzone:"Qyzylorda",_from:"1991-12-15 19:00",_to:"2004-10-30 21:00"}},{usesMetazone:{_mzone:"Kazakhstan_Eastern",_from:"2004-10-30 21:00",_to:"2018-12-20 18:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2018-12-20 18:00"}}],Rangoon:[{usesMetazone:{_mzone:"Myanmar"}}],Riyadh:[{usesMetazone:{_mzone:"Arabian"}}],Saigon:[{usesMetazone:{_mzone:"Indochina",_from:"1975-06-12 16:00"}}],Sakhalin:[{usesMetazone:{_mzone:"Sakhalin"}}],Samarkand:[{usesMetazone:{_mzone:"Samarkand",_to:"1981-09-30 18:00"}},{usesMetazone:{_mzone:"Tashkent",_from:"1981-09-30 18:00",_to:"1982-03-31 18:00"}},{usesMetazone:{_mzone:"Samarkand",_from:"1982-03-31 18:00",_to:"1991-08-31 18:00"}},{usesMetazone:{_mzone:"Uzbekistan",_from:"1991-08-31 18:00"}}],Seoul:[{usesMetazone:{_mzone:"Korea"}}],Shanghai:[{usesMetazone:{_mzone:"China"}}],Singapore:[{usesMetazone:{_mzone:"Singapore"}}],Srednekolymsk:[{usesMetazone:{_mzone:"Magadan",_to:"2014-10-25 14:00"}}],Taipei:[{usesMetazone:{_mzone:"Taipei"}}],Tashkent:[{usesMetazone:{_mzone:"Tashkent",_to:"1991-08-31 18:00"}},{usesMetazone:{_mzone:"Uzbekistan",_from:"1991-08-31 18:00"}}],Tbilisi:[{usesMetazone:{_mzone:"Tbilisi",_to:"1991-04-08 20:00"}},{usesMetazone:{_mzone:"Georgia",_from:"1991-04-08 20:00"}}],Tehran:[{usesMetazone:{_mzone:"Iran"}}],Thimphu:[{usesMetazone:{_mzone:"India",_to:"1987-09-30 18:30"}},{usesMetazone:{_mzone:"Bhutan",_from:"1987-09-30 18:30"}}],Tokyo:[{usesMetazone:{_mzone:"Japan"}}],Ulaanbaatar:[{usesMetazone:{_mzone:"Mongolia"}}],Urumqi:[{usesMetazone:{_mzone:"Urumqi"}}],"Ust-Nera":[{usesMetazone:{_mzone:"Yakutsk",_to:"1981-03-31 15:00"}},{usesMetazone:{_mzone:"Magadan",_from:"1981-03-31 15:00",_to:"2011-09-12 12:00"}},{usesMetazone:{_mzone:"Vladivostok",_from:"2011-09-12 12:00"}}],Vientiane:[{usesMetazone:{_mzone:"Indochina"}}],Vladivostok:[{usesMetazone:{_mzone:"Vladivostok"}}],Yakutsk:[{usesMetazone:{_mzone:"Yakutsk"}}],Yekaterinburg:[{usesMetazone:{_mzone:"Sverdlovsk",_to:"1992-01-18 22:00"}},{usesMetazone:{_mzone:"Yekaterinburg",_from:"1992-01-18 22:00"}}],Yerevan:[{usesMetazone:{_mzone:"Yerevan",_to:"1991-09-22 20:00"}},{usesMetazone:{_mzone:"Armenia",_from:"1991-09-22 20:00"}}]},Atlantic:{Azores:[{usesMetazone:{_mzone:"Azores",_to:"1992-09-27 02:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1992-09-27 02:00",_to:"1993-03-28 01:00"}},{usesMetazone:{_mzone:"Azores",_from:"1993-03-28 01:00"}}],Bermuda:[{usesMetazone:{_mzone:"Atlantic"}}],Canary:[{usesMetazone:{_mzone:"Europe_Western"}}],Cape_Verde:[{usesMetazone:{_mzone:"Cape_Verde"}}],Faeroe:[{usesMetazone:{_mzone:"Europe_Western"}}],Madeira:[{usesMetazone:{_mzone:"Europe_Western"}}],Reykjavik:[{usesMetazone:{_mzone:"GMT"}}],South_Georgia:[{usesMetazone:{_mzone:"South_Georgia"}}],St_Helena:[{usesMetazone:{_mzone:"GMT"}}],Stanley:[{usesMetazone:{_mzone:"Falkland"}}]},Australia:{Adelaide:[{usesMetazone:{_mzone:"Australia_Central"}}],Brisbane:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Broken_Hill:[{usesMetazone:{_mzone:"Australia_Central"}}],Currie:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Darwin:[{usesMetazone:{_mzone:"Australia_Central"}}],Eucla:[{usesMetazone:{_mzone:"Australia_CentralWestern"}}],Hobart:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Lindeman:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Lord_Howe:[{usesMetazone:{_mzone:"Australia_Eastern",_to:"1981-02-28 14:00"}},{usesMetazone:{_mzone:"Lord_Howe",_from:"1981-02-28 14:00"}}],Melbourne:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Perth:[{usesMetazone:{_mzone:"Australia_Western"}}],Sydney:[{usesMetazone:{_mzone:"Australia_Eastern"}}]},CST6CDT:[{usesMetazone:{_mzone:"America_Central"}}],EST5EDT:[{usesMetazone:{_mzone:"America_Eastern"}}],Etc:{GMT:[{usesMetazone:{_mzone:"GMT"}}]},Europe:{Amsterdam:[{usesMetazone:{_mzone:"Europe_Central"}}],Andorra:[{usesMetazone:{_mzone:"Europe_Central"}}],Astrakhan:[{usesMetazone:{_mzone:"Moscow",_from:"1992-03-28 22:00",_to:"2016-03-26 23:00"}}],Athens:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Belgrade:[{usesMetazone:{_mzone:"Europe_Central"}}],Berlin:[{usesMetazone:{_mzone:"Europe_Central"}}],Bratislava:[{usesMetazone:{_mzone:"Europe_Central"}}],Brussels:[{usesMetazone:{_mzone:"Europe_Central"}}],Bucharest:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Budapest:[{usesMetazone:{_mzone:"Europe_Central"}}],Busingen:[{usesMetazone:{_mzone:"Europe_Central"}}],Chisinau:[{usesMetazone:{_mzone:"Moscow",_to:"1990-05-05 21:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-05-05 21:00"}}],Copenhagen:[{usesMetazone:{_mzone:"Europe_Central"}}],Dublin:[{usesMetazone:{_mzone:"Irish",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Gibraltar:[{usesMetazone:{_mzone:"Europe_Central"}}],Guernsey:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Helsinki:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Isle_of_Man:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Istanbul:[{usesMetazone:{_mzone:"Europe_Eastern",_to:"1978-06-28 21:00"}},{usesMetazone:{_mzone:"Turkey",_from:"1978-06-28 21:00",_to:"1985-04-19 21:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1985-04-19 21:00",_to:"2016-09-06 21:00"}},{usesMetazone:{_mzone:"Turkey",_from:"2016-09-06 21:00"}}],Jersey:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Kaliningrad:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00",_to:"2011-03-27 00:00"}},{usesMetazone:{_mzone:"Europe_Further_Eastern",_from:"2011-03-27 00:00",_to:"2014-10-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"2014-10-25 23:00"}}],Kiev:[{usesMetazone:{_mzone:"Moscow",_to:"1990-06-30 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-06-30 22:00"}}],Lisbon:[{usesMetazone:{_mzone:"Europe_Central",_to:"1976-09-26 00:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1976-09-26 00:00",_to:"1992-09-27 01:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1992-09-27 01:00",_to:"1996-03-31 01:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1996-03-31 01:00"}}],Ljubljana:[{usesMetazone:{_mzone:"Europe_Central"}}],London:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Luxembourg:[{usesMetazone:{_mzone:"Europe_Central"}}],Madrid:[{usesMetazone:{_mzone:"Europe_Central"}}],Malta:[{usesMetazone:{_mzone:"Europe_Central"}}],Mariehamn:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Minsk:[{usesMetazone:{_mzone:"Moscow",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00",_to:"2011-03-27 00:00"}},{usesMetazone:{_mzone:"Europe_Further_Eastern",_from:"2011-03-27 00:00",_to:"2014-10-26 22:00"}},{usesMetazone:{_mzone:"Moscow",_from:"2014-10-26 22:00"}}],Monaco:[{usesMetazone:{_mzone:"Europe_Central"}}],Moscow:[{usesMetazone:{_mzone:"Moscow",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00",_to:"1992-01-19 00:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1992-01-19 00:00"}}],Oslo:[{usesMetazone:{_mzone:"Europe_Central"}}],Paris:[{usesMetazone:{_mzone:"Europe_Central"}}],Podgorica:[{usesMetazone:{_mzone:"Europe_Central"}}],Prague:[{usesMetazone:{_mzone:"Europe_Central"}}],Riga:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00"}}],Rome:[{usesMetazone:{_mzone:"Europe_Central"}}],Samara:[{usesMetazone:{_mzone:"Kuybyshev",_to:"1989-03-25 22:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1989-03-25 22:00",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00",_to:"1991-09-29 00:00"}},{usesMetazone:{_mzone:"Samara",_from:"1991-09-29 00:00"}}],San_Marino:[{usesMetazone:{_mzone:"Europe_Central"}}],Sarajevo:[{usesMetazone:{_mzone:"Europe_Central"}}],Saratov:[{usesMetazone:{_mzone:"Moscow",_from:"1992-03-28 22:00",_to:"2016-12-03 23:00"}}],Simferopol:[{usesMetazone:{_mzone:"Moscow",_to:"1990-06-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-06-30 23:00",_to:"1994-04-30 21:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1994-04-30 21:00",_to:"1997-03-30 01:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1997-03-30 01:00",_to:"2014-03-30 00:00"}},{usesMetazone:{_mzone:"Moscow",_from:"2014-03-30 00:00"}}],Skopje:[{usesMetazone:{_mzone:"Europe_Central"}}],Sofia:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Stockholm:[{usesMetazone:{_mzone:"Europe_Central"}}],Tallinn:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00"}}],Tirane:[{usesMetazone:{_mzone:"Europe_Central"}}],Ulyanovsk:[{usesMetazone:{_mzone:"Moscow",_from:"1992-01-19 00:00",_to:"2016-03-26 23:00"}}],Uzhgorod:[{usesMetazone:{_mzone:"Moscow",_to:"1990-06-30 23:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1990-06-30 23:00",_to:"1991-03-31 02:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-31 02:00"}}],Vaduz:[{usesMetazone:{_mzone:"Europe_Central"}}],Vatican:[{usesMetazone:{_mzone:"Europe_Central"}}],Vienna:[{usesMetazone:{_mzone:"Europe_Central"}}],Vilnius:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00",_to:"1998-03-29 01:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1998-03-29 01:00",_to:"1999-10-31 01:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1999-10-31 01:00"}}],Volgograd:[{usesMetazone:{_mzone:"Volgograd",_to:"1992-03-28 22:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1992-03-28 22:00",_to:"2018-10-27 23:00"}},{usesMetazone:{_mzone:"Volgograd",_from:"2018-10-27 23:00"}}],Warsaw:[{usesMetazone:{_mzone:"Europe_Central"}}],Zagreb:[{usesMetazone:{_mzone:"Europe_Central"}}],Zaporozhye:[{usesMetazone:{_mzone:"Moscow",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00"}}],Zurich:[{usesMetazone:{_mzone:"Europe_Central"}}]},Indian:{Antananarivo:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Chagos:[{usesMetazone:{_mzone:"Indian_Ocean"}}],Christmas:[{usesMetazone:{_mzone:"Christmas"}}],Cocos:[{usesMetazone:{_mzone:"Cocos"}}],Comoro:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Kerguelen:[{usesMetazone:{_mzone:"French_Southern"}}],Mahe:[{usesMetazone:{_mzone:"Seychelles"}}],Maldives:[{usesMetazone:{_mzone:"Maldives"}}],Mauritius:[{usesMetazone:{_mzone:"Mauritius"}}],Mayotte:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Reunion:[{usesMetazone:{_mzone:"Reunion"}}]},MST7MDT:[{usesMetazone:{_mzone:"America_Mountain"}}],Pacific:{Apia:[{usesMetazone:{_mzone:"Apia"}}],Auckland:[{usesMetazone:{_mzone:"New_Zealand"}}],Bougainville:[{usesMetazone:{_mzone:"Papua_New_Guinea",_to:"2014-12-27 16:00"}}],Chatham:[{usesMetazone:{_mzone:"Chatham"}}],Easter:[{usesMetazone:{_mzone:"Easter"}}],Efate:[{usesMetazone:{_mzone:"Vanuatu"}}],Enderbury:[{usesMetazone:{_mzone:"Phoenix_Islands"}}],Fakaofo:[{usesMetazone:{_mzone:"Tokelau"}}],Fiji:[{usesMetazone:{_mzone:"Fiji"}}],Funafuti:[{usesMetazone:{_mzone:"Tuvalu"}}],Galapagos:[{usesMetazone:{_mzone:"Ecuador",_to:"1986-01-01 05:00"}},{usesMetazone:{_mzone:"Galapagos",_from:"1986-01-01 05:00"}}],Gambier:[{usesMetazone:{_mzone:"Gambier"}}],Guadalcanal:[{usesMetazone:{_mzone:"Solomon"}}],Guam:[{usesMetazone:{_mzone:"Guam",_to:"2000-12-22 14:00"}},{usesMetazone:{_mzone:"Chamorro",_from:"2000-12-22 14:00"}}],Honolulu:[{usesMetazone:{_mzone:"Alaska_Hawaii",_to:"1983-10-30 11:00"}},{usesMetazone:{_mzone:"Hawaii_Aleutian",_from:"1983-10-30 11:00"}}],Johnston:[{usesMetazone:{_mzone:"Alaska_Hawaii",_to:"1983-10-30 11:00"}},{usesMetazone:{_mzone:"Hawaii_Aleutian",_from:"1983-10-30 11:00"}}],Kiritimati:[{usesMetazone:{_mzone:"Line_Islands"}}],Kosrae:[{usesMetazone:{_mzone:"Kosrae"}}],Kwajalein:[{usesMetazone:{_mzone:"Kwajalein",_to:"1993-08-21 12:00"}},{usesMetazone:{_mzone:"Marshall_Islands",_from:"1993-08-21 12:00"}}],Majuro:[{usesMetazone:{_mzone:"Marshall_Islands"}}],Marquesas:[{usesMetazone:{_mzone:"Marquesas"}}],Midway:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Samoa",_from:"1983-10-30 12:00"}}],Nauru:[{usesMetazone:{_mzone:"Nauru"}}],Niue:[{usesMetazone:{_mzone:"Niue"}}],Norfolk:[{usesMetazone:{_mzone:"Norfolk"}}],Noumea:[{usesMetazone:{_mzone:"New_Caledonia"}}],Pago_Pago:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Samoa",_from:"1983-10-30 12:00"}}],Palau:[{usesMetazone:{_mzone:"Palau"}}],Pitcairn:[{usesMetazone:{_mzone:"Pitcairn"}}],Ponape:[{usesMetazone:{_mzone:"Ponape"}}],Port_Moresby:[{usesMetazone:{_mzone:"Papua_New_Guinea"}}],Rarotonga:[{usesMetazone:{_mzone:"Cook"}}],Saipan:[{usesMetazone:{_mzone:"North_Mariana",_to:"2000-12-22 14:00"}},{usesMetazone:{_mzone:"Chamorro",_from:"2000-12-22 14:00"}}],Tahiti:[{usesMetazone:{_mzone:"Tahiti"}}],Tarawa:[{usesMetazone:{_mzone:"Gilbert_Islands"}}],Tongatapu:[{usesMetazone:{_mzone:"Tonga"}}],Truk:[{usesMetazone:{_mzone:"Truk"}}],Wake:[{usesMetazone:{_mzone:"Wake"}}],Wallis:[{usesMetazone:{_mzone:"Wallis"}}]},PST8PDT:[{usesMetazone:{_mzone:"America_Pacific"}}]}},metazones:[{mapZone:{_other:"Acre",_type:"America/Rio_Branco",_territory:"001"}},{mapZone:{_other:"Afghanistan",_type:"Asia/Kabul",_territory:"001"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Maputo",_territory:"001"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Bujumbura",_territory:"BI"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Gaborone",_territory:"BW"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Lubumbashi",_territory:"CD"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Blantyre",_territory:"MW"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Kigali",_territory:"RW"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Lusaka",_territory:"ZM"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Harare",_territory:"ZW"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Nairobi",_territory:"001"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Djibouti",_territory:"DJ"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Asmera",_territory:"ER"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Addis_Ababa",_territory:"ET"}},{mapZone:{_other:"Africa_Eastern",_type:"Indian/Comoro",_territory:"KM"}},{mapZone:{_other:"Africa_Eastern",_type:"Indian/Antananarivo",_territory:"MG"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Mogadishu",_territory:"SO"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Dar_es_Salaam",_territory:"TZ"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Kampala",_territory:"UG"}},{mapZone:{_other:"Africa_Eastern",_type:"Indian/Mayotte",_territory:"YT"}},{mapZone:{_other:"Africa_FarWestern",_type:"Africa/El_Aaiun",_territory:"001"}},{mapZone:{_other:"Africa_Southern",_type:"Africa/Johannesburg",_territory:"001"}},{mapZone:{_other:"Africa_Southern",_type:"Africa/Maseru",_territory:"LS"}},{mapZone:{_other:"Africa_Southern",_type:"Africa/Mbabane",_territory:"SZ"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Lagos",_territory:"001"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Luanda",_territory:"AO"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Porto-Novo",_territory:"BJ"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Kinshasa",_territory:"CD"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Bangui",_territory:"CF"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Brazzaville",_territory:"CG"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Douala",_territory:"CM"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Libreville",_territory:"GA"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Malabo",_territory:"GQ"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Niamey",_territory:"NE"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Ndjamena",_territory:"TD"}},{mapZone:{_other:"Aktyubinsk",_type:"Asia/Aqtobe",_territory:"001"}},{mapZone:{_other:"Alaska",_type:"America/Juneau",_territory:"001"}},{mapZone:{_other:"Alaska_Hawaii",_type:"America/Anchorage",_territory:"001"}},{mapZone:{_other:"Almaty",_type:"Asia/Almaty",_territory:"001"}},{mapZone:{_other:"Amazon",_type:"America/Manaus",_territory:"001"}},{mapZone:{_other:"America_Central",_type:"America/Chicago",_territory:"001"}},{mapZone:{_other:"America_Central",_type:"America/Belize",_territory:"BZ"}},{mapZone:{_other:"America_Central",_type:"America/Winnipeg",_territory:"CA"}},{mapZone:{_other:"America_Central",_type:"America/Costa_Rica",_territory:"CR"}},{mapZone:{_other:"America_Central",_type:"America/Guatemala",_territory:"GT"}},{mapZone:{_other:"America_Central",_type:"America/Tegucigalpa",_territory:"HN"}},{mapZone:{_other:"America_Central",_type:"America/Mexico_City",_territory:"MX"}},{mapZone:{_other:"America_Central",_type:"America/El_Salvador",_territory:"SV"}},{mapZone:{_other:"America_Eastern",_type:"America/New_York",_territory:"001"}},{mapZone:{_other:"America_Eastern",_type:"America/Nassau",_territory:"BS"}},{mapZone:{_other:"America_Eastern",_type:"America/Toronto",_territory:"CA"}},{mapZone:{_other:"America_Eastern",_type:"America/Port-au-Prince",_territory:"HT"}},{mapZone:{_other:"America_Eastern",_type:"America/Jamaica",_territory:"JM"}},{mapZone:{_other:"America_Eastern",_type:"America/Cayman",_territory:"KY"}},{mapZone:{_other:"America_Eastern",_type:"America/Panama",_territory:"PA"}},{mapZone:{_other:"America_Mountain",_type:"America/Denver",_territory:"001"}},{mapZone:{_other:"America_Mountain",_type:"America/Edmonton",_territory:"CA"}},{mapZone:{_other:"America_Mountain",_type:"America/Hermosillo",_territory:"MX"}},{mapZone:{_other:"America_Pacific",_type:"America/Los_Angeles",_territory:"001"}},{mapZone:{_other:"America_Pacific",_type:"America/Vancouver",_territory:"CA"}},{mapZone:{_other:"America_Pacific",_type:"America/Tijuana",_territory:"MX"}},{mapZone:{_other:"Anadyr",_type:"Asia/Anadyr",_territory:"001"}},{mapZone:{_other:"Apia",_type:"Pacific/Apia",_territory:"001"}},{mapZone:{_other:"Aqtau",_type:"Asia/Aqtau",_territory:"001"}},{mapZone:{_other:"Aqtobe",_type:"Asia/Aqtobe",_territory:"001"}},{mapZone:{_other:"Arabian",_type:"Asia/Riyadh",_territory:"001"}},{mapZone:{_other:"Arabian",_type:"Asia/Bahrain",_territory:"BH"}},{mapZone:{_other:"Arabian",_type:"Asia/Baghdad",_territory:"IQ"}},{mapZone:{_other:"Arabian",_type:"Asia/Kuwait",_territory:"KW"}},{mapZone:{_other:"Arabian",_type:"Asia/Qatar",_territory:"QA"}},{mapZone:{_other:"Arabian",_type:"Asia/Aden",_territory:"YE"}},{mapZone:{_other:"Argentina",_type:"America/Buenos_Aires",_territory:"001"}},{mapZone:{_other:"Argentina_Western",_type:"America/Argentina/San_Luis",_territory:"001"}},{mapZone:{_other:"Armenia",_type:"Asia/Yerevan",_territory:"001"}},{mapZone:{_other:"Ashkhabad",_type:"Asia/Ashgabat",_territory:"001"}},{mapZone:{_other:"Atlantic",_type:"America/Halifax",_territory:"001"}},{mapZone:{_other:"Atlantic",_type:"America/Antigua",_territory:"AG"}},{mapZone:{_other:"Atlantic",_type:"America/Anguilla",_territory:"AI"}},{mapZone:{_other:"Atlantic",_type:"America/Aruba",_territory:"AW"}},{mapZone:{_other:"Atlantic",_type:"America/Barbados",_territory:"BB"}},{mapZone:{_other:"Atlantic",_type:"Atlantic/Bermuda",_territory:"BM"}},{mapZone:{_other:"Atlantic",_type:"America/Kralendijk",_territory:"BQ"}},{mapZone:{_other:"Atlantic",_type:"America/Curacao",_territory:"CW"}},{mapZone:{_other:"Atlantic",_type:"America/Dominica",_territory:"DM"}},{mapZone:{_other:"Atlantic",_type:"America/Grenada",_territory:"GD"}},{mapZone:{_other:"Atlantic",_type:"America/Thule",_territory:"GL"}},{mapZone:{_other:"Atlantic",_type:"America/Guadeloupe",_territory:"GP"}},{mapZone:{_other:"Atlantic",_type:"America/St_Kitts",_territory:"KN"}},{mapZone:{_other:"Atlantic",_type:"America/St_Lucia",_territory:"LC"}},{mapZone:{_other:"Atlantic",_type:"America/Marigot",_territory:"MF"}},{mapZone:{_other:"Atlantic",_type:"America/Martinique",_territory:"MQ"}},{mapZone:{_other:"Atlantic",_type:"America/Montserrat",_territory:"MS"}},{mapZone:{_other:"Atlantic",_type:"America/Puerto_Rico",_territory:"PR"}},{mapZone:{_other:"Atlantic",_type:"America/Lower_Princes",_territory:"SX"}},{mapZone:{_other:"Atlantic",_type:"America/Port_of_Spain",_territory:"TT"}},{mapZone:{_other:"Atlantic",_type:"America/St_Vincent",_territory:"VC"}},{mapZone:{_other:"Atlantic",_type:"America/Tortola",_territory:"VG"}},{mapZone:{_other:"Atlantic",_type:"America/St_Thomas",_territory:"VI"}},{mapZone:{_other:"Australia_Central",_type:"Australia/Adelaide",_territory:"001"}},{mapZone:{_other:"Australia_CentralWestern",_type:"Australia/Eucla",_territory:"001"}},{mapZone:{_other:"Australia_Eastern",_type:"Australia/Sydney",_territory:"001"}},{mapZone:{_other:"Australia_Western",_type:"Australia/Perth",_territory:"001"}},{mapZone:{_other:"Azerbaijan",_type:"Asia/Baku",_territory:"001"}},{mapZone:{_other:"Azores",_type:"Atlantic/Azores",_territory:"001"}},{mapZone:{_other:"Baku",_type:"Asia/Baku",_territory:"001"}},{mapZone:{_other:"Bangladesh",_type:"Asia/Dhaka",_territory:"001"}},{mapZone:{_other:"Bering",_type:"America/Adak",_territory:"001"}},{mapZone:{_other:"Bhutan",_type:"Asia/Thimphu",_territory:"001"}},{mapZone:{_other:"Bolivia",_type:"America/La_Paz",_territory:"001"}},{mapZone:{_other:"Borneo",_type:"Asia/Kuching",_territory:"001"}},{mapZone:{_other:"Brasilia",_type:"America/Sao_Paulo",_territory:"001"}},{mapZone:{_other:"British",_type:"Europe/London",_territory:"001"}},{mapZone:{_other:"Brunei",_type:"Asia/Brunei",_territory:"001"}},{mapZone:{_other:"Cape_Verde",_type:"Atlantic/Cape_Verde",_territory:"001"}},{mapZone:{_other:"Casey",_type:"Antarctica/Casey",_territory:"001"}},{mapZone:{_other:"Chamorro",_type:"Pacific/Saipan",_territory:"001"}},{mapZone:{_other:"Chamorro",_type:"Pacific/Guam",_territory:"GU"}},{mapZone:{_other:"Chatham",_type:"Pacific/Chatham",_territory:"001"}},{mapZone:{_other:"Chile",_type:"America/Santiago",_territory:"001"}},{mapZone:{_other:"China",_type:"Asia/Shanghai",_territory:"001"}},{mapZone:{_other:"Choibalsan",_type:"Asia/Choibalsan",_territory:"001"}},{mapZone:{_other:"Christmas",_type:"Indian/Christmas",_territory:"001"}},{mapZone:{_other:"Cocos",_type:"Indian/Cocos",_territory:"001"}},{mapZone:{_other:"Colombia",_type:"America/Bogota",_territory:"001"}},{mapZone:{_other:"Cook",_type:"Pacific/Rarotonga",_territory:"001"}},{mapZone:{_other:"Cuba",_type:"America/Havana",_territory:"001"}},{mapZone:{_other:"Dacca",_type:"Asia/Dhaka",_territory:"001"}},{mapZone:{_other:"Davis",_type:"Antarctica/Davis",_territory:"001"}},{mapZone:{_other:"Dominican",_type:"America/Santo_Domingo",_territory:"001"}},{mapZone:{_other:"DumontDUrville",_type:"Antarctica/DumontDUrville",_territory:"001"}},{mapZone:{_other:"Dushanbe",_type:"Asia/Dushanbe",_territory:"001"}},{mapZone:{_other:"Dutch_Guiana",_type:"America/Paramaribo",_territory:"001"}},{mapZone:{_other:"East_Timor",_type:"Asia/Dili",_territory:"001"}},{mapZone:{_other:"Easter",_type:"Pacific/Easter",_territory:"001"}},{mapZone:{_other:"Ecuador",_type:"America/Guayaquil",_territory:"001"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Paris",_territory:"001"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Andorra",_territory:"AD"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Tirane",_territory:"AL"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Vienna",_territory:"AT"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Sarajevo",_territory:"BA"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Brussels",_territory:"BE"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Zurich",_territory:"CH"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Prague",_territory:"CZ"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Berlin",_territory:"DE"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Copenhagen",_territory:"DK"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Madrid",_territory:"ES"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Gibraltar",_territory:"GI"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Zagreb",_territory:"HR"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Budapest",_territory:"HU"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Rome",_territory:"IT"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Vaduz",_territory:"LI"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Luxembourg",_territory:"LU"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Monaco",_territory:"MC"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Podgorica",_territory:"ME"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Skopje",_territory:"MK"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Malta",_territory:"MT"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Amsterdam",_territory:"NL"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Oslo",_territory:"NO"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Warsaw",_territory:"PL"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Belgrade",_territory:"RS"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Stockholm",_territory:"SE"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Ljubljana",_territory:"SI"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Bratislava",_territory:"SK"}},{mapZone:{_other:"Europe_Central",_type:"Europe/San_Marino",_territory:"SM"}},{mapZone:{_other:"Europe_Central",_type:"Africa/Tunis",_territory:"TN"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Vatican",_territory:"VA"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Belgrade",_territory:"XK"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Bucharest",_territory:"001"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Mariehamn",_territory:"AX"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Sofia",_territory:"BG"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Nicosia",_territory:"CY"}},{mapZone:{_other:"Europe_Eastern",_type:"Africa/Cairo",_territory:"EG"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Helsinki",_territory:"FI"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Athens",_territory:"GR"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Amman",_territory:"JO"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Beirut",_territory:"LB"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Damascus",_territory:"SY"}},{mapZone:{_other:"Europe_Further_Eastern",_type:"Europe/Minsk",_territory:"001"}},{mapZone:{_other:"Europe_Further_Eastern",_type:"Europe/Kaliningrad",_territory:"RU"}},{mapZone:{_other:"Europe_Western",_type:"Atlantic/Canary",_territory:"001"}},{mapZone:{_other:"Europe_Western",_type:"Atlantic/Faeroe",_territory:"FO"}},{mapZone:{_other:"Falkland",_type:"Atlantic/Stanley",_territory:"001"}},{mapZone:{_other:"Fiji",_type:"Pacific/Fiji",_territory:"001"}},{mapZone:{_other:"French_Guiana",_type:"America/Cayenne",_territory:"001"}},{mapZone:{_other:"French_Southern",_type:"Indian/Kerguelen",_territory:"001"}},{mapZone:{_other:"Frunze",_type:"Asia/Bishkek",_territory:"001"}},{mapZone:{_other:"Galapagos",_type:"Pacific/Galapagos",_territory:"001"}},{mapZone:{_other:"Gambier",_type:"Pacific/Gambier",_territory:"001"}},{mapZone:{_other:"Georgia",_type:"Asia/Tbilisi",_territory:"001"}},{mapZone:{_other:"Gilbert_Islands",_type:"Pacific/Tarawa",_territory:"001"}},{mapZone:{_other:"GMT",_type:"Atlantic/Reykjavik",_territory:"001"}},{mapZone:{_other:"GMT",_type:"Africa/Ouagadougou",_territory:"BF"}},{mapZone:{_other:"GMT",_type:"Africa/Abidjan",_territory:"CI"}},{mapZone:{_other:"GMT",_type:"Europe/London",_territory:"GB"}},{mapZone:{_other:"GMT",_type:"Africa/Accra",_territory:"GH"}},{mapZone:{_other:"GMT",_type:"Africa/Banjul",_territory:"GM"}},{mapZone:{_other:"GMT",_type:"Africa/Conakry",_territory:"GN"}},{mapZone:{_other:"GMT",_type:"Europe/Dublin",_territory:"IE"}},{mapZone:{_other:"GMT",_type:"Africa/Bamako",_territory:"ML"}},{mapZone:{_other:"GMT",_type:"Africa/Nouakchott",_territory:"MR"}},{mapZone:{_other:"GMT",_type:"Atlantic/St_Helena",_territory:"SH"}},{mapZone:{_other:"GMT",_type:"Africa/Freetown",_territory:"SL"}},{mapZone:{_other:"GMT",_type:"Africa/Dakar",_territory:"SN"}},{mapZone:{_other:"GMT",_type:"Africa/Lome",_territory:"TG"}},{mapZone:{_other:"Goose_Bay",_type:"America/Goose_Bay",_territory:"001"}},{mapZone:{_other:"Greenland_Central",_type:"America/Scoresbysund",_territory:"001"}},{mapZone:{_other:"Greenland_Eastern",_type:"America/Scoresbysund",_territory:"001"}},{mapZone:{_other:"Greenland_Western",_type:"America/Godthab",_territory:"001"}},{mapZone:{_other:"Guam",_type:"Pacific/Guam",_territory:"001"}},{mapZone:{_other:"Gulf",_type:"Asia/Dubai",_territory:"001"}},{mapZone:{_other:"Gulf",_type:"Asia/Muscat",_territory:"OM"}},{mapZone:{_other:"Guyana",_type:"America/Guyana",_territory:"001"}},{mapZone:{_other:"Hawaii_Aleutian",_type:"Pacific/Honolulu",_territory:"001"}},{mapZone:{_other:"Hong_Kong",_type:"Asia/Hong_Kong",_territory:"001"}},{mapZone:{_other:"Hovd",_type:"Asia/Hovd",_territory:"001"}},{mapZone:{_other:"India",_type:"Asia/Calcutta",_territory:"001"}},{mapZone:{_other:"India",_type:"Asia/Colombo",_territory:"LK"}},{mapZone:{_other:"Indian_Ocean",_type:"Indian/Chagos",_territory:"001"}},{mapZone:{_other:"Indochina",_type:"Asia/Bangkok",_territory:"001"}},{mapZone:{_other:"Indochina",_type:"Asia/Phnom_Penh",_territory:"KH"}},{mapZone:{_other:"Indochina",_type:"Asia/Vientiane",_territory:"LA"}},{mapZone:{_other:"Indonesia_Central",_type:"Asia/Makassar",_territory:"001"}},{mapZone:{_other:"Indonesia_Eastern",_type:"Asia/Jayapura",_territory:"001"}},{mapZone:{_other:"Indonesia_Western",_type:"Asia/Jakarta",_territory:"001"}},{mapZone:{_other:"Iran",_type:"Asia/Tehran",_territory:"001"}},{mapZone:{_other:"Irish",_type:"Europe/Dublin",_territory:"001"}},{mapZone:{_other:"Irkutsk",_type:"Asia/Irkutsk",_territory:"001"}},{mapZone:{_other:"Israel",_type:"Asia/Jerusalem",_territory:"001"}},{mapZone:{_other:"Japan",_type:"Asia/Tokyo",_territory:"001"}},{mapZone:{_other:"Kamchatka",_type:"Asia/Kamchatka",_territory:"001"}},{mapZone:{_other:"Karachi",_type:"Asia/Karachi",_territory:"001"}},{mapZone:{_other:"Kazakhstan_Eastern",_type:"Asia/Almaty",_territory:"001"}},{mapZone:{_other:"Kazakhstan_Western",_type:"Asia/Aqtobe",_territory:"001"}},{mapZone:{_other:"Kizilorda",_type:"Asia/Qyzylorda",_territory:"001"}},{mapZone:{_other:"Korea",_type:"Asia/Seoul",_territory:"001"}},{mapZone:{_other:"Kosrae",_type:"Pacific/Kosrae",_territory:"001"}},{mapZone:{_other:"Krasnoyarsk",_type:"Asia/Krasnoyarsk",_territory:"001"}},{mapZone:{_other:"Kuybyshev",_type:"Europe/Samara",_territory:"001"}},{mapZone:{_other:"Kwajalein",_type:"Pacific/Kwajalein",_territory:"001"}},{mapZone:{_other:"Kyrgystan",_type:"Asia/Bishkek",_territory:"001"}},{mapZone:{_other:"Lanka",_type:"Asia/Colombo",_territory:"001"}},{mapZone:{_other:"Liberia",_type:"Africa/Monrovia",_territory:"001"}},{mapZone:{_other:"Line_Islands",_type:"Pacific/Kiritimati",_territory:"001"}},{mapZone:{_other:"Lord_Howe",_type:"Australia/Lord_Howe",_territory:"001"}},{mapZone:{_other:"Macau",_type:"Asia/Macau",_territory:"001"}},{mapZone:{_other:"Macquarie",_type:"Antarctica/Macquarie",_territory:"001"}},{mapZone:{_other:"Magadan",_type:"Asia/Magadan",_territory:"001"}},{mapZone:{_other:"Malaya",_type:"Asia/Kuala_Lumpur",_territory:"001"}},{mapZone:{_other:"Malaysia",_type:"Asia/Kuching",_territory:"001"}},{mapZone:{_other:"Maldives",_type:"Indian/Maldives",_territory:"001"}},{mapZone:{_other:"Marquesas",_type:"Pacific/Marquesas",_territory:"001"}},{mapZone:{_other:"Marshall_Islands",_type:"Pacific/Majuro",_territory:"001"}},{mapZone:{_other:"Mauritius",_type:"Indian/Mauritius",_territory:"001"}},{mapZone:{_other:"Mawson",_type:"Antarctica/Mawson",_territory:"001"}},{mapZone:{_other:"Mexico_Northwest",_type:"America/Santa_Isabel",_territory:"001"}},{mapZone:{_other:"Mexico_Pacific",_type:"America/Mazatlan",_territory:"001"}},{mapZone:{_other:"Mongolia",_type:"Asia/Ulaanbaatar",_territory:"001"}},{mapZone:{_other:"Moscow",_type:"Europe/Moscow",_territory:"001"}},{mapZone:{_other:"Myanmar",_type:"Asia/Rangoon",_territory:"001"}},{mapZone:{_other:"Nauru",_type:"Pacific/Nauru",_territory:"001"}},{mapZone:{_other:"Nepal",_type:"Asia/Katmandu",_territory:"001"}},{mapZone:{_other:"New_Caledonia",_type:"Pacific/Noumea",_territory:"001"}},{mapZone:{_other:"New_Zealand",_type:"Pacific/Auckland",_territory:"001"}},{mapZone:{_other:"New_Zealand",_type:"Antarctica/McMurdo",_territory:"AQ"}},{mapZone:{_other:"Newfoundland",_type:"America/St_Johns",_territory:"001"}},{mapZone:{_other:"Niue",_type:"Pacific/Niue",_territory:"001"}},{mapZone:{_other:"Norfolk",_type:"Pacific/Norfolk",_territory:"001"}},{mapZone:{_other:"Noronha",_type:"America/Noronha",_territory:"001"}},{mapZone:{_other:"North_Mariana",_type:"Pacific/Saipan",_territory:"001"}},{mapZone:{_other:"Novosibirsk",_type:"Asia/Novosibirsk",_territory:"001"}},{mapZone:{_other:"Omsk",_type:"Asia/Omsk",_territory:"001"}},{mapZone:{_other:"Oral",_type:"Asia/Oral",_territory:"001"}},{mapZone:{_other:"Pakistan",_type:"Asia/Karachi",_territory:"001"}},{mapZone:{_other:"Palau",_type:"Pacific/Palau",_territory:"001"}},{mapZone:{_other:"Papua_New_Guinea",_type:"Pacific/Port_Moresby",_territory:"001"}},{mapZone:{_other:"Paraguay",_type:"America/Asuncion",_territory:"001"}},{mapZone:{_other:"Peru",_type:"America/Lima",_territory:"001"}},{mapZone:{_other:"Philippines",_type:"Asia/Manila",_territory:"001"}},{mapZone:{_other:"Phoenix_Islands",_type:"Pacific/Enderbury",_territory:"001"}},{mapZone:{_other:"Pierre_Miquelon",_type:"America/Miquelon",_territory:"001"}},{mapZone:{_other:"Pitcairn",_type:"Pacific/Pitcairn",_territory:"001"}},{mapZone:{_other:"Ponape",_type:"Pacific/Ponape",_territory:"001"}},{mapZone:{_other:"Pyongyang",_type:"Asia/Pyongyang",_territory:"001"}},{mapZone:{_other:"Qyzylorda",_type:"Asia/Qyzylorda",_territory:"001"}},{mapZone:{_other:"Reunion",_type:"Indian/Reunion",_territory:"001"}},{mapZone:{_other:"Rothera",_type:"Antarctica/Rothera",_territory:"001"}},{mapZone:{_other:"Sakhalin",_type:"Asia/Sakhalin",_territory:"001"}},{mapZone:{_other:"Samara",_type:"Europe/Samara",_territory:"001"}},{mapZone:{_other:"Samarkand",_type:"Asia/Samarkand",_territory:"001"}},{mapZone:{_other:"Samoa",_type:"Pacific/Pago_Pago",_territory:"001"}},{mapZone:{_other:"Seychelles",_type:"Indian/Mahe",_territory:"001"}},{mapZone:{_other:"Shevchenko",_type:"Asia/Aqtau",_territory:"001"}},{mapZone:{_other:"Singapore",_type:"Asia/Singapore",_territory:"001"}},{mapZone:{_other:"Solomon",_type:"Pacific/Guadalcanal",_territory:"001"}},{mapZone:{_other:"South_Georgia",_type:"Atlantic/South_Georgia",_territory:"001"}},{mapZone:{_other:"Suriname",_type:"America/Paramaribo",_territory:"001"}},{mapZone:{_other:"Sverdlovsk",_type:"Asia/Yekaterinburg",_territory:"001"}},{mapZone:{_other:"Syowa",_type:"Antarctica/Syowa",_territory:"001"}},{mapZone:{_other:"Tahiti",_type:"Pacific/Tahiti",_territory:"001"}},{mapZone:{_other:"Taipei",_type:"Asia/Taipei",_territory:"001"}},{mapZone:{_other:"Tajikistan",_type:"Asia/Dushanbe",_territory:"001"}},{mapZone:{_other:"Tashkent",_type:"Asia/Tashkent",_territory:"001"}},{mapZone:{_other:"Tbilisi",_type:"Asia/Tbilisi",_territory:"001"}},{mapZone:{_other:"Tokelau",_type:"Pacific/Fakaofo",_territory:"001"}},{mapZone:{_other:"Tonga",_type:"Pacific/Tongatapu",_territory:"001"}},{mapZone:{_other:"Truk",_type:"Pacific/Truk",_territory:"001"}},{mapZone:{_other:"Turkey",_type:"Europe/Istanbul",_territory:"001"}},{mapZone:{_other:"Turkmenistan",_type:"Asia/Ashgabat",_territory:"001"}},{mapZone:{_other:"Tuvalu",_type:"Pacific/Funafuti",_territory:"001"}},{mapZone:{_other:"Uralsk",_type:"Asia/Oral",_territory:"001"}},{mapZone:{_other:"Uruguay",_type:"America/Montevideo",_territory:"001"}},{mapZone:{_other:"Urumqi",_type:"Asia/Urumqi",_territory:"001"}},{mapZone:{_other:"Uzbekistan",_type:"Asia/Tashkent",_territory:"001"}},{mapZone:{_other:"Vanuatu",_type:"Pacific/Efate",_territory:"001"}},{mapZone:{_other:"Venezuela",_type:"America/Caracas",_territory:"001"}},{mapZone:{_other:"Vladivostok",_type:"Asia/Vladivostok",_territory:"001"}},{mapZone:{_other:"Volgograd",_type:"Europe/Volgograd",_territory:"001"}},{mapZone:{_other:"Vostok",_type:"Antarctica/Vostok",_territory:"001"}},{mapZone:{_other:"Wake",_type:"Pacific/Wake",_territory:"001"}},{mapZone:{_other:"Wallis",_type:"Pacific/Wallis",_territory:"001"}},{mapZone:{_other:"Yakutsk",_type:"Asia/Yakutsk",_territory:"001"}},{mapZone:{_other:"Yekaterinburg",_type:"Asia/Yekaterinburg",_territory:"001"}},{mapZone:{_other:"Yerevan",_type:"Asia/Yerevan",_territory:"001"}},{mapZone:{_other:"Yukon",_type:"America/Yakutat",_territory:"001"}}]}}},d={supplemental:{version:{_unicodeVersion:"12.1.0",_cldrVersion:"36"},weekData:{minDays:{"001":"1",AD:"4",AN:"4",AT:"4",AX:"4",BE:"4",BG:"4",CH:"4",CZ:"4",DE:"4",DK:"4",EE:"4",ES:"4",FI:"4",FJ:"4",FO:"4",FR:"4",GB:"4",GF:"4",GG:"4",GI:"4",GP:"4",GR:"4",GU:"1",HU:"4",IE:"4",IM:"4",IS:"4",IT:"4",JE:"4",LI:"4",LT:"4",LU:"4",MC:"4",MQ:"4",NL:"4",NO:"4",PL:"4",PT:"4",RE:"4",RU:"4",SE:"4",SJ:"4",SK:"4",SM:"4",UM:"1",US:"1",VA:"4",VI:"1"},firstDay:{"001":"mon",AD:"mon",AE:"sat",AF:"sat",AG:"sun",AI:"mon",AL:"mon",AM:"mon",AN:"mon",AR:"mon",AS:"sun",AT:"mon",AU:"sun",AX:"mon",AZ:"mon",BA:"mon",BD:"sun",BE:"mon",BG:"mon",BH:"sat",BM:"mon",BN:"mon",BR:"sun",BS:"sun",BT:"sun",BW:"sun",BY:"mon",BZ:"sun",CA:"sun",CH:"mon",CL:"mon",CM:"mon",CN:"sun",CO:"sun",CR:"mon",CY:"mon",CZ:"mon",DE:"mon",DJ:"sat",DK:"mon",DM:"sun",DO:"sun",DZ:"sat",EC:"mon",EE:"mon",EG:"sat",ES:"mon",ET:"sun",FI:"mon",FJ:"mon",FO:"mon",FR:"mon",GB:"mon","GB-alt-variant":"sun",GE:"mon",GF:"mon",GP:"mon",GR:"mon",GT:"sun",GU:"sun",HK:"sun",HN:"sun",HR:"mon",HU:"mon",ID:"sun",IE:"mon",IL:"sun",IN:"sun",IQ:"sat",IR:"sat",IS:"mon",IT:"mon",JM:"sun",JO:"sat",JP:"sun",KE:"sun",KG:"mon",KH:"sun",KR:"sun",KW:"sat",KZ:"mon",LA:"sun",LB:"mon",LI:"mon",LK:"mon",LT:"mon",LU:"mon",LV:"mon",LY:"sat",MC:"mon",MD:"mon",ME:"mon",MH:"sun",MK:"mon",MM:"sun",MN:"mon",MO:"sun",MQ:"mon",MT:"sun",MV:"fri",MX:"sun",MY:"mon",MZ:"sun",NI:"sun",NL:"mon",NO:"mon",NP:"sun",NZ:"mon",OM:"sat",PA:"sun",PE:"sun",PH:"sun",PK:"sun",PL:"mon",PR:"sun",PT:"sun",PY:"sun",QA:"sat",RE:"mon",RO:"mon",RS:"mon",RU:"mon",SA:"sun",SD:"sat",SE:"mon",SG:"sun",SI:"mon",SK:"mon",SM:"mon",SV:"sun",SY:"sat",TH:"sun",TJ:"mon",TM:"mon",TR:"mon",TT:"sun",TW:"sun",UA:"mon",UM:"sun",US:"sun",UY:"mon",UZ:"mon",VA:"mon",VE:"sun",VI:"sun",VN:"mon",WS:"sun",XK:"mon",YE:"sun",ZA:"sun",ZW:"sun"},weekendStart:{"001":"sat",AE:"fri",AF:"thu",BH:"fri",DZ:"fri",EG:"fri",IL:"fri",IN:"sun",IQ:"fri",IR:"fri",JO:"fri",KW:"fri",LY:"fri",OM:"fri",QA:"fri",SA:"fri",SD:"fri",SY:"fri",UG:"sun",YE:"fri"},weekendEnd:{"001":"sun",AE:"sat",AF:"fri",BH:"sat",DZ:"sat",EG:"sat",IL:"sat",IQ:"sat",IR:"fri",JO:"sat",KW:"sat",LY:"sat",OM:"sat",QA:"sat",SA:"sat",SD:"sat",SY:"sat",YE:"sat"},af:{_ordering:"weekOfDate weekOfInterval weekOfMonth"},"am az bs cs cy da el et hi ky lt mk sk ta th":{_ordering:"weekOfYear weekOfMonth"},"ar fil gu hu hy id kk ko":{_ordering:"weekOfMonth"},"be ro ru":{_ordering:"weekOfInterval weekOfMonth"},"bg de iw pt ur zh":{_ordering:"weekOfDate weekOfMonth weekOfInterval"},"ca es fr gl":{_ordering:"weekOfDate"},"en bn ja ka":{_ordering:"weekOfDate weekOfMonth"},eu:{_ordering:"weekOfMonth weekOfDate"},"fa hr it lv pl si sr uk uz":{_ordering:"weekOfMonth weekOfInterval"},"fi zh-TW":{_ordering:"weekOfYear weekOfDate weekOfMonth"},"is mn no sv vi":{_ordering:"weekOfYear weekOfMonth weekOfInterval"},"km mr":{_ordering:"weekOfMonth weekOfYear"},"kn ml pa":{_ordering:"weekOfMonth weekOfDate weekOfYear"},"lo sq":{_ordering:"weekOfMonth weekOfInterval weekOfDate weekOfYear"},"ms tr":{_ordering:"weekOfMonth weekOfYear weekOfInterval weekOfDate"},nl:{_ordering:"weekOfDate weekOfYear weekOfMonth"},sl:{_ordering:"weekOfInterval"},"sw te":{_ordering:"weekOfMonth weekOfInterval weekOfYear"},und:{_ordering:"weekOfYear"},zu:{_ordering:"weekOfYear weekOfInterval"}}}},f={main:{en:{identity:{version:{_cldrVersion:"36"},language:"en"},dates:{calendars:{gregorian:{months:{format:{abbreviated:{1:"Jan",2:"Feb",3:"Mar",4:"Apr",5:"May",6:"Jun",7:"Jul",8:"Aug",9:"Sep",10:"Oct",11:"Nov",12:"Dec"},narrow:{1:"J",2:"F",3:"M",4:"A",5:"M",6:"J",7:"J",8:"A",9:"S",10:"O",11:"N",12:"D"},wide:{1:"January",2:"February",3:"March",4:"April",5:"May",6:"June",7:"July",8:"August",9:"September",10:"October",11:"November",12:"December"}},"stand-alone":{abbreviated:{1:"Jan",2:"Feb",3:"Mar",4:"Apr",5:"May",6:"Jun",7:"Jul",8:"Aug",9:"Sep",10:"Oct",11:"Nov",12:"Dec"},narrow:{1:"J",2:"F",3:"M",4:"A",5:"M",6:"J",7:"J",8:"A",9:"S",10:"O",11:"N",12:"D"},wide:{1:"January",2:"February",3:"March",4:"April",5:"May",6:"June",7:"July",8:"August",9:"September",10:"October",11:"November",12:"December"}}},days:{format:{abbreviated:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},narrow:{sun:"S",mon:"M",tue:"T",wed:"W",thu:"T",fri:"F",sat:"S"},short:{sun:"Su",mon:"Mo",tue:"Tu",wed:"We",thu:"Th",fri:"Fr",sat:"Sa"},wide:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"}},"stand-alone":{abbreviated:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},narrow:{sun:"S",mon:"M",tue:"T",wed:"W",thu:"T",fri:"F",sat:"S"},short:{sun:"Su",mon:"Mo",tue:"Tu",wed:"We",thu:"Th",fri:"Fr",sat:"Sa"},wide:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"}}},quarters:{format:{abbreviated:{1:"Q1",2:"Q2",3:"Q3",4:"Q4"},narrow:{1:"1",2:"2",3:"3",4:"4"},wide:{1:"1st quarter",2:"2nd quarter",3:"3rd quarter",4:"4th quarter"}},"stand-alone":{abbreviated:{1:"Q1",2:"Q2",3:"Q3",4:"Q4"},narrow:{1:"1",2:"2",3:"3",4:"4"},wide:{1:"1st quarter",2:"2nd quarter",3:"3rd quarter",4:"4th quarter"}}},dayPeriods:{format:{abbreviated:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"in the morning",afternoon1:"in the afternoon",evening1:"in the evening",night1:"at night"},narrow:{midnight:"mi",am:"a","am-alt-variant":"am",noon:"n",pm:"p","pm-alt-variant":"pm",morning1:"in the morning",afternoon1:"in the afternoon",evening1:"in the evening",night1:"at night"},wide:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"in the morning",afternoon1:"in the afternoon",evening1:"in the evening",night1:"at night"}},"stand-alone":{abbreviated:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"morning",afternoon1:"afternoon",evening1:"evening",night1:"night"},narrow:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"morning",afternoon1:"afternoon",evening1:"evening",night1:"night"},wide:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"morning",afternoon1:"afternoon",evening1:"evening",night1:"night"}}},eras:{eraNames:{0:"Before Christ",1:"Anno Domini","0-alt-variant":"Before Common Era","1-alt-variant":"Common Era"},eraAbbr:{0:"BC",1:"AD","0-alt-variant":"BCE","1-alt-variant":"CE"},eraNarrow:{0:"B",1:"A","0-alt-variant":"BCE","1-alt-variant":"CE"}},dateFormats:{full:"EEEE, MMMM d, y",long:"MMMM d, y",medium:"MMM d, y",short:"M/d/yy"},timeFormats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},dateTimeFormats:{full:"{1} 'at' {0}",long:"{1} 'at' {0}",medium:"{1}, {0}",short:"{1}, {0}",availableFormats:{Bh:"h B",Bhm:"h:mm B",Bhms:"h:mm:ss B",d:"d",E:"ccc",EBhm:"E h:mm B",EBhms:"E h:mm:ss B",Ed:"d E",Ehm:"E h:mm a",EHm:"E HH:mm",Ehms:"E h:mm:ss a",EHms:"E HH:mm:ss",Gy:"y G",GyMMM:"MMM y G",GyMMMd:"MMM d, y G",GyMMMEd:"E, MMM d, y G",h:"h a",H:"HH",hm:"h:mm a",Hm:"HH:mm",hms:"h:mm:ss a",Hms:"HH:mm:ss",hmsv:"h:mm:ss a v",Hmsv:"HH:mm:ss v",hmv:"h:mm a v",Hmv:"HH:mm v",M:"L",Md:"M/d",MEd:"E, M/d",MMM:"LLL",MMMd:"MMM d",MMMEd:"E, MMM d",MMMMd:"MMMM d","MMMMW-count-one":"'week' W 'of' MMMM","MMMMW-count-other":"'week' W 'of' MMMM",ms:"mm:ss",y:"y",yM:"M/y",yMd:"M/d/y",yMEd:"E, M/d/y",yMMM:"MMM y",yMMMd:"MMM d, y",yMMMEd:"E, MMM d, y",yMMMM:"MMMM y",yQQQ:"QQQ y",yQQQQ:"QQQQ y","yw-count-one":"'week' w 'of' Y","yw-count-other":"'week' w 'of' Y"},appendItems:{Day:"{0} ({2}: {1})","Day-Of-Week":"{0} {1}",Era:"{0} {1}",Hour:"{0} ({2}: {1})",Minute:"{0} ({2}: {1})",Month:"{0} ({2}: {1})",Quarter:"{0} ({2}: {1})",Second:"{0} ({2}: {1})",Timezone:"{0} {1}",Week:"{0} ({2}: {1})",Year:"{0} {1}"},intervalFormats:{intervalFormatFallback:"{0} – {1}",Bh:{B:"h B – h B",h:"h – h B"},Bhm:{B:"h:mm B – h:mm B",h:"h:mm – h:mm B",m:"h:mm – h:mm B"},d:{d:"d – d"},Gy:{G:"y G – y G",y:"y – y G"},GyM:{G:"M/y GGGGG – M/y GGGGG",M:"M/y – M/y GGGGG",y:"M/y – M/y GGGGG"},GyMd:{d:"M/d/y – M/d/y GGGGG",G:"M/d/y GGGGG – M/d/y GGGGG",M:"M/d/y – M/d/y GGGGG",y:"M/d/y – M/d/y GGGGG"},GyMEd:{d:"E, M/d/y – E, M/d/y GGGGG",G:"E, M/d/y GGGGG – E, M/d/y GGGGG",M:"E, M/d/y – E, M/d/y GGGGG",y:"E, M/d/y – E, M/d/y GGGGG"},GyMMM:{G:"MMM y G – MMM y G",M:"MMM – MMM y G",y:"MMM y – MMM y G"},GyMMMd:{d:"MMM d – d, y G",G:"MMM d, y G – MMM d, y G",M:"MMM d – MMM d, y G",y:"MMM d, y – MMM d, y G"},GyMMMEd:{d:"E, MMM d – E, MMM d, y G",G:"E, MMM d, y G – E, MMM d, y G",M:"E, MMM d – E, MMM d, y G",y:"E, MMM d, y – E, MMM d, y G"},h:{a:"h a – h a",h:"h – h a"},H:{H:"HH – HH"},hm:{a:"h:mm a – h:mm a",h:"h:mm – h:mm a",m:"h:mm – h:mm a"},Hm:{H:"HH:mm – HH:mm",m:"HH:mm – HH:mm"},hmv:{a:"h:mm a – h:mm a v",h:"h:mm – h:mm a v",m:"h:mm – h:mm a v"},Hmv:{H:"HH:mm – HH:mm v",m:"HH:mm – HH:mm v"},hv:{a:"h a – h a v",h:"h – h a v"},Hv:{H:"HH – HH v"},M:{M:"M – M"},Md:{d:"M/d – M/d",M:"M/d – M/d"},MEd:{d:"E, M/d – E, M/d",M:"E, M/d – E, M/d"},MMM:{M:"MMM – MMM"},MMMd:{d:"MMM d – d",M:"MMM d – MMM d"},MMMEd:{d:"E, MMM d – E, MMM d",M:"E, MMM d – E, MMM d"},y:{y:"y – y"},yM:{M:"M/y – M/y",y:"M/y – M/y"},yMd:{d:"M/d/y – M/d/y",M:"M/d/y – M/d/y",y:"M/d/y – M/d/y"},yMEd:{d:"E, M/d/y – E, M/d/y",M:"E, M/d/y – E, M/d/y",y:"E, M/d/y – E, M/d/y"},yMMM:{M:"MMM – MMM y",y:"MMM y – MMM y"},yMMMd:{d:"MMM d – d, y",M:"MMM d – MMM d, y",y:"MMM d, y – MMM d, y"},yMMMEd:{d:"E, MMM d – E, MMM d, y",M:"E, MMM d – E, MMM d, y",y:"E, MMM d, y – E, MMM d, y"},yMMMM:{M:"MMMM – MMMM y",y:"MMMM y – MMMM y"}}}}}}}}},h={main:{en:{identity:{version:{_cldrVersion:"36"},language:"en"},dates:{timeZoneNames:{hourFormat:"+HH:mm;-HH:mm",gmtFormat:"GMT{0}",gmtZeroFormat:"GMT",regionFormat:"{0} Time","regionFormat-type-daylight":"{0} Daylight Time","regionFormat-type-standard":"{0} Standard Time",fallbackFormat:"{1} ({0})",zone:{America:{Adak:{exemplarCity:"Adak"},Anchorage:{exemplarCity:"Anchorage"},Anguilla:{exemplarCity:"Anguilla"},Antigua:{exemplarCity:"Antigua"},Araguaina:{exemplarCity:"Araguaina"},Argentina:{Rio_Gallegos:{exemplarCity:"Rio Gallegos"},San_Juan:{exemplarCity:"San Juan"},Ushuaia:{exemplarCity:"Ushuaia"},La_Rioja:{exemplarCity:"La Rioja"},San_Luis:{exemplarCity:"San Luis"},Salta:{exemplarCity:"Salta"},Tucuman:{exemplarCity:"Tucuman"}},Aruba:{exemplarCity:"Aruba"},Asuncion:{exemplarCity:"Asunción"},Bahia:{exemplarCity:"Bahia"},Bahia_Banderas:{exemplarCity:"Bahia Banderas"},Barbados:{exemplarCity:"Barbados"},Belem:{exemplarCity:"Belem"},Belize:{exemplarCity:"Belize"},"Blanc-Sablon":{exemplarCity:"Blanc-Sablon"},Boa_Vista:{exemplarCity:"Boa Vista"},Bogota:{exemplarCity:"Bogota"},Boise:{exemplarCity:"Boise"},Buenos_Aires:{exemplarCity:"Buenos Aires"},Cambridge_Bay:{exemplarCity:"Cambridge Bay"},Campo_Grande:{exemplarCity:"Campo Grande"},Cancun:{exemplarCity:"Cancun"},Caracas:{exemplarCity:"Caracas"},Catamarca:{exemplarCity:"Catamarca"},Cayenne:{exemplarCity:"Cayenne"},Cayman:{exemplarCity:"Cayman"},Chicago:{exemplarCity:"Chicago"},Chihuahua:{exemplarCity:"Chihuahua"},Coral_Harbour:{exemplarCity:"Atikokan"},Cordoba:{exemplarCity:"Cordoba"},Costa_Rica:{exemplarCity:"Costa Rica"},Creston:{exemplarCity:"Creston"},Cuiaba:{exemplarCity:"Cuiaba"},Curacao:{exemplarCity:"Curaçao"},Danmarkshavn:{exemplarCity:"Danmarkshavn"},Dawson:{exemplarCity:"Dawson"},Dawson_Creek:{exemplarCity:"Dawson Creek"},Denver:{exemplarCity:"Denver"},Detroit:{exemplarCity:"Detroit"},Dominica:{exemplarCity:"Dominica"},Edmonton:{exemplarCity:"Edmonton"},Eirunepe:{exemplarCity:"Eirunepe"},El_Salvador:{exemplarCity:"El Salvador"},Fort_Nelson:{exemplarCity:"Fort Nelson"},Fortaleza:{exemplarCity:"Fortaleza"},Glace_Bay:{exemplarCity:"Glace Bay"},Godthab:{exemplarCity:"Nuuk"},Goose_Bay:{exemplarCity:"Goose Bay"},Grand_Turk:{exemplarCity:"Grand Turk"},Grenada:{exemplarCity:"Grenada"},Guadeloupe:{exemplarCity:"Guadeloupe"},Guatemala:{exemplarCity:"Guatemala"},Guayaquil:{exemplarCity:"Guayaquil"},Guyana:{exemplarCity:"Guyana"},Halifax:{exemplarCity:"Halifax"},Havana:{exemplarCity:"Havana"},Hermosillo:{exemplarCity:"Hermosillo"},Indiana:{Vincennes:{exemplarCity:"Vincennes, Indiana"},Petersburg:{exemplarCity:"Petersburg, Indiana"},Tell_City:{exemplarCity:"Tell City, Indiana"},Knox:{exemplarCity:"Knox, Indiana"},Winamac:{exemplarCity:"Winamac, Indiana"},Marengo:{exemplarCity:"Marengo, Indiana"},Vevay:{exemplarCity:"Vevay, Indiana"}},Indianapolis:{exemplarCity:"Indianapolis"},Inuvik:{exemplarCity:"Inuvik"},Iqaluit:{exemplarCity:"Iqaluit"},Jamaica:{exemplarCity:"Jamaica"},Jujuy:{exemplarCity:"Jujuy"},Juneau:{exemplarCity:"Juneau"},Kentucky:{Monticello:{exemplarCity:"Monticello, Kentucky"}},Kralendijk:{exemplarCity:"Kralendijk"},La_Paz:{exemplarCity:"La Paz"},Lima:{exemplarCity:"Lima"},Los_Angeles:{exemplarCity:"Los Angeles"},Louisville:{exemplarCity:"Louisville"},Lower_Princes:{exemplarCity:"Lower Prince’s Quarter"},Maceio:{exemplarCity:"Maceio"},Managua:{exemplarCity:"Managua"},Manaus:{exemplarCity:"Manaus"},Marigot:{exemplarCity:"Marigot"},Martinique:{exemplarCity:"Martinique"},Matamoros:{exemplarCity:"Matamoros"},Mazatlan:{exemplarCity:"Mazatlan"},Mendoza:{exemplarCity:"Mendoza"},Menominee:{exemplarCity:"Menominee"},Merida:{exemplarCity:"Merida"},Metlakatla:{exemplarCity:"Metlakatla"},Mexico_City:{exemplarCity:"Mexico City"},Miquelon:{exemplarCity:"Miquelon"},Moncton:{exemplarCity:"Moncton"},Monterrey:{exemplarCity:"Monterrey"},Montevideo:{exemplarCity:"Montevideo"},Montserrat:{exemplarCity:"Montserrat"},Nassau:{exemplarCity:"Nassau"},New_York:{exemplarCity:"New York"},Nipigon:{exemplarCity:"Nipigon"},Nome:{exemplarCity:"Nome"},Noronha:{exemplarCity:"Noronha"},North_Dakota:{Beulah:{exemplarCity:"Beulah, North Dakota"},New_Salem:{exemplarCity:"New Salem, North Dakota"},Center:{exemplarCity:"Center, North Dakota"}},Ojinaga:{exemplarCity:"Ojinaga"},Panama:{exemplarCity:"Panama"},Pangnirtung:{exemplarCity:"Pangnirtung"},Paramaribo:{exemplarCity:"Paramaribo"},Phoenix:{exemplarCity:"Phoenix"},"Port-au-Prince":{exemplarCity:"Port-au-Prince"},Port_of_Spain:{exemplarCity:"Port of Spain"},Porto_Velho:{exemplarCity:"Porto Velho"},Puerto_Rico:{exemplarCity:"Puerto Rico"},Punta_Arenas:{exemplarCity:"Punta Arenas"},Rainy_River:{exemplarCity:"Rainy River"},Rankin_Inlet:{exemplarCity:"Rankin Inlet"},Recife:{exemplarCity:"Recife"},Regina:{exemplarCity:"Regina"},Resolute:{exemplarCity:"Resolute"},Rio_Branco:{exemplarCity:"Rio Branco"},Santarem:{exemplarCity:"Santarem"},Santiago:{exemplarCity:"Santiago"},Santo_Domingo:{exemplarCity:"Santo Domingo"},Sao_Paulo:{exemplarCity:"Sao Paulo"},Scoresbysund:{exemplarCity:"Ittoqqortoormiit"},Sitka:{exemplarCity:"Sitka"},St_Barthelemy:{exemplarCity:"St. Barthélemy"},St_Johns:{exemplarCity:"St. John’s"},St_Kitts:{exemplarCity:"St. Kitts"},St_Lucia:{exemplarCity:"St. Lucia"},St_Thomas:{exemplarCity:"St. Thomas"},St_Vincent:{exemplarCity:"St. Vincent"},Swift_Current:{exemplarCity:"Swift Current"},Tegucigalpa:{exemplarCity:"Tegucigalpa"},Thule:{exemplarCity:"Thule"},Thunder_Bay:{exemplarCity:"Thunder Bay"},Tijuana:{exemplarCity:"Tijuana"},Toronto:{exemplarCity:"Toronto"},Tortola:{exemplarCity:"Tortola"},Vancouver:{exemplarCity:"Vancouver"},Whitehorse:{exemplarCity:"Whitehorse"},Winnipeg:{exemplarCity:"Winnipeg"},Yakutat:{exemplarCity:"Yakutat"},Yellowknife:{exemplarCity:"Yellowknife"}},Atlantic:{Azores:{exemplarCity:"Azores"},Bermuda:{exemplarCity:"Bermuda"},Canary:{exemplarCity:"Canary"},Cape_Verde:{exemplarCity:"Cape Verde"},Faeroe:{exemplarCity:"Faroe"},Madeira:{exemplarCity:"Madeira"},Reykjavik:{exemplarCity:"Reykjavik"},South_Georgia:{exemplarCity:"South Georgia"},St_Helena:{exemplarCity:"St. Helena"},Stanley:{exemplarCity:"Stanley"}},Europe:{Amsterdam:{exemplarCity:"Amsterdam"},Andorra:{exemplarCity:"Andorra"},Astrakhan:{exemplarCity:"Astrakhan"},Athens:{exemplarCity:"Athens"},Belgrade:{exemplarCity:"Belgrade"},Berlin:{exemplarCity:"Berlin"},Bratislava:{exemplarCity:"Bratislava"},Brussels:{exemplarCity:"Brussels"},Bucharest:{exemplarCity:"Bucharest"},Budapest:{exemplarCity:"Budapest"},Busingen:{exemplarCity:"Busingen"},Chisinau:{exemplarCity:"Chisinau"},Copenhagen:{exemplarCity:"Copenhagen"},Dublin:{long:{daylight:"Irish Standard Time"},exemplarCity:"Dublin"},Gibraltar:{exemplarCity:"Gibraltar"},Guernsey:{exemplarCity:"Guernsey"},Helsinki:{exemplarCity:"Helsinki"},Isle_of_Man:{exemplarCity:"Isle of Man"},Istanbul:{exemplarCity:"Istanbul"},Jersey:{exemplarCity:"Jersey"},Kaliningrad:{exemplarCity:"Kaliningrad"},Kiev:{exemplarCity:"Kiev","exemplarCity-alt-formal":"Kyiv"},Kirov:{exemplarCity:"Kirov"},Lisbon:{exemplarCity:"Lisbon"},Ljubljana:{exemplarCity:"Ljubljana"},London:{long:{daylight:"British Summer Time"},exemplarCity:"London"},Luxembourg:{exemplarCity:"Luxembourg"},Madrid:{exemplarCity:"Madrid"},Malta:{exemplarCity:"Malta"},Mariehamn:{exemplarCity:"Mariehamn"},Minsk:{exemplarCity:"Minsk"},Monaco:{exemplarCity:"Monaco"},Moscow:{exemplarCity:"Moscow"},Oslo:{exemplarCity:"Oslo"},Paris:{exemplarCity:"Paris"},Podgorica:{exemplarCity:"Podgorica"},Prague:{exemplarCity:"Prague"},Riga:{exemplarCity:"Riga"},Rome:{exemplarCity:"Rome"},Samara:{exemplarCity:"Samara"},San_Marino:{exemplarCity:"San Marino"},Sarajevo:{exemplarCity:"Sarajevo"},Saratov:{exemplarCity:"Saratov"},Simferopol:{exemplarCity:"Simferopol"},Skopje:{exemplarCity:"Skopje"},Sofia:{exemplarCity:"Sofia"},Stockholm:{exemplarCity:"Stockholm"},Tallinn:{exemplarCity:"Tallinn"},Tirane:{exemplarCity:"Tirane"},Ulyanovsk:{exemplarCity:"Ulyanovsk"},Uzhgorod:{exemplarCity:"Uzhhorod"},Vaduz:{exemplarCity:"Vaduz"},Vatican:{exemplarCity:"Vatican"},Vienna:{exemplarCity:"Vienna"},Vilnius:{exemplarCity:"Vilnius"},Volgograd:{exemplarCity:"Volgograd"},Warsaw:{exemplarCity:"Warsaw"},Zagreb:{exemplarCity:"Zagreb"},Zaporozhye:{exemplarCity:"Zaporozhye"},Zurich:{exemplarCity:"Zurich"}},Africa:{Abidjan:{exemplarCity:"Abidjan"},Accra:{exemplarCity:"Accra"},Addis_Ababa:{exemplarCity:"Addis Ababa"},Algiers:{exemplarCity:"Algiers"},Asmera:{exemplarCity:"Asmara"},Bamako:{exemplarCity:"Bamako"},Bangui:{exemplarCity:"Bangui"},Banjul:{exemplarCity:"Banjul"},Bissau:{exemplarCity:"Bissau"},Blantyre:{exemplarCity:"Blantyre"},Brazzaville:{exemplarCity:"Brazzaville"},Bujumbura:{exemplarCity:"Bujumbura"},Cairo:{exemplarCity:"Cairo"},Casablanca:{exemplarCity:"Casablanca"},Ceuta:{exemplarCity:"Ceuta"},Conakry:{exemplarCity:"Conakry"},Dakar:{exemplarCity:"Dakar"},Dar_es_Salaam:{exemplarCity:"Dar es Salaam"},Djibouti:{exemplarCity:"Djibouti"},Douala:{exemplarCity:"Douala"},El_Aaiun:{exemplarCity:"El Aaiun"},Freetown:{exemplarCity:"Freetown"},Gaborone:{exemplarCity:"Gaborone"},Harare:{exemplarCity:"Harare"},Johannesburg:{exemplarCity:"Johannesburg"},Juba:{exemplarCity:"Juba"},Kampala:{exemplarCity:"Kampala"},Khartoum:{exemplarCity:"Khartoum"},Kigali:{exemplarCity:"Kigali"},Kinshasa:{exemplarCity:"Kinshasa"},Lagos:{exemplarCity:"Lagos"},Libreville:{exemplarCity:"Libreville"},Lome:{exemplarCity:"Lome"},Luanda:{exemplarCity:"Luanda"},Lubumbashi:{exemplarCity:"Lubumbashi"},Lusaka:{exemplarCity:"Lusaka"},Malabo:{exemplarCity:"Malabo"},Maputo:{exemplarCity:"Maputo"},Maseru:{exemplarCity:"Maseru"},Mbabane:{exemplarCity:"Mbabane"},Mogadishu:{exemplarCity:"Mogadishu"},Monrovia:{exemplarCity:"Monrovia"},Nairobi:{exemplarCity:"Nairobi"},Ndjamena:{exemplarCity:"Ndjamena"},Niamey:{exemplarCity:"Niamey"},Nouakchott:{exemplarCity:"Nouakchott"},Ouagadougou:{exemplarCity:"Ouagadougou"},"Porto-Novo":{exemplarCity:"Porto-Novo"},Sao_Tome:{exemplarCity:"São Tomé"},Tripoli:{exemplarCity:"Tripoli"},Tunis:{exemplarCity:"Tunis"},Windhoek:{exemplarCity:"Windhoek"}},Asia:{Aden:{exemplarCity:"Aden"},Almaty:{exemplarCity:"Almaty"},Amman:{exemplarCity:"Amman"},Anadyr:{exemplarCity:"Anadyr"},Aqtau:{exemplarCity:"Aqtau"},Aqtobe:{exemplarCity:"Aqtobe"},Ashgabat:{exemplarCity:"Ashgabat"},Atyrau:{exemplarCity:"Atyrau"},Baghdad:{exemplarCity:"Baghdad"},Bahrain:{exemplarCity:"Bahrain"},Baku:{exemplarCity:"Baku"},Bangkok:{exemplarCity:"Bangkok"},Barnaul:{exemplarCity:"Barnaul"},Beirut:{exemplarCity:"Beirut"},Bishkek:{exemplarCity:"Bishkek"},Brunei:{exemplarCity:"Brunei"},Calcutta:{exemplarCity:"Kolkata"},Chita:{exemplarCity:"Chita"},Choibalsan:{exemplarCity:"Choibalsan"},Colombo:{exemplarCity:"Colombo"},Damascus:{exemplarCity:"Damascus"},Dhaka:{exemplarCity:"Dhaka"},Dili:{exemplarCity:"Dili"},Dubai:{exemplarCity:"Dubai"},Dushanbe:{exemplarCity:"Dushanbe"},Famagusta:{exemplarCity:"Famagusta"},Gaza:{exemplarCity:"Gaza"},Hebron:{exemplarCity:"Hebron"},Hong_Kong:{exemplarCity:"Hong Kong"},Hovd:{exemplarCity:"Hovd"},Irkutsk:{exemplarCity:"Irkutsk"},Jakarta:{exemplarCity:"Jakarta"},Jayapura:{exemplarCity:"Jayapura"},Jerusalem:{exemplarCity:"Jerusalem"},Kabul:{exemplarCity:"Kabul"},Kamchatka:{exemplarCity:"Kamchatka"},Karachi:{exemplarCity:"Karachi"},Katmandu:{exemplarCity:"Kathmandu"},Khandyga:{exemplarCity:"Khandyga"},Krasnoyarsk:{exemplarCity:"Krasnoyarsk"},Kuala_Lumpur:{exemplarCity:"Kuala Lumpur"},Kuching:{exemplarCity:"Kuching"},Kuwait:{exemplarCity:"Kuwait"},Macau:{exemplarCity:"Macao"},Magadan:{exemplarCity:"Magadan"},Makassar:{exemplarCity:"Makassar"},Manila:{exemplarCity:"Manila"},Muscat:{exemplarCity:"Muscat"},Nicosia:{exemplarCity:"Nicosia"},Novokuznetsk:{exemplarCity:"Novokuznetsk"},Novosibirsk:{exemplarCity:"Novosibirsk"},Omsk:{exemplarCity:"Omsk"},Oral:{exemplarCity:"Oral"},Phnom_Penh:{exemplarCity:"Phnom Penh"},Pontianak:{exemplarCity:"Pontianak"},Pyongyang:{exemplarCity:"Pyongyang"},Qatar:{exemplarCity:"Qatar"},Qostanay:{exemplarCity:"Kostanay"},Qyzylorda:{exemplarCity:"Qyzylorda"},Rangoon:{exemplarCity:"Yangon"},Riyadh:{exemplarCity:"Riyadh"},Saigon:{exemplarCity:"Ho Chi Minh City"},Sakhalin:{exemplarCity:"Sakhalin"},Samarkand:{exemplarCity:"Samarkand"},Seoul:{exemplarCity:"Seoul"},Shanghai:{exemplarCity:"Shanghai"},Singapore:{exemplarCity:"Singapore"},Srednekolymsk:{exemplarCity:"Srednekolymsk"},Taipei:{exemplarCity:"Taipei"},Tashkent:{exemplarCity:"Tashkent"},Tbilisi:{exemplarCity:"Tbilisi"},Tehran:{exemplarCity:"Tehran"},Thimphu:{exemplarCity:"Thimphu"},Tokyo:{exemplarCity:"Tokyo"},Tomsk:{exemplarCity:"Tomsk"},Ulaanbaatar:{exemplarCity:"Ulaanbaatar"},Urumqi:{exemplarCity:"Urumqi"},"Ust-Nera":{exemplarCity:"Ust-Nera"},Vientiane:{exemplarCity:"Vientiane"},Vladivostok:{exemplarCity:"Vladivostok"},Yakutsk:{exemplarCity:"Yakutsk"},Yekaterinburg:{exemplarCity:"Yekaterinburg"},Yerevan:{exemplarCity:"Yerevan"}},Indian:{Antananarivo:{exemplarCity:"Antananarivo"},Chagos:{exemplarCity:"Chagos"},Christmas:{exemplarCity:"Christmas"},Cocos:{exemplarCity:"Cocos"},Comoro:{exemplarCity:"Comoro"},Kerguelen:{exemplarCity:"Kerguelen"},Mahe:{exemplarCity:"Mahe"},Maldives:{exemplarCity:"Maldives"},Mauritius:{exemplarCity:"Mauritius"},Mayotte:{exemplarCity:"Mayotte"},Reunion:{exemplarCity:"Réunion"}},Australia:{Adelaide:{exemplarCity:"Adelaide"},Brisbane:{exemplarCity:"Brisbane"},Broken_Hill:{exemplarCity:"Broken Hill"},Currie:{exemplarCity:"Currie"},Darwin:{exemplarCity:"Darwin"},Eucla:{exemplarCity:"Eucla"},Hobart:{exemplarCity:"Hobart"},Lindeman:{exemplarCity:"Lindeman"},Lord_Howe:{exemplarCity:"Lord Howe"},Melbourne:{exemplarCity:"Melbourne"},Perth:{exemplarCity:"Perth"},Sydney:{exemplarCity:"Sydney"}},Pacific:{Apia:{exemplarCity:"Apia"},Auckland:{exemplarCity:"Auckland"},Bougainville:{exemplarCity:"Bougainville"},Chatham:{exemplarCity:"Chatham"},Easter:{exemplarCity:"Easter"},Efate:{exemplarCity:"Efate"},Enderbury:{exemplarCity:"Enderbury"},Fakaofo:{exemplarCity:"Fakaofo"},Fiji:{exemplarCity:"Fiji"},Funafuti:{exemplarCity:"Funafuti"},Galapagos:{exemplarCity:"Galapagos"},Gambier:{exemplarCity:"Gambier"},Guadalcanal:{exemplarCity:"Guadalcanal"},Guam:{exemplarCity:"Guam"},Honolulu:{short:{generic:"HST",standard:"HST",daylight:"HDT"}},Johnston:{exemplarCity:"Johnston"},Kiritimati:{exemplarCity:"Kiritimati"},Kosrae:{exemplarCity:"Kosrae"},Kwajalein:{exemplarCity:"Kwajalein"},Majuro:{exemplarCity:"Majuro"},Marquesas:{exemplarCity:"Marquesas"},Midway:{exemplarCity:"Midway"},Nauru:{exemplarCity:"Nauru"},Niue:{exemplarCity:"Niue"},Norfolk:{exemplarCity:"Norfolk"},Noumea:{exemplarCity:"Noumea"},Pago_Pago:{exemplarCity:"Pago Pago"},Palau:{exemplarCity:"Palau"},Pitcairn:{exemplarCity:"Pitcairn"},Ponape:{exemplarCity:"Pohnpei"},Port_Moresby:{exemplarCity:"Port Moresby"},Rarotonga:{exemplarCity:"Rarotonga"},Saipan:{exemplarCity:"Saipan"},Tahiti:{exemplarCity:"Tahiti"},Tarawa:{exemplarCity:"Tarawa"},Tongatapu:{exemplarCity:"Tongatapu"},Truk:{exemplarCity:"Chuuk"},Wake:{exemplarCity:"Wake"},Wallis:{exemplarCity:"Wallis"}},Arctic:{Longyearbyen:{exemplarCity:"Longyearbyen"}},Antarctica:{Casey:{exemplarCity:"Casey"},Davis:{exemplarCity:"Davis"},DumontDUrville:{exemplarCity:"Dumont d’Urville"},Macquarie:{exemplarCity:"Macquarie"},Mawson:{exemplarCity:"Mawson"},McMurdo:{exemplarCity:"McMurdo"},Palmer:{exemplarCity:"Palmer"},Rothera:{exemplarCity:"Rothera"},Syowa:{exemplarCity:"Syowa"},Troll:{exemplarCity:"Troll"},Vostok:{exemplarCity:"Vostok"}},Etc:{UTC:{long:{standard:"Coordinated Universal Time"},short:{standard:"UTC"}},Unknown:{exemplarCity:"Unknown City"}}},metazone:{Acre:{long:{generic:"Acre Time",standard:"Acre Standard Time",daylight:"Acre Summer Time"}},Afghanistan:{long:{standard:"Afghanistan Time"}},Africa_Central:{long:{standard:"Central Africa Time"}},Africa_Eastern:{long:{standard:"East Africa Time"}},Africa_Southern:{long:{standard:"South Africa Standard Time"}},Africa_Western:{long:{generic:"West Africa Time",standard:"West Africa Standard Time",daylight:"West Africa Summer Time"}},Alaska:{long:{generic:"Alaska Time",standard:"Alaska Standard Time",daylight:"Alaska Daylight Time"},short:{generic:"AKT",standard:"AKST",daylight:"AKDT"}},Almaty:{long:{generic:"Almaty Time",standard:"Almaty Standard Time",daylight:"Almaty Summer Time"}},Amazon:{long:{generic:"Amazon Time",standard:"Amazon Standard Time",daylight:"Amazon Summer Time"}},America_Central:{long:{generic:"Central Time",standard:"Central Standard Time",daylight:"Central Daylight Time"},short:{generic:"CT",standard:"CST",daylight:"CDT"}},America_Eastern:{long:{generic:"Eastern Time",standard:"Eastern Standard Time",daylight:"Eastern Daylight Time"},short:{generic:"ET",standard:"EST",daylight:"EDT"}},America_Mountain:{long:{generic:"Mountain Time",standard:"Mountain Standard Time",daylight:"Mountain Daylight Time"},short:{generic:"MT",standard:"MST",daylight:"MDT"}},America_Pacific:{long:{generic:"Pacific Time",standard:"Pacific Standard Time",daylight:"Pacific Daylight Time"},short:{generic:"PT",standard:"PST",daylight:"PDT"}},Anadyr:{long:{generic:"Anadyr Time",standard:"Anadyr Standard Time",daylight:"Anadyr Summer Time"}},Apia:{long:{generic:"Apia Time",standard:"Apia Standard Time",daylight:"Apia Daylight Time"}},Aqtau:{long:{generic:"Aqtau Time",standard:"Aqtau Standard Time",daylight:"Aqtau Summer Time"}},Aqtobe:{long:{generic:"Aqtobe Time",standard:"Aqtobe Standard Time",daylight:"Aqtobe Summer Time"}},Arabian:{long:{generic:"Arabian Time",standard:"Arabian Standard Time",daylight:"Arabian Daylight Time"}},Argentina:{long:{generic:"Argentina Time",standard:"Argentina Standard Time",daylight:"Argentina Summer Time"}},Argentina_Western:{long:{generic:"Western Argentina Time",standard:"Western Argentina Standard Time",daylight:"Western Argentina Summer Time"}},Armenia:{long:{generic:"Armenia Time",standard:"Armenia Standard Time",daylight:"Armenia Summer Time"}},Atlantic:{long:{generic:"Atlantic Time",standard:"Atlantic Standard Time",daylight:"Atlantic Daylight Time"},short:{generic:"AT",standard:"AST",daylight:"ADT"}},Australia_Central:{long:{generic:"Central Australia Time",standard:"Australian Central Standard Time",daylight:"Australian Central Daylight Time"}},Australia_CentralWestern:{long:{generic:"Australian Central Western Time",standard:"Australian Central Western Standard Time",daylight:"Australian Central Western Daylight Time"}},Australia_Eastern:{long:{generic:"Eastern Australia Time",standard:"Australian Eastern Standard Time",daylight:"Australian Eastern Daylight Time"}},Australia_Western:{long:{generic:"Western Australia Time",standard:"Australian Western Standard Time",daylight:"Australian Western Daylight Time"}},Azerbaijan:{long:{generic:"Azerbaijan Time",standard:"Azerbaijan Standard Time",daylight:"Azerbaijan Summer Time"}},Azores:{long:{generic:"Azores Time",standard:"Azores Standard Time",daylight:"Azores Summer Time"}},Bangladesh:{long:{generic:"Bangladesh Time",standard:"Bangladesh Standard Time",daylight:"Bangladesh Summer Time"}},Bhutan:{long:{standard:"Bhutan Time"}},Bolivia:{long:{standard:"Bolivia Time"}},Brasilia:{long:{generic:"Brasilia Time",standard:"Brasilia Standard Time",daylight:"Brasilia Summer Time"}},Brunei:{long:{standard:"Brunei Darussalam Time"}},Cape_Verde:{long:{generic:"Cape Verde Time",standard:"Cape Verde Standard Time",daylight:"Cape Verde Summer Time"}},Casey:{long:{standard:"Casey Time"}},Chamorro:{long:{standard:"Chamorro Standard Time"}},Chatham:{long:{generic:"Chatham Time",standard:"Chatham Standard Time",daylight:"Chatham Daylight Time"}},Chile:{long:{generic:"Chile Time",standard:"Chile Standard Time",daylight:"Chile Summer Time"}},China:{long:{generic:"China Time",standard:"China Standard Time",daylight:"China Daylight Time"}},Choibalsan:{long:{generic:"Choibalsan Time",standard:"Choibalsan Standard Time",daylight:"Choibalsan Summer Time"}},Christmas:{long:{standard:"Christmas Island Time"}},Cocos:{long:{standard:"Cocos Islands Time"}},Colombia:{long:{generic:"Colombia Time",standard:"Colombia Standard Time",daylight:"Colombia Summer Time"}},Cook:{long:{generic:"Cook Islands Time",standard:"Cook Islands Standard Time",daylight:"Cook Islands Half Summer Time"}},Cuba:{long:{generic:"Cuba Time",standard:"Cuba Standard Time",daylight:"Cuba Daylight Time"}},Davis:{long:{standard:"Davis Time"}},DumontDUrville:{long:{standard:"Dumont-d’Urville Time"}},East_Timor:{long:{standard:"East Timor Time"}},Easter:{long:{generic:"Easter Island Time",standard:"Easter Island Standard Time",daylight:"Easter Island Summer Time"}},Ecuador:{long:{standard:"Ecuador Time"}},Europe_Central:{long:{generic:"Central European Time",standard:"Central European Standard Time",daylight:"Central European Summer Time"}},Europe_Eastern:{long:{generic:"Eastern European Time",standard:"Eastern European Standard Time",daylight:"Eastern European Summer Time"}},Europe_Further_Eastern:{long:{standard:"Further-eastern European Time"}},Europe_Western:{long:{generic:"Western European Time",standard:"Western European Standard Time",daylight:"Western European Summer Time"}},Falkland:{long:{generic:"Falkland Islands Time",standard:"Falkland Islands Standard Time",daylight:"Falkland Islands Summer Time"}},Fiji:{long:{generic:"Fiji Time",standard:"Fiji Standard Time",daylight:"Fiji Summer Time"}},French_Guiana:{long:{standard:"French Guiana Time"}},French_Southern:{long:{standard:"French Southern & Antarctic Time"}},Galapagos:{long:{standard:"Galapagos Time"}},Gambier:{long:{standard:"Gambier Time"}},Georgia:{long:{generic:"Georgia Time",standard:"Georgia Standard Time",daylight:"Georgia Summer Time"}},Gilbert_Islands:{long:{standard:"Gilbert Islands Time"}},GMT:{long:{standard:"Greenwich Mean Time"},short:{standard:"GMT"}},Greenland_Eastern:{long:{generic:"East Greenland Time",standard:"East Greenland Standard Time",daylight:"East Greenland Summer Time"}},Greenland_Western:{long:{generic:"West Greenland Time",standard:"West Greenland Standard Time",daylight:"West Greenland Summer Time"}},Guam:{long:{standard:"Guam Standard Time"}},Gulf:{long:{standard:"Gulf Standard Time"}},Guyana:{long:{standard:"Guyana Time"}},Hawaii_Aleutian:{long:{generic:"Hawaii-Aleutian Time",standard:"Hawaii-Aleutian Standard Time",daylight:"Hawaii-Aleutian Daylight Time"},short:{generic:"HAT",standard:"HAST",daylight:"HADT"}},Hong_Kong:{long:{generic:"Hong Kong Time",standard:"Hong Kong Standard Time",daylight:"Hong Kong Summer Time"}},Hovd:{long:{generic:"Hovd Time",standard:"Hovd Standard Time",daylight:"Hovd Summer Time"}},India:{long:{standard:"India Standard Time"}},Indian_Ocean:{long:{standard:"Indian Ocean Time"}},Indochina:{long:{standard:"Indochina Time"}},Indonesia_Central:{long:{standard:"Central Indonesia Time"}},Indonesia_Eastern:{long:{standard:"Eastern Indonesia Time"}},Indonesia_Western:{long:{standard:"Western Indonesia Time"}},Iran:{long:{generic:"Iran Time",standard:"Iran Standard Time",daylight:"Iran Daylight Time"}},Irkutsk:{long:{generic:"Irkutsk Time",standard:"Irkutsk Standard Time",daylight:"Irkutsk Summer Time"}},Israel:{long:{generic:"Israel Time",standard:"Israel Standard Time",daylight:"Israel Daylight Time"}},Japan:{long:{generic:"Japan Time",standard:"Japan Standard Time",daylight:"Japan Daylight Time"}},Kamchatka:{long:{generic:"Petropavlovsk-Kamchatski Time",standard:"Petropavlovsk-Kamchatski Standard Time",daylight:"Petropavlovsk-Kamchatski Summer Time"}},Kazakhstan_Eastern:{long:{standard:"East Kazakhstan Time"}},Kazakhstan_Western:{long:{standard:"West Kazakhstan Time"}},Korea:{long:{generic:"Korean Time",standard:"Korean Standard Time",daylight:"Korean Daylight Time"}},Kosrae:{long:{standard:"Kosrae Time"}},Krasnoyarsk:{long:{generic:"Krasnoyarsk Time",standard:"Krasnoyarsk Standard Time",daylight:"Krasnoyarsk Summer Time"}},Kyrgystan:{long:{standard:"Kyrgyzstan Time"}},Lanka:{long:{standard:"Lanka Time"}},Line_Islands:{long:{standard:"Line Islands Time"}},Lord_Howe:{long:{generic:"Lord Howe Time",standard:"Lord Howe Standard Time",daylight:"Lord Howe Daylight Time"}},Macau:{long:{generic:"Macao Time",standard:"Macao Standard Time",daylight:"Macao Summer Time"}},Macquarie:{long:{standard:"Macquarie Island Time"}},Magadan:{long:{generic:"Magadan Time",standard:"Magadan Standard Time",daylight:"Magadan Summer Time"}},Malaysia:{long:{standard:"Malaysia Time"}},Maldives:{long:{standard:"Maldives Time"}},Marquesas:{long:{standard:"Marquesas Time"}},Marshall_Islands:{long:{standard:"Marshall Islands Time"}},Mauritius:{long:{generic:"Mauritius Time",standard:"Mauritius Standard Time",daylight:"Mauritius Summer Time"}},Mawson:{long:{standard:"Mawson Time"}},Mexico_Northwest:{long:{generic:"Northwest Mexico Time",standard:"Northwest Mexico Standard Time",daylight:"Northwest Mexico Daylight Time"}},Mexico_Pacific:{long:{generic:"Mexican Pacific Time",standard:"Mexican Pacific Standard Time",daylight:"Mexican Pacific Daylight Time"}},Mongolia:{long:{generic:"Ulaanbaatar Time",standard:"Ulaanbaatar Standard Time",daylight:"Ulaanbaatar Summer Time"}},Moscow:{long:{generic:"Moscow Time",standard:"Moscow Standard Time",daylight:"Moscow Summer Time"}},Myanmar:{long:{standard:"Myanmar Time"}},Nauru:{long:{standard:"Nauru Time"}},Nepal:{long:{standard:"Nepal Time"}},New_Caledonia:{long:{generic:"New Caledonia Time",standard:"New Caledonia Standard Time",daylight:"New Caledonia Summer Time"}},New_Zealand:{long:{generic:"New Zealand Time",standard:"New Zealand Standard Time",daylight:"New Zealand Daylight Time"}},Newfoundland:{long:{generic:"Newfoundland Time",standard:"Newfoundland Standard Time",daylight:"Newfoundland Daylight Time"}},Niue:{long:{standard:"Niue Time"}},Norfolk:{long:{standard:"Norfolk Island Time"}},Noronha:{long:{generic:"Fernando de Noronha Time",standard:"Fernando de Noronha Standard Time",daylight:"Fernando de Noronha Summer Time"}},North_Mariana:{long:{standard:"North Mariana Islands Time"}},Novosibirsk:{long:{generic:"Novosibirsk Time",standard:"Novosibirsk Standard Time",daylight:"Novosibirsk Summer Time"}},Omsk:{long:{generic:"Omsk Time",standard:"Omsk Standard Time",daylight:"Omsk Summer Time"}},Pakistan:{long:{generic:"Pakistan Time",standard:"Pakistan Standard Time",daylight:"Pakistan Summer Time"}},Palau:{long:{standard:"Palau Time"}},Papua_New_Guinea:{long:{standard:"Papua New Guinea Time"}},Paraguay:{long:{generic:"Paraguay Time",standard:"Paraguay Standard Time",daylight:"Paraguay Summer Time"}},Peru:{long:{generic:"Peru Time",standard:"Peru Standard Time",daylight:"Peru Summer Time"}},Philippines:{long:{generic:"Philippine Time",standard:"Philippine Standard Time",daylight:"Philippine Summer Time"}},Phoenix_Islands:{long:{standard:"Phoenix Islands Time"}},Pierre_Miquelon:{long:{generic:"St. Pierre & Miquelon Time",standard:"St. Pierre & Miquelon Standard Time",daylight:"St. Pierre & Miquelon Daylight Time"}},Pitcairn:{long:{standard:"Pitcairn Time"}},Ponape:{long:{standard:"Ponape Time"}},Pyongyang:{long:{standard:"Pyongyang Time"}},Qyzylorda:{long:{generic:"Qyzylorda Time",standard:"Qyzylorda Standard Time",daylight:"Qyzylorda Summer Time"}},Reunion:{long:{standard:"Réunion Time"}},Rothera:{long:{standard:"Rothera Time"}},Sakhalin:{long:{generic:"Sakhalin Time",standard:"Sakhalin Standard Time",daylight:"Sakhalin Summer Time"}},Samara:{long:{generic:"Samara Time",standard:"Samara Standard Time",daylight:"Samara Summer Time"}},Samoa:{long:{generic:"Samoa Time",standard:"Samoa Standard Time",daylight:"Samoa Daylight Time"}},Seychelles:{long:{standard:"Seychelles Time"}},Singapore:{long:{standard:"Singapore Standard Time"}},Solomon:{long:{standard:"Solomon Islands Time"}},South_Georgia:{long:{standard:"South Georgia Time"}},Suriname:{long:{standard:"Suriname Time"}},Syowa:{long:{standard:"Syowa Time"}},Tahiti:{long:{standard:"Tahiti Time"}},Taipei:{long:{generic:"Taipei Time",standard:"Taipei Standard Time",daylight:"Taipei Daylight Time"}},Tajikistan:{long:{standard:"Tajikistan Time"}},Tokelau:{long:{standard:"Tokelau Time"}},Tonga:{long:{generic:"Tonga Time",standard:"Tonga Standard Time",daylight:"Tonga Summer Time"}},Truk:{long:{standard:"Chuuk Time"}},Turkmenistan:{long:{generic:"Turkmenistan Time",standard:"Turkmenistan Standard Time",daylight:"Turkmenistan Summer Time"}},Tuvalu:{long:{standard:"Tuvalu Time"}},Uruguay:{long:{generic:"Uruguay Time",standard:"Uruguay Standard Time",daylight:"Uruguay Summer Time"}},Uzbekistan:{long:{generic:"Uzbekistan Time",standard:"Uzbekistan Standard Time",daylight:"Uzbekistan Summer Time"}},Vanuatu:{long:{generic:"Vanuatu Time",standard:"Vanuatu Standard Time",daylight:"Vanuatu Summer Time"}},Venezuela:{long:{standard:"Venezuela Time"}},Vladivostok:{long:{generic:"Vladivostok Time",standard:"Vladivostok Standard Time",daylight:"Vladivostok Summer Time"}},Volgograd:{long:{generic:"Volgograd Time",standard:"Volgograd Standard Time",daylight:"Volgograd Summer Time"}},Vostok:{long:{standard:"Vostok Time"}},Wake:{long:{standard:"Wake Island Time"}},Wallis:{long:{standard:"Wallis & Futuna Time"}},Yakutsk:{long:{generic:"Yakutsk Time",standard:"Yakutsk Standard Time",daylight:"Yakutsk Summer Time"}},Yekaterinburg:{long:{generic:"Yekaterinburg Time",standard:"Yekaterinburg Standard Time",daylight:"Yekaterinburg Summer Time"}}}}}}}},p={availableLocales:["en"]};function m(e){switch(e){case"availableLocales.json":return p;case"supplemental/likelySubtags.json":return l;case"supplemental/metaZones.json":return c;case"supplemental/weekData.json":return d;case"main/en/ca-gregorian.json":return f;case"main/en/timeZoneNames.json":return h;default:throw new Error("cldrData: unknown path ".concat(e))}}
|
|
144
|
-
/*
|
|
145
|
-
* @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
|
|
146
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
147
|
-
*/var _=function(e,t){return{key:e,value:t,toString:function(){return e+"->"+t}}},y=function(e,t){return t.key.length-e.key.length},g=function(){function e(e){this._valueTextMap=e;var t={},n=[];Object.keys(e).forEach((function(r){var i={},a=[];Object.keys(e[r]).forEach((function(t){var n=e[r][t];void 0===i[n]&&(i[n]=_(n,parseInt(t)),a.push(i[n]))})),a.sort(y),t[r]=a,n=n.concat(a),t.null=n})),n.sort(y),this._parsable=t}var t=e.prototype;return t.getText=function(e,t){var n=this._valueTextMap[t];return null!=n?n[e]:null},t.getTextIterator=function(e){var t=this._parsable[e];return null!=t?t[Symbol.iterator]():null},e}();function v(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==We||"undefined"!=typeof self&&self;var A={},E={get exports(){return A},set exports(e){A=e}},b={};!function(e){
|
|
148
|
-
/*!
|
|
149
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
150
|
-
* http://git.io/h4lmVg
|
|
151
|
-
*/
|
|
152
|
-
!function(t,n){e.exports=n()}(0,(function(){var e,t=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)},n=function(e,n){if(t(e)&&(e=e.join("/")),"string"!=typeof e)throw new Error('invalid path "'+e+'"');return(e=(e=e.replace(/^\//,"").replace(/^cldr\//,"")).replace(/{[a-zA-Z]+}/g,(function(e){return e=e.replace(/^{([^}]*)}$/,"$1"),n[e]}))).split("/")},r=function(e,t){var n,r;if(e.some)return e.some(t);for(n=0,r=e.length;n<r;n++)if(t(e[n],n,e))return!0;return!1},i=function(e,t,n,i){var a,o=n[0],s=n[1],u=e.localeSep,l=n[2],c=n.slice(3,4);return i=i||{},"und"!==o&&"Zzzz"!==s&&"ZZ"!==l?[o,s,l].concat(c):void 0!==t.get("supplemental/likelySubtags")?r([[o,s,l],[o,l],[o,s],[o],["und",s]],(function(e){return a=!/\b(Zzzz|ZZ)\b/.test(e.join(u))&&t.get(["supplemental/likelySubtags",e.join(u)])}))?(a=a.split(u),["und"!==o?o:a[0],"Zzzz"!==s?s:a[1],"ZZ"!==l?l:a[2]].concat(c)):i.force?t.get("supplemental/likelySubtags/und").split(u):void 0:void 0},a=function(e,t,n){var a,o,s=n[0],u=n[1],l=n[2],c=n[3];return o=r([[[s,"Zzzz","ZZ"],[s]],[[s,"Zzzz",l],[s,l]],[[s,u,"ZZ"],[s,u]]],(function(r){var o=i(e,t,r[0]);return a=r[1],o&&o[0]===n[0]&&o[1]===n[1]&&o[2]===n[2]})),o?(c&&a.push(c),a):n},o=function(e){var t,n=[];return(t=(e=e.replace(/_/,"-")).split("-u-"))[1]&&(t[1]=t[1].split("-t-"),e=t[0]+(t[1][1]?"-t-"+t[1][1]:""),n[4]=t[1][0]),null===(t=e.split("-t-")[0].match(/^(([a-z]{2,3})(-([A-Z][a-z]{3}))?(-([A-Z]{2}|[0-9]{3}))?)((-([a-zA-Z0-9]{5,8}|[0-9][a-zA-Z0-9]{3}))*)$|^(root)$/))?["und","Zzzz","ZZ"]:(n[0]=t[10]||t[2]||"und",n[1]=t[4]||"Zzzz",n[2]=t[6]||"ZZ",t[7]&&t[7].length&&(n[3]=t[7].slice(1)),n)},s=function(e,t){var n,r;if(e.forEach)return e.forEach(t);for(n=0,r=e.length;n<r;n++)t(e[n],n,e)},u=function(e,t,n){var r=e._availableBundleMap,u=e._availableBundleMapQueue;return u.length&&(s(u,(function(n,s){var l,c,d,f;if(f=o(n),void 0===(c=i(e,t,f)))throw u.splice(s,1),new Error("Could not find likelySubtags for "+n);d=(d=a(e,t,c)).join(e.localeSep),(l=r[d])&&l.length<n.length||(r[d]=n)})),e._availableBundleMapQueue=[]),r[n]||null},l=function(e){var t,n=[];if(Object.keys)return Object.keys(e);for(t in e)n.push(t);return n},c=function(e,t){var n,r;return r=e+(t&&JSON?": "+JSON.stringify(t):""),(n=new Error(r)).code=e,s(l(t),(function(e){n[e]=t[e]})),n},d=function(e,t,n){if(!t)throw c(e,n)},f=function(e,t){d("E_MISSING_PARAMETER",void 0!==e,{name:t})},h=function(e,t,n,r){d("E_INVALID_PAR_TYPE",n,{expected:r,name:t,value:e})},p=function(e,n){h(e,n,"string"==typeof e||t(e),"String or Array")},m=function(e){return null!==e&&""+e=="[object Object]"},_=function(e,t){h(e,t,void 0===e||m(e),"Plain Object")},y=function(e,t){h(e,t,"string"==typeof e,"a string")},g=function(e,t){var n,r=e,i=t.length;for(n=0;n<i-1;n++)if(!(r=r[t[n]]))return;return r[t[n]]},v=function(e,t){var n,r=e._availableBundleMapQueue,i=g(t,["main"]);if(i)for(n in i)i.hasOwnProperty(n)&&"root"!==n&&-1===r.indexOf(n)&&r.push(n)},A=function(e){return t(e)?e:[e]},E=(e=function(){var n={},r=[].slice.call(arguments,0);return s(r,(function(r){var i;for(i in r)i in n&&"object"==typeof n[i]&&!t(n[i])?n[i]=e(n[i],r[i]):n[i]=r[i]})),n},e),b=function(e,t,n){var r,i,a;for(f(n[0],"json"),r=0;r<n.length;r++)for(a=A(n[r]),i=0;i<a.length;i++)_(a[i],"json"),t=E(t,a[i]),v(e,a[i]);return t},S=function(e,t,r){var i=n(t,r);return g(e._resolved,i)},M=function(e){this.init(e)};return M._alwaysArray=A,M._coreLoad=b,M._createError=c,M._itemGetResolved=S,M._jsonMerge=E,M._pathNormalize=n,M._resourceGet=g,M._validatePresence=f,M._validateType=h,M._validateTypePath=p,M._validateTypePlainObject=_,M._availableBundleMap={},M._availableBundleMapQueue=[],M._resolved={},M.localeSep="-",M.load=function(){M._resolved=b(M,M._resolved,arguments)},M.prototype.init=function(e){var t,n,r,s,l,c,d,h,p,m=M.localeSep,_="";f(e,"locale"),y(e,"locale"),5===(c=o(e)).length&&(_=m+"u"+m+(h=c.pop()),c[3]||c.pop()),p=c[3],n=(r=i(M,this,c,{force:!0})||c)[0],l=r[1],d=r[2],s=a(M,this,r).join(m),this.attributes=t={bundle:u(M,this,s),minLanguageId:s+_,maxLanguageId:r.join(m)+_,language:n,script:l,territory:d,region:d,variant:p},h&&("-"+h).replace(/-[a-z]{3,8}|(-[a-z]{2})-([a-z]{3,8})/g,(function(e,n,r){n?t["u"+n]=r:t["u"+e]=!0})),this.locale=e},M.prototype.get=function(e){return f(e,"path"),p(e,"path"),S(M,e,this.attributes)},M.prototype.main=function(e){return f(e,"path"),p(e,"path"),d("E_MISSING_BUNDLE",null!==this.attributes.bundle,{locale:this.locale}),e=A(e),this.get(["main/{bundle}"].concat(e))},M}))}({get exports(){return b},set exports(e){b=e}});var S={};!function(e){
|
|
153
|
-
/*!
|
|
154
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
155
|
-
* http://git.io/h4lmVg
|
|
156
|
-
*/
|
|
157
|
-
!function(t){e.exports=t(b)}((function(e){var t,n=e._pathNormalize,r=e._validatePresence,i=e._validateType;
|
|
158
|
-
/*!
|
|
159
|
-
* EventEmitter v4.2.7 - git.io/ee
|
|
160
|
-
* Oliver Caldwell
|
|
161
|
-
* MIT license
|
|
162
|
-
* @preserve
|
|
163
|
-
*/t=function(){function e(){}var t=e.prototype;function n(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function r(e){return function(){return this[e].apply(this,arguments)}}return t.getListeners=function(e){var t,n,r=this._getEvents();if(e instanceof RegExp)for(n in t={},r)r.hasOwnProperty(n)&&e.test(n)&&(t[n]=r[n]);else t=r[e]||(r[e]=[]);return t},t.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},t.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&((t={})[e]=n),t||n},t.addListener=function(e,t){var r,i=this.getListenersAsObject(e),a="object"==typeof t;for(r in i)i.hasOwnProperty(r)&&-1===n(i[r],t)&&i[r].push(a?t:{listener:t,once:!1});return this},t.on=r("addListener"),t.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},t.once=r("addOnceListener"),t.defineEvent=function(e){return this.getListeners(e),this},t.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},t.removeListener=function(e,t){var r,i,a=this.getListenersAsObject(e);for(i in a)a.hasOwnProperty(i)&&-1!==(r=n(a[i],t))&&a[i].splice(r,1);return this},t.off=r("removeListener"),t.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},t.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},t.manipulateListeners=function(e,t,n){var r,i,a=e?this.removeListener:this.addListener,o=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(r=n.length;r--;)a.call(this,t,n[r]);else for(r in t)t.hasOwnProperty(r)&&(i=t[r])&&("function"==typeof i?a.call(this,r,i):o.call(this,r,i));return this},t.removeEvent=function(e){var t,n=typeof e,r=this._getEvents();if("string"===n)delete r[e];else if(e instanceof RegExp)for(t in r)r.hasOwnProperty(t)&&e.test(t)&&delete r[t];else delete this._events;return this},t.removeAllListeners=r("removeEvent"),t.emitEvent=function(e,t){var n,r,i,a=this.getListenersAsObject(e);for(i in a)if(a.hasOwnProperty(i))for(r=a[i].length;r--;)!0===(n=a[i][r]).once&&this.removeListener(e,n.listener),n.listener.apply(this,t||[])===this._getOnceReturnValue()&&this.removeListener(e,n.listener);return this},t.trigger=r("emitEvent"),t.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},t.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},t._getOnceReturnValue=function(){return!this.hasOwnProperty("_onceReturnValue")||this._onceReturnValue},t._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return originalGlobalValue,e},e}();var a,o,s=function(e,t){i(e,t,void 0===e||"function"==typeof e,"Function")},u=new t;function l(e,t){i(e,t,"string"==typeof e||e instanceof RegExp,"String or RegExp")}function c(e,t){return function(n,i){return r(n,"event"),l(n,"event"),r(i,"listener"),s(i,"listener"),t[e].apply(t,arguments)}}function d(e){return c("off",e)}function f(e){return c("on",e)}function h(e){return c("once",e)}function p(){a=e.prototype.get,e.prototype.get=function(e){var t=a.apply(this,arguments);return e=n(e,this.attributes).join("/"),u.trigger("get",[e,t]),this.ee.trigger("get",[e,t]),t}}return e.off=d(u),e.on=f(u),e.once=h(u),o=e.prototype.init,e.prototype.init=function(){var e;this.ee=e=new t,this.off=d(e),this.on=f(e),this.once=h(e),o.apply(this,arguments)},e._eventInit=p,p(),e}))}({get exports(){return S},set exports(e){S=e}});var M={};!function(e){
|
|
164
|
-
/*!
|
|
165
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
166
|
-
* http://git.io/h4lmVg
|
|
167
|
-
*/
|
|
168
|
-
!function(t){e.exports=t(b)}((function(e){var t=e._alwaysArray,n=function(e){var n,r;return(r=(n=function(n){return function(r){return r=t(r),e.get([n].concat(r))}})("supplemental")).weekData=n("supplemental/weekData"),r.weekData.firstDay=function(){return e.get("supplemental/weekData/firstDay/{territory}")||e.get("supplemental/weekData/firstDay/001")},r.weekData.minDays=function(){var t=e.get("supplemental/weekData/minDays/{territory}")||e.get("supplemental/weekData/minDays/001");return parseInt(t,10)},r.timeData=n("supplemental/timeData"),r.timeData.allowed=function(){return e.get("supplemental/timeData/{territory}/_allowed")||e.get("supplemental/timeData/001/_allowed")},r.timeData.preferred=function(){return e.get("supplemental/timeData/{territory}/_preferred")||e.get("supplemental/timeData/001/_preferred")},r},r=e.prototype.init;return e.prototype.init=function(){r.apply(this,arguments),this.supplemental=n(this)},e}))}({get exports(){return M},set exports(e){M=e}});var T={};(function(e){
|
|
169
|
-
/*!
|
|
170
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
171
|
-
* http://git.io/h4lmVg
|
|
172
|
-
*/
|
|
173
|
-
!function(t){e.exports=t(b)}((function(e){var t,n=e._coreLoad,r=e._jsonMerge,i=e._pathNormalize,a=e._resourceGet,o=e._validatePresence,s=e._validateTypePath,u=function(e,t){var n,r;if("root"!==t)return n=i(["supplemental/parentLocales/parentLocale",t]),(r=a(e._resolved,n)||a(e._raw,n))?r:(r=t.substr(0,t.lastIndexOf(e.localeSep)))||"root"},l=function(e,t,n){var r,i=e,a=t.length;for(r=0;r<a-1;r++)i[t[r]]||(i[t[r]]={}),i=i[t[r]];i[t[r]]=n},c=(t=function(e,n,o,s,c){var d,f,h;if(void 0!==n&&n!==c)return d=i(o,s),void 0!==(h=a(e._resolved,d))&&"object"!=typeof h||(void 0===(h=a(e._raw,d))&&(f=u(e,n),h=t(e,f,o,r(s,{bundle:f}),n)),void 0!==h&&l(e._resolved,d,h)),h},t);return e._raw={},e.load=function(){e._raw=n(e,e._raw,arguments)},e.prototype.get=function(t){return o(t,"path"),s(t,"path"),c(e,this.attributes&&this.attributes.bundle||"",t,this.attributes)},e._eventInit&&e._eventInit(),e}))})({get exports(){return T},set exports(e){T=e}}),function(e){
|
|
174
|
-
/*!
|
|
175
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
176
|
-
* http://git.io/h4lmVg
|
|
177
|
-
*/
|
|
178
|
-
e.exports=b}(E);var w=v(A),O=new Set,N=function(e){O.has(e)||(w.load(m(e)),O.add(e))},C={},L=function(e){return null==C[e]&&(C[e]=new w(e)),C[e]},D={},$=function(e){if(null==D[e.locale]){var t={};e.get("supplemental/metaZones/metazones").forEach((function(e){e.mapZone&&(t[e.mapZone._other]||(t[e.mapZone._other]={}),t[e.mapZone._other][e.mapZone._territory]=e.mapZone._type)})),D[e.locale]=t}return D[e.locale]},x=function(){function e(){this._cache={},N("supplemental/likelySubtags.json")}var n=e.prototype;return n.getAvailableLocales=function(){return m("availableLocales.json").availableLocales},n.getText=function(e,t,n,r){var i=this._findStore(e,r);return i instanceof g?i.getText(t,n):null},n.getTextIterator=function(e,t,n){var r=this._findStore(e,n);return r instanceof g?r.getTextIterator(t):null},n._findStore=function(e,t){var n=_(e,t),r=this._cache[n];return void 0===r&&(r=this._createStore(e,t),this._cache[n]=r),r},n._createStore=function(e,n){N("main/"+n.localeString()+"/ca-gregorian.json");var r=L(n.localeString());if(e===t.ChronoField.MONTH_OF_YEAR){var i=r.main("dates/calendars/gregorian/months/format"),a={},o={};return o[1]=i.wide[1],o[2]=i.wide[2],o[3]=i.wide[3],o[4]=i.wide[4],o[5]=i.wide[5],o[6]=i.wide[6],o[7]=i.wide[7],o[8]=i.wide[8],o[9]=i.wide[9],o[10]=i.wide[10],o[11]=i.wide[11],o[12]=i.wide[12],a[t.TextStyle.FULL]=o,(o={})[1]=i.narrow[1],o[2]=i.narrow[2],o[3]=i.narrow[3],o[4]=i.narrow[4],o[5]=i.narrow[5],o[6]=i.narrow[6],o[7]=i.narrow[7],o[8]=i.narrow[8],o[9]=i.narrow[9],o[10]=i.narrow[10],o[11]=i.narrow[11],o[12]=i.narrow[12],a[t.TextStyle.NARROW]=o,(o={})[1]=i.abbreviated[1],o[2]=i.abbreviated[2],o[3]=i.abbreviated[3],o[4]=i.abbreviated[4],o[5]=i.abbreviated[5],o[6]=i.abbreviated[6],o[7]=i.abbreviated[7],o[8]=i.abbreviated[8],o[9]=i.abbreviated[9],o[10]=i.abbreviated[10],o[11]=i.abbreviated[11],o[12]=i.abbreviated[12],a[t.TextStyle.SHORT]=o,this._createLocaleStore(a)}if(e===t.ChronoField.DAY_OF_WEEK){var s=r.main("dates/calendars/gregorian/days/format"),u={},l={};return l[1]=s.wide.mon,l[2]=s.wide.tue,l[3]=s.wide.wed,l[4]=s.wide.thu,l[5]=s.wide.fri,l[6]=s.wide.sat,l[7]=s.wide.sun,u[t.TextStyle.FULL]=l,(l={})[1]=s.narrow.mon,l[2]=s.narrow.tue,l[3]=s.narrow.wed,l[4]=s.narrow.thu,l[5]=s.narrow.fri,l[6]=s.narrow.sat,l[7]=s.narrow.sun,u[t.TextStyle.NARROW]=l,(l={})[1]=s.abbreviated.mon,l[2]=s.abbreviated.tue,l[3]=s.abbreviated.wed,l[4]=s.abbreviated.thu,l[5]=s.abbreviated.fri,l[6]=s.abbreviated.sat,l[7]=s.abbreviated.sun,u[t.TextStyle.SHORT]=l,this._createLocaleStore(u)}if(e===t.ChronoField.AMPM_OF_DAY){var c=r.main("dates/calendars/gregorian/dayPeriods/format"),d={},f={};return f[0]=c.wide.am,f[1]=c.wide.pm,d[t.TextStyle.FULL]=f,(f={})[0]=c.narrow.am,f[1]=c.narrow.pm,d[t.TextStyle.NARROW]=f,(f={})[0]=c.abbreviated.am,f[1]=c.abbreviated.pm,d[t.TextStyle.SHORT]=f,this._createLocaleStore(d)}if(e===t.ChronoField.ERA){var h=r.main("dates/calendars/gregorian/eras"),p={},m={};return m[0]=h.eraNames[0],m[1]=h.eraNames[1],p[t.TextStyle.FULL]=m,(m={})[0]=h.eraNarrow[0],m[1]=h.eraNarrow[1],p[t.TextStyle.NARROW]=m,(m={})[0]=h.eraAbbr[0],m[1]=h.eraAbbr[1],p[t.TextStyle.SHORT]=m,this._createLocaleStore(p)}if(e===t.IsoFields.QUARTER_OF_YEAR){var _=r.main("dates/calendars/gregorian/quarters/format"),y={},g={};return g[1]=_.wide[1],g[2]=_.wide[2],g[3]=_.wide[3],g[4]=_.wide[4],y[t.TextStyle.FULL]=g,(g={})[1]=_.narrow[1],g[2]=_.narrow[2],g[3]=_.narrow[3],g[4]=_.narrow[4],y[t.TextStyle.NARROW]=g,(g={})[1]=_.abbreviated[1],g[2]=_.abbreviated[2],g[3]=_.abbreviated[3],g[4]=_.abbreviated[4],y[t.TextStyle.SHORT]=g,this._createLocaleStore(y)}return null},n._createLocaleStore=function(e){return e[t.TextStyle.FULL_STANDALONE]=e[t.TextStyle.FULL],e[t.TextStyle.SHORT_STANDALONE]=e[t.TextStyle.SHORT],Object.keys(e).indexOf(t.TextStyle.NARROW)>-1&&-1===Object.keys(e).indexOf(t.TextStyle.NARROW_STANDALONE)&&(e[t.TextStyle.NARROW_STANDALONE]=e[t.TextStyle.NARROW]),new g(e)},e}(),I=t._.assert,k=I.requireNonNull,z=I.requireInstance,R=function(e,t){var n=t.length-e.length;return 0===n&&(n=e.localeCompare(t)),n},Z={},P=function(){function e(e){k(e,"textStyle"),z(e,t.TextStyle,"textStyle"),this._textStyle=e,this._zoneIdsLocales={},N("supplemental/likelySubtags.json"),N("supplemental/metaZones.json")}var n=e.prototype;return n._cachedResolveZoneIdText=function(e,t,n,r){null==Z[e.locale]&&(Z[e.locale]={});var i=Z[e.locale];null==i[t]&&(i[t]={});var a=i[t];null==a[n]&&(a[n]={});var o=a[n];return null==o[r]&&(o[r]=this._resolveZoneIdText(e,t,n,r)),o[r]},n._resolveZoneIdText=function(e,t,n,r){var i=e.main("dates/timeZoneNames/zone/"+t+"/"+n+"/"+r);if(i)return i;var a=e.get("supplemental/metaZones/metazoneInfo/timezone/"+t);if(a){var o=a[a.length-1].usesMetazone._mzone,s=e.main("dates/timeZoneNames/metazone/"+o+"/"+n+"/"+r);if(s)return s;if((s=e.main("dates/timeZoneNames/metazone/"+o+"/"+n+"/generic"))||(s=e.main("dates/timeZoneNames/metazone/"+o+"/"+n+"/standard")),s)return s;var u=$(e),l=u[o][e.attributes.territory];if(l){if(l!==t)return this._cachedResolveZoneIdText(e,l,n,r)}else{var c=u[o]["001"];if(c!==t)return this._cachedResolveZoneIdText(e,c,n,r)}}},n.print=function(e,n){var r=e.getValueQuery(t.TemporalQueries.zoneId());if(null==r)return!1;if(r.normalized()instanceof t.ZoneOffset)return n.append(r.id()),!0;var i="generic",a=this._textStyle.asNormal()===t.TextStyle.FULL?"long":"short";N("main/"+e.locale().localeString()+"/timeZoneNames.json");var o=L(e.locale().localeString()),s=this._cachedResolveZoneIdText(o,r.id(),a,i);return s?n.append(s):n.append(r.id()),!0},n._resolveZoneIds=function(e){if(null!=this._zoneIdsLocales[e])return this._zoneIdsLocales[e];var n={};N("main/"+e+"/timeZoneNames.json");for(var r,i=L(e),a=s(t.ZoneRulesProvider.getAvailableZoneIds());!(r=a()).done;){var o=r.value;n[o]=o;var u=this._textStyle.asNormal()===t.TextStyle.FULL?"long":"short",l=this._cachedResolveZoneIdText(i,o,u,"generic");l&&(n[l]=o);var c=this._cachedResolveZoneIdText(i,o,u,"standard");c&&(n[c]=o);var d=this._cachedResolveZoneIdText(i,o,u,"daylight");d&&(n[d]=o)}var f=Object.keys(n).sort(R);return this._zoneIdsLocales[e]={ids:n,sortedKeys:f},this._zoneIdsLocales[e]},n.parse=function(e,n,r){for(var i=0,a=["UTC","GMT"];i<a.length;i++){var o=a[i];if(e.subSequenceEquals(n,r,o,0,o.length))return e.setParsedZone(t.ZoneId.of(o)),r+o.length}for(var u,l=this._resolveZoneIds(e.locale().localeString()),c=l.ids,d=s(l.sortedKeys);!(u=d()).done;){var f=u.value;if(e.subSequenceEquals(n,r,f,0,f.length))return e.setParsedZone(t.ZoneId.of(c[f])),r+f.length}return~r},n.toString=function(){return"ZoneText("+this._textStyle+")"},e}(),F=t._.MathUtil,U=function(){function e(e){this._textStyle=e}var n=e.prototype;return n.textStyle=function(){return this._textStyle},n.print=function(e,n){var r=e.getValue(t.ChronoField.OFFSET_SECONDS);if(null==r)return!1;if(n.append("GMT"),this._textStyle===t.TextStyle.FULL)return new t.DateTimeFormatterBuilder.OffsetIdPrinterParser("","+HH:MM:ss").print(e,n);var i=F.safeToInt(r);if(0!==i){var a=Math.abs(F.intMod(F.intDiv(i,3600),100)),o=Math.abs(F.intMod(F.intDiv(i,60),60)),s=Math.abs(F.intMod(i,60));n.append(i<0?"-":"+").append(a),(o>0||s>0)&&(n.append(":").append(F.intDiv(o,10)).append(F.intMod(o,10)),s>0&&n.append(":").append(F.intDiv(s,10)).append(F.intMod(s,10)))}return!0},n.parse=function(e,n,r){if(!1===e.subSequenceEquals(n,r,"GMT",0,3))return~r;if(r+=3,this._textStyle===t.TextStyle.FULL)return new t.DateTimeFormatterBuilder.OffsetIdPrinterParser("","+HH:MM:ss").parse(e,n,r);var i=n.length;if(r===i)return e.setParsedField(t.ChronoField.OFFSET_SECONDS,0,r,r);var a=n.charAt(r);if("+"!==a&&"-"!==a)return e.setParsedField(t.ChronoField.OFFSET_SECONDS,0,r,r);var o="-"===a?-1:1;if(r===i)return~r;r++;var s=n.charAt(r);if(s<"0"||s>"9")return~r;r++;var u=F.parseInt(s);if(r!==i&&(s=n.charAt(r))>="0"&&s<="9"){if((u=10*u+F.parseInt(s))>23)return~r;r++}if(r===i||":"!==n.charAt(r)){var l=3600*o*u;return e.setParsedField(t.ChronoField.OFFSET_SECONDS,l,r,r)}if(++r>i-2)return~r;if((s=n.charAt(r))<"0"||s>"9")return~r;r++;var c=F.parseInt(s);if((s=n.charAt(r))<"0"||s>"9")return~r;if(r++,(c=10*c+F.parseInt(s))>59)return~r;if(r===i||":"!==n.charAt(r)){var d=o*(3600*u+60*c);return e.setParsedField(t.ChronoField.OFFSET_SECONDS,d,r,r)}if(++r>i-2)return~r;if((s=n.charAt(r))<"0"||s>"9")return~r;r++;var f=F.parseInt(s);if((s=n.charAt(r))<"0"||s>"9")return~r;if(r++,(f=10*f+F.parseInt(s))>59)return~r;var h=o*(3600*u+60*c+f);return e.setParsedField(t.ChronoField.OFFSET_SECONDS,h,r,r)},n.toString=function(){return"LocalizedOffset("+this._textStyle+")"},e}(),B=t._.MathUtil,V=t._.assert,j=V.requireNonNull,H=V.requireInstance,Y=t.ValueRange.of(1,7),G=t.ValueRange.of(0,1,4,6),W=t.ValueRange.of(0,1,52,54),q=t.ValueRange.of(1,52,53),K=t.ChronoField.YEAR.range(),J={mon:t.DayOfWeek.MONDAY,tue:t.DayOfWeek.TUESDAY,wed:t.DayOfWeek.WEDNESDAY,thu:t.DayOfWeek.THURSDAY,fri:t.DayOfWeek.FRIDAY,sat:t.DayOfWeek.SATURDAY,sun:t.DayOfWeek.SUNDAY},X=function(){function e(e,t,n,r,i){this._name=e,this._weekDef=t,this._baseUnit=n,this._rangeUnit=r,this._range=i}e.ofDayOfWeekField=function(n){return new e("DayOfWeek",n,t.ChronoUnit.DAYS,t.ChronoUnit.WEEKS,Y)},e.ofWeekOfMonthField=function(n){return new e("WeekOfMonth",n,t.ChronoUnit.WEEKS,t.ChronoUnit.MONTHS,G)},e.ofWeekOfYearField=function(n){return new e("WeekOfYear",n,t.ChronoUnit.WEEKS,t.ChronoUnit.YEARS,W)},e.ofWeekOfWeekBasedYearField=function(n){return new e("WeekOfWeekBasedYear",n,t.ChronoUnit.WEEKS,t.IsoFields.WEEK_BASED_YEARS,q)},e.ofWeekBasedYearField=function(n){return new e("WeekBasedYear",n,t.IsoFields.WEEK_BASED_YEARS,t.ChronoUnit.FOREVER,K)};var n=e.prototype;return n.getFrom=function(e){var n=this._weekDef.firstDayOfWeek().value(),r=this._localizedDayOfWeek(e,n);if(this._rangeUnit===t.ChronoUnit.WEEKS)return r;if(this._rangeUnit===t.ChronoUnit.MONTHS)return this._localizedWeekOfMonth(e,r);if(this._rangeUnit===t.ChronoUnit.YEARS)return this._localizedWeekOfYear(e,r);if(this._rangeUnit===t.IsoFields.WEEK_BASED_YEARS)return this._localizedWOWBY(e);if(this._rangeUnit===t.ChronoUnit.FOREVER)return this._localizedWBY(e);throw new t.IllegalStateException("unreachable")},n._localizedDayOfWeek=function(e,n){var r=e.get(t.ChronoField.DAY_OF_WEEK);return B.floorMod(r-n,7)+1},n._localizedWeekOfMonth=function(n,r){var i=n.get(t.ChronoField.DAY_OF_MONTH),a=this._startOfWeekOffset(i,r);return e._computeWeek(a,i)},n._localizedWeekOfYear=function(n,r){var i=n.get(t.ChronoField.DAY_OF_YEAR),a=this._startOfWeekOffset(i,r);return e._computeWeek(a,i)},n._localizedWOWBY=function(n){var r=this._weekDef.firstDayOfWeek().value(),i=n.get(t.ChronoField.DAY_OF_WEEK),a=B.floorMod(i-r,7)+1,o=this._localizedWeekOfYear(n,a);if(0===o){var s=t.LocalDate.from(n).minus(1,t.ChronoUnit.WEEKS);return this._localizedWeekOfYear(s,a)+1}if(o>=53){var u=this._startOfWeekOffset(n.get(t.ChronoField.DAY_OF_YEAR),a),l=n.get(t.ChronoField.YEAR),c=t.Year.isLeap(l)?366:365,d=e._computeWeek(u,c+this._weekDef.minimalDaysInFirstWeek());if(o>=d)return o-(d-1)}return o},n._localizedWBY=function(n){var r=this._weekDef.firstDayOfWeek().value(),i=n.get(t.ChronoField.DAY_OF_WEEK),a=B.floorMod(i-r,7)+1,o=n.get(t.ChronoField.YEAR),s=this._localizedWeekOfYear(n,a);if(0===s)return o-1;if(s<53)return o;var u=this._startOfWeekOffset(n.get(t.ChronoField.DAY_OF_YEAR),a),l=t.Year.isLeap(o)?366:365;return s>=e._computeWeek(u,l+this._weekDef.minimalDaysInFirstWeek())?o+1:o},n._startOfWeekOffset=function(e,t){var n=B.floorMod(e-t,7),r=-n;return n+1>this._weekDef.minimalDaysInFirstWeek()&&(r=7-n),r},e._computeWeek=function(e,t){return B.intDiv(7+e+(t-1),7)},n.adjustInto=function(e,n){var r=this._range.checkValidIntValue(n,this),i=e.get(this);if(r===i)return e;if(this._rangeUnit===t.ChronoUnit.FOREVER){var a=e.get(this._weekDef.weekOfWeekBasedYear()),o=B.roundDown(52.1775*(n-i)),s=e.plus(o,t.ChronoUnit.WEEKS);if(s.get(this)>r){var u=s.get(this._weekDef.weekOfWeekBasedYear());s=s.minus(u,t.ChronoUnit.WEEKS)}else{s.get(this)<r&&(s=s.plus(2,t.ChronoUnit.WEEKS));var l=s.get(this._weekDef.weekOfWeekBasedYear());(s=s.plus(a-l,t.ChronoUnit.WEEKS)).get(this)>r&&(s=s.minus(1,t.ChronoUnit.WEEKS))}return s}var c=r-i;return e.plus(c,this._baseUnit)},n.resolve=function(e,n,r){var i=this._weekDef.firstDayOfWeek().value();if(this._rangeUnit===t.ChronoUnit.WEEKS){var a=e.remove(this),o=this._range.checkValidIntValue(a,this),s=B.floorMod(i-1+(o-1),7)+1;return e.put(t.ChronoField.DAY_OF_WEEK,s),null}if(!1===e.containsKey(t.ChronoField.DAY_OF_WEEK))return null;if(this._rangeUnit===t.ChronoUnit.FOREVER){if(!1===e.containsKey(this._weekDef.weekOfWeekBasedYear()))return null;var u,l,c=t.ChronoField.DAY_OF_WEEK.checkValidIntValue(e.get(t.ChronoField.DAY_OF_WEEK)),d=B.floorMod(c-i,7)+1,f=this.range().checkValidIntValue(e.get(this),this);if(r===t.ResolverStyle.LENIENT){u=t.LocalDate.of(f,1,this._weekDef.minimalDaysInFirstWeek());var h=e.get(this._weekDef.weekOfWeekBasedYear()),p=this._localizedDayOfWeek(u,i);l=7*(h-this._localizedWeekOfYear(u,p))+(d-p)}else{u=t.LocalDate.of(f,1,this._weekDef.minimalDaysInFirstWeek());var m=this._weekDef.weekOfWeekBasedYear().range().checkValidIntValue(e.get(this._weekDef.weekOfWeekBasedYear()),this._weekDef.weekOfWeekBasedYear),_=this._localizedDayOfWeek(u,i);l=7*(m-this._localizedWeekOfYear(u,_))+(d-_)}if(u=u.plus(l,t.ChronoUnit.DAYS),r===t.ResolverStyle.STRICT&&u.getLong(this)!==e.get(this))throw new t.DateTimeException("Strict mode rejected date parsed to a different year");return e.remove(this),e.remove(this._weekDef.weekOfWeekBasedYear()),e.remove(t.ChronoField.DAY_OF_WEEK),u}if(!1===e.containsKey(t.ChronoField.YEAR))return null;var y=t.ChronoField.DAY_OF_WEEK.checkValidIntValue(e.get(t.ChronoField.DAY_OF_WEEK)),g=B.floorMod(y-i,7)+1,v=t.ChronoField.YEAR.checkValidIntValue(e.get(t.ChronoField.YEAR));if(this._rangeUnit===t.ChronoUnit.MONTHS){if(!1===e.containsKey(t.ChronoField.MONTH_OF_YEAR))return null;var A,E,b=e.remove(this);if(r===t.ResolverStyle.LENIENT){var S=e.get(t.ChronoField.MONTH_OF_YEAR);A=(A=t.LocalDate.of(v,1,1)).plus(S-1,t.ChronoUnit.MONTHS);var M=this._localizedDayOfWeek(A,i);E=7*(b-this._localizedWeekOfMonth(A,M))+(g-M)}else{var T=t.ChronoField.MONTH_OF_YEAR.checkValidIntValue(e.get(t.ChronoField.MONTH_OF_YEAR));A=t.LocalDate.of(v,T,8);var w=this._localizedDayOfWeek(A,i);E=7*(this._range.checkValidIntValue(b,this)-this._localizedWeekOfMonth(A,w))+(g-w)}if(A=A.plus(E,t.ChronoUnit.DAYS),r===t.ResolverStyle.STRICT&&A.getLong(t.ChronoField.MONTH_OF_YEAR)!==e.get(t.ChronoField.MONTH_OF_YEAR))throw new t.DateTimeException("Strict mode rejected date parsed to a different month");return e.remove(this),e.remove(t.ChronoField.YEAR),e.remove(t.ChronoField.MONTH_OF_YEAR),e.remove(t.ChronoField.DAY_OF_WEEK),A}if(this._rangeUnit===t.ChronoUnit.YEARS){var O,N=e.remove(this),C=t.LocalDate.of(v,1,1);if(r===t.ResolverStyle.LENIENT){var L=this._localizedDayOfWeek(C,i);O=7*(N-this._localizedWeekOfYear(C,L))+(g-L)}else{var D=this._localizedDayOfWeek(C,i);O=7*(this._range.checkValidIntValue(N,this)-this._localizedWeekOfYear(C,D))+(g-D)}if(C=C.plus(O,t.ChronoUnit.DAYS),r===t.ResolverStyle.STRICT&&C.getLong(t.ChronoField.YEAR)!==e.get(t.ChronoField.YEAR))throw new t.DateTimeException("Strict mode rejected date parsed to a different year");return e.remove(this),e.remove(t.ChronoField.YEAR),e.remove(t.ChronoField.DAY_OF_WEEK),C}throw new t.IllegalStateException("unreachable")},n.name=function(){return this._name},n.baseUnit=function(){return this._baseUnit},n.rangeUnit=function(){return this._rangeUnit},n.range=function(){return this._range},n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n.isSupportedBy=function(e){if(e.isSupported(t.ChronoField.DAY_OF_WEEK)){if(this._rangeUnit===t.ChronoUnit.WEEKS)return!0;if(this._rangeUnit===t.ChronoUnit.MONTHS)return e.isSupported(t.ChronoField.DAY_OF_MONTH);if(this._rangeUnit===t.ChronoUnit.YEARS)return e.isSupported(t.ChronoField.DAY_OF_YEAR);if(this._rangeUnit===t.IsoFields.WEEK_BASED_YEARS)return e.isSupported(t.ChronoField.EPOCH_DAY);if(this._rangeUnit===t.ChronoUnit.FOREVER)return e.isSupported(t.ChronoField.EPOCH_DAY)}return!1},n.rangeRefinedBy=function(n){if(this._rangeUnit===t.ChronoUnit.WEEKS)return this._range;var r=null;if(this._rangeUnit===t.ChronoUnit.MONTHS)r=t.ChronoField.DAY_OF_MONTH;else{if(this._rangeUnit!==t.ChronoUnit.YEARS){if(this._rangeUnit===t.IsoFields.WEEK_BASED_YEARS)return this._rangeWOWBY(n);if(this._rangeUnit===t.ChronoUnit.FOREVER)return n.range(t.ChronoField.YEAR);throw new t.IllegalStateException("unreachable")}r=t.ChronoField.DAY_OF_YEAR}var i=this._weekDef.firstDayOfWeek().value(),a=n.get(t.ChronoField.DAY_OF_WEEK),o=B.floorMod(a-i,7)+1,s=this._startOfWeekOffset(n.get(r),o),u=n.range(r);return t.ValueRange.of(e._computeWeek(s,u.minimum()),e._computeWeek(s,u.maximum()))},n._rangeWOWBY=function(n){var r=this._weekDef.firstDayOfWeek().value(),i=n.get(t.ChronoField.DAY_OF_WEEK),a=B.floorMod(i-r,7)+1,o=this._localizedWeekOfYear(n,a);if(0===o)return this._rangeWOWBY(t.IsoChronology.INSTANCE.date(n).minus(2,t.ChronoUnit.WEEKS));var s=this._startOfWeekOffset(n.get(t.ChronoField.DAY_OF_YEAR),a),u=n.get(t.ChronoField.YEAR),l=t.Year.isLeap(u)?366:365,c=e._computeWeek(s,l+this._weekDef.minimalDaysInFirstWeek());return o>=c?this._rangeWOWBY(t.IsoChronology.INSTANCE.date(n).plus(2,t.ChronoUnit.WEEKS)):t.ValueRange.of(1,c-1)},n.displayName=function(e){return j(e,"locale"),this._rangeUnit===t.ChronoUnit.YEARS?"Week":this.toString()},n.toString=function(){return this._name+"["+this._weekDef.toString()+"]"},e}(),Q=new Map,ee=function(){function e(e,n){if(j(e,"firstDayOfWeek"),H(e,t.DayOfWeek,"firstDayOfWeek"),j(n,"minimalDaysInFirstWeek"),n<1||n>7)throw new t.IllegalArgumentException("Minimal number of days is invalid");this._firstDayOfWeek=e,this._minimalDays=n,this._dayOfWeek=X.ofDayOfWeekField(this),this._weekOfMonth=X.ofWeekOfMonthField(this),this._weekOfYear=X.ofWeekOfYearField(this),this._weekOfWeekBasedYear=X.ofWeekOfWeekBasedYearField(this),this._weekBasedYear=X.ofWeekBasedYearField(this),w.load(m("supplemental/likelySubtags.json"))}e.of=function(t,n){return void 0===n?e.ofLocale(t):e.ofFirstDayOfWeekMinDays(t,n)},e.ofLocale=function(t){j(t,"locale"),w.load(m("supplemental/weekData.json"));var n="001",r=new w(t.localeString()).get("supplemental/weekData"),i=J[r.firstDay[t.country()]];i||(i=J[r.firstDay[n]]);var a=r.minDays[t.country()];return a||(a=r.minDays[n]),e.ofFirstDayOfWeekMinDays(i,a)},e.ofFirstDayOfWeekMinDays=function(n,r){j(n,"firstDayOfWeek"),H(n,t.DayOfWeek,"firstDayOfWeek"),j(r,"minimalDaysInFirstWeek");var i=n.toString()+r,a=Q.get(i);return null==a&&(a=new e(n,r),Q.set(i,a),a=Q.get(i)),a};var n=e.prototype;return n.firstDayOfWeek=function(){return this._firstDayOfWeek},n.minimalDaysInFirstWeek=function(){return this._minimalDays},n.dayOfWeek=function(){return this._dayOfWeek},n.weekOfMonth=function(){return this._weekOfMonth},n.weekOfYear=function(){return this._weekOfYear},n.weekOfWeekBasedYear=function(){return this._weekOfWeekBasedYear},n.weekBasedYear=function(){return this._weekBasedYear},n.equals=function(t){return this===t||t instanceof e&&this.hashCode()===t.hashCode()},n.hashCode=function(){return 7*this._firstDayOfWeek.ordinal()+this._minimalDays},n.toString=function(){return"WeekFields["+this._firstDayOfWeek+","+this._minimalDays+"]"},e}();
|
|
179
|
-
/*
|
|
180
|
-
* @copyright (c) 2020, Philipp Thuerwaechter & Pattrick Hueper
|
|
181
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
182
|
-
*/function te(){ee.ISO=ee.of(t.DayOfWeek.MONDAY,4),ee.SUNDAY_START=ee.of(t.DayOfWeek.SUNDAY,1)}
|
|
183
|
-
/*
|
|
184
|
-
* @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
|
|
185
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
186
|
-
*/var ne=t._.StringBuilder,re=function(){function e(e,t){this._letter=e,this._count=t}var n=e.prototype;return n.print=function(e,t){var n=ee.of(e.locale());return this._evaluate(n).print(e,t)},n.parse=function(e,t,n){var r=ee.of(e.locale());return this._evaluate(r).parse(e,t,n)},n._evaluate=function(e){var n=null;switch(this._letter){case"e":case"c":n=new t.DateTimeFormatterBuilder.NumberPrinterParser(e.dayOfWeek(),this._count,2,t.SignStyle.NOT_NEGATIVE);break;case"w":n=new t.DateTimeFormatterBuilder.NumberPrinterParser(e.weekOfWeekBasedYear(),this._count,2,t.SignStyle.NOT_NEGATIVE);break;case"W":n=new t.DateTimeFormatterBuilder.NumberPrinterParser(e.weekOfMonth(),1,2,t.SignStyle.NOT_NEGATIVE);break;case"Y":n=2===this._count?new t.DateTimeFormatterBuilder.ReducedPrinterParser(e.weekBasedYear(),2,2,0,t.DateTimeFormatterBuilder.ReducedPrinterParser.BASE_DATE):new t.DateTimeFormatterBuilder.NumberPrinterParser(e.weekBasedYear(),this._count,19,this._count<4?t.SignStyle.NORMAL:t.SignStyle.EXCEEDS_PAD,-1)}return n},n.toString=function(){var e=new ne(30);return e.append("Localized("),"Y"===this._letter?1===this._count?e.append("WeekBasedYear"):2===this._count?e.append("ReducedValue(WeekBasedYear,2,2,2000-01-01)"):e.append("WeekBasedYear,").append(this._count).append(",").append(19).append(",").append(this._count<4?t.SignStyle.NORMAL:t.SignStyle.EXCEEDS_PAD):("c"===this._letter||"e"===this._letter?e.append("DayOfWeek"):"w"===this._letter?e.append("WeekOfWeekBasedYear"):"W"===this._letter&&e.append("WeekOfMonth"),e.append(","),e.append(this._count)),e.append(")"),e.toString()},e}(),ie=t._.assert,ae=ie.requireNonNull,oe=ie.requireInstance,se=function(e){function i(){return e.apply(this,arguments)||this}r(i,e);var a=i.prototype;return a.appendText=function(e,n){return void 0===n?this.appendTextField(e):n instanceof t.TextStyle?this.appendTextFieldStyle(e,n):this.appendTextFieldMap(e,n)},a.appendTextField=function(e){return this.appendTextFieldStyle(e,t.TextStyle.FULL)},a.appendTextFieldStyle=function(e,n){return ae(e,"field"),oe(e,t.TemporalField,"field"),ae(n,"textStyle"),oe(n,t.TextStyle,"textStyle"),this._appendInternal(new u(e,n,new x)),this},a.appendTextFieldMap=function(e,r){ae(e,"field"),oe(e,t.ChronoField,"field"),ae(r,"textLookup");var i=n({},r),a={};a[t.TextStyle.FULL]=i;var o=new g(a),s={getText:function(e,t,n){return o.getText(t,n)},getTextIterator:function(e,t){return o.getTextIterator(t)}};return this._appendInternal(new u(e,t.TextStyle.FULL,s)),this},a.appendWeekField=function(e,t){return ae(e,"field"),ae(t,"count"),this._appendInternal(new re(e,t)),this},a.appendZoneText=function(e){return this._appendInternal(new P(e)),this},a.appendLocalizedOffset=function(e){if(ae(e,"textStyle"),e!==t.TextStyle.FULL&&e!==t.TextStyle.SHORT)throw new t.IllegalArgumentException("Style must be either full or short");return this._appendInternal(new U(e)),this},i}(t.DateTimeFormatterBuilder),ue=function(){function e(e,t,n){void 0===t&&(t=""),void 0===n&&(n=""),this._language=e,this._country=t,this._localeString=n}e.getAvailableLocales=function(){return(new x).getAvailableLocales()};var t=e.prototype;return t.language=function(){return this._language},t.country=function(){return this._country},t.localeString=function(){return this._localeString.length>0?this._localeString:this._country.length>0?this._language+"-"+this._country:this._language},t.toString=function(){return"Locale["+this.localeString()+"]"},t.equals=function(t){return!!t&&t instanceof e&&this.localeString()===t.localeString()},e}();function le(){ue.ENGLISH=new ue("en"),ue.US=new ue("en","US","en"),ue.UK=new ue("en","GB"),ue.CANADA=new ue("en","CA"),ue.FRENCH=new ue("fr"),ue.FRANCE=new ue("fr","FR","fr"),ue.GERMAN=new ue("de"),ue.GERMANY=new ue("de","DE","de"),ue.KOREAN=new ue("ko"),ue.JAPANESE=new ue("ja","JP"),ue.JAPAN=new ue("ja","JP","ja"),ue.ITALIAN=new ue("it"),ue.ITALY=new ue("it","IT","it"),ue.CHINESE=new ue("zh"),ue.ROMANIAN=new ue("ro"),ue.SWEDISH=new ue("sv"),ue.SWEDEN=new ue("sv","SE","sv"),ue.HINDI=new ue("hi"),ue.RUSSIAN=new ue("ru")}var ce=t._.assert.requireNonNull,de=function(e){function n(){return e.apply(this,arguments)||this}return r(n,e),n.prototype.withLocale=function(e){return ce(e,"locale"),e.equals(this._locale)?this:new t.DateTimeFormatter(this._printerParser,e,this._decimalStyle,this._resolverStyle,this._resolverFields,this._chrono,this._zone)},n}(t.DateTimeFormatter);function fe(){var e={1:"Mon",2:"Tue",3:"Wed",4:"Thu",5:"Fri",6:"Sat",7:"Sun"},n={1:"Jan",2:"Feb",3:"Mar",4:"Apr",5:"May",6:"Jun",7:"Jul",8:"Aug",9:"Sep",10:"Oct",11:"Nov",12:"Dec"};de.RFC_1123_DATE_TIME=(new se).parseCaseInsensitive().parseLenient().optionalStart().appendText(t.ChronoField.DAY_OF_WEEK,e).appendLiteral(", ").optionalEnd().appendValue(t.ChronoField.DAY_OF_MONTH,2).appendLiteral(" ").appendText(t.ChronoField.MONTH_OF_YEAR,n).appendLiteral(" ").appendValue(t.ChronoField.YEAR,4).appendLiteral(" ").appendValue(t.ChronoField.HOUR_OF_DAY,2).appendLiteral(":").appendValue(t.ChronoField.MINUTE_OF_HOUR,2).optionalStart().appendLiteral(":").appendValue(t.ChronoField.SECOND_OF_MINUTE,2).optionalEnd().appendLiteral(" ").appendZoneId().toFormatter(t.ResolverStyle.SMART).withChronology(t.IsoChronology.INSTANCE)}
|
|
187
|
-
/*
|
|
188
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
189
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
190
|
-
*/var he=!1;function pe(){he||(he=!0,le(),te(),fe())}function me(e){Object.getOwnPropertyNames(se.prototype).forEach((function(t){"constructor"!==t&&(e.DateTimeFormatterBuilder.prototype[t]=se.prototype[t])})),Object.getOwnPropertyNames(de.prototype).forEach((function(t){"constructor"!==t&&(e.DateTimeFormatter.prototype[t]=de.prototype[t])})),e.DateTimeFormatter.RFC_1123_DATE_TIME=de.RFC_1123_DATE_TIME}
|
|
191
|
-
/*
|
|
192
|
-
* @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
|
|
193
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
194
|
-
*/pe(),t.use(me),e.Locale=ue,e.WeekFields=ee}(Da.exports,qe(Object.freeze({__proto__:null,ArithmeticException:or,ChronoField:Cr,ChronoLocalDate:jr,ChronoLocalDateTime:ua,ChronoUnit:wr,ChronoZonedDateTime:na,Clock:ha,DateTimeException:rr,DateTimeFormatter:Bi,DateTimeFormatterBuilder:Ri,DateTimeParseException:ir,DayOfWeek:kr,DecimalStyle:_i,Duration:Mr,IllegalArgumentException:sr,IllegalStateException:ur,Instant:fa,IsoChronology:ea,IsoFields:ni,LocalDate:sa,LocalDateTime:la,LocalTime:ca,Month:Rr,MonthDay:ji,NullPointerException:lr,OffsetDateTime:ia,OffsetTime:ta,ParsePosition:Fr,Period:Pr,ResolverStyle:Br,SignStyle:yi,Temporal:Vr,TemporalAccessor:Dr,TemporalAdjuster:qi,TemporalAdjusters:Ki,TemporalAmount:br,TemporalField:Or,TemporalQueries:Lr,TemporalQuery:$r,TemporalUnit:Sr,TextStyle:gi,UnsupportedTemporalTypeException:ar,ValueRange:Nr,Year:Wi,YearConstants:Tr,YearMonth:Yi,ZoneId:Yr,ZoneOffset:Jr,ZoneOffsetTransition:ya,ZoneRegion:Di,ZoneRules:Gr,ZoneRulesProvider:Li,ZonedDateTime:ra,_:Na,convert:Ma,nativeJs:Ta,use:La})));const $a={REQUIRED_OPTION:"An option is required"},xa={INVALID_SINGAPORE_NUMBER:"Invalid Singapore number",INVALID_INTERNATIONAL_NUMBER:"Invalid international number"},Ia={INVALID:"Invalid email address"},ka={MUST_BE_FUTURE:"Date must be in the future.",MUST_BE_PAST:"Date must be in the past.",CANNOT_BE_FUTURE:"Date cannot be in the future.",CANNOT_BE_PAST:"Date cannot be in the past.",MIN_DATE:e=>`Date cannot be earlier than ${e}`,MAX_DATE:e=>`Date cannot be later than ${e}`,INVALID:"Invalid date"},za={INVALID:"Invalid unit number"},Ra={INVALID:"Invalid input",UNSUPPORTED:"This component is not supported by the engine"};var Za,Pa,Fa;!function(e){e.formatDateTime=(e,t,n,r)=>{if(e)try{const i=Bi.ofPattern(t).withResolverStyle(Br.STRICT).withLocale(Da.exports.Locale.ENGLISH);switch(n){case"date":return sa.parse(e).format(i);case"time":return ca.parse(e).format(i);case"datetime":return la.parse(e).format(i);default:return r||Ra.INVALID}}catch(e){return r||Ra.INVALID}},e.toLocalDateOrTime=function(e,t,n){if(e)try{const r=Bi.ofPattern(t).withResolverStyle(Br.STRICT).withLocale(Da.exports.Locale.ENGLISH);switch(n){case"date":return sa.parse(e,r);case"time":return ca.parse(e,r);case"datetime":return la.parse(e,r);default:return}}catch(e){return}}}(Za||(Za={})),function(e){e.upsert=(e,t,n)=>{const r={...e};return r[t]=t in r?{...r[t],...n}:n,r},e.getNestedValueByKey=(t,n)=>{if(n in t)return{[n]:t[n]};for(const[r,i]of Object.entries(t))if("object"==typeof i)return e.getNestedValueByKey(i,n);return{}}}(Pa||(Pa={})),function(e){e.generateId=(e,t,n)=>{let r=e;return t&&(r+=`__${t}`),n&&(r+=`--${n}`),r},e.getError=e=>{try{return e()}catch(e){return e}}}(Fa||(Fa={}));const Ua=t.createContext({formValidationConfig:null,setFormValidationConfig:()=>null}),Ba=({children:n})=>{const[r,i]=t.useState(),a=t.useMemo((()=>({formValidationConfig:r,setFormValidationConfig:i})),[r]);return e.jsx(Ua.Provider,{value:a,children:n})};var Va,ja;try{Va=Map}catch(nA){}try{ja=Set}catch(nA){}function Ha(e,t,n){if(!e||"object"!=typeof e||"function"==typeof e)return e;if(e.nodeType&&"cloneNode"in e)return e.cloneNode(!0);if(e instanceof Date)return new Date(e.getTime());if(e instanceof RegExp)return new RegExp(e);if(Array.isArray(e))return e.map(Ya);if(Va&&e instanceof Va)return new Map(Array.from(e.entries()));if(ja&&e instanceof ja)return new Set(Array.from(e.values()));if(e instanceof Object){t.push(e);var r=Object.create(e);for(var i in n.push(r),e){var a=t.findIndex((function(t){return t===e[i]}));r[i]=a>-1?n[a]:Ha(e[i],t,n)}return r}return e}function Ya(e){return Ha(e,[],[])}const Ga=Object.prototype.toString,Wa=Error.prototype.toString,qa=RegExp.prototype.toString,Ka="undefined"!=typeof Symbol?Symbol.prototype.toString:()=>"",Ja=/^Symbol\((.*)\)(.*)$/;function Xa(e,t=!1){if(null==e||!0===e||!1===e)return""+e;const n=typeof e;if("number"===n)return function(e){return e!=+e?"NaN":0===e&&1/e<0?"-0":""+e}(e);if("string"===n)return t?`"${e}"`:e;if("function"===n)return"[Function "+(e.name||"anonymous")+"]";if("symbol"===n)return Ka.call(e).replace(Ja,"Symbol($1)");const r=Ga.call(e).slice(8,-1);return"Date"===r?isNaN(e.getTime())?""+e:e.toISOString(e):"Error"===r||e instanceof Error?"["+Wa.call(e)+"]":"RegExp"===r?qa.call(e):null}function Qa(e,t){let n=Xa(e,t);return null!==n?n:JSON.stringify(e,(function(e,n){let r=Xa(this[e],t);return null!==r?r:n}),2)}let eo={default:"${path} is invalid",required:"${path} is a required field",oneOf:"${path} must be one of the following values: ${values}",notOneOf:"${path} must not be one of the following values: ${values}",notType:({path:e,type:t,value:n,originalValue:r})=>{let i=null!=r&&r!==n,a=`${e} must be a \`${t}\` type, but the final value was: \`${Qa(n,!0)}\``+(i?` (cast from the value \`${Qa(r,!0)}\`).`:".");return null===n&&(a+='\n If "null" is intended as an empty value be sure to mark the schema as `.nullable()`'),a},defined:"${path} must be defined"},to={length:"${path} must be exactly ${length} characters",min:"${path} must be at least ${min} characters",max:"${path} must be at most ${max} characters",matches:'${path} must match the following: "${regex}"',email:"${path} must be a valid email",url:"${path} must be a valid URL",uuid:"${path} must be a valid UUID",trim:"${path} must be a trimmed string",lowercase:"${path} must be a lowercase string",uppercase:"${path} must be a upper case string"},no={min:"${path} must be greater than or equal to ${min}",max:"${path} must be less than or equal to ${max}",lessThan:"${path} must be less than ${less}",moreThan:"${path} must be greater than ${more}",positive:"${path} must be a positive number",negative:"${path} must be a negative number",integer:"${path} must be an integer"},ro={min:"${path} field must be later than ${min}",max:"${path} field must be at earlier than ${max}"},io={isValue:"${path} field must be ${value}"},ao={noUnknown:"${path} field has unspecified keys: ${unknown}"},oo={min:"${path} field must have at least ${min} items",max:"${path} field must have less than or equal to ${max} items",length:"${path} must have ${length} items"};var so=Object.assign(Object.create(null),{mixed:eo,string:to,number:no,date:ro,object:ao,array:oo,boolean:io}),uo=Object.prototype.hasOwnProperty;var lo=function(e,t){return null!=e&&uo.call(e,t)},co=gt,fo=dn;var ho=function(e){return"symbol"==typeof e||fo(e)&&"[object Symbol]"==co(e)},po=An,mo=ho,_o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,yo=/^\w*$/;var go=function(e,t){if(po(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!mo(e))||(yo.test(e)||!_o.test(e)||null!=t&&e in Object(t))},vo=Bt(Object,"create"),Ao=vo;var Eo=function(){this.__data__=Ao?Ao(null):{},this.size=0};var bo=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},So=vo,Mo=Object.prototype.hasOwnProperty;var To=function(e){var t=this.__data__;if(So){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return Mo.call(t,e)?t[e]:void 0},wo=vo,Oo=Object.prototype.hasOwnProperty;var No=vo;var Co=Eo,Lo=bo,Do=To,$o=function(e){var t=this.__data__;return wo?void 0!==t[e]:Oo.call(t,e)},xo=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=No&&void 0===t?"__lodash_hash_undefined__":t,this};function Io(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}Io.prototype.clear=Co,Io.prototype.delete=Lo,Io.prototype.get=Do,Io.prototype.has=$o,Io.prototype.set=xo;var ko=Io;var zo=function(){this.__data__=[],this.size=0};var Ro=function(e,t){return e===t||e!=e&&t!=t},Zo=Ro;var Po=function(e,t){for(var n=e.length;n--;)if(Zo(e[n][0],t))return n;return-1},Fo=Po,Uo=Array.prototype.splice;var Bo=Po;var Vo=Po;var jo=Po;var Ho=zo,Yo=function(e){var t=this.__data__,n=Fo(t,e);return!(n<0)&&(n==t.length-1?t.pop():Uo.call(t,n,1),--this.size,!0)},Go=function(e){var t=this.__data__,n=Bo(t,e);return n<0?void 0:t[n][1]},Wo=function(e){return Vo(this.__data__,e)>-1},qo=function(e,t){var n=this.__data__,r=jo(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};function Ko(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}Ko.prototype.clear=Ho,Ko.prototype.delete=Yo,Ko.prototype.get=Go,Ko.prototype.has=Wo,Ko.prototype.set=qo;var Jo=Ko,Xo=ko,Qo=Jo,es=jt;var ts=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e};var ns=function(e,t){var n=e.__data__;return ts(t)?n["string"==typeof t?"string":"hash"]:n.map},rs=ns;var is=function(e){var t=rs(this,e).delete(e);return this.size-=t?1:0,t},as=ns;var os=ns;var ss=ns;var us=function(){this.size=0,this.__data__={hash:new Xo,map:new(es||Qo),string:new Xo}},ls=is,cs=function(e){return as(this,e).get(e)},ds=function(e){return os(this,e).has(e)},fs=function(e,t){var n=ss(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};function hs(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}hs.prototype.clear=us,hs.prototype.delete=ls,hs.prototype.get=cs,hs.prototype.has=ds,hs.prototype.set=fs;var ps=hs,ms=ps;function _s(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o)||a,o};return n.cache=new(_s.Cache||ms),n}_s.Cache=ms;var ys=_s;var gs=function(e){var t=ys(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t},vs=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,As=/\\(\\)?/g,Es=gs((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(vs,(function(e,n,r,i){t.push(r?i.replace(As,"$1"):n||e)})),t})),bs=Es;var Ss=function(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i},Ms=Ss,Ts=An,ws=ho,Os=st?st.prototype:void 0,Ns=Os?Os.toString:void 0;var Cs=function e(t){if("string"==typeof t)return t;if(Ts(t))return Ms(t,e)+"";if(ws(t))return Ns?Ns.call(t):"";var n=t+"";return"0"==n&&1/t==-Infinity?"-0":n},Ls=Cs;var Ds=function(e){return null==e?"":Ls(e)},$s=An,xs=go,Is=bs,ks=Ds;var zs=function(e,t){return $s(e)?e:xs(e,t)?[e]:Is(ks(e))},Rs=/^(?:0|[1-9]\d*)$/;var Zs=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&Rs.test(e))&&e>-1&&e%1==0&&e<t},Ps=ho;var Fs=function(e){if("string"==typeof e||Ps(e))return e;var t=e+"";return"0"==t&&1/e==-Infinity?"-0":t},Us=zs,Bs=vn,Vs=An,js=Zs,Hs=En,Ys=Fs;var Gs=function(e,t,n){for(var r=-1,i=(t=Us(t,e)).length,a=!1;++r<i;){var o=Ys(t[r]);if(!(a=null!=e&&n(e,o)))break;e=e[o]}return a||++r!=i?a:!!(i=null==e?0:e.length)&&Hs(i)&&js(o,i)&&(Vs(e)||Bs(e))},Ws=lo,qs=Gs;var Ks=function(e,t){return null!=e&&qs(e,t,Ws)};const Js=e=>e&&e.__isYupSchema__;class Xs{constructor(e,t){if(this.fn=void 0,this.refs=e,this.refs=e,"function"==typeof t)return void(this.fn=t);if(!Ks(t,"is"))throw new TypeError("`is:` is required for `when()` conditions");if(!t.then&&!t.otherwise)throw new TypeError("either `then:` or `otherwise:` is required for `when()` conditions");let{is:n,then:r,otherwise:i}=t,a="function"==typeof n?n:(...e)=>e.every((e=>e===n));this.fn=function(...e){let t=e.pop(),n=e.pop(),o=a(...e)?r:i;if(o)return"function"==typeof o?o(n):n.concat(o.resolve(t))}}resolve(e,t){let n=this.refs.map((e=>e.getValue(null==t?void 0:t.value,null==t?void 0:t.parent,null==t?void 0:t.context))),r=this.fn.apply(e,n.concat(e,t));if(void 0===r||r===e)return e;if(!Js(r))throw new TypeError("conditions must return a schema object");return r.resolve(t)}}function Qs(e){return null==e?[]:[].concat(e)}function eu(){return eu=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},eu.apply(this,arguments)}let tu=/\$\{\s*(\w+)\s*\}/g;class nu extends Error{static formatError(e,t){const n=t.label||t.path||"this";return n!==t.path&&(t=eu({},t,{path:n})),"string"==typeof e?e.replace(tu,((e,n)=>Qa(t[n]))):"function"==typeof e?e(t):e}static isError(e){return e&&"ValidationError"===e.name}constructor(e,t,n,r){super(),this.value=void 0,this.path=void 0,this.type=void 0,this.errors=void 0,this.params=void 0,this.inner=void 0,this.name="ValidationError",this.value=t,this.path=n,this.type=r,this.errors=[],this.inner=[],Qs(e).forEach((e=>{nu.isError(e)?(this.errors.push(...e.errors),this.inner=this.inner.concat(e.inner.length?e.inner:e)):this.errors.push(e)})),this.message=this.errors.length>1?`${this.errors.length} errors occurred`:this.errors[0],Error.captureStackTrace&&Error.captureStackTrace(this,nu)}}function ru(e,t){let{endEarly:n,tests:r,args:i,value:a,errors:o,sort:s,path:u}=e,l=(e=>{let t=!1;return(...n)=>{t||(t=!0,e(...n))}})(t),c=r.length;const d=[];if(o=o||[],!c)return o.length?l(new nu(o,a,u)):l(null,a);for(let e=0;e<r.length;e++){(0,r[e])(i,(function(e){if(e){if(!nu.isError(e))return l(e,a);if(n)return e.value=a,l(e,a);d.push(e)}if(--c<=0){if(d.length&&(s&&d.sort(s),o.length&&d.push(...o),o=d),o.length)return void l(new nu(o,a,u),a);l(null,a)}}))}}var iu=Bt,au=function(){try{var e=iu(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),ou=au;var su=function(e,t,n){"__proto__"==t&&ou?ou(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n};var uu=function(e){return function(t,n,r){for(var i=-1,a=Object(t),o=r(t),s=o.length;s--;){var u=o[e?s:++i];if(!1===n(a[u],u,a))break}return t}},lu=uu();var cu=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r},du=cu,fu=vn,hu=An,pu=Tn.exports,mu=Zs,_u=Zn,yu=Object.prototype.hasOwnProperty;var gu=function(e,t){var n=hu(e),r=!n&&fu(e),i=!n&&!r&&pu(e),a=!n&&!r&&!i&&_u(e),o=n||r||i||a,s=o?du(e.length,String):[],u=s.length;for(var l in e)!t&&!yu.call(e,l)||o&&("length"==l||i&&("offset"==l||"parent"==l)||a&&("buffer"==l||"byteLength"==l||"byteOffset"==l)||mu(l,u))||s.push(l);return s},vu=gu,Au=nt,Eu=Mn;var bu=function(e){return Eu(e)?vu(e):Au(e)},Su=lu,Mu=bu;var Tu=function(e,t){return e&&Su(e,t,Mu)},wu=Jo;var Ou=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n};var Nu=Jo,Cu=jt,Lu=ps;var Du=Jo,$u=function(){this.__data__=new wu,this.size=0},xu=Ou,Iu=function(e){return this.__data__.get(e)},ku=function(e){return this.__data__.has(e)},zu=function(e,t){var n=this.__data__;if(n instanceof Nu){var r=n.__data__;if(!Cu||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Lu(r)}return n.set(e,t),this.size=n.size,this};function Ru(e){var t=this.__data__=new Du(e);this.size=t.size}Ru.prototype.clear=$u,Ru.prototype.delete=xu,Ru.prototype.get=Iu,Ru.prototype.has=ku,Ru.prototype.set=zu;var Zu=Ru;var Pu=ps,Fu=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Uu=function(e){return this.__data__.has(e)};function Bu(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Pu;++t<n;)this.add(e[t])}Bu.prototype.add=Bu.prototype.push=Fu,Bu.prototype.has=Uu;var Vu=Bu;var ju=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1};var Hu=function(e,t){return e.has(t)},Yu=Vu,Gu=ju,Wu=Hu;var qu=function(e,t,n,r,i,a){var o=1&n,s=e.length,u=t.length;if(s!=u&&!(o&&u>s))return!1;var l=a.get(e),c=a.get(t);if(l&&c)return l==t&&c==e;var d=-1,f=!0,h=2&n?new Yu:void 0;for(a.set(e,t),a.set(t,e);++d<s;){var p=e[d],m=t[d];if(r)var _=o?r(m,p,d,t,e,a):r(p,m,d,e,t,a);if(void 0!==_){if(_)continue;f=!1;break}if(h){if(!Gu(t,(function(e,t){if(!Wu(h,t)&&(p===e||i(p,e,n,r,a)))return h.push(t)}))){f=!1;break}}else if(p!==m&&!i(p,m,n,r,a)){f=!1;break}}return a.delete(e),a.delete(t),f};var Ku=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n};var Ju=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n},Xu=ot.Uint8Array,Qu=Ro,el=qu,tl=Ku,nl=Ju,rl=st?st.prototype:void 0,il=rl?rl.valueOf:void 0;var al=function(e,t,n,r,i,a,o){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!a(new Xu(e),new Xu(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return Qu(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var s=tl;case"[object Set]":var u=1&r;if(s||(s=nl),e.size!=t.size&&!u)return!1;var l=o.get(e);if(l)return l==t;r|=2,o.set(e,t);var c=el(s(e),s(t),r,i,a,o);return o.delete(e),c;case"[object Symbol]":if(il)return il.call(e)==il.call(t)}return!1};var ol=function(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e},sl=ol,ul=An;var ll=function(e,t,n){var r=t(e);return ul(e)?r:sl(r,n(e))};var cl=function(e,t){for(var n=-1,r=null==e?0:e.length,i=0,a=[];++n<r;){var o=e[n];t(o,n,e)&&(a[i++]=o)}return a};var dl=cl,fl=function(){return[]},hl=Object.prototype.propertyIsEnumerable,pl=Object.getOwnPropertySymbols,ml=pl?function(e){return null==e?[]:(e=Object(e),dl(pl(e),(function(t){return hl.call(e,t)})))}:fl,_l=ll,yl=ml,gl=bu;var vl=function(e){return _l(e,gl,yl)},Al=vl,El=Object.prototype.hasOwnProperty;var bl=function(e,t,n,r,i,a){var o=1&n,s=Al(e),u=s.length;if(u!=Al(t).length&&!o)return!1;for(var l=u;l--;){var c=s[l];if(!(o?c in t:El.call(t,c)))return!1}var d=a.get(e),f=a.get(t);if(d&&f)return d==t&&f==e;var h=!0;a.set(e,t),a.set(t,e);for(var p=o;++l<u;){var m=e[c=s[l]],_=t[c];if(r)var y=o?r(_,m,c,t,e,a):r(m,_,c,e,t,a);if(!(void 0===y?m===_||i(m,_,n,r,a):y)){h=!1;break}p||(p="constructor"==c)}if(h&&!p){var g=e.constructor,v=t.constructor;g==v||!("constructor"in e)||!("constructor"in t)||"function"==typeof g&&g instanceof g&&"function"==typeof v&&v instanceof v||(h=!1)}return a.delete(e),a.delete(t),h},Sl=Zu,Ml=qu,Tl=al,wl=bl,Ol=cn,Nl=An,Cl=Tn.exports,Ll=Zn,Dl="[object Arguments]",$l="[object Array]",xl="[object Object]",Il=Object.prototype.hasOwnProperty;var kl=function(e,t,n,r,i,a){var o=Nl(e),s=Nl(t),u=o?$l:Ol(e),l=s?$l:Ol(t),c=(u=u==Dl?xl:u)==xl,d=(l=l==Dl?xl:l)==xl,f=u==l;if(f&&Cl(e)){if(!Cl(t))return!1;o=!0,c=!1}if(f&&!c)return a||(a=new Sl),o||Ll(e)?Ml(e,t,n,r,i,a):Tl(e,t,u,n,r,i,a);if(!(1&n)){var h=c&&Il.call(e,"__wrapped__"),p=d&&Il.call(t,"__wrapped__");if(h||p){var m=h?e.value():e,_=p?t.value():t;return a||(a=new Sl),i(m,_,n,r,a)}}return!!f&&(a||(a=new Sl),wl(e,t,n,r,i,a))},zl=kl,Rl=dn;var Zl=function e(t,n,r,i,a){return t===n||(null==t||null==n||!Rl(t)&&!Rl(n)?t!=t&&n!=n:zl(t,n,r,i,e,a))},Pl=Zu,Fl=Zl;var Ul=function(e,t,n,r){var i=n.length,a=i,o=!r;if(null==e)return!a;for(e=Object(e);i--;){var s=n[i];if(o&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++i<a;){var u=(s=n[i])[0],l=e[u],c=s[1];if(o&&s[2]){if(void 0===l&&!(u in e))return!1}else{var d=new Pl;if(r)var f=r(l,c,u,e,t,d);if(!(void 0===f?Fl(c,l,3,r,d):f))return!1}}return!0},Bl=vt;var Vl=function(e){return e==e&&!Bl(e)},jl=Vl,Hl=bu;var Yl=function(e){for(var t=Hl(e),n=t.length;n--;){var r=t[n],i=e[r];t[n]=[r,i,jl(i)]}return t};var Gl=function(e,t){return function(n){return null!=n&&(n[e]===t&&(void 0!==t||e in Object(n)))}},Wl=Ul,ql=Yl,Kl=Gl;var Jl=function(e){var t=ql(e);return 1==t.length&&t[0][2]?Kl(t[0][0],t[0][1]):function(n){return n===e||Wl(n,e,t)}},Xl=zs,Ql=Fs;var ec=function(e,t){for(var n=0,r=(t=Xl(t,e)).length;null!=e&&n<r;)e=e[Ql(t[n++])];return n&&n==r?e:void 0},tc=ec;var nc=function(e,t,n){var r=null==e?void 0:tc(e,t);return void 0===r?n:r};var rc=function(e,t){return null!=e&&t in Object(e)},ic=rc,ac=Gs;var oc=function(e,t){return null!=e&&ac(e,t,ic)},sc=Zl,uc=nc,lc=oc,cc=go,dc=Vl,fc=Gl,hc=Fs;var pc=function(e,t){return cc(e)&&dc(t)?fc(hc(e),t):function(n){var r=uc(n,e);return void 0===r&&r===t?lc(n,e):sc(t,r,3)}};var mc=function(e){return e};var _c=function(e){return function(t){return null==t?void 0:t[e]}},yc=ec;var gc=function(e){return function(t){return yc(t,e)}},vc=_c,Ac=gc,Ec=go,bc=Fs;var Sc=Jl,Mc=pc,Tc=mc,wc=An,Oc=function(e){return Ec(e)?vc(bc(e)):Ac(e)};var Nc=function(e){return"function"==typeof e?e:null==e?Tc:"object"==typeof e?wc(e)?Mc(e[0],e[1]):Sc(e):Oc(e)},Cc=su,Lc=Tu,Dc=Nc;var $c=function(e,t){var n={};return t=Dc(t),Lc(e,(function(e,r,i){Cc(n,r,t(e,r,i))})),n};function xc(e){this._maxSize=e,this.clear()}xc.prototype.clear=function(){this._size=0,this._values=Object.create(null)},xc.prototype.get=function(e){return this._values[e]},xc.prototype.set=function(e,t){return this._size>=this._maxSize&&this.clear(),e in this._values||this._size++,this._values[e]=t};var Ic=/[^.^\]^[]+|(?=\[\]|\.\.)/g,kc=/^\d+$/,zc=/^\d/,Rc=/[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g,Zc=/^\s*(['"]?)(.*?)(\1)\s*$/,Pc=new xc(512),Fc=new xc(512),Uc=new xc(512),Bc={Cache:xc,split:jc,normalizePath:Vc,setter:function(e){var t=Vc(e);return Fc.get(e)||Fc.set(e,(function(e,n){for(var r=0,i=t.length,a=e;r<i-1;){var o=t[r];if("__proto__"===o||"constructor"===o||"prototype"===o)return e;a=a[t[r++]]}a[t[r]]=n}))},getter:function(e,t){var n=Vc(e);return Uc.get(e)||Uc.set(e,(function(e){for(var r=0,i=n.length;r<i;){if(null==e&&t)return;e=e[n[r++]]}return e}))},join:function(e){return e.reduce((function(e,t){return e+(Hc(t)||kc.test(t)?"["+t+"]":(e?".":"")+t)}),"")},forEach:function(e,t,n){!function(e,t,n){var r,i,a,o,s=e.length;for(i=0;i<s;i++)(r=e[i])&&(Yc(r)&&(r='"'+r+'"'),a=!(o=Hc(r))&&/^\d+$/.test(r),t.call(n,r,o,a,i,e))}(Array.isArray(e)?e:jc(e),t,n)}};function Vc(e){return Pc.get(e)||Pc.set(e,jc(e).map((function(e){return e.replace(Zc,"$2")})))}function jc(e){return e.match(Ic)||[""]}function Hc(e){return"string"==typeof e&&e&&-1!==["'",'"'].indexOf(e.charAt(0))}function Yc(e){return!Hc(e)&&(function(e){return e.match(zc)&&!e.match(kc)}(e)||function(e){return Rc.test(e)}(e))}const Gc="$",Wc=".";class qc{constructor(e,t={}){if(this.key=void 0,this.isContext=void 0,this.isValue=void 0,this.isSibling=void 0,this.path=void 0,this.getter=void 0,this.map=void 0,"string"!=typeof e)throw new TypeError("ref must be a string, got: "+e);if(this.key=e.trim(),""===e)throw new TypeError("ref must be a non-empty string");this.isContext=this.key[0]===Gc,this.isValue=this.key[0]===Wc,this.isSibling=!this.isContext&&!this.isValue;let n=this.isContext?Gc:this.isValue?Wc:"";this.path=this.key.slice(n.length),this.getter=this.path&&Bc.getter(this.path,!0),this.map=t.map}getValue(e,t,n){let r=this.isContext?n:this.isValue?e:t;return this.getter&&(r=this.getter(r||{})),this.map&&(r=this.map(r)),r}cast(e,t){return this.getValue(e,null==t?void 0:t.parent,null==t?void 0:t.context)}resolve(){return this}describe(){return{type:"ref",key:this.key}}toString(){return`Ref(${this.key})`}static isRef(e){return e&&e.__isYupRef}}function Kc(){return Kc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Kc.apply(this,arguments)}function Jc(e){function t(t,n){let{value:r,path:i="",label:a,options:o,originalValue:s,sync:u}=t,l=function(e,t){if(null==e)return{};var n,r,i={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}(t,["value","path","label","options","originalValue","sync"]);const{name:c,test:d,params:f,message:h}=e;let{parent:p,context:m}=o;function _(e){return qc.isRef(e)?e.getValue(r,p,m):e}function y(e={}){const t=$c(Kc({value:r,originalValue:s,label:a,path:e.path||i},f,e.params),_),n=new nu(nu.formatError(e.message||h,t),r,t.path,e.type||c);return n.params=t,n}let g,v=Kc({path:i,parent:p,type:c,createError:y,resolve:_,options:o,originalValue:s},l);if(u){try{var A;if(g=d.call(v,r,v),"function"==typeof(null==(A=g)?void 0:A.then))throw new Error(`Validation test of type: "${v.type}" returned a Promise during a synchronous validate. This test will finish after the validate call has returned`)}catch(e){return void n(e)}nu.isError(g)?n(g):g?n(null,g):n(y())}else try{Promise.resolve(d.call(v,r,v)).then((e=>{nu.isError(e)?n(e):e?n(null,e):n(y())})).catch(n)}catch(e){n(e)}}return t.OPTIONS=e,t}qc.prototype.__isYupRef=!0;function Xc(e,t,n,r=n){let i,a,o;return t?(Bc.forEach(t,((s,u,l)=>{let c=u?(e=>e.substr(0,e.length-1).substr(1))(s):s;if((e=e.resolve({context:r,parent:i,value:n})).innerType){let r=l?parseInt(c,10):0;if(n&&r>=n.length)throw new Error(`Yup.reach cannot resolve an array item at index: ${s}, in the path: ${t}. because there is no value at that index. `);i=n,n=n&&n[r],e=e.innerType}if(!l){if(!e.fields||!e.fields[c])throw new Error(`The schema does not contain the path: ${t}. (failed at: ${o} which is a type: "${e._type}")`);i=n,n=n&&n[c],e=e.fields[c]}a=c,o=u?"["+s+"]":"."+s})),{schema:e,parent:i,parentPath:a}):{parent:i,parentPath:t,schema:e}}class Qc{constructor(){this.list=void 0,this.refs=void 0,this.list=new Set,this.refs=new Map}get size(){return this.list.size+this.refs.size}describe(){const e=[];for(const t of this.list)e.push(t);for(const[,t]of this.refs)e.push(t.describe());return e}toArray(){return Array.from(this.list).concat(Array.from(this.refs.values()))}resolveAll(e){return this.toArray().reduce(((t,n)=>t.concat(qc.isRef(n)?e(n):n)),[])}add(e){qc.isRef(e)?this.refs.set(e.key,e):this.list.add(e)}delete(e){qc.isRef(e)?this.refs.delete(e.key):this.list.delete(e)}clone(){const e=new Qc;return e.list=new Set(this.list),e.refs=new Map(this.refs),e}merge(e,t){const n=this.clone();return e.list.forEach((e=>n.add(e))),e.refs.forEach((e=>n.add(e))),t.list.forEach((e=>n.delete(e))),t.refs.forEach((e=>n.delete(e))),n}}function ed(){return ed=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ed.apply(this,arguments)}class td{constructor(e){this.deps=[],this.tests=void 0,this.transforms=void 0,this.conditions=[],this._mutate=void 0,this._typeError=void 0,this._whitelist=new Qc,this._blacklist=new Qc,this.exclusiveTests=Object.create(null),this.spec=void 0,this.tests=[],this.transforms=[],this.withMutation((()=>{this.typeError(eo.notType)})),this.type=(null==e?void 0:e.type)||"mixed",this.spec=ed({strip:!1,strict:!1,abortEarly:!0,recursive:!0,nullable:!1,presence:"optional"},null==e?void 0:e.spec)}get _type(){return this.type}_typeCheck(e){return!0}clone(e){if(this._mutate)return e&&Object.assign(this.spec,e),this;const t=Object.create(Object.getPrototypeOf(this));return t.type=this.type,t._typeError=this._typeError,t._whitelistError=this._whitelistError,t._blacklistError=this._blacklistError,t._whitelist=this._whitelist.clone(),t._blacklist=this._blacklist.clone(),t.exclusiveTests=ed({},this.exclusiveTests),t.deps=[...this.deps],t.conditions=[...this.conditions],t.tests=[...this.tests],t.transforms=[...this.transforms],t.spec=Ya(ed({},this.spec,e)),t}label(e){let t=this.clone();return t.spec.label=e,t}meta(...e){if(0===e.length)return this.spec.meta;let t=this.clone();return t.spec.meta=Object.assign(t.spec.meta||{},e[0]),t}withMutation(e){let t=this._mutate;this._mutate=!0;let n=e(this);return this._mutate=t,n}concat(e){if(!e||e===this)return this;if(e.type!==this.type&&"mixed"!==this.type)throw new TypeError(`You cannot \`concat()\` schema's of different types: ${this.type} and ${e.type}`);let t=this,n=e.clone();const r=ed({},t.spec,n.spec);return n.spec=r,n._typeError||(n._typeError=t._typeError),n._whitelistError||(n._whitelistError=t._whitelistError),n._blacklistError||(n._blacklistError=t._blacklistError),n._whitelist=t._whitelist.merge(e._whitelist,e._blacklist),n._blacklist=t._blacklist.merge(e._blacklist,e._whitelist),n.tests=t.tests,n.exclusiveTests=t.exclusiveTests,n.withMutation((t=>{e.tests.forEach((e=>{t.test(e.OPTIONS)}))})),n.transforms=[...t.transforms,...n.transforms],n}isType(e){return!(!this.spec.nullable||null!==e)||this._typeCheck(e)}resolve(e){let t=this;if(t.conditions.length){let n=t.conditions;t=t.clone(),t.conditions=[],t=n.reduce(((t,n)=>n.resolve(t,e)),t),t=t.resolve(e)}return t}cast(e,t={}){let n=this.resolve(ed({value:e},t)),r=n._cast(e,t);if(void 0!==e&&!1!==t.assert&&!0!==n.isType(r)){let i=Qa(e),a=Qa(r);throw new TypeError(`The value of ${t.path||"field"} could not be cast to a value that satisfies the schema type: "${n._type}". \n\nattempted value: ${i} \n`+(a!==i?`result of cast: ${a}`:""))}return r}_cast(e,t){let n=void 0===e?e:this.transforms.reduce(((t,n)=>n.call(this,t,e,this)),e);return void 0===n&&(n=this.getDefault()),n}_validate(e,t={},n){let{sync:r,path:i,from:a=[],originalValue:o=e,strict:s=this.spec.strict,abortEarly:u=this.spec.abortEarly}=t,l=e;s||(l=this._cast(l,ed({assert:!1},t)));let c={value:l,path:i,options:t,originalValue:o,schema:this,label:this.spec.label,sync:r,from:a},d=[];this._typeError&&d.push(this._typeError);let f=[];this._whitelistError&&f.push(this._whitelistError),this._blacklistError&&f.push(this._blacklistError),ru({args:c,value:l,path:i,sync:r,tests:d,endEarly:u},(e=>{e?n(e,l):ru({tests:this.tests.concat(f),args:c,path:i,sync:r,value:l,endEarly:u},n)}))}validate(e,t,n){let r=this.resolve(ed({},t,{value:e}));return"function"==typeof n?r._validate(e,t,n):new Promise(((n,i)=>r._validate(e,t,((e,t)=>{e?i(e):n(t)}))))}validateSync(e,t){let n;return this.resolve(ed({},t,{value:e}))._validate(e,ed({},t,{sync:!0}),((e,t)=>{if(e)throw e;n=t})),n}isValid(e,t){return this.validate(e,t).then((()=>!0),(e=>{if(nu.isError(e))return!1;throw e}))}isValidSync(e,t){try{return this.validateSync(e,t),!0}catch(e){if(nu.isError(e))return!1;throw e}}_getDefault(){let e=this.spec.default;return null==e?e:"function"==typeof e?e.call(this):Ya(e)}getDefault(e){return this.resolve(e||{})._getDefault()}default(e){if(0===arguments.length)return this._getDefault();return this.clone({default:e})}strict(e=!0){let t=this.clone();return t.spec.strict=e,t}_isPresent(e){return null!=e}defined(e=eo.defined){return this.test({message:e,name:"defined",exclusive:!0,test:e=>void 0!==e})}required(e=eo.required){return this.clone({presence:"required"}).withMutation((t=>t.test({message:e,name:"required",exclusive:!0,test(e){return this.schema._isPresent(e)}})))}notRequired(){let e=this.clone({presence:"optional"});return e.tests=e.tests.filter((e=>"required"!==e.OPTIONS.name)),e}nullable(e=!0){return this.clone({nullable:!1!==e})}transform(e){let t=this.clone();return t.transforms.push(e),t}test(...e){let t;if(t=1===e.length?"function"==typeof e[0]?{test:e[0]}:e[0]:2===e.length?{name:e[0],test:e[1]}:{name:e[0],message:e[1],test:e[2]},void 0===t.message&&(t.message=eo.default),"function"!=typeof t.test)throw new TypeError("`test` is a required parameters");let n=this.clone(),r=Jc(t),i=t.exclusive||t.name&&!0===n.exclusiveTests[t.name];if(t.exclusive&&!t.name)throw new TypeError("Exclusive tests must provide a unique `name` identifying the test");return t.name&&(n.exclusiveTests[t.name]=!!t.exclusive),n.tests=n.tests.filter((e=>{if(e.OPTIONS.name===t.name){if(i)return!1;if(e.OPTIONS.test===r.OPTIONS.test)return!1}return!0})),n.tests.push(r),n}when(e,t){Array.isArray(e)||"string"==typeof e||(t=e,e=".");let n=this.clone(),r=Qs(e).map((e=>new qc(e)));return r.forEach((e=>{e.isSibling&&n.deps.push(e.key)})),n.conditions.push(new Xs(r,t)),n}typeError(e){let t=this.clone();return t._typeError=Jc({message:e,name:"typeError",test(e){return!(void 0!==e&&!this.schema.isType(e))||this.createError({params:{type:this.schema._type}})}}),t}oneOf(e,t=eo.oneOf){let n=this.clone();return e.forEach((e=>{n._whitelist.add(e),n._blacklist.delete(e)})),n._whitelistError=Jc({message:t,name:"oneOf",test(e){if(void 0===e)return!0;let t=this.schema._whitelist,n=t.resolveAll(this.resolve);return!!n.includes(e)||this.createError({params:{values:t.toArray().join(", "),resolved:n}})}}),n}notOneOf(e,t=eo.notOneOf){let n=this.clone();return e.forEach((e=>{n._blacklist.add(e),n._whitelist.delete(e)})),n._blacklistError=Jc({message:t,name:"notOneOf",test(e){let t=this.schema._blacklist,n=t.resolveAll(this.resolve);return!n.includes(e)||this.createError({params:{values:t.toArray().join(", "),resolved:n}})}}),n}strip(e=!0){let t=this.clone();return t.spec.strip=e,t}describe(){const e=this.clone(),{label:t,meta:n}=e.spec,r={meta:n,label:t,type:e.type,oneOf:e._whitelist.describe(),notOneOf:e._blacklist.describe(),tests:e.tests.map((e=>({name:e.OPTIONS.name,params:e.OPTIONS.params}))).filter(((e,t,n)=>n.findIndex((t=>t.name===e.name))===t))};return r}}td.prototype.__isYupSchema__=!0;for(const e of["validate","validateSync"])td.prototype[`${e}At`]=function(t,n,r={}){const{parent:i,parentPath:a,schema:o}=Xc(this,t,n,r.context);return o[e](i&&i[a],ed({},r,{parent:i,path:t}))};for(const e of["equals","is"])td.prototype[e]=td.prototype.oneOf;for(const e of["not","nope"])td.prototype[e]=td.prototype.notOneOf;td.prototype.optional=td.prototype.notRequired;const nd=td;function rd(){return new nd}rd.prototype=nd.prototype;const id=e=>null==e;function ad(){return new od}class od extends td{constructor(){super({type:"boolean"}),this.withMutation((()=>{this.transform((function(e){if(!this.isType(e)){if(/^(true|1)$/i.test(String(e)))return!0;if(/^(false|0)$/i.test(String(e)))return!1}return e}))}))}_typeCheck(e){return e instanceof Boolean&&(e=e.valueOf()),"boolean"==typeof e}isTrue(e=io.isValue){return this.test({message:e,name:"is-value",exclusive:!0,params:{value:"true"},test:e=>id(e)||!0===e})}isFalse(e=io.isValue){return this.test({message:e,name:"is-value",exclusive:!0,params:{value:"false"},test:e=>id(e)||!1===e})}}ad.prototype=od.prototype;let sd=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i,ud=/^((https?|ftp):)?\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i,ld=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i,cd=e=>id(e)||e===e.trim(),dd={}.toString();function fd(){return new hd}class hd extends td{constructor(){super({type:"string"}),this.withMutation((()=>{this.transform((function(e){if(this.isType(e))return e;if(Array.isArray(e))return e;const t=null!=e&&e.toString?e.toString():e;return t===dd?e:t}))}))}_typeCheck(e){return e instanceof String&&(e=e.valueOf()),"string"==typeof e}_isPresent(e){return super._isPresent(e)&&!!e.length}length(e,t=to.length){return this.test({message:t,name:"length",exclusive:!0,params:{length:e},test(t){return id(t)||t.length===this.resolve(e)}})}min(e,t=to.min){return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(t){return id(t)||t.length>=this.resolve(e)}})}max(e,t=to.max){return this.test({name:"max",exclusive:!0,message:t,params:{max:e},test(t){return id(t)||t.length<=this.resolve(e)}})}matches(e,t){let n,r,i=!1;return t&&("object"==typeof t?({excludeEmptyString:i=!1,message:n,name:r}=t):n=t),this.test({name:r||"matches",message:n||to.matches,params:{regex:e},test:t=>id(t)||""===t&&i||-1!==t.search(e)})}email(e=to.email){return this.matches(sd,{name:"email",message:e,excludeEmptyString:!0})}url(e=to.url){return this.matches(ud,{name:"url",message:e,excludeEmptyString:!0})}uuid(e=to.uuid){return this.matches(ld,{name:"uuid",message:e,excludeEmptyString:!1})}ensure(){return this.default("").transform((e=>null===e?"":e))}trim(e=to.trim){return this.transform((e=>null!=e?e.trim():e)).test({message:e,name:"trim",test:cd})}lowercase(e=to.lowercase){return this.transform((e=>id(e)?e:e.toLowerCase())).test({message:e,name:"string_case",exclusive:!0,test:e=>id(e)||e===e.toLowerCase()})}uppercase(e=to.uppercase){return this.transform((e=>id(e)?e:e.toUpperCase())).test({message:e,name:"string_case",exclusive:!0,test:e=>id(e)||e===e.toUpperCase()})}}fd.prototype=hd.prototype;function pd(){return new md}class md extends td{constructor(){super({type:"number"}),this.withMutation((()=>{this.transform((function(e){let t=e;if("string"==typeof t){if(t=t.replace(/\s/g,""),""===t)return NaN;t=+t}return this.isType(t)?t:parseFloat(t)}))}))}_typeCheck(e){return e instanceof Number&&(e=e.valueOf()),"number"==typeof e&&!(e=>e!=+e)(e)}min(e,t=no.min){return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(t){return id(t)||t>=this.resolve(e)}})}max(e,t=no.max){return this.test({message:t,name:"max",exclusive:!0,params:{max:e},test(t){return id(t)||t<=this.resolve(e)}})}lessThan(e,t=no.lessThan){return this.test({message:t,name:"max",exclusive:!0,params:{less:e},test(t){return id(t)||t<this.resolve(e)}})}moreThan(e,t=no.moreThan){return this.test({message:t,name:"min",exclusive:!0,params:{more:e},test(t){return id(t)||t>this.resolve(e)}})}positive(e=no.positive){return this.moreThan(0,e)}negative(e=no.negative){return this.lessThan(0,e)}integer(e=no.integer){return this.test({name:"integer",message:e,test:e=>id(e)||Number.isInteger(e)})}truncate(){return this.transform((e=>id(e)?e:0|e))}round(e){var t;let n=["ceil","floor","round","trunc"];if("trunc"===(e=(null==(t=e)?void 0:t.toLowerCase())||"round"))return this.truncate();if(-1===n.indexOf(e.toLowerCase()))throw new TypeError("Only valid options for round() are: "+n.join(", "));return this.transform((t=>id(t)?t:Math[e](t)))}}pd.prototype=md.prototype;var _d=/^(\d{4}|[+\-]\d{6})(?:-?(\d{2})(?:-?(\d{2}))?)?(?:[ T]?(\d{2}):?(\d{2})(?::?(\d{2})(?:[,\.](\d{1,}))?)?(?:(Z)|([+\-])(\d{2})(?::?(\d{2}))?)?)?$/;let yd=new Date("");function gd(){return new vd}class vd extends td{constructor(){super({type:"date"}),this.withMutation((()=>{this.transform((function(e){return this.isType(e)?e:(e=function(e){var t,n,r=[1,4,5,6,7,10,11],i=0;if(n=_d.exec(e)){for(var a,o=0;a=r[o];++o)n[a]=+n[a]||0;n[2]=(+n[2]||1)-1,n[3]=+n[3]||1,n[7]=n[7]?String(n[7]).substr(0,3):0,void 0!==n[8]&&""!==n[8]||void 0!==n[9]&&""!==n[9]?("Z"!==n[8]&&void 0!==n[9]&&(i=60*n[10]+n[11],"+"===n[9]&&(i=0-i)),t=Date.UTC(n[1],n[2],n[3],n[4],n[5]+i,n[6],n[7])):t=+new Date(n[1],n[2],n[3],n[4],n[5],n[6],n[7])}else t=Date.parse?Date.parse(e):NaN;return t}(e),isNaN(e)?yd:new Date(e))}))}))}_typeCheck(e){return t=e,"[object Date]"===Object.prototype.toString.call(t)&&!isNaN(e.getTime());var t}prepareParam(e,t){let n;if(qc.isRef(e))n=e;else{let r=this.cast(e);if(!this._typeCheck(r))throw new TypeError(`\`${t}\` must be a Date or a value that can be \`cast()\` to a Date`);n=r}return n}min(e,t=ro.min){let n=this.prepareParam(e,"min");return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(e){return id(e)||e>=this.resolve(n)}})}max(e,t=ro.max){let n=this.prepareParam(e,"max");return this.test({message:t,name:"max",exclusive:!0,params:{max:e},test(e){return id(e)||e<=this.resolve(n)}})}}vd.INVALID_DATE=yd,gd.prototype=vd.prototype,gd.INVALID_DATE=yd;var Ad=function(e,t,n,r){var i=-1,a=null==e?0:e.length;for(r&&a&&(n=e[++i]);++i<a;)n=t(n,e[i],i,e);return n};var Ed=function(e){return function(t){return null==e?void 0:e[t]}},bd=Ed({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),Sd=Ds,Md=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Td=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");var wd=function(e){return(e=Sd(e))&&e.replace(Md,bd).replace(Td,"")},Od=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;var Nd=function(e){return e.match(Od)||[]},Cd=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;var Ld=function(e){return Cd.test(e)},Dd="\\ud800-\\udfff",$d="\\u2700-\\u27bf",xd="a-z\\xdf-\\xf6\\xf8-\\xff",Id="A-Z\\xc0-\\xd6\\xd8-\\xde",kd="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",zd="["+kd+"]",Rd="\\d+",Zd="["+$d+"]",Pd="["+xd+"]",Fd="[^"+Dd+kd+Rd+$d+xd+Id+"]",Ud="(?:\\ud83c[\\udde6-\\uddff]){2}",Bd="[\\ud800-\\udbff][\\udc00-\\udfff]",Vd="["+Id+"]",jd="(?:"+Pd+"|"+Fd+")",Hd="(?:"+Vd+"|"+Fd+")",Yd="(?:['’](?:d|ll|m|re|s|t|ve))?",Gd="(?:['’](?:D|LL|M|RE|S|T|VE))?",Wd="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",qd="[\\ufe0e\\ufe0f]?",Kd=qd+Wd+("(?:\\u200d(?:"+["[^"+Dd+"]",Ud,Bd].join("|")+")"+qd+Wd+")*"),Jd="(?:"+[Zd,Ud,Bd].join("|")+")"+Kd,Xd=RegExp([Vd+"?"+Pd+"+"+Yd+"(?="+[zd,Vd,"$"].join("|")+")",Hd+"+"+Gd+"(?="+[zd,Vd+jd,"$"].join("|")+")",Vd+"?"+jd+"+"+Yd,Vd+"+"+Gd,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Rd,Jd].join("|"),"g");var Qd=function(e){return e.match(Xd)||[]},ef=Nd,tf=Ld,nf=Ds,rf=Qd;var af=function(e,t,n){return e=nf(e),void 0===(t=n?void 0:t)?tf(e)?rf(e):ef(e):e.match(t)||[]},of=Ad,sf=wd,uf=af,lf=RegExp("['’]","g");var cf=function(e){return function(t){return of(uf(sf(t).replace(lf,"")),e,"")}},df=cf((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()})),ff=df;var hf=function(e,t,n){var r=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var a=Array(i);++r<i;)a[r]=e[r+t];return a},pf=hf;var mf=function(e,t,n){var r=e.length;return n=void 0===n?r:n,!t&&n>=r?e:pf(e,t,n)},_f=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");var yf=function(e){return _f.test(e)};var gf=function(e){return e.split("")},vf="\\ud800-\\udfff",Af="["+vf+"]",Ef="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",bf="\\ud83c[\\udffb-\\udfff]",Sf="[^"+vf+"]",Mf="(?:\\ud83c[\\udde6-\\uddff]){2}",Tf="[\\ud800-\\udbff][\\udc00-\\udfff]",wf="(?:"+Ef+"|"+bf+")"+"?",Of="[\\ufe0e\\ufe0f]?",Nf=Of+wf+("(?:\\u200d(?:"+[Sf,Mf,Tf].join("|")+")"+Of+wf+")*"),Cf="(?:"+[Sf+Ef+"?",Ef,Mf,Tf,Af].join("|")+")",Lf=RegExp(bf+"(?="+bf+")|"+Cf+Nf,"g");var Df=function(e){return e.match(Lf)||[]},$f=gf,xf=yf,If=Df;var kf=function(e){return xf(e)?If(e):$f(e)},zf=mf,Rf=yf,Zf=kf,Pf=Ds;var Ff=function(e){return function(t){t=Pf(t);var n=Rf(t)?Zf(t):void 0,r=n?n[0]:t.charAt(0),i=n?zf(n,1).join(""):t.slice(1);return r[e]()+i}},Uf=Ff("toUpperCase"),Bf=Ds,Vf=Uf;var jf=function(e){return Vf(Bf(e).toLowerCase())},Hf=jf,Yf=cf((function(e,t,n){return t=t.toLowerCase(),e+(n?Hf(t):t)})),Gf=Yf,Wf=su,qf=Tu,Kf=Nc;var Jf=function(e,t){var n={};return t=Kf(t),qf(e,(function(e,r,i){Wf(n,t(e,r,i),e)})),n},Xf={exports:{}};function Qf(e,t){var n=e.length,r=new Array(n),i={},a=n,o=function(e){for(var t=new Map,n=0,r=e.length;n<r;n++){var i=e[n];t.has(i[0])||t.set(i[0],new Set),t.has(i[1])||t.set(i[1],new Set),t.get(i[0]).add(i[1])}return t}(t),s=function(e){for(var t=new Map,n=0,r=e.length;n<r;n++)t.set(e[n],n);return t}(e);for(t.forEach((function(e){if(!s.has(e[0])||!s.has(e[1]))throw new Error("Unknown node. There is an unknown node in the supplied edges.")}));a--;)i[a]||u(e[a],a,new Set);return r;function u(e,t,a){if(a.has(e)){var l;try{l=", node was:"+JSON.stringify(e)}catch(e){l=""}throw new Error("Cyclic dependency"+l)}if(!s.has(e))throw new Error("Found unknown node. Make sure to provided all involved nodes. Unknown node: "+JSON.stringify(e));if(!i[t]){i[t]=!0;var c=o.get(e)||new Set;if(t=(c=Array.from(c)).length){a.add(e);do{var d=c[--t];u(d,s.get(d),a)}while(t);a.delete(e)}r[--n]=e}}}function eh(e,t){let n=1/0;return e.some(((e,r)=>{var i;if(-1!==(null==(i=t.path)?void 0:i.indexOf(e)))return n=r,!0})),n}function th(e){return(t,n)=>eh(e,t)-eh(e,n)}function nh(){return nh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},nh.apply(this,arguments)}Xf.exports=function(e){return Qf(function(e){for(var t=new Set,n=0,r=e.length;n<r;n++){var i=e[n];t.add(i[0]),t.add(i[1])}return Array.from(t)}(e),e)},Xf.exports.array=Qf;let rh=e=>"[object Object]"===Object.prototype.toString.call(e);const ih=th([]);class ah extends td{constructor(e){super({type:"object"}),this.fields=Object.create(null),this._sortErrors=ih,this._nodes=[],this._excludedEdges=[],this.withMutation((()=>{this.transform((function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(t){e=null}return this.isType(e)?e:null})),e&&this.shape(e)}))}_typeCheck(e){return rh(e)||"function"==typeof e}_cast(e,t={}){var n;let r=super._cast(e,t);if(void 0===r)return this.getDefault();if(!this._typeCheck(r))return r;let i=this.fields,a=null!=(n=t.stripUnknown)?n:this.spec.noUnknown,o=this._nodes.concat(Object.keys(r).filter((e=>-1===this._nodes.indexOf(e)))),s={},u=nh({},t,{parent:s,__validating:t.__validating||!1}),l=!1;for(const e of o){let n=i[e],o=Ks(r,e);if(n){let i,a=r[e];u.path=(t.path?`${t.path}.`:"")+e,n=n.resolve({value:a,context:t.context,parent:s});let o="spec"in n?n.spec:void 0,c=null==o?void 0:o.strict;if(null==o?void 0:o.strip){l=l||e in r;continue}i=t.__validating&&c?r[e]:n.cast(r[e],u),void 0!==i&&(s[e]=i)}else o&&!a&&(s[e]=r[e]);s[e]!==r[e]&&(l=!0)}return l?s:r}_validate(e,t={},n){let r=[],{sync:i,from:a=[],originalValue:o=e,abortEarly:s=this.spec.abortEarly,recursive:u=this.spec.recursive}=t;a=[{schema:this,value:o},...a],t.__validating=!0,t.originalValue=o,t.from=a,super._validate(e,t,((e,l)=>{if(e){if(!nu.isError(e)||s)return void n(e,l);r.push(e)}if(!u||!rh(l))return void n(r[0]||null,l);o=o||l;let c=this._nodes.map((e=>(n,r)=>{let i=-1===e.indexOf(".")?(t.path?`${t.path}.`:"")+e:`${t.path||""}["${e}"]`,s=this.fields[e];s&&"validate"in s?s.validate(l[e],nh({},t,{path:i,from:a,strict:!0,parent:l,originalValue:o[e]}),r):r(null)}));ru({sync:i,tests:c,value:l,errors:r,endEarly:s,sort:this._sortErrors,path:t.path},n)}))}clone(e){const t=super.clone(e);return t.fields=nh({},this.fields),t._nodes=this._nodes,t._excludedEdges=this._excludedEdges,t._sortErrors=this._sortErrors,t}concat(e){let t=super.concat(e),n=t.fields;for(let[e,t]of Object.entries(this.fields)){const r=n[e];void 0===r?n[e]=t:r instanceof td&&t instanceof td&&(n[e]=t.concat(r))}return t.withMutation((()=>t.shape(n,this._excludedEdges)))}getDefaultFromShape(){let e={};return this._nodes.forEach((t=>{const n=this.fields[t];e[t]="default"in n?n.getDefault():void 0})),e}_getDefault(){return"default"in this.spec?super._getDefault():this._nodes.length?this.getDefaultFromShape():void 0}shape(e,t=[]){let n=this.clone(),r=Object.assign(n.fields,e);return n.fields=r,n._sortErrors=th(Object.keys(r)),t.length&&(Array.isArray(t[0])||(t=[t]),n._excludedEdges=[...n._excludedEdges,...t]),n._nodes=function(e,t=[]){let n=[],r=new Set,i=new Set(t.map((([e,t])=>`${e}-${t}`)));function a(e,t){let a=Bc.split(e)[0];r.add(a),i.has(`${t}-${a}`)||n.push([t,a])}for(const t in e)if(Ks(e,t)){let n=e[t];r.add(t),qc.isRef(n)&&n.isSibling?a(n.path,t):Js(n)&&"deps"in n&&n.deps.forEach((e=>a(e,t)))}return Xf.exports.array(Array.from(r),n).reverse()}(r,n._excludedEdges),n}pick(e){const t={};for(const n of e)this.fields[n]&&(t[n]=this.fields[n]);return this.clone().withMutation((e=>(e.fields={},e.shape(t))))}omit(e){const t=this.clone(),n=t.fields;t.fields={};for(const t of e)delete n[t];return t.withMutation((()=>t.shape(n)))}from(e,t,n){let r=Bc.getter(e,!0);return this.transform((i=>{if(null==i)return i;let a=i;return Ks(i,e)&&(a=nh({},i),n||delete a[e],a[t]=r(i)),a}))}noUnknown(e=!0,t=ao.noUnknown){"string"==typeof e&&(t=e,e=!0);let n=this.test({name:"noUnknown",exclusive:!0,message:t,test(t){if(null==t)return!0;const n=function(e,t){let n=Object.keys(e.fields);return Object.keys(t).filter((e=>-1===n.indexOf(e)))}(this.schema,t);return!e||0===n.length||this.createError({params:{unknown:n.join(", ")}})}});return n.spec.noUnknown=e,n}unknown(e=!0,t=ao.noUnknown){return this.noUnknown(!e,t)}transformKeys(e){return this.transform((t=>t&&Jf(t,((t,n)=>e(n)))))}camelCase(){return this.transformKeys(Gf)}snakeCase(){return this.transformKeys(ff)}constantCase(){return this.transformKeys((e=>ff(e).toUpperCase()))}describe(){let e=super.describe();return e.fields=$c(this.fields,(e=>e.describe())),e}}function oh(e){return new ah(e)}function sh(){return sh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},sh.apply(this,arguments)}function uh(e){return new lh(e)}oh.prototype=ah.prototype;class lh extends td{constructor(e){super({type:"array"}),this.innerType=void 0,this.innerType=e,this.withMutation((()=>{this.transform((function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(t){e=null}return this.isType(e)?e:null}))}))}_typeCheck(e){return Array.isArray(e)}get _subType(){return this.innerType}_cast(e,t){const n=super._cast(e,t);if(!this._typeCheck(n)||!this.innerType)return n;let r=!1;const i=n.map(((e,n)=>{const i=this.innerType.cast(e,sh({},t,{path:`${t.path||""}[${n}]`}));return i!==e&&(r=!0),i}));return r?i:n}_validate(e,t={},n){var r,i;let a=[],o=t.sync,s=t.path,u=this.innerType,l=null!=(r=t.abortEarly)?r:this.spec.abortEarly,c=null!=(i=t.recursive)?i:this.spec.recursive,d=null!=t.originalValue?t.originalValue:e;super._validate(e,t,((e,r)=>{if(e){if(!nu.isError(e)||l)return void n(e,r);a.push(e)}if(!c||!u||!this._typeCheck(r))return void n(a[0]||null,r);d=d||r;let i=new Array(r.length);for(let e=0;e<r.length;e++){let n=r[e],a=`${t.path||""}[${e}]`,o=sh({},t,{path:a,strict:!0,parent:r,index:e,originalValue:d[e]});i[e]=(e,t)=>u.validate(n,o,t)}ru({sync:o,path:s,value:r,errors:a,endEarly:l,tests:i},n)}))}clone(e){const t=super.clone(e);return t.innerType=this.innerType,t}concat(e){let t=super.concat(e);return t.innerType=this.innerType,e.innerType&&(t.innerType=t.innerType?t.innerType.concat(e.innerType):e.innerType),t}of(e){let t=this.clone();if(!Js(e))throw new TypeError("`array.of()` sub-schema must be a valid yup schema not: "+Qa(e));return t.innerType=e,t}length(e,t=oo.length){return this.test({message:t,name:"length",exclusive:!0,params:{length:e},test(t){return id(t)||t.length===this.resolve(e)}})}min(e,t){return t=t||oo.min,this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(t){return id(t)||t.length>=this.resolve(e)}})}max(e,t){return t=t||oo.max,this.test({message:t,name:"max",exclusive:!0,params:{max:e},test(t){return id(t)||t.length<=this.resolve(e)}})}ensure(){return this.default((()=>[])).transform(((e,t)=>this._typeCheck(e)?e:null==t?[]:[].concat(t)))}compact(e){let t=e?(t,n,r)=>!e(t,n,r):e=>!!e;return this.transform((e=>null!=e?e.filter(t):e))}describe(){let e=super.describe();return this.innerType&&(e.innerType=this.innerType.describe()),e}nullable(e=!0){return super.nullable(e)}defined(){return super.defined()}required(e){return super.required(e)}}uh.prototype=lh.prototype;class ch{constructor(e){this.type="lazy",this.__isYupSchema__=!0,this.__inputType=void 0,this.__outputType=void 0,this._resolve=(e,t={})=>{let n=this.builder(e,t);if(!Js(n))throw new TypeError("lazy() functions must return a valid schema");return n.resolve(t)},this.builder=e}resolve(e){return this._resolve(e.value,e)}cast(e,t){return this._resolve(e,t).cast(e,t)}validate(e,t,n){return this._resolve(e,t).validate(e,t,n)}validateSync(e,t){return this._resolve(e,t).validateSync(e,t)}validateAt(e,t,n){return this._resolve(t,n).validateAt(e,t,n)}validateSyncAt(e,t,n){return this._resolve(t,n).validateSyncAt(e,t,n)}describe(){return null}isValid(e,t){return this._resolve(e,t).isValid(e,t)}isValidSync(e,t){return this._resolve(e,t).isValidSync(e,t)}}function dh(e,t,n){if(!e||!Js(e.prototype))throw new TypeError("You must provide a yup schema constructor function");if("string"!=typeof t)throw new TypeError("A Method name must be provided");if("function"!=typeof n)throw new TypeError("Method function must be provided");e.prototype[t]=n}var fh=Object.freeze({__proto__:null,mixed:rd,bool:ad,boolean:ad,string:fd,number:pd,date:gd,object:oh,array:uh,ref:function(e,t){return new qc(e,t)},lazy:function(e){return new ch(e)},reach:(e,t,n,r)=>Xc(e,t,n,r).schema,isSchema:Js,addMethod:dh,setLocale:function(e){Object.keys(e).forEach((t=>{Object.keys(e[t]).forEach((n=>{so[t][n]=e[t][n]}))}))},ValidationError:nu,BaseSchema:td,MixedSchema:nd,BooleanSchema:od,StringSchema:hd,NumberSchema:md,DateSchema:vd,ObjectSchema:ah,ArraySchema:lh});const hh=["required","length","min","max","matches","email","url","uuid","positive","negative","integer","lessThan","moreThan","when","filled","empty","equals","notEquals","includes","excludes","uinfin"];var ph;!function(e){const t=[];e.buildSchema=t=>{const r={},i=n(t);return Object.keys(i).forEach((n=>{const{schema:i,validationRules:a}=t[n];r[n]=e.buildFieldSchema(i,a)})),oh().shape(r)};const n=e=>{const t={...e};return Object.entries(t).forEach((([e,{validationRules:n}])=>{const r=n?.filter((e=>!("when"in e)))||[],i=n?.filter((e=>"when"in e)).map((e=>{const n={...e};return Object.keys(n.when).forEach((e=>{n.when[e]={...n.when[e],yupSchema:t[e].schema}})),n}))||[];t[e].validationRules=[...r,...i]})),t};e.buildFieldSchema=(n,r)=>{const i=r.filter((e=>hh.includes(Object.keys(e)[0])||t.includes(Object.keys(e)[0])));return e.mapRules(n,i)},e.mapSchemaType=e=>{switch(e){case"string":return fd().typeError("Only string values are allowed");case"number":return pd().typeError("Only number values are allowed");case"boolean":return ad().typeError("Only boolean values are allowed");case"array":return uh().typeError("Only array values are allowed");case"object":return oh().typeError("Only object values are allowed");default:return rd()}},e.mapRules=(n,r)=>(r.forEach((r=>{const i=Object.keys(r).filter((e=>hh.includes(e)))?.[0];switch(!0){case r.required:n=n.required(r.errorMessage||"This field is required");break;case!!r.email:case!!r.url:case!!r.uuid:case!!r.positive:case!!r.negative:case!!r.integer:try{n=n[i](r.errorMessage)}catch(e){console.warn(`error applying "${i}" condition to ${n.type} schema`)}break;case r.length>0:case r.min>0:case r.max>0:case!!r.lessThan:case!!r.moreThan:try{n=n[i](r[i],r.errorMessage)}catch(e){console.warn(`error applying "${i}" condition to ${n.type} schema`)}break;case!!r.matches:{const e=r.matches.match(/\/(.*)\/([a-z]+)?/);try{n=n.matches(new RegExp(e[1],e[2]),r.errorMessage)}catch(e){console.warn(`error applying "${i}" condition to ${n.type} schema`)}}break;case!!r.when:Object.keys(r.when).forEach((t=>{const i=r.when[t].is,a=e.mapRules(e.mapSchemaType(n.type),r.when[t].then),o=r.when[t].otherwise&&e.mapRules(e.mapSchemaType(n.type),r.when[t].otherwise);n=Array.isArray(i)&&i.every((e=>"object"==typeof e))?n.when(t,(n=>{const s=e.mapRules(r.when[t].yupSchema.clone(),i);let u=!1;try{s.validateSync(n),u=!0}catch(e){}return u?a:o})):n.when(t,{is:i,then:a,otherwise:o})}))}const a=Object.keys(r).filter((e=>t.includes(e)))?.[0];a&&(n=n[a](r[a],r.errorMessage))})),n),e.addCondition=(e,n,r)=>{t.includes(n)?console.warn(`the validation condition "${n}" is not added because it already exists!`):(t.push(n),dh(fh[e],n,(function(e,t){return this.test({name:n,message:t,test:(t,n)=>r(t,e,n)})})))}}(ph||(ph={}));var mh=Zl;var _h=function(e,t){return mh(e,t)};var yh=function(e){return null==e},gh=gt,vh=dn;var Ah,Eh=function(e){return"number"==typeof e||vh(e)&&"[object Number]"==gh(e)};!function(e){e.LOCAL_S_PREFIX="S",e.LOCAL_T_PREFIX="T",e.FOREIGN_F_PREFIX="F",e.FOREIGN_G_PREFIX="G",e.FOREIGN_M_PREFIX="M"}(Ah||(Ah={}));const bh=[2,7,6,5,4,3,2],Sh=["J","Z","I","H","G","F","E","D","C","B","A"],Mh=["X","W","U","T","R","Q","P","N","M","L","K"],Th=["X","W","U","T","R","Q","P","N","J","L","K"];function wh(e){if("string"==typeof e){const t=function(e){return/^[STFGM]\d{7}[A-Z]$/.test(e)}(e),n=e.charAt(8)===function(e){let t=0;for(let n=0;n<7;++n)t+=Number(e.charAt(n+1))*bh[n];const n=e.charAt(0);n!==Ah.LOCAL_T_PREFIX&&n!==Ah.FOREIGN_G_PREFIX||(t+=4);n===Ah.FOREIGN_M_PREFIX&&(t+=3);let r;r=n===Ah.LOCAL_S_PREFIX||n===Ah.LOCAL_T_PREFIX?Sh[t%11]:n===Ah.FOREIGN_M_PREFIX?Th[t%11]:Mh[t%11];return r}(e);return t&&n}return!1}ph.addCondition("string","uinfin",(e=>wh(e)));const Oh=e=>Eh(e)?yh(e):Wn(e);ph.addCondition("mixed","filled",(e=>!Oh(e))),ph.addCondition("mixed","empty",(e=>Oh(e))),ph.addCondition("mixed","equals",((e,t)=>!Oh(e)&&_h(e,t))),ph.addCondition("mixed","notEquals",((e,t)=>!Oh(e)&&!_h(e,t))),ph.addCondition("array","includes",((e,t)=>Array.isArray(t)?t.filter((t=>e.includes(t))).length===t.length:e.includes(t))),ph.addCondition("array","excludes",((e,t)=>Array.isArray(t)?e.length&&0===t.filter((t=>e.includes(t))).length:!e.includes(t)));const Nh=()=>{const{formValidationConfig:e,setFormValidationConfig:n}=t.useContext(Ua);return{formValidationConfig:e,setFieldValidationConfig:(e,t,r=[])=>{n((n=>({...n,[e]:{schema:t,validationRules:r}})))},removeFieldValidationConfig:e=>n((t=>{const n={...t};return delete n[e],n}))}},Ch=()=>{const{formValidationConfig:e}=t.useContext(Ua),[n,r]=t.useState(),[i,a]=t.useState(),[o,s]=t.useState({});t.useEffect((()=>{if(e){let t={},n={};Object.entries(e).forEach((([e,r])=>{if(!r.validationRules||0===r.validationRules.length)return void(t=Pa.upsert(t,e,{schema:r.schema,validationRules:[]}));const i=r.validationRules.filter((({soft:e})=>e)),a=r.validationRules.filter((({soft:e})=>!e));i.length&&(n=Pa.upsert(n,e,{schema:r.schema,validationRules:i})),a.length&&(t=Pa.upsert(t,e,{schema:r.schema,validationRules:a}))})),a(ph.buildSchema(n)),r(ph.buildSchema(t))}}),[e]);return{warnings:o,softValidationSchema:i,hardValidationSchema:n,performSoftValidation:(e,t)=>{try{e.validateSync(t,{abortEarly:!1}),s({})}catch(e){const t=e;if(Wn(t))return;const n=t.inner.reduce(((e,t)=>(e[t.path]=t.message,e)),{});s(n)}}}},Lh=g.default.button`
|
|
195
|
-
background-color: ${i.Color.Neutral[8]};
|
|
196
|
-
border: 1px solid ${i.Color.Neutral[5]};
|
|
197
|
-
border-radius: 1rem;
|
|
198
|
-
display: inline-block;
|
|
199
|
-
padding: 0.063rem 0.438rem;
|
|
200
|
-
|
|
201
|
-
:hover {
|
|
202
|
-
box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
|
|
203
|
-
cursor: ${e=>e.disabled?"not-allowed":"pointer"};
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
:focus-visible {
|
|
207
|
-
outline: none;
|
|
208
|
-
box-shadow: 0 0 0 1px #024fa9;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
${e=>{if(e.isActive)return a.css`
|
|
212
|
-
background-color: ${i.Color.Neutral[4](e)};
|
|
213
|
-
|
|
214
|
-
${Dh} {
|
|
215
|
-
color: ${i.Color.Neutral[7](e)};
|
|
216
|
-
}
|
|
217
|
-
`}}
|
|
218
|
-
`,Dh=g.default(r.Text.XSmall)``,$h=({children:t,...n})=>e.jsx(Lh,{type:"button","aria-pressed":n?.isActive,...n,children:e.jsx(r.Text.XSmall,{weight:"semibold",children:t})});var xh={},Ih={},kh={},zh={},Rh={};Object.defineProperty(Rh,"__esModule",{value:!0}),Rh.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((function(e){return e.charCodeAt(0)})));var Zh={};Object.defineProperty(Zh,"__esModule",{value:!0}),Zh.default=new Uint16Array("Ȁaglq\tɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((function(e){return e.charCodeAt(0)})));var Ph={};!function(e){var t;Object.defineProperty(e,"__esModule",{value:!0}),e.replaceCodePoint=e.fromCodePoint=void 0;var n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function r(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.fromCodePoint=null!==(t=String.fromCodePoint)&&void 0!==t?t:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.replaceCodePoint=r,e.default=function(t){return(0,e.fromCodePoint)(r(t))}}(Ph),function(e){var t=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=We&&We.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),r=We&&We.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&t(r,e,i);return n(r,e),r},i=We&&We.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXML=e.decodeHTMLStrict=e.decodeHTMLAttribute=e.decodeHTML=e.determineBranch=e.EntityDecoder=e.DecodingMode=e.BinTrieFlags=e.fromCodePoint=e.replaceCodePoint=e.decodeCodePoint=e.xmlDecodeTree=e.htmlDecodeTree=void 0;var a=i(Rh);e.htmlDecodeTree=a.default;var o=i(Zh);e.xmlDecodeTree=o.default;var s=r(Ph);e.decodeCodePoint=s.default;var u,l=Ph;Object.defineProperty(e,"replaceCodePoint",{enumerable:!0,get:function(){return l.replaceCodePoint}}),Object.defineProperty(e,"fromCodePoint",{enumerable:!0,get:function(){return l.fromCodePoint}}),function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(u||(u={}));var c,d,f;function h(e){return e>=u.ZERO&&e<=u.NINE}function p(e){return e===u.EQUALS||function(e){return e>=u.UPPER_A&&e<=u.UPPER_Z||e>=u.LOWER_A&&e<=u.LOWER_Z||h(e)}(e)}!function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(c=e.BinTrieFlags||(e.BinTrieFlags={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(d||(d={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(f=e.DecodingMode||(e.DecodingMode={}));var m=function(){function e(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=d.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=f.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=d.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case d.EntityStart:return e.charCodeAt(t)===u.NUM?(this.state=d.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=d.NamedEntity,this.stateNamedEntity(e,t));case d.NumericStart:return this.stateNumericStart(e,t);case d.NumericDecimal:return this.stateNumericDecimal(e,t);case d.NumericHex:return this.stateNumericHex(e,t);case d.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===u.LOWER_X?(this.state=d.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=d.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,n,r){if(t!==n){var i=n-t;this.result=this.result*Math.pow(r,i)+parseInt(e.substr(t,i),r),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var n,r=t;t<e.length;){var i=e.charCodeAt(t);if(!(h(i)||(n=i,n>=u.UPPER_A&&n<=u.UPPER_F||n>=u.LOWER_A&&n<=u.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var n=t;t<e.length;){var r=e.charCodeAt(t);if(!h(r))return this.addToNumericResult(e,n,t,10),this.emitNumericEntity(r,2);t+=1}return this.addToNumericResult(e,n,t,10),-1},e.prototype.emitNumericEntity=function(e,t){var n;if(this.consumed<=t)return null===(n=this.errors)||void 0===n||n.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(e===u.SEMI)this.consumed+=1;else if(this.decodeMode===f.Strict)return 0;return this.emitCodePoint((0,s.replaceCodePoint)(this.result),this.consumed),this.errors&&(e!==u.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed},e.prototype.stateNamedEntity=function(e,t){for(var n=this.decodeTree,r=n[this.treeIndex],i=(r&c.VALUE_LENGTH)>>14;t<e.length;t++,this.excess++){var a=e.charCodeAt(t);if(this.treeIndex=y(n,r,this.treeIndex+Math.max(1,i),a),this.treeIndex<0)return 0===this.result||this.decodeMode===f.Attribute&&(0===i||p(a))?0:this.emitNotTerminatedNamedEntity();if(0!==(i=((r=n[this.treeIndex])&c.VALUE_LENGTH)>>14)){if(a===u.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==f.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,n=(this.decodeTree[t]&c.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,n){var r=this.decodeTree;return this.emitCodePoint(1===t?r[e]&~c.VALUE_LENGTH:r[e+1],n),3===t&&this.emitCodePoint(r[e+2],n),n},e.prototype.end=function(){var e;switch(this.state){case d.NamedEntity:return 0===this.result||this.decodeMode===f.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case d.NumericDecimal:return this.emitNumericEntity(0,2);case d.NumericHex:return this.emitNumericEntity(0,3);case d.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case d.EntityStart:return 0}},e}();function _(e){var t="",n=new m(e,(function(e){return t+=(0,s.fromCodePoint)(e)}));return function(e,r){for(var i=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(i,a),n.startEntity(r);var o=n.write(e,a+1);if(o<0){i=a+n.end();break}i=a+o,a=0===o?i+1:i}var s=t+e.slice(i);return t="",s}}function y(e,t,n,r){var i=(t&c.BRANCH_LENGTH)>>7,a=t&c.JUMP_TABLE;if(0===i)return 0!==a&&r===a?n:-1;if(a){var o=r-a;return o<0||o>=i?-1:e[n+o]-1}for(var s=n,u=s+i-1;s<=u;){var l=s+u>>>1,d=e[l];if(d<r)s=l+1;else{if(!(d>r))return e[l+i];u=l-1}}return-1}e.EntityDecoder=m,e.determineBranch=y;var g=_(a.default),v=_(o.default);e.decodeHTML=function(e,t){return void 0===t&&(t=f.Legacy),g(e,t)},e.decodeHTMLAttribute=function(e){return g(e,f.Attribute)},e.decodeHTMLStrict=function(e){return g(e,f.Strict)},e.decodeXML=function(e){return v(e,f.Strict)}}(zh),function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.QuoteType=void 0;var t,n,r,i=zh;function a(e){return e===t.Space||e===t.NewLine||e===t.Tab||e===t.FormFeed||e===t.CarriageReturn}function o(e){return e===t.Slash||e===t.Gt||a(e)}function s(e){return e>=t.Zero&&e<=t.Nine}!function(e){e[e.Tab=9]="Tab",e[e.NewLine=10]="NewLine",e[e.FormFeed=12]="FormFeed",e[e.CarriageReturn=13]="CarriageReturn",e[e.Space=32]="Space",e[e.ExclamationMark=33]="ExclamationMark",e[e.Number=35]="Number",e[e.Amp=38]="Amp",e[e.SingleQuote=39]="SingleQuote",e[e.DoubleQuote=34]="DoubleQuote",e[e.Dash=45]="Dash",e[e.Slash=47]="Slash",e[e.Zero=48]="Zero",e[e.Nine=57]="Nine",e[e.Semi=59]="Semi",e[e.Lt=60]="Lt",e[e.Eq=61]="Eq",e[e.Gt=62]="Gt",e[e.Questionmark=63]="Questionmark",e[e.UpperA=65]="UpperA",e[e.LowerA=97]="LowerA",e[e.UpperF=70]="UpperF",e[e.LowerF=102]="LowerF",e[e.UpperZ=90]="UpperZ",e[e.LowerZ=122]="LowerZ",e[e.LowerX=120]="LowerX",e[e.OpeningSquareBracket=91]="OpeningSquareBracket"}(t||(t={})),function(e){e[e.Text=1]="Text",e[e.BeforeTagName=2]="BeforeTagName",e[e.InTagName=3]="InTagName",e[e.InSelfClosingTag=4]="InSelfClosingTag",e[e.BeforeClosingTagName=5]="BeforeClosingTagName",e[e.InClosingTagName=6]="InClosingTagName",e[e.AfterClosingTagName=7]="AfterClosingTagName",e[e.BeforeAttributeName=8]="BeforeAttributeName",e[e.InAttributeName=9]="InAttributeName",e[e.AfterAttributeName=10]="AfterAttributeName",e[e.BeforeAttributeValue=11]="BeforeAttributeValue",e[e.InAttributeValueDq=12]="InAttributeValueDq",e[e.InAttributeValueSq=13]="InAttributeValueSq",e[e.InAttributeValueNq=14]="InAttributeValueNq",e[e.BeforeDeclaration=15]="BeforeDeclaration",e[e.InDeclaration=16]="InDeclaration",e[e.InProcessingInstruction=17]="InProcessingInstruction",e[e.BeforeComment=18]="BeforeComment",e[e.CDATASequence=19]="CDATASequence",e[e.InSpecialComment=20]="InSpecialComment",e[e.InCommentLike=21]="InCommentLike",e[e.BeforeSpecialS=22]="BeforeSpecialS",e[e.SpecialStartSequence=23]="SpecialStartSequence",e[e.InSpecialTag=24]="InSpecialTag",e[e.BeforeEntity=25]="BeforeEntity",e[e.BeforeNumericEntity=26]="BeforeNumericEntity",e[e.InNamedEntity=27]="InNamedEntity",e[e.InNumericEntity=28]="InNumericEntity",e[e.InHexEntity=29]="InHexEntity"}(n||(n={})),function(e){e[e.NoValue=0]="NoValue",e[e.Unquoted=1]="Unquoted",e[e.Single=2]="Single",e[e.Double=3]="Double"}(r=e.QuoteType||(e.QuoteType={}));var u={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},l=function(){function e(e,t){var r=e.xmlMode,a=void 0!==r&&r,o=e.decodeEntities,s=void 0===o||o;this.cbs=t,this.state=n.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=n.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=a,this.decodeEntities=s,this.entityTrie=a?i.xmlDecodeTree:i.htmlDecodeTree}return e.prototype.reset=function(){this.state=n.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=n.Text,this.currentSequence=void 0,this.running=!0,this.offset=0},e.prototype.write=function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()},e.prototype.end=function(){this.running&&this.finish()},e.prototype.pause=function(){this.running=!1},e.prototype.resume=function(){this.running=!0,this.index<this.buffer.length+this.offset&&this.parse()},e.prototype.getIndex=function(){return this.index},e.prototype.getSectionStart=function(){return this.sectionStart},e.prototype.stateText=function(e){e===t.Lt||!this.decodeEntities&&this.fastForwardTo(t.Lt)?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=n.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===t.Amp&&(this.state=n.BeforeEntity)},e.prototype.stateSpecialStartSequence=function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?o(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t)return void this.sequenceIndex++}else this.isSpecial=!1;this.sequenceIndex=0,this.state=n.InTagName,this.stateInTagName(e)},e.prototype.stateInSpecialTag=function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===t.Gt||a(e)){var r=this.index-this.currentSequence.length;if(this.sectionStart<r){var i=this.index;this.index=r,this.cbs.ontext(this.sectionStart,r),this.index=i}return this.isSpecial=!1,this.sectionStart=r+2,void this.stateInClosingTagName(e)}this.sequenceIndex=0}(32|e)===this.currentSequence[this.sequenceIndex]?this.sequenceIndex+=1:0===this.sequenceIndex?this.currentSequence===u.TitleEnd?this.decodeEntities&&e===t.Amp&&(this.state=n.BeforeEntity):this.fastForwardTo(t.Lt)&&(this.sequenceIndex=1):this.sequenceIndex=Number(e===t.Lt)},e.prototype.stateCDATASequence=function(e){e===u.Cdata[this.sequenceIndex]?++this.sequenceIndex===u.Cdata.length&&(this.state=n.InCommentLike,this.currentSequence=u.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1):(this.sequenceIndex=0,this.state=n.InDeclaration,this.stateInDeclaration(e))},e.prototype.fastForwardTo=function(e){for(;++this.index<this.buffer.length+this.offset;)if(this.buffer.charCodeAt(this.index-this.offset)===e)return!0;return this.index=this.buffer.length+this.offset-1,!1},e.prototype.stateInCommentLike=function(e){e===this.currentSequence[this.sequenceIndex]?++this.sequenceIndex===this.currentSequence.length&&(this.currentSequence===u.CdataEnd?this.cbs.oncdata(this.sectionStart,this.index,2):this.cbs.oncomment(this.sectionStart,this.index,2),this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=n.Text):0===this.sequenceIndex?this.fastForwardTo(this.currentSequence[0])&&(this.sequenceIndex=1):e!==this.currentSequence[this.sequenceIndex-1]&&(this.sequenceIndex=0)},e.prototype.isTagStartChar=function(e){return this.xmlMode?!o(e):function(e){return e>=t.LowerA&&e<=t.LowerZ||e>=t.UpperA&&e<=t.UpperZ}(e)},e.prototype.startSpecial=function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=n.SpecialStartSequence},e.prototype.stateBeforeTagName=function(e){if(e===t.ExclamationMark)this.state=n.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===t.Questionmark)this.state=n.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var r=32|e;this.sectionStart=this.index,this.xmlMode||r!==u.TitleEnd[2]?this.state=this.xmlMode||r!==u.ScriptEnd[2]?n.InTagName:n.BeforeSpecialS:this.startSpecial(u.TitleEnd,3)}else e===t.Slash?this.state=n.BeforeClosingTagName:(this.state=n.Text,this.stateText(e))},e.prototype.stateInTagName=function(e){o(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e))},e.prototype.stateBeforeClosingTagName=function(e){a(e)||(e===t.Gt?this.state=n.Text:(this.state=this.isTagStartChar(e)?n.InClosingTagName:n.InSpecialComment,this.sectionStart=this.index))},e.prototype.stateInClosingTagName=function(e){(e===t.Gt||a(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=n.AfterClosingTagName,this.stateAfterClosingTagName(e))},e.prototype.stateAfterClosingTagName=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.state=n.Text,this.baseState=n.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeAttributeName=function(e){e===t.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=n.InSpecialTag,this.sequenceIndex=0):this.state=n.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===t.Slash?this.state=n.InSelfClosingTag:a(e)||(this.state=n.InAttributeName,this.sectionStart=this.index)},e.prototype.stateInSelfClosingTag=function(e){e===t.Gt?(this.cbs.onselfclosingtag(this.index),this.state=n.Text,this.baseState=n.Text,this.sectionStart=this.index+1,this.isSpecial=!1):a(e)||(this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e))},e.prototype.stateInAttributeName=function(e){(e===t.Eq||o(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=n.AfterAttributeName,this.stateAfterAttributeName(e))},e.prototype.stateAfterAttributeName=function(e){e===t.Eq?this.state=n.BeforeAttributeValue:e===t.Slash||e===t.Gt?(this.cbs.onattribend(r.NoValue,this.index),this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e)):a(e)||(this.cbs.onattribend(r.NoValue,this.index),this.state=n.InAttributeName,this.sectionStart=this.index)},e.prototype.stateBeforeAttributeValue=function(e){e===t.DoubleQuote?(this.state=n.InAttributeValueDq,this.sectionStart=this.index+1):e===t.SingleQuote?(this.state=n.InAttributeValueSq,this.sectionStart=this.index+1):a(e)||(this.sectionStart=this.index,this.state=n.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))},e.prototype.handleInAttributeValue=function(e,i){e===i||!this.decodeEntities&&this.fastForwardTo(i)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(i===t.DoubleQuote?r.Double:r.Single,this.index),this.state=n.BeforeAttributeName):this.decodeEntities&&e===t.Amp&&(this.baseState=this.state,this.state=n.BeforeEntity)},e.prototype.stateInAttributeValueDoubleQuotes=function(e){this.handleInAttributeValue(e,t.DoubleQuote)},e.prototype.stateInAttributeValueSingleQuotes=function(e){this.handleInAttributeValue(e,t.SingleQuote)},e.prototype.stateInAttributeValueNoQuotes=function(e){a(e)||e===t.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(r.Unquoted,this.index),this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===t.Amp&&(this.baseState=this.state,this.state=n.BeforeEntity)},e.prototype.stateBeforeDeclaration=function(e){e===t.OpeningSquareBracket?(this.state=n.CDATASequence,this.sequenceIndex=0):this.state=e===t.Dash?n.BeforeComment:n.InDeclaration},e.prototype.stateInDeclaration=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=n.Text,this.sectionStart=this.index+1)},e.prototype.stateInProcessingInstruction=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=n.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeComment=function(e){e===t.Dash?(this.state=n.InCommentLike,this.currentSequence=u.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=n.InDeclaration},e.prototype.stateInSpecialComment=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=n.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeSpecialS=function(e){var t=32|e;t===u.ScriptEnd[3]?this.startSpecial(u.ScriptEnd,4):t===u.StyleEnd[3]?this.startSpecial(u.StyleEnd,4):(this.state=n.InTagName,this.stateInTagName(e))},e.prototype.stateBeforeEntity=function(e){this.entityExcess=1,this.entityResult=0,e===t.Number?this.state=n.BeforeNumericEntity:e===t.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=n.InNamedEntity,this.stateInNamedEntity(e))},e.prototype.stateInNamedEntity=function(e){if(this.entityExcess+=1,this.trieIndex=(0,i.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0)return this.emitNamedEntity(),void this.index--;this.trieCurrent=this.entityTrie[this.trieIndex];var n=this.trieCurrent&i.BinTrieFlags.VALUE_LENGTH;if(n){var r=(n>>14)-1;if(this.allowLegacyEntity()||e===t.Semi){var a=this.index-this.entityExcess+1;a>this.sectionStart&&this.emitPartial(this.sectionStart,a),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}},e.prototype.emitNamedEntity=function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&i.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~i.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}},e.prototype.stateBeforeNumericEntity=function(e){(32|e)===t.LowerX?(this.entityExcess++,this.state=n.InHexEntity):(this.state=n.InNumericEntity,this.stateInNumericEntity(e))},e.prototype.emitNumericEntity=function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===n.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,i.replaceCodePoint)(this.entityResult))),this.state=this.baseState},e.prototype.stateInNumericEntity=function(e){e===t.Semi?this.emitNumericEntity(!0):s(e)?(this.entityResult=10*this.entityResult+(e-t.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)},e.prototype.stateInHexEntity=function(e){e===t.Semi?this.emitNumericEntity(!0):s(e)?(this.entityResult=16*this.entityResult+(e-t.Zero),this.entityExcess++):!function(e){return e>=t.UpperA&&e<=t.UpperF||e>=t.LowerA&&e<=t.LowerF}(e)?(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--):(this.entityResult=16*this.entityResult+((32|e)-t.LowerA+10),this.entityExcess++)},e.prototype.allowLegacyEntity=function(){return!this.xmlMode&&(this.baseState===n.Text||this.baseState===n.InSpecialTag)},e.prototype.cleanup=function(){this.running&&this.sectionStart!==this.index&&(this.state===n.Text||this.state===n.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):this.state!==n.InAttributeValueDq&&this.state!==n.InAttributeValueSq&&this.state!==n.InAttributeValueNq||(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))},e.prototype.shouldContinue=function(){return this.index<this.buffer.length+this.offset&&this.running},e.prototype.parse=function(){for(;this.shouldContinue();){var e=this.buffer.charCodeAt(this.index-this.offset);switch(this.state){case n.Text:this.stateText(e);break;case n.SpecialStartSequence:this.stateSpecialStartSequence(e);break;case n.InSpecialTag:this.stateInSpecialTag(e);break;case n.CDATASequence:this.stateCDATASequence(e);break;case n.InAttributeValueDq:this.stateInAttributeValueDoubleQuotes(e);break;case n.InAttributeName:this.stateInAttributeName(e);break;case n.InCommentLike:this.stateInCommentLike(e);break;case n.InSpecialComment:this.stateInSpecialComment(e);break;case n.BeforeAttributeName:this.stateBeforeAttributeName(e);break;case n.InTagName:this.stateInTagName(e);break;case n.InClosingTagName:this.stateInClosingTagName(e);break;case n.BeforeTagName:this.stateBeforeTagName(e);break;case n.AfterAttributeName:this.stateAfterAttributeName(e);break;case n.InAttributeValueSq:this.stateInAttributeValueSingleQuotes(e);break;case n.BeforeAttributeValue:this.stateBeforeAttributeValue(e);break;case n.BeforeClosingTagName:this.stateBeforeClosingTagName(e);break;case n.AfterClosingTagName:this.stateAfterClosingTagName(e);break;case n.BeforeSpecialS:this.stateBeforeSpecialS(e);break;case n.InAttributeValueNq:this.stateInAttributeValueNoQuotes(e);break;case n.InSelfClosingTag:this.stateInSelfClosingTag(e);break;case n.InDeclaration:this.stateInDeclaration(e);break;case n.BeforeDeclaration:this.stateBeforeDeclaration(e);break;case n.BeforeComment:this.stateBeforeComment(e);break;case n.InProcessingInstruction:this.stateInProcessingInstruction(e);break;case n.InNamedEntity:this.stateInNamedEntity(e);break;case n.BeforeEntity:this.stateBeforeEntity(e);break;case n.InHexEntity:this.stateInHexEntity(e);break;case n.InNumericEntity:this.stateInNumericEntity(e);break;default:this.stateBeforeNumericEntity(e)}this.index++}this.cleanup()},e.prototype.finish=function(){this.state===n.InNamedEntity&&this.emitNamedEntity(),this.sectionStart<this.index&&this.handleTrailingData(),this.cbs.onend()},e.prototype.handleTrailingData=function(){var e=this.buffer.length+this.offset;this.state===n.InCommentLike?this.currentSequence===u.CdataEnd?this.cbs.oncdata(this.sectionStart,e,0):this.cbs.oncomment(this.sectionStart,e,0):this.state===n.InNumericEntity&&this.allowLegacyEntity()||this.state===n.InHexEntity&&this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state===n.InTagName||this.state===n.BeforeAttributeName||this.state===n.BeforeAttributeValue||this.state===n.AfterAttributeName||this.state===n.InAttributeName||this.state===n.InAttributeValueSq||this.state===n.InAttributeValueDq||this.state===n.InAttributeValueNq||this.state===n.InClosingTagName||this.cbs.ontext(this.sectionStart,e)},e.prototype.emitPartial=function(e,t){this.baseState!==n.Text&&this.baseState!==n.InSpecialTag?this.cbs.onattribdata(e,t):this.cbs.ontext(e,t)},e.prototype.emitCodePoint=function(e){this.baseState!==n.Text&&this.baseState!==n.InSpecialTag?this.cbs.onattribentity(e):this.cbs.ontextentity(e)},e}();e.default=l}(kh);var Fh=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),Uh=We&&We.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),Bh=We&&We.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&Fh(t,e,n);return Uh(t,e),t};Object.defineProperty(Ih,"__esModule",{value:!0}),Ih.Parser=void 0;var Vh=Bh(kh),jh=zh,Hh=new Set(["input","option","optgroup","select","button","datalist","textarea"]),Yh=new Set(["p"]),Gh=new Set(["thead","tbody"]),Wh=new Set(["dd","dt"]),qh=new Set(["rt","rp"]),Kh=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",Yh],["h1",Yh],["h2",Yh],["h3",Yh],["h4",Yh],["h5",Yh],["h6",Yh],["select",Hh],["input",Hh],["output",Hh],["button",Hh],["datalist",Hh],["textarea",Hh],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",Wh],["dt",Wh],["address",Yh],["article",Yh],["aside",Yh],["blockquote",Yh],["details",Yh],["div",Yh],["dl",Yh],["fieldset",Yh],["figcaption",Yh],["figure",Yh],["footer",Yh],["form",Yh],["header",Yh],["hr",Yh],["main",Yh],["nav",Yh],["ol",Yh],["pre",Yh],["section",Yh],["table",Yh],["ul",Yh],["rt",qh],["rp",qh],["tbody",Gh],["tfoot",Gh]]),Jh=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),Xh=new Set(["math","svg"]),Qh=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),ep=/\s|\//,tp=function(){function e(e,t){var n,r,i,a,o;void 0===t&&(t={}),this.options=t,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=e?e:{},this.lowerCaseTagNames=null!==(n=t.lowerCaseTags)&&void 0!==n?n:!t.xmlMode,this.lowerCaseAttributeNames=null!==(r=t.lowerCaseAttributeNames)&&void 0!==r?r:!t.xmlMode,this.tokenizer=new(null!==(i=t.Tokenizer)&&void 0!==i?i:Vh.default)(this.options,this),null===(o=(a=this.cbs).onparserinit)||void 0===o||o.call(a,this)}return e.prototype.ontext=function(e,t){var n,r,i=this.getSlice(e,t);this.endIndex=t-1,null===(r=(n=this.cbs).ontext)||void 0===r||r.call(n,i),this.startIndex=t},e.prototype.ontextentity=function(e){var t,n,r=this.tokenizer.getSectionStart();this.endIndex=r-1,null===(n=(t=this.cbs).ontext)||void 0===n||n.call(t,(0,jh.fromCodePoint)(e)),this.startIndex=r},e.prototype.isVoidElement=function(e){return!this.options.xmlMode&&Jh.has(e)},e.prototype.onopentagname=function(e,t){this.endIndex=t;var n=this.getSlice(e,t);this.lowerCaseTagNames&&(n=n.toLowerCase()),this.emitOpenTag(n)},e.prototype.emitOpenTag=function(e){var t,n,r,i;this.openTagStart=this.startIndex,this.tagname=e;var a=!this.options.xmlMode&&Kh.get(e);if(a)for(;this.stack.length>0&&a.has(this.stack[this.stack.length-1]);){var o=this.stack.pop();null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,o,!0)}this.isVoidElement(e)||(this.stack.push(e),Xh.has(e)?this.foreignContext.push(!0):Qh.has(e)&&this.foreignContext.push(!1)),null===(i=(r=this.cbs).onopentagname)||void 0===i||i.call(r,e),this.cbs.onopentag&&(this.attribs={})},e.prototype.endOpenTag=function(e){var t,n;this.startIndex=this.openTagStart,this.attribs&&(null===(n=(t=this.cbs).onopentag)||void 0===n||n.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""},e.prototype.onopentagend=function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1},e.prototype.onclosetag=function(e,t){var n,r,i,a,o,s;this.endIndex=t;var u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(Xh.has(u)||Qh.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(r=(n=this.cbs).onopentagname)||void 0===r||r.call(n,"br"),null===(a=(i=this.cbs).onopentag)||void 0===a||a.call(i,"br",{},!0),null===(s=(o=this.cbs).onclosetag)||void 0===s||s.call(o,"br",!1));else{var l=this.stack.lastIndexOf(u);if(-1!==l)if(this.cbs.onclosetag)for(var c=this.stack.length-l;c--;)this.cbs.onclosetag(this.stack.pop(),0!==c);else this.stack.length=l;else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1},e.prototype.onselfclosingtag=function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)},e.prototype.closeCurrentTag=function(e){var t,n,r=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===r&&(null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,r,!e),this.stack.pop())},e.prototype.onattribname=function(e,t){this.startIndex=e;var n=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?n.toLowerCase():n},e.prototype.onattribdata=function(e,t){this.attribvalue+=this.getSlice(e,t)},e.prototype.onattribentity=function(e){this.attribvalue+=(0,jh.fromCodePoint)(e)},e.prototype.onattribend=function(e,t){var n,r;this.endIndex=t,null===(r=(n=this.cbs).onattribute)||void 0===r||r.call(n,this.attribname,this.attribvalue,e===Vh.QuoteType.Double?'"':e===Vh.QuoteType.Single?"'":e===Vh.QuoteType.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""},e.prototype.getInstructionName=function(e){var t=e.search(ep),n=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(n=n.toLowerCase()),n},e.prototype.ondeclaration=function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var r=this.getInstructionName(n);this.cbs.onprocessinginstruction("!".concat(r),"!".concat(n))}this.startIndex=t+1},e.prototype.onprocessinginstruction=function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var r=this.getInstructionName(n);this.cbs.onprocessinginstruction("?".concat(r),"?".concat(n))}this.startIndex=t+1},e.prototype.oncomment=function(e,t,n){var r,i,a,o;this.endIndex=t,null===(i=(r=this.cbs).oncomment)||void 0===i||i.call(r,this.getSlice(e,t-n)),null===(o=(a=this.cbs).oncommentend)||void 0===o||o.call(a),this.startIndex=t+1},e.prototype.oncdata=function(e,t,n){var r,i,a,o,s,u,l,c,d,f;this.endIndex=t;var h=this.getSlice(e,t-n);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(r=this.cbs).oncdatastart)||void 0===i||i.call(r),null===(o=(a=this.cbs).ontext)||void 0===o||o.call(a,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(c=(l=this.cbs).oncomment)||void 0===c||c.call(l,"[CDATA[".concat(h,"]]")),null===(f=(d=this.cbs).oncommentend)||void 0===f||f.call(d)),this.startIndex=t+1},e.prototype.onend=function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var n=this.stack.length;n>0;this.cbs.onclosetag(this.stack[--n],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)},e.prototype.reset=function(){var e,t,n,r;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(r=(n=this.cbs).onparserinit)||void 0===r||r.call(n,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1},e.prototype.parseComplete=function(e){this.reset(),this.end(e)},e.prototype.getSlice=function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var n=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),n+=this.buffers[0].slice(0,t-this.bufferOffset);return n},e.prototype.shiftBuffer=function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()},e.prototype.write=function(e){var t,n;this.ended?null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,new Error(".write() after done!")):(this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++))},e.prototype.end=function(e){var t,n;this.ended?null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,new Error(".end() after done!")):(e&&this.write(e),this.ended=!0,this.tokenizer.end())},e.prototype.pause=function(){this.tokenizer.pause()},e.prototype.resume=function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex<this.buffers.length;)this.tokenizer.write(this.buffers[this.writeIndex++]);this.ended&&this.tokenizer.end()},e.prototype.parseChunk=function(e){this.write(e)},e.prototype.done=function(e){this.end(e)},e}();Ih.Parser=tp;var np={},rp={};!function(e){var t;Object.defineProperty(e,"__esModule",{value:!0}),e.Doctype=e.CDATA=e.Tag=e.Style=e.Script=e.Comment=e.Directive=e.Text=e.Root=e.isTag=e.ElementType=void 0,function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"}(t=e.ElementType||(e.ElementType={})),e.isTag=function(e){return e.type===t.Tag||e.type===t.Script||e.type===t.Style},e.Root=t.Root,e.Text=t.Text,e.Directive=t.Directive,e.Comment=t.Comment,e.Script=t.Script,e.Style=t.Style,e.Tag=t.Tag,e.CDATA=t.CDATA,e.Doctype=t.Doctype}(rp);var ip,ap={},op=We&&We.__extends||(ip=function(e,t){return ip=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},ip(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}ip(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),sp=We&&We.__assign||function(){return sp=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},sp.apply(this,arguments)};Object.defineProperty(ap,"__esModule",{value:!0}),ap.cloneNode=ap.hasChildren=ap.isDocument=ap.isDirective=ap.isComment=ap.isText=ap.isCDATA=ap.isTag=ap.Element=ap.Document=ap.CDATA=ap.NodeWithChildren=ap.ProcessingInstruction=ap.Comment=ap.Text=ap.DataNode=ap.Node=void 0;var up=rp,lp=function(){function e(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(e.prototype,"parentNode",{get:function(){return this.parent},set:function(e){this.parent=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"previousSibling",{get:function(){return this.prev},set:function(e){this.prev=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nextSibling",{get:function(){return this.next},set:function(e){this.next=e},enumerable:!1,configurable:!0}),e.prototype.cloneNode=function(e){return void 0===e&&(e=!1),Mp(this,e)},e}();ap.Node=lp;var cp=function(e){function t(t){var n=e.call(this)||this;return n.data=t,n}return op(t,e),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.data},set:function(e){this.data=e},enumerable:!1,configurable:!0}),t}(lp);ap.DataNode=cp;var dp=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=up.ElementType.Text,t}return op(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),t}(cp);ap.Text=dp;var fp=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=up.ElementType.Comment,t}return op(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),t}(cp);ap.Comment=fp;var hp=function(e){function t(t,n){var r=e.call(this,n)||this;return r.name=t,r.type=up.ElementType.Directive,r}return op(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),t}(cp);ap.ProcessingInstruction=hp;var pp=function(e){function t(t){var n=e.call(this)||this;return n.children=t,n}return op(t,e),Object.defineProperty(t.prototype,"firstChild",{get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(e){this.children=e},enumerable:!1,configurable:!0}),t}(lp);ap.NodeWithChildren=pp;var mp=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=up.ElementType.CDATA,t}return op(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(pp);ap.CDATA=mp;var _p=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=up.ElementType.Root,t}return op(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(pp);ap.Document=_p;var yp=function(e){function t(t,n,r,i){void 0===r&&(r=[]),void 0===i&&(i="script"===t?up.ElementType.Script:"style"===t?up.ElementType.Style:up.ElementType.Tag);var a=e.call(this,r)||this;return a.name=t,a.attribs=n,a.type=i,a}return op(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(e){this.name=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e=this;return Object.keys(this.attribs).map((function(t){var n,r;return{name:t,value:e.attribs[t],namespace:null===(n=e["x-attribsNamespace"])||void 0===n?void 0:n[t],prefix:null===(r=e["x-attribsPrefix"])||void 0===r?void 0:r[t]}}))},enumerable:!1,configurable:!0}),t}(pp);function gp(e){return(0,up.isTag)(e)}function vp(e){return e.type===up.ElementType.CDATA}function Ap(e){return e.type===up.ElementType.Text}function Ep(e){return e.type===up.ElementType.Comment}function bp(e){return e.type===up.ElementType.Directive}function Sp(e){return e.type===up.ElementType.Root}function Mp(e,t){var n;if(void 0===t&&(t=!1),Ap(e))n=new dp(e.data);else if(Ep(e))n=new fp(e.data);else if(gp(e)){var r=t?Tp(e.children):[],i=new yp(e.name,sp({},e.attribs),r);r.forEach((function(e){return e.parent=i})),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=sp({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=sp({},e["x-attribsPrefix"])),n=i}else if(vp(e)){r=t?Tp(e.children):[];var a=new mp(r);r.forEach((function(e){return e.parent=a})),n=a}else if(Sp(e)){r=t?Tp(e.children):[];var o=new _p(r);r.forEach((function(e){return e.parent=o})),e["x-mode"]&&(o["x-mode"]=e["x-mode"]),n=o}else{if(!bp(e))throw new Error("Not implemented yet: ".concat(e.type));var s=new hp(e.name,e.data);null!=e["x-name"]&&(s["x-name"]=e["x-name"],s["x-publicId"]=e["x-publicId"],s["x-systemId"]=e["x-systemId"]),n=s}return n.startIndex=e.startIndex,n.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(n.sourceCodeLocation=e.sourceCodeLocation),n}function Tp(e){for(var t=e.map((function(e){return Mp(e,!0)})),n=1;n<t.length;n++)t[n].prev=t[n-1],t[n-1].next=t[n];return t}ap.Element=yp,ap.isTag=gp,ap.isCDATA=vp,ap.isText=Ap,ap.isComment=Ep,ap.isDirective=bp,ap.isDocument=Sp,ap.hasChildren=function(e){return Object.prototype.hasOwnProperty.call(e,"children")},ap.cloneNode=Mp,function(e){var t=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=We&&We.__exportStar||function(e,n){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(n,r)||t(n,e,r)};Object.defineProperty(e,"__esModule",{value:!0}),e.DomHandler=void 0;var r=rp,i=ap;n(ap,e);var a={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},o=function(){function e(e,t,n){this.dom=[],this.root=new i.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof t&&(n=t,t=a),"object"==typeof e&&(t=e,e=void 0),this.callback=null!=e?e:null,this.options=null!=t?t:a,this.elementCB=null!=n?n:null}return e.prototype.onparserinit=function(e){this.parser=e},e.prototype.onreset=function(){this.dom=[],this.root=new i.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},e.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},e.prototype.onerror=function(e){this.handleCallback(e)},e.prototype.onclosetag=function(){this.lastNode=null;var e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)},e.prototype.onopentag=function(e,t){var n=this.options.xmlMode?r.ElementType.Tag:void 0,a=new i.Element(e,t,void 0,n);this.addNode(a),this.tagStack.push(a)},e.prototype.ontext=function(e){var t=this.lastNode;if(t&&t.type===r.ElementType.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{var n=new i.Text(e);this.addNode(n),this.lastNode=n}},e.prototype.oncomment=function(e){if(this.lastNode&&this.lastNode.type===r.ElementType.Comment)this.lastNode.data+=e;else{var t=new i.Comment(e);this.addNode(t),this.lastNode=t}},e.prototype.oncommentend=function(){this.lastNode=null},e.prototype.oncdatastart=function(){var e=new i.Text(""),t=new i.CDATA([e]);this.addNode(t),e.parent=t,this.lastNode=e},e.prototype.oncdataend=function(){this.lastNode=null},e.prototype.onprocessinginstruction=function(e,t){var n=new i.ProcessingInstruction(e,t);this.addNode(n)},e.prototype.handleCallback=function(e){if("function"==typeof this.callback)this.callback(e,this.dom);else if(e)throw e},e.prototype.addNode=function(e){var t=this.tagStack[this.tagStack.length-1],n=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),n&&(e.prev=n,n.next=e),e.parent=t,this.lastNode=null},e}();e.DomHandler=o,e.default=o}(np);var wp={},Op={},Np={},Cp={},Lp={},Dp={};Object.defineProperty(Dp,"__esModule",{value:!0}),Dp.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((function(e){return e.charCodeAt(0)})));var $p={};Object.defineProperty($p,"__esModule",{value:!0}),$p.default=new Uint16Array("Ȁaglq\tɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((function(e){return e.charCodeAt(0)})));var xp={};!function(e){var t;Object.defineProperty(e,"__esModule",{value:!0}),e.replaceCodePoint=e.fromCodePoint=void 0;var n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function r(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.fromCodePoint=null!==(t=String.fromCodePoint)&&void 0!==t?t:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.replaceCodePoint=r,e.default=function(t){return(0,e.fromCodePoint)(r(t))}}(xp),function(e){var t=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=We&&We.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),r=We&&We.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&t(r,e,i);return n(r,e),r},i=We&&We.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXML=e.decodeHTMLStrict=e.decodeHTMLAttribute=e.decodeHTML=e.determineBranch=e.EntityDecoder=e.DecodingMode=e.BinTrieFlags=e.fromCodePoint=e.replaceCodePoint=e.decodeCodePoint=e.xmlDecodeTree=e.htmlDecodeTree=void 0;var a=i(Dp);e.htmlDecodeTree=a.default;var o=i($p);e.xmlDecodeTree=o.default;var s=r(xp);e.decodeCodePoint=s.default;var u,l=xp;Object.defineProperty(e,"replaceCodePoint",{enumerable:!0,get:function(){return l.replaceCodePoint}}),Object.defineProperty(e,"fromCodePoint",{enumerable:!0,get:function(){return l.fromCodePoint}}),function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(u||(u={}));var c,d,f;function h(e){return e>=u.ZERO&&e<=u.NINE}function p(e){return e===u.EQUALS||function(e){return e>=u.UPPER_A&&e<=u.UPPER_Z||e>=u.LOWER_A&&e<=u.LOWER_Z||h(e)}(e)}!function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(c=e.BinTrieFlags||(e.BinTrieFlags={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(d||(d={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(f=e.DecodingMode||(e.DecodingMode={}));var m=function(){function e(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=d.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=f.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=d.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case d.EntityStart:return e.charCodeAt(t)===u.NUM?(this.state=d.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=d.NamedEntity,this.stateNamedEntity(e,t));case d.NumericStart:return this.stateNumericStart(e,t);case d.NumericDecimal:return this.stateNumericDecimal(e,t);case d.NumericHex:return this.stateNumericHex(e,t);case d.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===u.LOWER_X?(this.state=d.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=d.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,n,r){if(t!==n){var i=n-t;this.result=this.result*Math.pow(r,i)+parseInt(e.substr(t,i),r),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var n,r=t;t<e.length;){var i=e.charCodeAt(t);if(!(h(i)||(n=i,n>=u.UPPER_A&&n<=u.UPPER_F||n>=u.LOWER_A&&n<=u.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var n=t;t<e.length;){var r=e.charCodeAt(t);if(!h(r))return this.addToNumericResult(e,n,t,10),this.emitNumericEntity(r,2);t+=1}return this.addToNumericResult(e,n,t,10),-1},e.prototype.emitNumericEntity=function(e,t){var n;if(this.consumed<=t)return null===(n=this.errors)||void 0===n||n.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(e===u.SEMI)this.consumed+=1;else if(this.decodeMode===f.Strict)return 0;return this.emitCodePoint((0,s.replaceCodePoint)(this.result),this.consumed),this.errors&&(e!==u.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed},e.prototype.stateNamedEntity=function(e,t){for(var n=this.decodeTree,r=n[this.treeIndex],i=(r&c.VALUE_LENGTH)>>14;t<e.length;t++,this.excess++){var a=e.charCodeAt(t);if(this.treeIndex=y(n,r,this.treeIndex+Math.max(1,i),a),this.treeIndex<0)return 0===this.result||this.decodeMode===f.Attribute&&(0===i||p(a))?0:this.emitNotTerminatedNamedEntity();if(0!==(i=((r=n[this.treeIndex])&c.VALUE_LENGTH)>>14)){if(a===u.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==f.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,n=(this.decodeTree[t]&c.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,n){var r=this.decodeTree;return this.emitCodePoint(1===t?r[e]&~c.VALUE_LENGTH:r[e+1],n),3===t&&this.emitCodePoint(r[e+2],n),n},e.prototype.end=function(){var e;switch(this.state){case d.NamedEntity:return 0===this.result||this.decodeMode===f.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case d.NumericDecimal:return this.emitNumericEntity(0,2);case d.NumericHex:return this.emitNumericEntity(0,3);case d.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case d.EntityStart:return 0}},e}();function _(e){var t="",n=new m(e,(function(e){return t+=(0,s.fromCodePoint)(e)}));return function(e,r){for(var i=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(i,a),n.startEntity(r);var o=n.write(e,a+1);if(o<0){i=a+n.end();break}i=a+o,a=0===o?i+1:i}var s=t+e.slice(i);return t="",s}}function y(e,t,n,r){var i=(t&c.BRANCH_LENGTH)>>7,a=t&c.JUMP_TABLE;if(0===i)return 0!==a&&r===a?n:-1;if(a){var o=r-a;return o<0||o>=i?-1:e[n+o]-1}for(var s=n,u=s+i-1;s<=u;){var l=s+u>>>1,d=e[l];if(d<r)s=l+1;else{if(!(d>r))return e[l+i];u=l-1}}return-1}e.EntityDecoder=m,e.determineBranch=y;var g=_(a.default),v=_(o.default);e.decodeHTML=function(e,t){return void 0===t&&(t=f.Legacy),g(e,t)},e.decodeHTMLAttribute=function(e){return g(e,f.Attribute)},e.decodeHTMLStrict=function(e){return g(e,f.Strict)},e.decodeXML=function(e){return v(e,f.Strict)}}(Lp);var Ip={},kp={};function zp(e){for(var t=1;t<e.length;t++)e[t][0]+=e[t-1][0]+1;return e}Object.defineProperty(kp,"__esModule",{value:!0}),kp.default=new Map(zp([[9,"	"],[0,"
"],[22,"!"],[0,"""],[0,"#"],[0,"$"],[0,"%"],[0,"&"],[0,"'"],[0,"("],[0,")"],[0,"*"],[0,"+"],[0,","],[1,"."],[0,"/"],[10,":"],[0,";"],[0,{v:"<",n:8402,o:"<⃒"}],[0,{v:"=",n:8421,o:"=⃥"}],[0,{v:">",n:8402,o:">⃒"}],[0,"?"],[0,"@"],[26,"["],[0,"\"],[0,"]"],[0,"^"],[0,"_"],[0,"`"],[5,{n:106,o:"fj"}],[20,"{"],[0,"|"],[0,"}"],[34," "],[0,"¡"],[0,"¢"],[0,"£"],[0,"¤"],[0,"¥"],[0,"¦"],[0,"§"],[0,"¨"],[0,"©"],[0,"ª"],[0,"«"],[0,"¬"],[0,"­"],[0,"®"],[0,"¯"],[0,"°"],[0,"±"],[0,"²"],[0,"³"],[0,"´"],[0,"µ"],[0,"¶"],[0,"·"],[0,"¸"],[0,"¹"],[0,"º"],[0,"»"],[0,"¼"],[0,"½"],[0,"¾"],[0,"¿"],[0,"À"],[0,"Á"],[0,"Â"],[0,"Ã"],[0,"Ä"],[0,"Å"],[0,"Æ"],[0,"Ç"],[0,"È"],[0,"É"],[0,"Ê"],[0,"Ë"],[0,"Ì"],[0,"Í"],[0,"Î"],[0,"Ï"],[0,"Ð"],[0,"Ñ"],[0,"Ò"],[0,"Ó"],[0,"Ô"],[0,"Õ"],[0,"Ö"],[0,"×"],[0,"Ø"],[0,"Ù"],[0,"Ú"],[0,"Û"],[0,"Ü"],[0,"Ý"],[0,"Þ"],[0,"ß"],[0,"à"],[0,"á"],[0,"â"],[0,"ã"],[0,"ä"],[0,"å"],[0,"æ"],[0,"ç"],[0,"è"],[0,"é"],[0,"ê"],[0,"ë"],[0,"ì"],[0,"í"],[0,"î"],[0,"ï"],[0,"ð"],[0,"ñ"],[0,"ò"],[0,"ó"],[0,"ô"],[0,"õ"],[0,"ö"],[0,"÷"],[0,"ø"],[0,"ù"],[0,"ú"],[0,"û"],[0,"ü"],[0,"ý"],[0,"þ"],[0,"ÿ"],[0,"Ā"],[0,"ā"],[0,"Ă"],[0,"ă"],[0,"Ą"],[0,"ą"],[0,"Ć"],[0,"ć"],[0,"Ĉ"],[0,"ĉ"],[0,"Ċ"],[0,"ċ"],[0,"Č"],[0,"č"],[0,"Ď"],[0,"ď"],[0,"Đ"],[0,"đ"],[0,"Ē"],[0,"ē"],[2,"Ė"],[0,"ė"],[0,"Ę"],[0,"ę"],[0,"Ě"],[0,"ě"],[0,"Ĝ"],[0,"ĝ"],[0,"Ğ"],[0,"ğ"],[0,"Ġ"],[0,"ġ"],[0,"Ģ"],[1,"Ĥ"],[0,"ĥ"],[0,"Ħ"],[0,"ħ"],[0,"Ĩ"],[0,"ĩ"],[0,"Ī"],[0,"ī"],[2,"Į"],[0,"į"],[0,"İ"],[0,"ı"],[0,"IJ"],[0,"ij"],[0,"Ĵ"],[0,"ĵ"],[0,"Ķ"],[0,"ķ"],[0,"ĸ"],[0,"Ĺ"],[0,"ĺ"],[0,"Ļ"],[0,"ļ"],[0,"Ľ"],[0,"ľ"],[0,"Ŀ"],[0,"ŀ"],[0,"Ł"],[0,"ł"],[0,"Ń"],[0,"ń"],[0,"Ņ"],[0,"ņ"],[0,"Ň"],[0,"ň"],[0,"ʼn"],[0,"Ŋ"],[0,"ŋ"],[0,"Ō"],[0,"ō"],[2,"Ő"],[0,"ő"],[0,"Œ"],[0,"œ"],[0,"Ŕ"],[0,"ŕ"],[0,"Ŗ"],[0,"ŗ"],[0,"Ř"],[0,"ř"],[0,"Ś"],[0,"ś"],[0,"Ŝ"],[0,"ŝ"],[0,"Ş"],[0,"ş"],[0,"Š"],[0,"š"],[0,"Ţ"],[0,"ţ"],[0,"Ť"],[0,"ť"],[0,"Ŧ"],[0,"ŧ"],[0,"Ũ"],[0,"ũ"],[0,"Ū"],[0,"ū"],[0,"Ŭ"],[0,"ŭ"],[0,"Ů"],[0,"ů"],[0,"Ű"],[0,"ű"],[0,"Ų"],[0,"ų"],[0,"Ŵ"],[0,"ŵ"],[0,"Ŷ"],[0,"ŷ"],[0,"Ÿ"],[0,"Ź"],[0,"ź"],[0,"Ż"],[0,"ż"],[0,"Ž"],[0,"ž"],[19,"ƒ"],[34,"Ƶ"],[63,"ǵ"],[65,"ȷ"],[142,"ˆ"],[0,"ˇ"],[16,"˘"],[0,"˙"],[0,"˚"],[0,"˛"],[0,"˜"],[0,"˝"],[51,"̑"],[127,"Α"],[0,"Β"],[0,"Γ"],[0,"Δ"],[0,"Ε"],[0,"Ζ"],[0,"Η"],[0,"Θ"],[0,"Ι"],[0,"Κ"],[0,"Λ"],[0,"Μ"],[0,"Ν"],[0,"Ξ"],[0,"Ο"],[0,"Π"],[0,"Ρ"],[1,"Σ"],[0,"Τ"],[0,"Υ"],[0,"Φ"],[0,"Χ"],[0,"Ψ"],[0,"Ω"],[7,"α"],[0,"β"],[0,"γ"],[0,"δ"],[0,"ε"],[0,"ζ"],[0,"η"],[0,"θ"],[0,"ι"],[0,"κ"],[0,"λ"],[0,"μ"],[0,"ν"],[0,"ξ"],[0,"ο"],[0,"π"],[0,"ρ"],[0,"ς"],[0,"σ"],[0,"τ"],[0,"υ"],[0,"φ"],[0,"χ"],[0,"ψ"],[0,"ω"],[7,"ϑ"],[0,"ϒ"],[2,"ϕ"],[0,"ϖ"],[5,"Ϝ"],[0,"ϝ"],[18,"ϰ"],[0,"ϱ"],[3,"ϵ"],[0,"϶"],[10,"Ё"],[0,"Ђ"],[0,"Ѓ"],[0,"Є"],[0,"Ѕ"],[0,"І"],[0,"Ї"],[0,"Ј"],[0,"Љ"],[0,"Њ"],[0,"Ћ"],[0,"Ќ"],[1,"Ў"],[0,"Џ"],[0,"А"],[0,"Б"],[0,"В"],[0,"Г"],[0,"Д"],[0,"Е"],[0,"Ж"],[0,"З"],[0,"И"],[0,"Й"],[0,"К"],[0,"Л"],[0,"М"],[0,"Н"],[0,"О"],[0,"П"],[0,"Р"],[0,"С"],[0,"Т"],[0,"У"],[0,"Ф"],[0,"Х"],[0,"Ц"],[0,"Ч"],[0,"Ш"],[0,"Щ"],[0,"Ъ"],[0,"Ы"],[0,"Ь"],[0,"Э"],[0,"Ю"],[0,"Я"],[0,"а"],[0,"б"],[0,"в"],[0,"г"],[0,"д"],[0,"е"],[0,"ж"],[0,"з"],[0,"и"],[0,"й"],[0,"к"],[0,"л"],[0,"м"],[0,"н"],[0,"о"],[0,"п"],[0,"р"],[0,"с"],[0,"т"],[0,"у"],[0,"ф"],[0,"х"],[0,"ц"],[0,"ч"],[0,"ш"],[0,"щ"],[0,"ъ"],[0,"ы"],[0,"ь"],[0,"э"],[0,"ю"],[0,"я"],[1,"ё"],[0,"ђ"],[0,"ѓ"],[0,"є"],[0,"ѕ"],[0,"і"],[0,"ї"],[0,"ј"],[0,"љ"],[0,"њ"],[0,"ћ"],[0,"ќ"],[1,"ў"],[0,"џ"],[7074," "],[0," "],[0," "],[0," "],[1," "],[0," "],[0," "],[0," "],[0,"​"],[0,"‌"],[0,"‍"],[0,"‎"],[0,"‏"],[0,"‐"],[2,"–"],[0,"—"],[0,"―"],[0,"‖"],[1,"‘"],[0,"’"],[0,"‚"],[1,"“"],[0,"”"],[0,"„"],[1,"†"],[0,"‡"],[0,"•"],[2,"‥"],[0,"…"],[9,"‰"],[0,"‱"],[0,"′"],[0,"″"],[0,"‴"],[0,"‵"],[3,"‹"],[0,"›"],[3,"‾"],[2,"⁁"],[1,"⁃"],[0,"⁄"],[10,"⁏"],[7,"⁗"],[7,{v:" ",n:8202,o:"  "}],[0,"⁠"],[0,"⁡"],[0,"⁢"],[0,"⁣"],[72,"€"],[46,"⃛"],[0,"⃜"],[37,"ℂ"],[2,"℅"],[4,"ℊ"],[0,"ℋ"],[0,"ℌ"],[0,"ℍ"],[0,"ℎ"],[0,"ℏ"],[0,"ℐ"],[0,"ℑ"],[0,"ℒ"],[0,"ℓ"],[1,"ℕ"],[0,"№"],[0,"℗"],[0,"℘"],[0,"ℙ"],[0,"ℚ"],[0,"ℛ"],[0,"ℜ"],[0,"ℝ"],[0,"℞"],[3,"™"],[1,"ℤ"],[2,"℧"],[0,"ℨ"],[0,"℩"],[2,"ℬ"],[0,"ℭ"],[1,"ℯ"],[0,"ℰ"],[0,"ℱ"],[1,"ℳ"],[0,"ℴ"],[0,"ℵ"],[0,"ℶ"],[0,"ℷ"],[0,"ℸ"],[12,"ⅅ"],[0,"ⅆ"],[0,"ⅇ"],[0,"ⅈ"],[10,"⅓"],[0,"⅔"],[0,"⅕"],[0,"⅖"],[0,"⅗"],[0,"⅘"],[0,"⅙"],[0,"⅚"],[0,"⅛"],[0,"⅜"],[0,"⅝"],[0,"⅞"],[49,"←"],[0,"↑"],[0,"→"],[0,"↓"],[0,"↔"],[0,"↕"],[0,"↖"],[0,"↗"],[0,"↘"],[0,"↙"],[0,"↚"],[0,"↛"],[1,{v:"↝",n:824,o:"↝̸"}],[0,"↞"],[0,"↟"],[0,"↠"],[0,"↡"],[0,"↢"],[0,"↣"],[0,"↤"],[0,"↥"],[0,"↦"],[0,"↧"],[1,"↩"],[0,"↪"],[0,"↫"],[0,"↬"],[0,"↭"],[0,"↮"],[1,"↰"],[0,"↱"],[0,"↲"],[0,"↳"],[1,"↵"],[0,"↶"],[0,"↷"],[2,"↺"],[0,"↻"],[0,"↼"],[0,"↽"],[0,"↾"],[0,"↿"],[0,"⇀"],[0,"⇁"],[0,"⇂"],[0,"⇃"],[0,"⇄"],[0,"⇅"],[0,"⇆"],[0,"⇇"],[0,"⇈"],[0,"⇉"],[0,"⇊"],[0,"⇋"],[0,"⇌"],[0,"⇍"],[0,"⇎"],[0,"⇏"],[0,"⇐"],[0,"⇑"],[0,"⇒"],[0,"⇓"],[0,"⇔"],[0,"⇕"],[0,"⇖"],[0,"⇗"],[0,"⇘"],[0,"⇙"],[0,"⇚"],[0,"⇛"],[1,"⇝"],[6,"⇤"],[0,"⇥"],[15,"⇵"],[7,"⇽"],[0,"⇾"],[0,"⇿"],[0,"∀"],[0,"∁"],[0,{v:"∂",n:824,o:"∂̸"}],[0,"∃"],[0,"∄"],[0,"∅"],[1,"∇"],[0,"∈"],[0,"∉"],[1,"∋"],[0,"∌"],[2,"∏"],[0,"∐"],[0,"∑"],[0,"−"],[0,"∓"],[0,"∔"],[1,"∖"],[0,"∗"],[0,"∘"],[1,"√"],[2,"∝"],[0,"∞"],[0,"∟"],[0,{v:"∠",n:8402,o:"∠⃒"}],[0,"∡"],[0,"∢"],[0,"∣"],[0,"∤"],[0,"∥"],[0,"∦"],[0,"∧"],[0,"∨"],[0,{v:"∩",n:65024,o:"∩︀"}],[0,{v:"∪",n:65024,o:"∪︀"}],[0,"∫"],[0,"∬"],[0,"∭"],[0,"∮"],[0,"∯"],[0,"∰"],[0,"∱"],[0,"∲"],[0,"∳"],[0,"∴"],[0,"∵"],[0,"∶"],[0,"∷"],[0,"∸"],[1,"∺"],[0,"∻"],[0,{v:"∼",n:8402,o:"∼⃒"}],[0,{v:"∽",n:817,o:"∽̱"}],[0,{v:"∾",n:819,o:"∾̳"}],[0,"∿"],[0,"≀"],[0,"≁"],[0,{v:"≂",n:824,o:"≂̸"}],[0,"≃"],[0,"≄"],[0,"≅"],[0,"≆"],[0,"≇"],[0,"≈"],[0,"≉"],[0,"≊"],[0,{v:"≋",n:824,o:"≋̸"}],[0,"≌"],[0,{v:"≍",n:8402,o:"≍⃒"}],[0,{v:"≎",n:824,o:"≎̸"}],[0,{v:"≏",n:824,o:"≏̸"}],[0,{v:"≐",n:824,o:"≐̸"}],[0,"≑"],[0,"≒"],[0,"≓"],[0,"≔"],[0,"≕"],[0,"≖"],[0,"≗"],[1,"≙"],[0,"≚"],[1,"≜"],[2,"≟"],[0,"≠"],[0,{v:"≡",n:8421,o:"≡⃥"}],[0,"≢"],[1,{v:"≤",n:8402,o:"≤⃒"}],[0,{v:"≥",n:8402,o:"≥⃒"}],[0,{v:"≦",n:824,o:"≦̸"}],[0,{v:"≧",n:824,o:"≧̸"}],[0,{v:"≨",n:65024,o:"≨︀"}],[0,{v:"≩",n:65024,o:"≩︀"}],[0,{v:"≪",n:new Map(zp([[824,"≪̸"],[7577,"≪⃒"]]))}],[0,{v:"≫",n:new Map(zp([[824,"≫̸"],[7577,"≫⃒"]]))}],[0,"≬"],[0,"≭"],[0,"≮"],[0,"≯"],[0,"≰"],[0,"≱"],[0,"≲"],[0,"≳"],[0,"≴"],[0,"≵"],[0,"≶"],[0,"≷"],[0,"≸"],[0,"≹"],[0,"≺"],[0,"≻"],[0,"≼"],[0,"≽"],[0,"≾"],[0,{v:"≿",n:824,o:"≿̸"}],[0,"⊀"],[0,"⊁"],[0,{v:"⊂",n:8402,o:"⊂⃒"}],[0,{v:"⊃",n:8402,o:"⊃⃒"}],[0,"⊄"],[0,"⊅"],[0,"⊆"],[0,"⊇"],[0,"⊈"],[0,"⊉"],[0,{v:"⊊",n:65024,o:"⊊︀"}],[0,{v:"⊋",n:65024,o:"⊋︀"}],[1,"⊍"],[0,"⊎"],[0,{v:"⊏",n:824,o:"⊏̸"}],[0,{v:"⊐",n:824,o:"⊐̸"}],[0,"⊑"],[0,"⊒"],[0,{v:"⊓",n:65024,o:"⊓︀"}],[0,{v:"⊔",n:65024,o:"⊔︀"}],[0,"⊕"],[0,"⊖"],[0,"⊗"],[0,"⊘"],[0,"⊙"],[0,"⊚"],[0,"⊛"],[1,"⊝"],[0,"⊞"],[0,"⊟"],[0,"⊠"],[0,"⊡"],[0,"⊢"],[0,"⊣"],[0,"⊤"],[0,"⊥"],[1,"⊧"],[0,"⊨"],[0,"⊩"],[0,"⊪"],[0,"⊫"],[0,"⊬"],[0,"⊭"],[0,"⊮"],[0,"⊯"],[0,"⊰"],[1,"⊲"],[0,"⊳"],[0,{v:"⊴",n:8402,o:"⊴⃒"}],[0,{v:"⊵",n:8402,o:"⊵⃒"}],[0,"⊶"],[0,"⊷"],[0,"⊸"],[0,"⊹"],[0,"⊺"],[0,"⊻"],[1,"⊽"],[0,"⊾"],[0,"⊿"],[0,"⋀"],[0,"⋁"],[0,"⋂"],[0,"⋃"],[0,"⋄"],[0,"⋅"],[0,"⋆"],[0,"⋇"],[0,"⋈"],[0,"⋉"],[0,"⋊"],[0,"⋋"],[0,"⋌"],[0,"⋍"],[0,"⋎"],[0,"⋏"],[0,"⋐"],[0,"⋑"],[0,"⋒"],[0,"⋓"],[0,"⋔"],[0,"⋕"],[0,"⋖"],[0,"⋗"],[0,{v:"⋘",n:824,o:"⋘̸"}],[0,{v:"⋙",n:824,o:"⋙̸"}],[0,{v:"⋚",n:65024,o:"⋚︀"}],[0,{v:"⋛",n:65024,o:"⋛︀"}],[2,"⋞"],[0,"⋟"],[0,"⋠"],[0,"⋡"],[0,"⋢"],[0,"⋣"],[2,"⋦"],[0,"⋧"],[0,"⋨"],[0,"⋩"],[0,"⋪"],[0,"⋫"],[0,"⋬"],[0,"⋭"],[0,"⋮"],[0,"⋯"],[0,"⋰"],[0,"⋱"],[0,"⋲"],[0,"⋳"],[0,"⋴"],[0,{v:"⋵",n:824,o:"⋵̸"}],[0,"⋶"],[0,"⋷"],[1,{v:"⋹",n:824,o:"⋹̸"}],[0,"⋺"],[0,"⋻"],[0,"⋼"],[0,"⋽"],[0,"⋾"],[6,"⌅"],[0,"⌆"],[1,"⌈"],[0,"⌉"],[0,"⌊"],[0,"⌋"],[0,"⌌"],[0,"⌍"],[0,"⌎"],[0,"⌏"],[0,"⌐"],[1,"⌒"],[0,"⌓"],[1,"⌕"],[0,"⌖"],[5,"⌜"],[0,"⌝"],[0,"⌞"],[0,"⌟"],[2,"⌢"],[0,"⌣"],[9,"⌭"],[0,"⌮"],[7,"⌶"],[6,"⌽"],[1,"⌿"],[60,"⍼"],[51,"⎰"],[0,"⎱"],[2,"⎴"],[0,"⎵"],[0,"⎶"],[37,"⏜"],[0,"⏝"],[0,"⏞"],[0,"⏟"],[2,"⏢"],[4,"⏧"],[59,"␣"],[164,"Ⓢ"],[55,"─"],[1,"│"],[9,"┌"],[3,"┐"],[3,"└"],[3,"┘"],[3,"├"],[7,"┤"],[7,"┬"],[7,"┴"],[7,"┼"],[19,"═"],[0,"║"],[0,"╒"],[0,"╓"],[0,"╔"],[0,"╕"],[0,"╖"],[0,"╗"],[0,"╘"],[0,"╙"],[0,"╚"],[0,"╛"],[0,"╜"],[0,"╝"],[0,"╞"],[0,"╟"],[0,"╠"],[0,"╡"],[0,"╢"],[0,"╣"],[0,"╤"],[0,"╥"],[0,"╦"],[0,"╧"],[0,"╨"],[0,"╩"],[0,"╪"],[0,"╫"],[0,"╬"],[19,"▀"],[3,"▄"],[3,"█"],[8,"░"],[0,"▒"],[0,"▓"],[13,"□"],[8,"▪"],[0,"▫"],[1,"▭"],[0,"▮"],[2,"▱"],[1,"△"],[0,"▴"],[0,"▵"],[2,"▸"],[0,"▹"],[3,"▽"],[0,"▾"],[0,"▿"],[2,"◂"],[0,"◃"],[6,"◊"],[0,"○"],[32,"◬"],[2,"◯"],[8,"◸"],[0,"◹"],[0,"◺"],[0,"◻"],[0,"◼"],[8,"★"],[0,"☆"],[7,"☎"],[49,"♀"],[1,"♂"],[29,"♠"],[2,"♣"],[1,"♥"],[0,"♦"],[3,"♪"],[2,"♭"],[0,"♮"],[0,"♯"],[163,"✓"],[3,"✗"],[8,"✠"],[21,"✶"],[33,"❘"],[25,"❲"],[0,"❳"],[84,"⟈"],[0,"⟉"],[28,"⟦"],[0,"⟧"],[0,"⟨"],[0,"⟩"],[0,"⟪"],[0,"⟫"],[0,"⟬"],[0,"⟭"],[7,"⟵"],[0,"⟶"],[0,"⟷"],[0,"⟸"],[0,"⟹"],[0,"⟺"],[1,"⟼"],[2,"⟿"],[258,"⤂"],[0,"⤃"],[0,"⤄"],[0,"⤅"],[6,"⤌"],[0,"⤍"],[0,"⤎"],[0,"⤏"],[0,"⤐"],[0,"⤑"],[0,"⤒"],[0,"⤓"],[2,"⤖"],[2,"⤙"],[0,"⤚"],[0,"⤛"],[0,"⤜"],[0,"⤝"],[0,"⤞"],[0,"⤟"],[0,"⤠"],[2,"⤣"],[0,"⤤"],[0,"⤥"],[0,"⤦"],[0,"⤧"],[0,"⤨"],[0,"⤩"],[0,"⤪"],[8,{v:"⤳",n:824,o:"⤳̸"}],[1,"⤵"],[0,"⤶"],[0,"⤷"],[0,"⤸"],[0,"⤹"],[2,"⤼"],[0,"⤽"],[7,"⥅"],[2,"⥈"],[0,"⥉"],[0,"⥊"],[0,"⥋"],[2,"⥎"],[0,"⥏"],[0,"⥐"],[0,"⥑"],[0,"⥒"],[0,"⥓"],[0,"⥔"],[0,"⥕"],[0,"⥖"],[0,"⥗"],[0,"⥘"],[0,"⥙"],[0,"⥚"],[0,"⥛"],[0,"⥜"],[0,"⥝"],[0,"⥞"],[0,"⥟"],[0,"⥠"],[0,"⥡"],[0,"⥢"],[0,"⥣"],[0,"⥤"],[0,"⥥"],[0,"⥦"],[0,"⥧"],[0,"⥨"],[0,"⥩"],[0,"⥪"],[0,"⥫"],[0,"⥬"],[0,"⥭"],[0,"⥮"],[0,"⥯"],[0,"⥰"],[0,"⥱"],[0,"⥲"],[0,"⥳"],[0,"⥴"],[0,"⥵"],[0,"⥶"],[1,"⥸"],[0,"⥹"],[1,"⥻"],[0,"⥼"],[0,"⥽"],[0,"⥾"],[0,"⥿"],[5,"⦅"],[0,"⦆"],[4,"⦋"],[0,"⦌"],[0,"⦍"],[0,"⦎"],[0,"⦏"],[0,"⦐"],[0,"⦑"],[0,"⦒"],[0,"⦓"],[0,"⦔"],[0,"⦕"],[0,"⦖"],[3,"⦚"],[1,"⦜"],[0,"⦝"],[6,"⦤"],[0,"⦥"],[0,"⦦"],[0,"⦧"],[0,"⦨"],[0,"⦩"],[0,"⦪"],[0,"⦫"],[0,"⦬"],[0,"⦭"],[0,"⦮"],[0,"⦯"],[0,"⦰"],[0,"⦱"],[0,"⦲"],[0,"⦳"],[0,"⦴"],[0,"⦵"],[0,"⦶"],[0,"⦷"],[1,"⦹"],[1,"⦻"],[0,"⦼"],[1,"⦾"],[0,"⦿"],[0,"⧀"],[0,"⧁"],[0,"⧂"],[0,"⧃"],[0,"⧄"],[0,"⧅"],[3,"⧉"],[3,"⧍"],[0,"⧎"],[0,{v:"⧏",n:824,o:"⧏̸"}],[0,{v:"⧐",n:824,o:"⧐̸"}],[11,"⧜"],[0,"⧝"],[0,"⧞"],[4,"⧣"],[0,"⧤"],[0,"⧥"],[5,"⧫"],[8,"⧴"],[1,"⧶"],[9,"⨀"],[0,"⨁"],[0,"⨂"],[1,"⨄"],[1,"⨆"],[5,"⨌"],[0,"⨍"],[2,"⨐"],[0,"⨑"],[0,"⨒"],[0,"⨓"],[0,"⨔"],[0,"⨕"],[0,"⨖"],[0,"⨗"],[10,"⨢"],[0,"⨣"],[0,"⨤"],[0,"⨥"],[0,"⨦"],[0,"⨧"],[1,"⨩"],[0,"⨪"],[2,"⨭"],[0,"⨮"],[0,"⨯"],[0,"⨰"],[0,"⨱"],[1,"⨳"],[0,"⨴"],[0,"⨵"],[0,"⨶"],[0,"⨷"],[0,"⨸"],[0,"⨹"],[0,"⨺"],[0,"⨻"],[0,"⨼"],[2,"⨿"],[0,"⩀"],[1,"⩂"],[0,"⩃"],[0,"⩄"],[0,"⩅"],[0,"⩆"],[0,"⩇"],[0,"⩈"],[0,"⩉"],[0,"⩊"],[0,"⩋"],[0,"⩌"],[0,"⩍"],[2,"⩐"],[2,"⩓"],[0,"⩔"],[0,"⩕"],[0,"⩖"],[0,"⩗"],[0,"⩘"],[1,"⩚"],[0,"⩛"],[0,"⩜"],[0,"⩝"],[1,"⩟"],[6,"⩦"],[3,"⩪"],[2,{v:"⩭",n:824,o:"⩭̸"}],[0,"⩮"],[0,"⩯"],[0,{v:"⩰",n:824,o:"⩰̸"}],[0,"⩱"],[0,"⩲"],[0,"⩳"],[0,"⩴"],[0,"⩵"],[1,"⩷"],[0,"⩸"],[0,"⩹"],[0,"⩺"],[0,"⩻"],[0,"⩼"],[0,{v:"⩽",n:824,o:"⩽̸"}],[0,{v:"⩾",n:824,o:"⩾̸"}],[0,"⩿"],[0,"⪀"],[0,"⪁"],[0,"⪂"],[0,"⪃"],[0,"⪄"],[0,"⪅"],[0,"⪆"],[0,"⪇"],[0,"⪈"],[0,"⪉"],[0,"⪊"],[0,"⪋"],[0,"⪌"],[0,"⪍"],[0,"⪎"],[0,"⪏"],[0,"⪐"],[0,"⪑"],[0,"⪒"],[0,"⪓"],[0,"⪔"],[0,"⪕"],[0,"⪖"],[0,"⪗"],[0,"⪘"],[0,"⪙"],[0,"⪚"],[2,"⪝"],[0,"⪞"],[0,"⪟"],[0,"⪠"],[0,{v:"⪡",n:824,o:"⪡̸"}],[0,{v:"⪢",n:824,o:"⪢̸"}],[1,"⪤"],[0,"⪥"],[0,"⪦"],[0,"⪧"],[0,"⪨"],[0,"⪩"],[0,"⪪"],[0,"⪫"],[0,{v:"⪬",n:65024,o:"⪬︀"}],[0,{v:"⪭",n:65024,o:"⪭︀"}],[0,"⪮"],[0,{v:"⪯",n:824,o:"⪯̸"}],[0,{v:"⪰",n:824,o:"⪰̸"}],[2,"⪳"],[0,"⪴"],[0,"⪵"],[0,"⪶"],[0,"⪷"],[0,"⪸"],[0,"⪹"],[0,"⪺"],[0,"⪻"],[0,"⪼"],[0,"⪽"],[0,"⪾"],[0,"⪿"],[0,"⫀"],[0,"⫁"],[0,"⫂"],[0,"⫃"],[0,"⫄"],[0,{v:"⫅",n:824,o:"⫅̸"}],[0,{v:"⫆",n:824,o:"⫆̸"}],[0,"⫇"],[0,"⫈"],[2,{v:"⫋",n:65024,o:"⫋︀"}],[0,{v:"⫌",n:65024,o:"⫌︀"}],[2,"⫏"],[0,"⫐"],[0,"⫑"],[0,"⫒"],[0,"⫓"],[0,"⫔"],[0,"⫕"],[0,"⫖"],[0,"⫗"],[0,"⫘"],[0,"⫙"],[0,"⫚"],[0,"⫛"],[8,"⫤"],[1,"⫦"],[0,"⫧"],[0,"⫨"],[0,"⫩"],[1,"⫫"],[0,"⫬"],[0,"⫭"],[0,"⫮"],[0,"⫯"],[0,"⫰"],[0,"⫱"],[0,"⫲"],[0,"⫳"],[9,{v:"⫽",n:8421,o:"⫽⃥"}],[44343,{n:new Map(zp([[56476,"𝒜"],[1,"𝒞"],[0,"𝒟"],[2,"𝒢"],[2,"𝒥"],[0,"𝒦"],[2,"𝒩"],[0,"𝒪"],[0,"𝒫"],[0,"𝒬"],[1,"𝒮"],[0,"𝒯"],[0,"𝒰"],[0,"𝒱"],[0,"𝒲"],[0,"𝒳"],[0,"𝒴"],[0,"𝒵"],[0,"𝒶"],[0,"𝒷"],[0,"𝒸"],[0,"𝒹"],[1,"𝒻"],[1,"𝒽"],[0,"𝒾"],[0,"𝒿"],[0,"𝓀"],[0,"𝓁"],[0,"𝓂"],[0,"𝓃"],[1,"𝓅"],[0,"𝓆"],[0,"𝓇"],[0,"𝓈"],[0,"𝓉"],[0,"𝓊"],[0,"𝓋"],[0,"𝓌"],[0,"𝓍"],[0,"𝓎"],[0,"𝓏"],[52,"𝔄"],[0,"𝔅"],[1,"𝔇"],[0,"𝔈"],[0,"𝔉"],[0,"𝔊"],[2,"𝔍"],[0,"𝔎"],[0,"𝔏"],[0,"𝔐"],[0,"𝔑"],[0,"𝔒"],[0,"𝔓"],[0,"𝔔"],[1,"𝔖"],[0,"𝔗"],[0,"𝔘"],[0,"𝔙"],[0,"𝔚"],[0,"𝔛"],[0,"𝔜"],[1,"𝔞"],[0,"𝔟"],[0,"𝔠"],[0,"𝔡"],[0,"𝔢"],[0,"𝔣"],[0,"𝔤"],[0,"𝔥"],[0,"𝔦"],[0,"𝔧"],[0,"𝔨"],[0,"𝔩"],[0,"𝔪"],[0,"𝔫"],[0,"𝔬"],[0,"𝔭"],[0,"𝔮"],[0,"𝔯"],[0,"𝔰"],[0,"𝔱"],[0,"𝔲"],[0,"𝔳"],[0,"𝔴"],[0,"𝔵"],[0,"𝔶"],[0,"𝔷"],[0,"𝔸"],[0,"𝔹"],[1,"𝔻"],[0,"𝔼"],[0,"𝔽"],[0,"𝔾"],[1,"𝕀"],[0,"𝕁"],[0,"𝕂"],[0,"𝕃"],[0,"𝕄"],[1,"𝕆"],[3,"𝕊"],[0,"𝕋"],[0,"𝕌"],[0,"𝕍"],[0,"𝕎"],[0,"𝕏"],[0,"𝕐"],[1,"𝕒"],[0,"𝕓"],[0,"𝕔"],[0,"𝕕"],[0,"𝕖"],[0,"𝕗"],[0,"𝕘"],[0,"𝕙"],[0,"𝕚"],[0,"𝕛"],[0,"𝕜"],[0,"𝕝"],[0,"𝕞"],[0,"𝕟"],[0,"𝕠"],[0,"𝕡"],[0,"𝕢"],[0,"𝕣"],[0,"𝕤"],[0,"𝕥"],[0,"𝕦"],[0,"𝕧"],[0,"𝕨"],[0,"𝕩"],[0,"𝕪"],[0,"𝕫"]]))}],[8906,"ff"],[0,"fi"],[0,"fl"],[0,"ffi"],[0,"ffl"]]));var Rp={};!function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.escapeText=e.escapeAttribute=e.escapeUTF8=e.escape=e.encodeXML=e.getCodePoint=e.xmlReplacer=void 0,e.xmlReplacer=/["&'<>$\x80-\uFFFF]/g;var t=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function n(n){for(var r,i="",a=0;null!==(r=e.xmlReplacer.exec(n));){var o=r.index,s=n.charCodeAt(o),u=t.get(s);void 0!==u?(i+=n.substring(a,o)+u,a=o+1):(i+="".concat(n.substring(a,o),"&#x").concat((0,e.getCodePoint)(n,o).toString(16),";"),a=e.xmlReplacer.lastIndex+=Number(55296==(64512&s)))}return i+n.substr(a)}function r(e,t){return function(n){for(var r,i=0,a="";r=e.exec(n);)i!==r.index&&(a+=n.substring(i,r.index)),a+=t.get(r[0].charCodeAt(0)),i=r.index+1;return a+n.substring(i)}}e.getCodePoint=null!=String.prototype.codePointAt?function(e,t){return e.codePointAt(t)}:function(e,t){return 55296==(64512&e.charCodeAt(t))?1024*(e.charCodeAt(t)-55296)+e.charCodeAt(t+1)-56320+65536:e.charCodeAt(t)},e.encodeXML=n,e.escape=n,e.escapeUTF8=r(/[&<>'"]/g,t),e.escapeAttribute=r(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),e.escapeText=r(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]))}(Rp);var Zp=We&&We.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(Ip,"__esModule",{value:!0}),Ip.encodeNonAsciiHTML=Ip.encodeHTML=void 0;var Pp=Zp(kp),Fp=Rp,Up=/[\t\n!-,./:-@[-`\f{-}$\x80-\uFFFF]/g;function Bp(e,t){for(var n,r="",i=0;null!==(n=e.exec(t));){var a=n.index;r+=t.substring(i,a);var o=t.charCodeAt(a),s=Pp.default.get(o);if("object"==typeof s){if(a+1<t.length){var u=t.charCodeAt(a+1),l="number"==typeof s.n?s.n===u?s.o:void 0:s.n.get(u);if(void 0!==l){r+=l,i=e.lastIndex+=1;continue}}s=s.v}if(void 0!==s)r+=s,i=a+1;else{var c=(0,Fp.getCodePoint)(t,a);r+="&#x".concat(c.toString(16),";"),i=e.lastIndex+=Number(c!==o)}}return r+t.substr(i)}Ip.encodeHTML=function(e){return Bp(Up,e)},Ip.encodeNonAsciiHTML=function(e){return Bp(Fp.xmlReplacer,e)},function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXMLStrict=e.decodeHTML5Strict=e.decodeHTML4Strict=e.decodeHTML5=e.decodeHTML4=e.decodeHTMLAttribute=e.decodeHTMLStrict=e.decodeHTML=e.decodeXML=e.DecodingMode=e.EntityDecoder=e.encodeHTML5=e.encodeHTML4=e.encodeNonAsciiHTML=e.encodeHTML=e.escapeText=e.escapeAttribute=e.escapeUTF8=e.escape=e.encodeXML=e.encode=e.decodeStrict=e.decode=e.EncodingMode=e.EntityLevel=void 0;var t,n,r=Lp,i=Ip,a=Rp;function o(e,n){if(void 0===n&&(n=t.XML),("number"==typeof n?n:n.level)===t.HTML){var i="object"==typeof n?n.mode:void 0;return(0,r.decodeHTML)(e,i)}return(0,r.decodeXML)(e)}!function(e){e[e.XML=0]="XML",e[e.HTML=1]="HTML"}(t=e.EntityLevel||(e.EntityLevel={})),function(e){e[e.UTF8=0]="UTF8",e[e.ASCII=1]="ASCII",e[e.Extensive=2]="Extensive",e[e.Attribute=3]="Attribute",e[e.Text=4]="Text"}(n=e.EncodingMode||(e.EncodingMode={})),e.decode=o,e.decodeStrict=function(e,n){var i;void 0===n&&(n=t.XML);var a="number"==typeof n?{level:n}:n;return null!==(i=a.mode)&&void 0!==i||(a.mode=r.DecodingMode.Strict),o(e,a)},e.encode=function(e,r){void 0===r&&(r=t.XML);var o="number"==typeof r?{level:r}:r;return o.mode===n.UTF8?(0,a.escapeUTF8)(e):o.mode===n.Attribute?(0,a.escapeAttribute)(e):o.mode===n.Text?(0,a.escapeText)(e):o.level===t.HTML?o.mode===n.ASCII?(0,i.encodeNonAsciiHTML)(e):(0,i.encodeHTML)(e):(0,a.encodeXML)(e)};var s=Rp;Object.defineProperty(e,"encodeXML",{enumerable:!0,get:function(){return s.encodeXML}}),Object.defineProperty(e,"escape",{enumerable:!0,get:function(){return s.escape}}),Object.defineProperty(e,"escapeUTF8",{enumerable:!0,get:function(){return s.escapeUTF8}}),Object.defineProperty(e,"escapeAttribute",{enumerable:!0,get:function(){return s.escapeAttribute}}),Object.defineProperty(e,"escapeText",{enumerable:!0,get:function(){return s.escapeText}});var u=Ip;Object.defineProperty(e,"encodeHTML",{enumerable:!0,get:function(){return u.encodeHTML}}),Object.defineProperty(e,"encodeNonAsciiHTML",{enumerable:!0,get:function(){return u.encodeNonAsciiHTML}}),Object.defineProperty(e,"encodeHTML4",{enumerable:!0,get:function(){return u.encodeHTML}}),Object.defineProperty(e,"encodeHTML5",{enumerable:!0,get:function(){return u.encodeHTML}});var l=Lp;Object.defineProperty(e,"EntityDecoder",{enumerable:!0,get:function(){return l.EntityDecoder}}),Object.defineProperty(e,"DecodingMode",{enumerable:!0,get:function(){return l.DecodingMode}}),Object.defineProperty(e,"decodeXML",{enumerable:!0,get:function(){return l.decodeXML}}),Object.defineProperty(e,"decodeHTML",{enumerable:!0,get:function(){return l.decodeHTML}}),Object.defineProperty(e,"decodeHTMLStrict",{enumerable:!0,get:function(){return l.decodeHTMLStrict}}),Object.defineProperty(e,"decodeHTMLAttribute",{enumerable:!0,get:function(){return l.decodeHTMLAttribute}}),Object.defineProperty(e,"decodeHTML4",{enumerable:!0,get:function(){return l.decodeHTML}}),Object.defineProperty(e,"decodeHTML5",{enumerable:!0,get:function(){return l.decodeHTML}}),Object.defineProperty(e,"decodeHTML4Strict",{enumerable:!0,get:function(){return l.decodeHTMLStrict}}),Object.defineProperty(e,"decodeHTML5Strict",{enumerable:!0,get:function(){return l.decodeHTMLStrict}}),Object.defineProperty(e,"decodeXMLStrict",{enumerable:!0,get:function(){return l.decodeXML}})}(Cp);var Vp={};Object.defineProperty(Vp,"__esModule",{value:!0}),Vp.attributeNames=Vp.elementNames=void 0,Vp.elementNames=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map((function(e){return[e.toLowerCase(),e]}))),Vp.attributeNames=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map((function(e){return[e.toLowerCase(),e]})));var jp=We&&We.__assign||function(){return jp=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},jp.apply(this,arguments)},Hp=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),Yp=We&&We.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),Gp=We&&We.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&Hp(t,e,n);return Yp(t,e),t};Object.defineProperty(Np,"__esModule",{value:!0}),Np.render=void 0;var Wp=Gp(rp),qp=Cp,Kp=Vp,Jp=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function Xp(e){return e.replace(/"/g,""")}var Qp=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function em(e,t){void 0===t&&(t={});for(var n=("length"in e?e:[e]),r="",i=0;i<n.length;i++)r+=tm(n[i],t);return r}function tm(e,t){switch(e.type){case Wp.Root:return em(e.children,t);case Wp.Doctype:case Wp.Directive:return"<".concat(e.data,">");case Wp.Comment:return function(e){return"\x3c!--".concat(e.data,"--\x3e")}(e);case Wp.CDATA:return function(e){return"<![CDATA[".concat(e.children[0].data,"]]>")}(e);case Wp.Script:case Wp.Style:case Wp.Tag:return function(e,t){var n;"foreign"===t.xmlMode&&(e.name=null!==(n=Kp.elementNames.get(e.name))&&void 0!==n?n:e.name,e.parent&&nm.has(e.parent.name)&&(t=jp(jp({},t),{xmlMode:!1})));!t.xmlMode&&rm.has(e.name)&&(t=jp(jp({},t),{xmlMode:"foreign"}));var r="<".concat(e.name),i=function(e,t){var n;if(e){var r=!1===(null!==(n=t.encodeEntities)&&void 0!==n?n:t.decodeEntities)?Xp:t.xmlMode||"utf8"!==t.encodeEntities?qp.encodeXML:qp.escapeAttribute;return Object.keys(e).map((function(n){var i,a,o=null!==(i=e[n])&&void 0!==i?i:"";return"foreign"===t.xmlMode&&(n=null!==(a=Kp.attributeNames.get(n))&&void 0!==a?a:n),t.emptyAttrs||t.xmlMode||""!==o?"".concat(n,'="').concat(r(o),'"'):n})).join(" ")}}(e.attribs,t);i&&(r+=" ".concat(i));0===e.children.length&&(t.xmlMode?!1!==t.selfClosingTags:t.selfClosingTags&&Qp.has(e.name))?(t.xmlMode||(r+=" "),r+="/>"):(r+=">",e.children.length>0&&(r+=em(e.children,t)),!t.xmlMode&&Qp.has(e.name)||(r+="</".concat(e.name,">")));return r}(e,t);case Wp.Text:return function(e,t){var n,r=e.data||"";!1===(null!==(n=t.encodeEntities)&&void 0!==n?n:t.decodeEntities)||!t.xmlMode&&e.parent&&Jp.has(e.parent.name)||(r=t.xmlMode||"utf8"!==t.encodeEntities?(0,qp.encodeXML)(r):(0,qp.escapeText)(r));return r}(e,t)}}Np.render=em,Np.default=em;var nm=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),rm=new Set(["svg","math"]);var im=We&&We.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(Op,"__esModule",{value:!0}),Op.innerText=Op.textContent=Op.getText=Op.getInnerHTML=Op.getOuterHTML=void 0;var am=np,om=im(Np),sm=rp;function um(e,t){return(0,om.default)(e,t)}Op.getOuterHTML=um,Op.getInnerHTML=function(e,t){return(0,am.hasChildren)(e)?e.children.map((function(e){return um(e,t)})).join(""):""},Op.getText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,am.isTag)(t)?"br"===t.name?"\n":e(t.children):(0,am.isCDATA)(t)?e(t.children):(0,am.isText)(t)?t.data:""},Op.textContent=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,am.hasChildren)(t)&&!(0,am.isComment)(t)?e(t.children):(0,am.isText)(t)?t.data:""},Op.innerText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,am.hasChildren)(t)&&(t.type===sm.ElementType.Tag||(0,am.isCDATA)(t))?e(t.children):(0,am.isText)(t)?t.data:""};var lm={};Object.defineProperty(lm,"__esModule",{value:!0}),lm.prevElementSibling=lm.nextElementSibling=lm.getName=lm.hasAttrib=lm.getAttributeValue=lm.getSiblings=lm.getParent=lm.getChildren=void 0;var cm=np;function dm(e){return(0,cm.hasChildren)(e)?e.children:[]}function fm(e){return e.parent||null}lm.getChildren=dm,lm.getParent=fm,lm.getSiblings=function(e){var t=fm(e);if(null!=t)return dm(t);for(var n=[e],r=e.prev,i=e.next;null!=r;)n.unshift(r),r=r.prev;for(;null!=i;)n.push(i),i=i.next;return n},lm.getAttributeValue=function(e,t){var n;return null===(n=e.attribs)||void 0===n?void 0:n[t]},lm.hasAttrib=function(e,t){return null!=e.attribs&&Object.prototype.hasOwnProperty.call(e.attribs,t)&&null!=e.attribs[t]},lm.getName=function(e){return e.name},lm.nextElementSibling=function(e){for(var t=e.next;null!==t&&!(0,cm.isTag)(t);)t=t.next;return t},lm.prevElementSibling=function(e){for(var t=e.prev;null!==t&&!(0,cm.isTag)(t);)t=t.prev;return t};var hm={};function pm(e){if(e.prev&&(e.prev.next=e.next),e.next&&(e.next.prev=e.prev),e.parent){var t=e.parent.children,n=t.lastIndexOf(e);n>=0&&t.splice(n,1)}e.next=null,e.prev=null,e.parent=null}Object.defineProperty(hm,"__esModule",{value:!0}),hm.prepend=hm.prependChild=hm.append=hm.appendChild=hm.replaceElement=hm.removeElement=void 0,hm.removeElement=pm,hm.replaceElement=function(e,t){var n=t.prev=e.prev;n&&(n.next=t);var r=t.next=e.next;r&&(r.prev=t);var i=t.parent=e.parent;if(i){var a=i.children;a[a.lastIndexOf(e)]=t,e.parent=null}},hm.appendChild=function(e,t){if(pm(t),t.next=null,t.parent=e,e.children.push(t)>1){var n=e.children[e.children.length-2];n.next=t,t.prev=n}else t.prev=null},hm.append=function(e,t){pm(t);var n=e.parent,r=e.next;if(t.next=r,t.prev=e,e.next=t,t.parent=n,r){if(r.prev=t,n){var i=n.children;i.splice(i.lastIndexOf(r),0,t)}}else n&&n.children.push(t)},hm.prependChild=function(e,t){if(pm(t),t.parent=e,t.prev=null,1!==e.children.unshift(t)){var n=e.children[1];n.prev=t,t.next=n}else t.next=null},hm.prepend=function(e,t){pm(t);var n=e.parent;if(n){var r=n.children;r.splice(r.indexOf(e),0,t)}e.prev&&(e.prev.next=t),t.parent=n,t.prev=e.prev,t.next=e,e.prev=t};var mm={};Object.defineProperty(mm,"__esModule",{value:!0}),mm.findAll=mm.existsOne=mm.findOne=mm.findOneChild=mm.find=mm.filter=void 0;var _m=np;function ym(e,t,n,r){for(var i=[],a=[t],o=[0];;)if(o[0]>=a[0].length){if(1===o.length)return i;a.shift(),o.shift()}else{var s=a[0][o[0]++];if(e(s)&&(i.push(s),--r<=0))return i;n&&(0,_m.hasChildren)(s)&&s.children.length>0&&(o.unshift(0),a.unshift(s.children))}}mm.filter=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),ym(e,Array.isArray(t)?t:[t],n,r)},mm.find=ym,mm.findOneChild=function(e,t){return t.find(e)},mm.findOne=function e(t,n,r){void 0===r&&(r=!0);for(var i=null,a=0;a<n.length&&!i;a++){var o=n[a];(0,_m.isTag)(o)&&(t(o)?i=o:r&&o.children.length>0&&(i=e(t,o.children,!0)))}return i},mm.existsOne=function e(t,n){return n.some((function(n){return(0,_m.isTag)(n)&&(t(n)||e(t,n.children))}))},mm.findAll=function(e,t){for(var n=[],r=[t],i=[0];;)if(i[0]>=r[0].length){if(1===r.length)return n;r.shift(),i.shift()}else{var a=r[0][i[0]++];(0,_m.isTag)(a)&&(e(a)&&n.push(a),a.children.length>0&&(i.unshift(0),r.unshift(a.children)))}};var gm={};Object.defineProperty(gm,"__esModule",{value:!0}),gm.getElementsByTagType=gm.getElementsByTagName=gm.getElementById=gm.getElements=gm.testElement=void 0;var vm=np,Am=mm,Em={tag_name:function(e){return"function"==typeof e?function(t){return(0,vm.isTag)(t)&&e(t.name)}:"*"===e?vm.isTag:function(t){return(0,vm.isTag)(t)&&t.name===e}},tag_type:function(e){return"function"==typeof e?function(t){return e(t.type)}:function(t){return t.type===e}},tag_contains:function(e){return"function"==typeof e?function(t){return(0,vm.isText)(t)&&e(t.data)}:function(t){return(0,vm.isText)(t)&&t.data===e}}};function bm(e,t){return"function"==typeof t?function(n){return(0,vm.isTag)(n)&&t(n.attribs[e])}:function(n){return(0,vm.isTag)(n)&&n.attribs[e]===t}}function Sm(e,t){return function(n){return e(n)||t(n)}}function Mm(e){var t=Object.keys(e).map((function(t){var n=e[t];return Object.prototype.hasOwnProperty.call(Em,t)?Em[t](n):bm(t,n)}));return 0===t.length?null:t.reduce(Sm)}gm.testElement=function(e,t){var n=Mm(e);return!n||n(t)},gm.getElements=function(e,t,n,r){void 0===r&&(r=1/0);var i=Mm(e);return i?(0,Am.filter)(i,t,n,r):[]},gm.getElementById=function(e,t,n){return void 0===n&&(n=!0),Array.isArray(t)||(t=[t]),(0,Am.findOne)(bm("id",e),t,n)},gm.getElementsByTagName=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),(0,Am.filter)(Em.tag_name(e),t,n,r)},gm.getElementsByTagType=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),(0,Am.filter)(Em.tag_type(e),t,n,r)};var Tm={};!function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.uniqueSort=e.compareDocumentPosition=e.DocumentPosition=e.removeSubsets=void 0;var t,n=np;function r(e,r){var i=[],a=[];if(e===r)return 0;for(var o=(0,n.hasChildren)(e)?e:e.parent;o;)i.unshift(o),o=o.parent;for(o=(0,n.hasChildren)(r)?r:r.parent;o;)a.unshift(o),o=o.parent;for(var s=Math.min(i.length,a.length),u=0;u<s&&i[u]===a[u];)u++;if(0===u)return t.DISCONNECTED;var l=i[u-1],c=l.children,d=i[u],f=a[u];return c.indexOf(d)>c.indexOf(f)?l===r?t.FOLLOWING|t.CONTAINED_BY:t.FOLLOWING:l===e?t.PRECEDING|t.CONTAINS:t.PRECEDING}e.removeSubsets=function(e){for(var t=e.length;--t>=0;){var n=e[t];if(t>0&&e.lastIndexOf(n,t-1)>=0)e.splice(t,1);else for(var r=n.parent;r;r=r.parent)if(e.includes(r)){e.splice(t,1);break}}return e},function(e){e[e.DISCONNECTED=1]="DISCONNECTED",e[e.PRECEDING=2]="PRECEDING",e[e.FOLLOWING=4]="FOLLOWING",e[e.CONTAINS=8]="CONTAINS",e[e.CONTAINED_BY=16]="CONTAINED_BY"}(t=e.DocumentPosition||(e.DocumentPosition={})),e.compareDocumentPosition=r,e.uniqueSort=function(e){return e=e.filter((function(e,t,n){return!n.includes(e,t+1)})),e.sort((function(e,n){var i=r(e,n);return i&t.PRECEDING?-1:i&t.FOLLOWING?1:0})),e}}(Tm);var wm={};Object.defineProperty(wm,"__esModule",{value:!0}),wm.getFeed=void 0;var Om=Op,Nm=gm;wm.getFeed=function(e){var t=$m(km,e);return t?"feed"===t.name?function(e){var t,n=e.children,r={type:"atom",items:(0,Nm.getElementsByTagName)("entry",n).map((function(e){var t,n=e.children,r={media:Dm(n)};Im(r,"id","id",n),Im(r,"title","title",n);var i=null===(t=$m("link",n))||void 0===t?void 0:t.attribs.href;i&&(r.link=i);var a=xm("summary",n)||xm("content",n);a&&(r.description=a);var o=xm("updated",n);return o&&(r.pubDate=new Date(o)),r}))};Im(r,"id","id",n),Im(r,"title","title",n);var i=null===(t=$m("link",n))||void 0===t?void 0:t.attribs.href;i&&(r.link=i);Im(r,"description","subtitle",n);var a=xm("updated",n);a&&(r.updated=new Date(a));return Im(r,"author","email",n,!0),r}(t):function(e){var t,n,r=null!==(n=null===(t=$m("channel",e.children))||void 0===t?void 0:t.children)&&void 0!==n?n:[],i={type:e.name.substr(0,3),id:"",items:(0,Nm.getElementsByTagName)("item",e.children).map((function(e){var t=e.children,n={media:Dm(t)};Im(n,"id","guid",t),Im(n,"title","title",t),Im(n,"link","link",t),Im(n,"description","description",t);var r=xm("pubDate",t)||xm("dc:date",t);return r&&(n.pubDate=new Date(r)),n}))};Im(i,"title","title",r),Im(i,"link","link",r),Im(i,"description","description",r);var a=xm("lastBuildDate",r);a&&(i.updated=new Date(a));return Im(i,"author","managingEditor",r,!0),i}(t):null};var Cm=["url","type","lang"],Lm=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function Dm(e){return(0,Nm.getElementsByTagName)("media:content",e).map((function(e){for(var t=e.attribs,n={medium:t.medium,isDefault:!!t.isDefault},r=0,i=Cm;r<i.length;r++){t[s=i[r]]&&(n[s]=t[s])}for(var a=0,o=Lm;a<o.length;a++){var s;t[s=o[a]]&&(n[s]=parseInt(t[s],10))}return t.expression&&(n.expression=t.expression),n}))}function $m(e,t){return(0,Nm.getElementsByTagName)(e,t,!0,1)[0]}function xm(e,t,n){return void 0===n&&(n=!1),(0,Om.textContent)((0,Nm.getElementsByTagName)(e,t,n,1)).trim()}function Im(e,t,n,r,i){void 0===i&&(i=!1);var a=xm(n,r,i);a&&(e[t]=a)}function km(e){return"rss"===e||"feed"===e||"rdf:RDF"===e}!function(e){var t=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=We&&We.__exportStar||function(e,n){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(n,r)||t(n,e,r)};Object.defineProperty(e,"__esModule",{value:!0}),e.hasChildren=e.isDocument=e.isComment=e.isText=e.isCDATA=e.isTag=void 0,n(Op,e),n(lm,e),n(hm,e),n(mm,e),n(gm,e),n(Tm,e),n(wm,e);var r=np;Object.defineProperty(e,"isTag",{enumerable:!0,get:function(){return r.isTag}}),Object.defineProperty(e,"isCDATA",{enumerable:!0,get:function(){return r.isCDATA}}),Object.defineProperty(e,"isText",{enumerable:!0,get:function(){return r.isText}}),Object.defineProperty(e,"isComment",{enumerable:!0,get:function(){return r.isComment}}),Object.defineProperty(e,"isDocument",{enumerable:!0,get:function(){return r.isDocument}}),Object.defineProperty(e,"hasChildren",{enumerable:!0,get:function(){return r.hasChildren}})}(wp),function(e){var t=We&&We.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=We&&We.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),r=We&&We.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&t(r,e,i);return n(r,e),r},i=We&&We.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.DomUtils=e.parseFeed=e.getFeed=e.ElementType=e.Tokenizer=e.createDomStream=e.parseDOM=e.parseDocument=e.DefaultHandler=e.DomHandler=e.Parser=void 0;var a=Ih,o=Ih;Object.defineProperty(e,"Parser",{enumerable:!0,get:function(){return o.Parser}});var s=np,u=np;function l(e,t){var n=new s.DomHandler(void 0,t);return new a.Parser(n,t).end(e),n.root}function c(e,t){return l(e,t).children}Object.defineProperty(e,"DomHandler",{enumerable:!0,get:function(){return u.DomHandler}}),Object.defineProperty(e,"DefaultHandler",{enumerable:!0,get:function(){return u.DomHandler}}),e.parseDocument=l,e.parseDOM=c,e.createDomStream=function(e,t,n){var r=new s.DomHandler(e,t,n);return new a.Parser(r,t)};var d=kh;Object.defineProperty(e,"Tokenizer",{enumerable:!0,get:function(){return i(d).default}}),e.ElementType=r(rp);var f=wp,h=wp;Object.defineProperty(e,"getFeed",{enumerable:!0,get:function(){return h.getFeed}});var p={xmlMode:!0};e.parseFeed=function(e,t){return void 0===t&&(t=p),(0,f.getFeed)(c(e,t))},e.DomUtils=r(wp)}(xh);var zm={};
|
|
219
|
-
/*!
|
|
220
|
-
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
221
|
-
*
|
|
222
|
-
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
223
|
-
* Released under the MIT License.
|
|
224
|
-
*/
|
|
225
|
-
function Rm(e){return"[object Object]"===Object.prototype.toString.call(e)}Object.defineProperty(zm,"__esModule",{value:!0}),zm.isPlainObject=function(e){var t,n;return!1!==Rm(e)&&(void 0===(t=e.constructor)||!1!==Rm(n=t.prototype)&&!1!==n.hasOwnProperty("isPrototypeOf"))};var Zm=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===Pm}(e)}(e)};var Pm="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function Fm(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Hm((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function Um(e,t,n){return e.concat(t).map((function(e){return Fm(e,n)}))}function Bm(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return Object.propertyIsEnumerable.call(e,t)})):[]}(e))}function Vm(e,t){try{return t in e}catch(e){return!1}}function jm(e,t,n){var r={};return n.isMergeableObject(e)&&Bm(e).forEach((function(t){r[t]=Fm(e[t],n)})),Bm(t).forEach((function(i){(function(e,t){return Vm(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,i)||(Vm(e,i)&&n.isMergeableObject(t[i])?r[i]=function(e,t){if(!t.customMerge)return Hm;var n=t.customMerge(e);return"function"==typeof n?n:Hm}(i,n)(e[i],t[i],n):r[i]=Fm(t[i],n))})),r}function Hm(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||Um,n.isMergeableObject=n.isMergeableObject||Zm,n.cloneUnlessOtherwiseSpecified=Fm;var r=Array.isArray(t);return r===Array.isArray(e)?r?n.arrayMerge(e,t,n):jm(e,t,n):Fm(t,n)}Hm.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return Hm(e,n,t)}),{})};var Ym,Gm=Hm,Wm={exports:{}};Ym=Wm,function(e,t){Ym.exports?Ym.exports=t():e.parseSrcset=t()}(We,(function(){return function(e){function t(e){return" "===e||"\t"===e||"\n"===e||"\f"===e||"\r"===e}function n(t){var n,r=t.exec(e.substring(m));if(r)return n=r[0],m+=n.length,n}for(var r,i,a,o,s,u=e.length,l=/^[ \t\n\r\u000c]+/,c=/^[, \t\n\r\u000c]+/,d=/^[^ \t\n\r\u000c]+/,f=/[,]+$/,h=/^\d+$/,p=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,m=0,_=[];;){if(n(c),m>=u)return _;r=n(d),i=[],","===r.slice(-1)?(r=r.replace(f,""),g()):y()}function y(){for(n(l),a="",o="in descriptor";;){if(s=e.charAt(m),"in descriptor"===o)if(t(s))a&&(i.push(a),a="",o="after descriptor");else{if(","===s)return m+=1,a&&i.push(a),void g();if("("===s)a+=s,o="in parens";else{if(""===s)return a&&i.push(a),void g();a+=s}}else if("in parens"===o)if(")"===s)a+=s,o="in descriptor";else{if(""===s)return i.push(a),void g();a+=s}else if("after descriptor"===o)if(t(s));else{if(""===s)return void g();o="in descriptor",m-=1}m+=1}}function g(){var t,n,a,o,s,u,l,c,d,f=!1,m={};for(o=0;o<i.length;o++)u=(s=i[o])[s.length-1],l=s.substring(0,s.length-1),c=parseInt(l,10),d=parseFloat(l),h.test(l)&&"w"===u?((t||n)&&(f=!0),0===c?f=!0:t=c):p.test(l)&&"x"===u?((t||n||a)&&(f=!0),d<0?f=!0:n=d):h.test(l)&&"h"===u?((a||n)&&(f=!0),0===c?f=!0:a=c):f=!0;f?console&&console.log&&console.log("Invalid srcset descriptor found in '"+e+"' at '"+s+"'."):(m.url=r,t&&(m.w=t),n&&(m.d=n),a&&(m.h=a),_.push(m))}}}));var qm={exports:{}},Km=String,Jm=function(){return{isColorSupported:!1,reset:Km,bold:Km,dim:Km,italic:Km,underline:Km,inverse:Km,hidden:Km,strikethrough:Km,black:Km,red:Km,green:Km,yellow:Km,blue:Km,magenta:Km,cyan:Km,white:Km,gray:Km,bgBlack:Km,bgRed:Km,bgGreen:Km,bgYellow:Km,bgBlue:Km,bgMagenta:Km,bgCyan:Km,bgWhite:Km}};qm.exports=Jm(),qm.exports.createColors=Jm;var Xm=qe(Object.freeze({__proto__:null,default:{}}));let Qm=qm.exports,e_=Xm;class t_ extends Error{constructor(e,t,n,r,i,a){super(e),this.name="CssSyntaxError",this.reason=e,i&&(this.file=i),r&&(this.source=r),a&&(this.plugin=a),void 0!==t&&void 0!==n&&("number"==typeof t?(this.line=t,this.column=n):(this.line=t.line,this.column=t.column,this.endLine=n.line,this.endColumn=n.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,t_)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;null==e&&(e=Qm.isColorSupported),e_&&e&&(t=e_(t));let n,r,i=t.split(/\r?\n/),a=Math.max(this.line-3,0),o=Math.min(this.line+2,i.length),s=String(o).length;if(e){let{bold:e,red:t,gray:i}=Qm.createColors(!0);n=n=>e(t(n)),r=e=>i(e)}else n=r=e=>e;return i.slice(a,o).map(((e,t)=>{let i=a+1+t,o=" "+(" "+i).slice(-s)+" | ";if(i===this.line){let t=r(o.replace(/\d/g," "))+e.slice(0,this.column-1).replace(/[^\t]/g," ");return n(">")+r(o)+e+"\n "+t+n("^")}return" "+r(o)+e})).join("\n")}toString(){let e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}var n_=t_;t_.default=t_;var r_={};r_.isClean=Symbol("isClean"),r_.my=Symbol("my");const i_={colon:": ",indent:" ",beforeDecl:"\n",beforeRule:"\n",beforeOpen:" ",beforeClose:"\n",beforeComment:"\n",after:"\n",emptyBody:"",commentLeft:" ",commentRight:" ",semicolon:!1};class a_{constructor(e){this.builder=e}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}document(e){this.body(e)}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}comment(e){let t=this.raw(e,"left","commentLeft"),n=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+n+"*/",e)}decl(e,t){let n=this.raw(e,"between","colon"),r=e.prop+n+this.rawValue(e,"value");e.important&&(r+=e.raws.important||" !important"),t&&(r+=";"),this.builder(r,e)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}atrule(e,t){let n="@"+e.name,r=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?n+=e.raws.afterName:r&&(n+=" "),e.nodes)this.block(e,n+r);else{let i=(e.raws.between||"")+(t?";":"");this.builder(n+r+i,e)}}body(e){let t=e.nodes.length-1;for(;t>0&&"comment"===e.nodes[t].type;)t-=1;let n=this.raw(e,"semicolon");for(let r=0;r<e.nodes.length;r++){let i=e.nodes[r],a=this.raw(i,"before");a&&this.builder(a),this.stringify(i,t!==r||n)}}block(e,t){let n,r=this.raw(e,"between","beforeOpen");this.builder(t+r+"{",e,"start"),e.nodes&&e.nodes.length?(this.body(e),n=this.raw(e,"after")):n=this.raw(e,"after","emptyBody"),n&&this.builder(n),this.builder("}",e,"end")}raw(e,t,n){let r;if(n||(n=t),t&&(r=e.raws[t],void 0!==r))return r;let i=e.parent;if("before"===n){if(!i||"root"===i.type&&i.first===e)return"";if(i&&"document"===i.type)return""}if(!i)return i_[n];let a=e.root();if(a.rawCache||(a.rawCache={}),void 0!==a.rawCache[n])return a.rawCache[n];if("before"===n||"after"===n)return this.beforeAfter(e,n);{let i="raw"+((o=n)[0].toUpperCase()+o.slice(1));this[i]?r=this[i](a,e):a.walk((e=>{if(r=e.raws[t],void 0!==r)return!1}))}var o;return void 0===r&&(r=i_[n]),a.rawCache[n]=r,r}rawSemicolon(e){let t;return e.walk((e=>{if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&(t=e.raws.semicolon,void 0!==t))return!1})),t}rawEmptyBody(e){let t;return e.walk((e=>{if(e.nodes&&0===e.nodes.length&&(t=e.raws.after,void 0!==t))return!1})),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk((n=>{let r=n.parent;if(r&&r!==e&&r.parent&&r.parent===e&&void 0!==n.raws.before){let e=n.raws.before.split("\n");return t=e[e.length-1],t=t.replace(/\S/g,""),!1}})),t}rawBeforeComment(e,t){let n;return e.walkComments((e=>{if(void 0!==e.raws.before)return n=e.raws.before,n.includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/\S/g,"")),n}rawBeforeDecl(e,t){let n;return e.walkDecls((e=>{if(void 0!==e.raws.before)return n=e.raws.before,n.includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/\S/g,"")),n}rawBeforeRule(e){let t;return e.walk((n=>{if(n.nodes&&(n.parent!==e||e.first!==n)&&void 0!==n.raws.before)return t=n.raws.before,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeClose(e){let t;return e.walk((e=>{if(e.nodes&&e.nodes.length>0&&void 0!==e.raws.after)return t=e.raws.after,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeOpen(e){let t;return e.walk((e=>{if("decl"!==e.type&&(t=e.raws.between,void 0!==t))return!1})),t}rawColon(e){let t;return e.walkDecls((e=>{if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1})),t}beforeAfter(e,t){let n;n="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");let r=e.parent,i=0;for(;r&&"root"!==r.type;)i+=1,r=r.parent;if(n.includes("\n")){let t=this.raw(e,null,"indent");if(t.length)for(let e=0;e<i;e++)n+=t}return n}rawValue(e,t){let n=e[t],r=e.raws[t];return r&&r.value===n?r.raw:n}}var o_=a_;a_.default=a_;let s_=o_;function u_(e,t){new s_(t).stringify(e)}var l_=u_;u_.default=u_;let{isClean:c_,my:d_}=r_,f_=n_,h_=o_,p_=l_;function m_(e,t){let n=new e.constructor;for(let r in e){if(!Object.prototype.hasOwnProperty.call(e,r))continue;if("proxyCache"===r)continue;let i=e[r],a=typeof i;"parent"===r&&"object"===a?t&&(n[r]=t):"source"===r?n[r]=i:Array.isArray(i)?n[r]=i.map((e=>m_(e,n))):("object"===a&&null!==i&&(i=m_(i)),n[r]=i)}return n}class __{constructor(e={}){this.raws={},this[c_]=!1,this[d_]=!0;for(let t in e)if("nodes"===t){this.nodes=[];for(let n of e[t])"function"==typeof n.clone?this.append(n.clone()):this.append(n)}else this[t]=e[t]}error(e,t={}){if(this.source){let{start:n,end:r}=this.rangeBy(t);return this.source.input.error(e,{line:n.line,column:n.column},{line:r.line,column:r.column},t)}return new f_(e)}warn(e,t,n){let r={node:this};for(let e in n)r[e]=n[e];return e.warn(t,r)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}toString(e=p_){e.stringify&&(e=e.stringify);let t="";return e(this,(e=>{t+=e})),t}assign(e={}){for(let t in e)this[t]=e[t];return this}clone(e={}){let t=m_(this);for(let n in e)t[n]=e[n];return t}cloneBefore(e={}){let t=this.clone(e);return this.parent.insertBefore(this,t),t}cloneAfter(e={}){let t=this.clone(e);return this.parent.insertAfter(this,t),t}replaceWith(...e){if(this.parent){let t=this,n=!1;for(let r of e)r===this?n=!0:n?(this.parent.insertAfter(t,r),t=r):this.parent.insertBefore(t,r);n||this.remove()}return this}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}before(e){return this.parent.insertBefore(this,e),this}after(e){return this.parent.insertAfter(this,e),this}root(){let e=this;for(;e.parent&&"document"!==e.parent.type;)e=e.parent;return e}raw(e,t){return(new h_).raw(this,e,t)}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}toJSON(e,t){let n={},r=null==t;t=t||new Map;let i=0;for(let e in this){if(!Object.prototype.hasOwnProperty.call(this,e))continue;if("parent"===e||"proxyCache"===e)continue;let r=this[e];if(Array.isArray(r))n[e]=r.map((e=>"object"==typeof e&&e.toJSON?e.toJSON(null,t):e));else if("object"==typeof r&&r.toJSON)n[e]=r.toJSON(null,t);else if("source"===e){let a=t.get(r.input);null==a&&(a=i,t.set(r.input,i),i++),n[e]={inputId:a,start:r.start,end:r.end}}else n[e]=r}return r&&(n.inputs=[...t.keys()].map((e=>e.toJSON()))),n}positionInside(e){let t=this.toString(),n=this.source.start.column,r=this.source.start.line;for(let i=0;i<e;i++)"\n"===t[i]?(n=1,r+=1):n+=1;return{line:r,column:n}}positionBy(e){let t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){let n=this.toString().indexOf(e.word);-1!==n&&(t=this.positionInside(n))}return t}rangeBy(e){let t={line:this.source.start.line,column:this.source.start.column},n=this.source.end?{line:this.source.end.line,column:this.source.end.column+1}:{line:t.line,column:t.column+1};if(e.word){let r=this.toString().indexOf(e.word);-1!==r&&(t=this.positionInside(r),n=this.positionInside(r+e.word.length))}else e.start?t={line:e.start.line,column:e.start.column}:e.index&&(t=this.positionInside(e.index)),e.end?n={line:e.end.line,column:e.end.column}:e.endIndex?n=this.positionInside(e.endIndex):e.index&&(n=this.positionInside(e.index+1));return(n.line<t.line||n.line===t.line&&n.column<=t.column)&&(n={line:t.line,column:t.column+1}),{start:t,end:n}}getProxyProcessor(){return{set:(e,t,n)=>(e[t]===n||(e[t]=n,"prop"!==t&&"value"!==t&&"name"!==t&&"params"!==t&&"important"!==t&&"text"!==t||e.markDirty()),!0),get:(e,t)=>"proxyOf"===t?e:"root"===t?()=>e.root().toProxy():e[t]}}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${t.input.from}:${t.start.line}:${t.start.column}$&`)}return e}markDirty(){if(this[c_]){this[c_]=!1;let e=this;for(;e=e.parent;)e[c_]=!1}}get proxyOf(){return this}}var y_=__;__.default=__;let g_=y_;class v_ extends g_{constructor(e){e&&void 0!==e.value&&"string"!=typeof e.value&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}get variable(){return this.prop.startsWith("--")||"$"===this.prop[0]}}var A_=v_;v_.default=v_;var E_={nanoid:(e=21)=>{let t="",n=e;for(;n--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},customAlphabet:(e,t=21)=>(n=t)=>{let r="",i=n;for(;i--;)r+=e[Math.random()*e.length|0];return r}};let{SourceMapConsumer:b_,SourceMapGenerator:S_}=Xm,{existsSync:M_,readFileSync:T_}=Xm,{dirname:w_,join:O_}=Xm;class N_{constructor(e,t){if(!1===t.map)return;this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let n=t.map?t.map.prev:void 0,r=this.loadMap(t.from,n);!this.mapFile&&t.from&&(this.mapFile=t.from),this.mapFile&&(this.root=w_(this.mapFile)),r&&(this.text=r)}consumer(){return this.consumerCache||(this.consumerCache=new b_(this.text)),this.consumerCache}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}startWith(e,t){return!!e&&e.substr(0,t.length)===t}getAnnotationURL(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}loadAnnotation(e){let t=e.match(/\/\*\s*# sourceMappingURL=/gm);if(!t)return;let n=e.lastIndexOf(t.pop()),r=e.indexOf("*/",n);n>-1&&r>-1&&(this.annotation=this.getAnnotationURL(e.substring(n,r)))}decodeInline(e){if(/^data:application\/json;charset=utf-?8,/.test(e)||/^data:application\/json,/.test(e))return decodeURIComponent(e.substr(RegExp.lastMatch.length));if(/^data:application\/json;charset=utf-?8;base64,/.test(e)||/^data:application\/json;base64,/.test(e))return t=e.substr(RegExp.lastMatch.length),Buffer?Buffer.from(t,"base64").toString():window.atob(t);var t;let n=e.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+n)}loadFile(e){if(this.root=w_(e),M_(e))return this.mapFile=e,T_(e,"utf-8").toString().trim()}loadMap(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"!=typeof t){if(t instanceof b_)return S_.fromSourceMap(t).toString();if(t instanceof S_)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}{let n=t(e);if(n){let e=this.loadFile(n);if(!e)throw new Error("Unable to load previous source map: "+n.toString());return e}}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let t=this.annotation;return e&&(t=O_(w_(e),t)),this.loadFile(t)}}}isMap(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}}var C_=N_;N_.default=N_;let{SourceMapConsumer:L_,SourceMapGenerator:D_}=Xm,{fileURLToPath:$_,pathToFileURL:x_}=Xm,{resolve:I_,isAbsolute:k_}=Xm,{nanoid:z_}=E_,R_=Xm,Z_=n_,P_=C_,F_=Symbol("fromOffsetCache"),U_=Boolean(L_&&D_),B_=Boolean(I_&&k_);class V_{constructor(e,t={}){if(null==e||"object"==typeof e&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),"\ufeff"===this.css[0]||""===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,t.from&&(!B_||/^\w+:\/\//.test(t.from)||k_(t.from)?this.file=t.from:this.file=I_(t.from)),B_&&U_){let e=new P_(this.css,t);if(e.text){this.map=e;let t=e.consumer().file;!this.file&&t&&(this.file=this.mapResolve(t))}}this.file||(this.id="<input css "+z_(6)+">"),this.map&&(this.map.file=this.from)}fromOffset(e){let t,n;if(this[F_])n=this[F_];else{let e=this.css.split("\n");n=new Array(e.length);let t=0;for(let r=0,i=e.length;r<i;r++)n[r]=t,t+=e[r].length+1;this[F_]=n}t=n[n.length-1];let r=0;if(e>=t)r=n.length-1;else{let t,i=n.length-2;for(;r<i;)if(t=r+(i-r>>1),e<n[t])i=t-1;else{if(!(e>=n[t+1])){r=t;break}r=t+1}}return{line:r+1,col:e-n[r]+1}}error(e,t,n,r={}){let i,a,o;if(t&&"object"==typeof t){let e=t,r=n;if("number"==typeof e.offset){let r=this.fromOffset(e.offset);t=r.line,n=r.col}else t=e.line,n=e.column;if("number"==typeof r.offset){let e=this.fromOffset(r.offset);a=e.line,o=e.col}else a=r.line,o=r.column}else if(!n){let e=this.fromOffset(t);t=e.line,n=e.col}let s=this.origin(t,n,a,o);return i=s?new Z_(e,void 0===s.endLine?s.line:{line:s.line,column:s.column},void 0===s.endLine?s.column:{line:s.endLine,column:s.endColumn},s.source,s.file,r.plugin):new Z_(e,void 0===a?t:{line:t,column:n},void 0===a?n:{line:a,column:o},this.css,this.file,r.plugin),i.input={line:t,column:n,endLine:a,endColumn:o,source:this.css},this.file&&(x_&&(i.input.url=x_(this.file).toString()),i.input.file=this.file),i}origin(e,t,n,r){if(!this.map)return!1;let i,a,o=this.map.consumer(),s=o.originalPositionFor({line:e,column:t});if(!s.source)return!1;"number"==typeof n&&(i=o.originalPositionFor({line:n,column:r})),a=k_(s.source)?x_(s.source):new URL(s.source,this.map.consumer().sourceRoot||x_(this.map.mapFile));let u={url:a.toString(),line:s.line,column:s.column,endLine:i&&i.line,endColumn:i&&i.column};if("file:"===a.protocol){if(!$_)throw new Error("file: protocol is not available in this PostCSS build");u.file=$_(a)}let l=o.sourceContentFor(s.source);return l&&(u.source=l),u}mapResolve(e){return/^\w+:\/\//.test(e)?e:I_(this.map.consumer().sourceRoot||this.map.root||".",e)}get from(){return this.file||this.id}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])null!=this[t]&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}}var j_=V_;V_.default=V_,R_&&R_.registerInput&&R_.registerInput(V_);let{SourceMapConsumer:H_,SourceMapGenerator:Y_}=Xm,{dirname:G_,resolve:W_,relative:q_,sep:K_}=Xm,{pathToFileURL:J_}=Xm,X_=j_,Q_=Boolean(H_&&Y_),ey=Boolean(G_&&W_&&q_&&K_);var ty=class{constructor(e,t,n,r){this.stringify=e,this.mapOpts=n.map||{},this.root=t,this.opts=n,this.css=r,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute}isMap(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk((e=>{if(e.source&&e.source.input.map){let t=e.source.input.map;this.previousMaps.includes(t)||this.previousMaps.push(t)}}));else{let e=new X_(this.css,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}isInline(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;let e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some((e=>e.inline)))}isSourcesContent(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some((e=>e.withContent()))}clearAnnotation(){if(!1!==this.mapOpts.annotation)if(this.root){let e;for(let t=this.root.nodes.length-1;t>=0;t--)e=this.root.nodes[t],"comment"===e.type&&0===e.text.indexOf("# sourceMappingURL=")&&this.root.removeChild(t)}else this.css&&(this.css=this.css.replace(/(\n)?\/\*#[\S\s]*?\*\/$/gm,""))}setSourcesContent(){let e={};if(this.root)this.root.walk((t=>{if(t.source){let n=t.source.input.from;if(n&&!e[n]){e[n]=!0;let r=this.usesFileUrls?this.toFileUrl(n):this.toUrl(this.path(n));this.map.setSourceContent(r,t.source.input.css)}}}));else if(this.css){let e=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(e,this.css)}}applyPrevMaps(){for(let e of this.previous()){let t,n=this.toUrl(this.path(e.file)),r=e.root||G_(e.file);!1===this.mapOpts.sourcesContent?(t=new H_(e.text),t.sourcesContent&&(t.sourcesContent=t.sourcesContent.map((()=>null)))):t=e.consumer(),this.map.applySourceMap(t,n,this.toUrl(this.path(r)))}}isAnnotation(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some((e=>e.annotation)))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}addAnnotation(){let e;e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";let t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}generateMap(){if(this.root)this.generateString();else if(1===this.previous().length){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=Y_.fromSourceMap(e)}else this.map=new Y_({file:this.outputFile()}),this.map.addMapping({source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>",generated:{line:1,column:0},original:{line:1,column:0}});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}path(e){if(0===e.indexOf("<"))return e;if(/^\w+:\/\//.test(e))return e;if(this.mapOpts.absolute)return e;let t=this.opts.to?G_(this.opts.to):".";return"string"==typeof this.mapOpts.annotation&&(t=G_(W_(t,this.mapOpts.annotation))),e=q_(t,e)}toUrl(e){return"\\"===K_&&(e=e.replace(/\\/g,"/")),encodeURI(e).replace(/[#?]/g,encodeURIComponent)}toFileUrl(e){if(J_)return J_(e).toString();throw new Error("`map.absolute` option is not available in this PostCSS build")}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}generateString(){this.css="",this.map=new Y_({file:this.outputFile()});let e,t,n=1,r=1,i="<no source>",a={source:"",generated:{line:0,column:0},original:{line:0,column:0}};this.stringify(this.root,((o,s,u)=>{if(this.css+=o,s&&"end"!==u&&(a.generated.line=n,a.generated.column=r-1,s.source&&s.source.start?(a.source=this.sourcePath(s),a.original.line=s.source.start.line,a.original.column=s.source.start.column-1,this.map.addMapping(a)):(a.source=i,a.original.line=1,a.original.column=0,this.map.addMapping(a))),e=o.match(/\n/g),e?(n+=e.length,t=o.lastIndexOf("\n"),r=o.length-t):r+=o.length,s&&"start"!==u){let e=s.parent||{raws:{}};("decl"===s.type||"atrule"===s.type&&!s.nodes)&&s===e.last&&!e.raws.semicolon||(s.source&&s.source.end?(a.source=this.sourcePath(s),a.original.line=s.source.end.line,a.original.column=s.source.end.column-1,a.generated.line=n,a.generated.column=r-2,this.map.addMapping(a)):(a.source=i,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=r-1,this.map.addMapping(a)))}}))}generate(){if(this.clearAnnotation(),ey&&Q_&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,(t=>{e+=t})),[e]}}};let ny=y_;class ry extends ny{constructor(e){super(e),this.type="comment"}}var iy=ry;ry.default=ry;let ay,oy,sy,uy,{isClean:ly,my:cy}=r_,dy=A_,fy=iy,hy=y_;function py(e){return e.map((e=>(e.nodes&&(e.nodes=py(e.nodes)),delete e.source,e)))}function my(e){if(e[ly]=!1,e.proxyOf.nodes)for(let t of e.proxyOf.nodes)my(t)}class _y extends hy{push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}each(e){if(!this.proxyOf.nodes)return;let t,n,r=this.getIterator();for(;this.indexes[r]<this.proxyOf.nodes.length&&(t=this.indexes[r],n=e(this.proxyOf.nodes[t],t),!1!==n);)this.indexes[r]+=1;return delete this.indexes[r],n}walk(e){return this.each(((t,n)=>{let r;try{r=e(t,n)}catch(e){throw t.addToError(e)}return!1!==r&&t.walk&&(r=t.walk(e)),r}))}walkDecls(e,t){return t?e instanceof RegExp?this.walk(((n,r)=>{if("decl"===n.type&&e.test(n.prop))return t(n,r)})):this.walk(((n,r)=>{if("decl"===n.type&&n.prop===e)return t(n,r)})):(t=e,this.walk(((e,n)=>{if("decl"===e.type)return t(e,n)})))}walkRules(e,t){return t?e instanceof RegExp?this.walk(((n,r)=>{if("rule"===n.type&&e.test(n.selector))return t(n,r)})):this.walk(((n,r)=>{if("rule"===n.type&&n.selector===e)return t(n,r)})):(t=e,this.walk(((e,n)=>{if("rule"===e.type)return t(e,n)})))}walkAtRules(e,t){return t?e instanceof RegExp?this.walk(((n,r)=>{if("atrule"===n.type&&e.test(n.name))return t(n,r)})):this.walk(((n,r)=>{if("atrule"===n.type&&n.name===e)return t(n,r)})):(t=e,this.walk(((e,n)=>{if("atrule"===e.type)return t(e,n)})))}walkComments(e){return this.walk(((t,n)=>{if("comment"===t.type)return e(t,n)}))}append(...e){for(let t of e){let e=this.normalize(t,this.last);for(let t of e)this.proxyOf.nodes.push(t)}return this.markDirty(),this}prepend(...e){e=e.reverse();for(let t of e){let e=this.normalize(t,this.first,"prepend").reverse();for(let t of e)this.proxyOf.nodes.unshift(t);for(let t in this.indexes)this.indexes[t]=this.indexes[t]+e.length}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}insertBefore(e,t){let n,r=this.index(e),i=0===r&&"prepend",a=this.normalize(t,this.proxyOf.nodes[r],i).reverse();r=this.index(e);for(let e of a)this.proxyOf.nodes.splice(r,0,e);for(let e in this.indexes)n=this.indexes[e],r<=n&&(this.indexes[e]=n+a.length);return this.markDirty(),this}insertAfter(e,t){let n,r=this.index(e),i=this.normalize(t,this.proxyOf.nodes[r]).reverse();r=this.index(e);for(let e of i)this.proxyOf.nodes.splice(r+1,0,e);for(let e in this.indexes)n=this.indexes[e],r<n&&(this.indexes[e]=n+i.length);return this.markDirty(),this}removeChild(e){let t;e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);for(let n in this.indexes)t=this.indexes[n],t>=e&&(this.indexes[n]=t-1);return this.markDirty(),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}replaceValues(e,t,n){return n||(n=t,t={}),this.walkDecls((r=>{t.props&&!t.props.includes(r.prop)||t.fast&&!r.value.includes(t.fast)||(r.value=r.value.replace(e,n))})),this.markDirty(),this}every(e){return this.nodes.every(e)}some(e){return this.nodes.some(e)}index(e){return"number"==typeof e?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}normalize(e,t){if("string"==typeof e)e=py(ay(e).nodes);else if(Array.isArray(e)){e=e.slice(0);for(let t of e)t.parent&&t.parent.removeChild(t,"ignore")}else if("root"===e.type&&"document"!==this.type){e=e.nodes.slice(0);for(let t of e)t.parent&&t.parent.removeChild(t,"ignore")}else if(e.type)e=[e];else if(e.prop){if(void 0===e.value)throw new Error("Value field is missed in node creation");"string"!=typeof e.value&&(e.value=String(e.value)),e=[new dy(e)]}else if(e.selector)e=[new oy(e)];else if(e.name)e=[new sy(e)];else{if(!e.text)throw new Error("Unknown node type in node creation");e=[new fy(e)]}return e.map((e=>(e[cy]||_y.rebuild(e),(e=e.proxyOf).parent&&e.parent.removeChild(e),e[ly]&&my(e),void 0===e.raws.before&&t&&void 0!==t.raws.before&&(e.raws.before=t.raws.before.replace(/\S/g,"")),e.parent=this.proxyOf,e)))}getProxyProcessor(){return{set:(e,t,n)=>(e[t]===n||(e[t]=n,"name"!==t&&"params"!==t&&"selector"!==t||e.markDirty()),!0),get:(e,t)=>"proxyOf"===t?e:e[t]?"each"===t||"string"==typeof t&&t.startsWith("walk")?(...n)=>e[t](...n.map((e=>"function"==typeof e?(t,n)=>e(t.toProxy(),n):e))):"every"===t||"some"===t?n=>e[t](((e,...t)=>n(e.toProxy(),...t))):"root"===t?()=>e.root().toProxy():"nodes"===t?e.nodes.map((e=>e.toProxy())):"first"===t||"last"===t?e[t].toProxy():e[t]:e[t]}}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}}_y.registerParse=e=>{ay=e},_y.registerRule=e=>{oy=e},_y.registerAtRule=e=>{sy=e},_y.registerRoot=e=>{uy=e};var yy=_y;_y.default=_y,_y.rebuild=e=>{"atrule"===e.type?Object.setPrototypeOf(e,sy.prototype):"rule"===e.type?Object.setPrototypeOf(e,oy.prototype):"decl"===e.type?Object.setPrototypeOf(e,dy.prototype):"comment"===e.type?Object.setPrototypeOf(e,fy.prototype):"root"===e.type&&Object.setPrototypeOf(e,uy.prototype),e[cy]=!0,e.nodes&&e.nodes.forEach((e=>{_y.rebuild(e)}))};let gy,vy,Ay=yy;class Ey extends Ay{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new gy(new vy,this,e).stringify()}}Ey.registerLazyResult=e=>{gy=e},Ey.registerProcessor=e=>{vy=e};var by=Ey;Ey.default=Ey;let Sy={};var My=function(e){Sy[e]||(Sy[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))};class Ty{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let e=t.node.rangeBy(t);this.line=e.start.line,this.column=e.start.column,this.endLine=e.end.line,this.endColumn=e.end.column}for(let e in t)this[e]=t[e]}toString(){return this.node?this.node.error(this.text,{plugin:this.plugin,index:this.index,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}var wy=Ty;Ty.default=Ty;let Oy=wy;class Ny{constructor(e,t,n){this.processor=e,this.messages=[],this.root=t,this.opts=n,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let n=new Oy(e,t);return this.messages.push(n),n}warnings(){return this.messages.filter((e=>"warning"===e.type))}get content(){return this.css}}var Cy=Ny;Ny.default=Ny;const Ly="'".charCodeAt(0),Dy='"'.charCodeAt(0),$y="\\".charCodeAt(0),xy="/".charCodeAt(0),Iy="\n".charCodeAt(0),ky=" ".charCodeAt(0),zy="\f".charCodeAt(0),Ry="\t".charCodeAt(0),Zy="\r".charCodeAt(0),Py="[".charCodeAt(0),Fy="]".charCodeAt(0),Uy="(".charCodeAt(0),By=")".charCodeAt(0),Vy="{".charCodeAt(0),jy="}".charCodeAt(0),Hy=";".charCodeAt(0),Yy="*".charCodeAt(0),Gy=":".charCodeAt(0),Wy="@".charCodeAt(0),qy=/[\t\n\f\r "#'()/;[\\\]{}]/g,Ky=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,Jy=/.[\n"'(/\\]/,Xy=/[\da-f]/i;let Qy=yy;class eg extends Qy{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}}var tg=eg;eg.default=eg,Qy.registerAtRule(eg);let ng,rg,ig=yy;class ag extends ig{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}removeChild(e,t){let n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),super.removeChild(e)}normalize(e,t,n){let r=super.normalize(e);if(t)if("prepend"===n)this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let e of r)e.raws.before=t.raws.before;return r}toResult(e={}){return new ng(new rg,this,e).stringify()}}ag.registerLazyResult=e=>{ng=e},ag.registerProcessor=e=>{rg=e};var og=ag;ag.default=ag,ig.registerRoot(ag);let sg={split(e,t,n){let r=[],i="",a=!1,o=0,s=!1,u="",l=!1;for(let n of e)l?l=!1:"\\"===n?l=!0:s?n===u&&(s=!1):'"'===n||"'"===n?(s=!0,u=n):"("===n?o+=1:")"===n?o>0&&(o-=1):0===o&&t.includes(n)&&(a=!0),a?(""!==i&&r.push(i.trim()),i="",a=!1):i+=n;return(n||""!==i)&&r.push(i.trim()),r},space:e=>sg.split(e,[" ","\n","\t"]),comma:e=>sg.split(e,[","],!0)};var ug=sg;sg.default=sg;let lg=yy,cg=ug;class dg extends lg{constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return cg.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}}var fg=dg;dg.default=dg,lg.registerRule(dg);let hg=A_,pg=function(e,t={}){let n,r,i,a,o,s,u,l,c,d,f=e.css.valueOf(),h=t.ignoreErrors,p=f.length,m=0,_=[],y=[];function g(t){throw e.error("Unclosed "+t,m)}return{back:function(e){y.push(e)},nextToken:function(e){if(y.length)return y.pop();if(m>=p)return;let t=!!e&&e.ignoreUnclosed;switch(n=f.charCodeAt(m),n){case Iy:case ky:case Ry:case Zy:case zy:r=m;do{r+=1,n=f.charCodeAt(r)}while(n===ky||n===Iy||n===Ry||n===Zy||n===zy);d=["space",f.slice(m,r)],m=r-1;break;case Py:case Fy:case Vy:case jy:case Gy:case Hy:case By:{let e=String.fromCharCode(n);d=[e,e,m];break}case Uy:if(l=_.length?_.pop()[1]:"",c=f.charCodeAt(m+1),"url"===l&&c!==Ly&&c!==Dy&&c!==ky&&c!==Iy&&c!==Ry&&c!==zy&&c!==Zy){r=m;do{if(s=!1,r=f.indexOf(")",r+1),-1===r){if(h||t){r=m;break}g("bracket")}for(u=r;f.charCodeAt(u-1)===$y;)u-=1,s=!s}while(s);d=["brackets",f.slice(m,r+1),m,r],m=r}else r=f.indexOf(")",m+1),a=f.slice(m,r+1),-1===r||Jy.test(a)?d=["(","(",m]:(d=["brackets",a,m,r],m=r);break;case Ly:case Dy:i=n===Ly?"'":'"',r=m;do{if(s=!1,r=f.indexOf(i,r+1),-1===r){if(h||t){r=m+1;break}g("string")}for(u=r;f.charCodeAt(u-1)===$y;)u-=1,s=!s}while(s);d=["string",f.slice(m,r+1),m,r],m=r;break;case Wy:qy.lastIndex=m+1,qy.test(f),r=0===qy.lastIndex?f.length-1:qy.lastIndex-2,d=["at-word",f.slice(m,r+1),m,r],m=r;break;case $y:for(r=m,o=!0;f.charCodeAt(r+1)===$y;)r+=1,o=!o;if(n=f.charCodeAt(r+1),o&&n!==xy&&n!==ky&&n!==Iy&&n!==Ry&&n!==Zy&&n!==zy&&(r+=1,Xy.test(f.charAt(r)))){for(;Xy.test(f.charAt(r+1));)r+=1;f.charCodeAt(r+1)===ky&&(r+=1)}d=["word",f.slice(m,r+1),m,r],m=r;break;default:n===xy&&f.charCodeAt(m+1)===Yy?(r=f.indexOf("*/",m+2)+1,0===r&&(h||t?r=f.length:g("comment")),d=["comment",f.slice(m,r+1),m,r],m=r):(Ky.lastIndex=m+1,Ky.test(f),r=0===Ky.lastIndex?f.length-1:Ky.lastIndex-2,d=["word",f.slice(m,r+1),m,r],_.push(d),m=r)}return m++,d},endOfFile:function(){return 0===y.length&&m>=p},position:function(){return m}}},mg=iy,_g=tg,yg=og,gg=fg;const vg={empty:!0,space:!0};var Ag=class{constructor(e){this.input=e,this.root=new yg,this.current=this.root,this.spaces="",this.semicolon=!1,this.customProperty=!1,this.createTokenizer(),this.root.source={input:e,start:{offset:0,line:1,column:1}}}createTokenizer(){this.tokenizer=pg(this.input)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}comment(e){let t=new mg;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]);let n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{let e=n.match(/^(\s*)([^]*\S)(\s*)$/);t.text=e[2],t.raws.left=e[1],t.raws.right=e[3]}}emptyRule(e){let t=new gg;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}other(e){let t=!1,n=null,r=!1,i=null,a=[],o=e[1].startsWith("--"),s=[],u=e;for(;u;){if(n=u[0],s.push(u),"("===n||"["===n)i||(i=u),a.push("("===n?")":"]");else if(o&&r&&"{"===n)i||(i=u),a.push("}");else if(0===a.length){if(";"===n){if(r)return void this.decl(s,o);break}if("{"===n)return void this.rule(s);if("}"===n){this.tokenizer.back(s.pop()),t=!0;break}":"===n&&(r=!0)}else n===a[a.length-1]&&(a.pop(),0===a.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(i),t&&r){if(!o)for(;s.length&&(u=s[s.length-1][0],"space"===u||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,o)}else this.unknownWord(s)}rule(e){e.pop();let t=new gg;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}decl(e,t){let n=new hg;this.init(n,e[0][2]);let r,i=e[e.length-1];for(";"===i[0]&&(this.semicolon=!0,e.pop()),n.source.end=this.getPosition(i[3]||i[2]||function(e){for(let t=e.length-1;t>=0;t--){let n=e[t],r=n[3]||n[2];if(r)return r}}(e));"word"!==e[0][0];)1===e.length&&this.unknownWord(e),n.raws.before+=e.shift()[1];for(n.source.start=this.getPosition(e[0][2]),n.prop="";e.length;){let t=e[0][0];if(":"===t||"space"===t||"comment"===t)break;n.prop+=e.shift()[1]}for(n.raws.between="";e.length;){if(r=e.shift(),":"===r[0]){n.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),n.raws.between+=r[1]}"_"!==n.prop[0]&&"*"!==n.prop[0]||(n.raws.before+=n.prop[0],n.prop=n.prop.slice(1));let a,o=[];for(;e.length&&(a=e[0][0],"space"===a||"comment"===a);)o.push(e.shift());this.precheckMissedSemicolon(e);for(let t=e.length-1;t>=0;t--){if(r=e[t],"!important"===r[1].toLowerCase()){n.important=!0;let r=this.stringFrom(e,t);r=this.spacesFromEnd(e)+r," !important"!==r&&(n.raws.important=r);break}if("important"===r[1].toLowerCase()){let r=e.slice(0),i="";for(let e=t;e>0;e--){let t=r[e][0];if(0===i.trim().indexOf("!")&&"space"!==t)break;i=r.pop()[1]+i}0===i.trim().indexOf("!")&&(n.important=!0,n.raws.important=i,e=r)}if("space"!==r[0]&&"comment"!==r[0])break}e.some((e=>"space"!==e[0]&&"comment"!==e[0]))&&(n.raws.between+=o.map((e=>e[1])).join(""),o=[]),this.raw(n,"value",o.concat(e),t),n.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}atrule(e){let t,n,r,i=new _g;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);let a=!1,o=!1,s=[],u=[];for(;!this.tokenizer.endOfFile();){if(t=(e=this.tokenizer.nextToken())[0],"("===t||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),this.semicolon=!0;break}if("{"===t){o=!0;break}if("}"===t){if(s.length>0){for(r=s.length-1,n=s[r];n&&"space"===n[0];)n=s[--r];n&&(i.source.end=this.getPosition(n[3]||n[2]))}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){a=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),a&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),o&&(i.nodes=[],this.current=i)}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let e=this.current.nodes[this.current.nodes.length-1];e&&"rule"===e.type&&!e.raws.ownSemicolon&&(e.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let t=this.input.fromOffset(e);return{offset:e,line:t.line,column:t.col}}init(e,t){this.current.push(e),e.source={start:this.getPosition(t),input:this.input},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}raw(e,t,n,r){let i,a,o,s,u=n.length,l="",c=!0;for(let e=0;e<u;e+=1)i=n[e],a=i[0],"space"!==a||e!==u-1||r?"comment"===a?(s=n[e-1]?n[e-1][0]:"empty",o=n[e+1]?n[e+1][0]:"empty",vg[s]||vg[o]||","===l.slice(-1)?c=!1:l+=i[1]):l+=i[1]:c=!1;if(!c){let r=n.reduce(((e,t)=>e+t[1]),"");e.raws[t]={value:l,raw:r}}e[t]=l}spacesAndCommentsFromEnd(e){let t,n="";for(;e.length&&(t=e[e.length-1][0],"space"===t||"comment"===t);)n=e.pop()[1]+n;return n}spacesAndCommentsFromStart(e){let t,n="";for(;e.length&&(t=e[0][0],"space"===t||"comment"===t);)n+=e.shift()[1];return n}spacesFromEnd(e){let t,n="";for(;e.length&&(t=e[e.length-1][0],"space"===t);)n=e.pop()[1]+n;return n}stringFrom(e,t){let n="";for(let r=t;r<e.length;r++)n+=e[r][1];return e.splice(t,e.length-t),n}colon(e){let t,n,r,i=0;for(let[a,o]of e.entries()){if(t=o,n=t[0],"("===n&&(i+=1),")"===n&&(i-=1),0===i&&":"===n){if(r){if("word"===r[0]&&"progid"===r[1])continue;return a}this.doubleColon(t)}r=t}return!1}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word",{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}unnamedAtrule(e,t){throw this.input.error("At-rule without name",{offset:t[2]},{offset:t[2]+t[1].length})}precheckMissedSemicolon(){}checkMissedSemicolon(e){let t=this.colon(e);if(!1===t)return;let n,r=0;for(let i=t-1;i>=0&&(n=e[i],"space"===n[0]||(r+=1,2!==r));i--);throw this.input.error("Missed semicolon","word"===n[0]?n[3]+1:n[2])}};let Eg=yy,bg=Ag,Sg=j_;function Mg(e,t){let n=new Sg(e,t),r=new bg(n);try{r.parse()}catch(e){throw"production"!==process.env.NODE_ENV&&"CssSyntaxError"===e.name&&t&&t.from&&(/\.scss$/i.test(t.from)?e.message+="\nYou tried to parse SCSS with the standard CSS parser; try again with the postcss-scss parser":/\.sass/i.test(t.from)?e.message+="\nYou tried to parse Sass with the standard CSS parser; try again with the postcss-sass parser":/\.less$/i.test(t.from)&&(e.message+="\nYou tried to parse Less with the standard CSS parser; try again with the postcss-less parser")),e}return r.root}var Tg=Mg;Mg.default=Mg,Eg.registerParse(Mg);let{isClean:wg,my:Og}=r_,Ng=ty,Cg=l_,Lg=yy,Dg=by,$g=My,xg=Cy,Ig=Tg,kg=og;const zg={document:"Document",root:"Root",atrule:"AtRule",rule:"Rule",decl:"Declaration",comment:"Comment"},Rg={postcssPlugin:!0,prepare:!0,Once:!0,Document:!0,Root:!0,Declaration:!0,Rule:!0,AtRule:!0,Comment:!0,DeclarationExit:!0,RuleExit:!0,AtRuleExit:!0,CommentExit:!0,RootExit:!0,DocumentExit:!0,OnceExit:!0},Zg={postcssPlugin:!0,prepare:!0,Once:!0},Pg=0;function Fg(e){return"object"==typeof e&&"function"==typeof e.then}function Ug(e){let t=!1,n=zg[e.type];return"decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append?[n,n+"-"+t,Pg,n+"Exit",n+"Exit-"+t]:t?[n,n+"-"+t,n+"Exit",n+"Exit-"+t]:e.append?[n,Pg,n+"Exit"]:[n,n+"Exit"]}function Bg(e){let t;return t="document"===e.type?["Document",Pg,"DocumentExit"]:"root"===e.type?["Root",Pg,"RootExit"]:Ug(e),{node:e,events:t,eventIndex:0,visitors:[],visitorIndex:0,iterator:0}}function Vg(e){return e[wg]=!1,e.nodes&&e.nodes.forEach((e=>Vg(e))),e}let jg={};class Hg{constructor(e,t,n){let r;if(this.stringified=!1,this.processed=!1,"object"!=typeof t||null===t||"root"!==t.type&&"document"!==t.type)if(t instanceof Hg||t instanceof xg)r=Vg(t.root),t.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=t.map);else{let e=Ig;n.syntax&&(e=n.syntax.parse),n.parser&&(e=n.parser),e.parse&&(e=e.parse);try{r=e(t,n)}catch(e){this.processed=!0,this.error=e}r&&!r[Og]&&Lg.rebuild(r)}else r=Vg(t);this.result=new xg(e,r,n),this.helpers={...jg,result:this.result,postcss:jg},this.plugins=this.processor.plugins.map((e=>"object"==typeof e&&e.prepare?{...e,...e.prepare(this.result)}:e))}get[Symbol.toStringTag](){return"LazyResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.stringify().css}get content(){return this.stringify().content}get map(){return this.stringify().map}get root(){return this.sync().root}get messages(){return this.sync().messages}warnings(){return this.sync().warnings()}toString(){return this.css}then(e,t){return"production"!==process.env.NODE_ENV&&("from"in this.opts||$g("Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning.")),this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){if(Fg(this.runOnRoot(e)))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[wg];)e[wg]=!0,this.walkSync(e);if(this.listeners.OnceExit)if("document"===e.type)for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=Cg;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let n=new Ng(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}walkSync(e){e[wg]=!0;let t=Ug(e);for(let n of t)if(n===Pg)e.nodes&&e.each((e=>{e[wg]||this.walkSync(e)}));else{let t=this.listeners[n];if(t&&this.visitSync(t,e.toProxy()))return}}visitSync(e,t){for(let[n,r]of e){let e;this.result.lastPlugin=n;try{e=r(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(Fg(e))throw this.getAsyncError()}}runOnRoot(e){this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){let t=this.result.root.nodes.map((t=>e.Once(t,this.helpers)));return Fg(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let n=this.result.lastPlugin;try{if(t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin){if(n.postcssVersion&&"production"!==process.env.NODE_ENV){let e=n.postcssPlugin,t=n.postcssVersion,r=this.result.processor.version,i=t.split("."),a=r.split(".");(i[0]!==a[0]||parseInt(i[1])>parseInt(a[1]))&&console.error("Unknown error from PostCSS plugin. Your current PostCSS version is "+r+", but "+e+" uses "+t+". Perhaps this is the source of the error below.")}}else e.plugin=n.postcssPlugin,e.setMessage()}catch(e){console&&console.error&&console.error(e)}return e}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let t=this.plugins[e],n=this.runOnRoot(t);if(Fg(n))try{await n}catch(e){throw this.handleError(e)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[wg];){e[wg]=!0;let t=[Bg(e)];for(;t.length>0;){let e=this.visitTick(t);if(Fg(e))try{await e}catch(e){let n=t[t.length-1].node;throw this.handleError(e,n)}}}if(this.listeners.OnceExit)for(let[t,n]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if("document"===e.type){let t=e.nodes.map((e=>n(e,this.helpers)));await Promise.all(t)}else await n(e,this.helpers)}catch(e){throw this.handleError(e)}}}return this.processed=!0,this.stringify()}prepareVisitors(){this.listeners={};let e=(e,t,n)=>{this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].push([e,n])};for(let t of this.plugins)if("object"==typeof t)for(let n in t){if(!Rg[n]&&/^[A-Z]/.test(n))throw new Error(`Unknown event ${n} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!Zg[n])if("object"==typeof t[n])for(let r in t[n])e(t,"*"===r?n:n+"-"+r.toLowerCase(),t[n][r]);else"function"==typeof t[n]&&e(t,n,t[n])}this.hasListener=Object.keys(this.listeners).length>0}visitTick(e){let t=e[e.length-1],{node:n,visitors:r}=t;if("root"!==n.type&&"document"!==n.type&&!n.parent)return void e.pop();if(r.length>0&&t.visitorIndex<r.length){let[e,i]=r[t.visitorIndex];t.visitorIndex+=1,t.visitorIndex===r.length&&(t.visitors=[],t.visitorIndex=0),this.result.lastPlugin=e;try{return i(n.toProxy(),this.helpers)}catch(e){throw this.handleError(e,n)}}if(0!==t.iterator){let r,i=t.iterator;for(;r=n.nodes[n.indexes[i]];)if(n.indexes[i]+=1,!r[wg])return r[wg]=!0,void e.push(Bg(r));t.iterator=0,delete n.indexes[i]}let i=t.events;for(;t.eventIndex<i.length;){let e=i[t.eventIndex];if(t.eventIndex+=1,e===Pg)return void(n.nodes&&n.nodes.length&&(n[wg]=!0,t.iterator=n.getIterator()));if(this.listeners[e])return void(t.visitors=this.listeners[e])}e.pop()}}Hg.registerPostcss=e=>{jg=e};var Yg=Hg;Hg.default=Hg,kg.registerLazyResult(Hg),Dg.registerLazyResult(Hg);let Gg=ty,Wg=l_,qg=My,Kg=Tg;const Jg=Cy;class Xg{constructor(e,t,n){let r;t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=n,this._map=void 0;let i=Wg;this.result=new Jg(this._processor,r,this._opts),this.result.css=t;let a=this;Object.defineProperty(this.result,"root",{get:()=>a.root});let o=new Gg(i,r,this._opts,t);if(o.isMap()){let[e,t]=o.generate();e&&(this.result.css=e),t&&(this.result.map=t)}}get[Symbol.toStringTag](){return"NoWorkResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.result.css}get content(){return this.result.css}get map(){return this.result.map}get root(){if(this._root)return this._root;let e,t=Kg;try{e=t(this._css,this._opts)}catch(e){this.error=e}if(this.error)throw this.error;return this._root=e,e}get messages(){return[]}warnings(){return[]}toString(){return this._css}then(e,t){return"production"!==process.env.NODE_ENV&&("from"in this._opts||qg("Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning.")),this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}sync(){if(this.error)throw this.error;return this.result}}var Qg=Xg;Xg.default=Xg;let ev=Qg,tv=Yg,nv=by,rv=og;class iv{constructor(e=[]){this.version="8.4.23",this.plugins=this.normalize(e)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}process(e,t={}){return 0===this.plugins.length&&void 0===t.parser&&void 0===t.stringifier&&void 0===t.syntax?new ev(this,e,t):new tv(this,e,t)}normalize(e){let t=[];for(let n of e)if(!0===n.postcss?n=n():n.postcss&&(n=n.postcss),"object"==typeof n&&Array.isArray(n.plugins))t=t.concat(n.plugins);else if("object"==typeof n&&n.postcssPlugin)t.push(n);else if("function"==typeof n)t.push(n);else{if("object"!=typeof n||!n.parse&&!n.stringify)throw new Error(n+" is not a PostCSS plugin");if("production"!==process.env.NODE_ENV)throw new Error("PostCSS syntaxes cannot be used as plugins. Instead, please use one of the syntax/parser/stringifier options as outlined in your PostCSS runner documentation.")}return t}}var av=iv;iv.default=iv,rv.registerProcessor(iv),nv.registerProcessor(iv);let ov=A_,sv=C_,uv=iy,lv=tg,cv=j_,dv=og,fv=fg;function hv(e,t){if(Array.isArray(e))return e.map((e=>hv(e)));let{inputs:n,...r}=e;if(n){t=[];for(let e of n){let n={...e,__proto__:cv.prototype};n.map&&(n.map={...n.map,__proto__:sv.prototype}),t.push(n)}}if(r.nodes&&(r.nodes=e.nodes.map((e=>hv(e,t)))),r.source){let{inputId:e,...n}=r.source;r.source=n,null!=e&&(r.source.input=t[e])}if("root"===r.type)return new dv(r);if("decl"===r.type)return new ov(r);if("rule"===r.type)return new fv(r);if("comment"===r.type)return new uv(r);if("atrule"===r.type)return new lv(r);throw new Error("Unknown node type: "+e.type)}var pv=hv;hv.default=hv;let mv=n_,_v=A_,yv=Yg,gv=yy,vv=av,Av=l_,Ev=pv,bv=by,Sv=wy,Mv=iy,Tv=tg,wv=Cy,Ov=j_,Nv=Tg,Cv=ug,Lv=fg,Dv=og,$v=y_;function xv(...e){return 1===e.length&&Array.isArray(e[0])&&(e=e[0]),new vv(e)}xv.plugin=function(e,t){let n,r=!1;function i(...n){console&&console.warn&&!r&&(r=!0,console.warn(e+": postcss.plugin was deprecated. Migration guide:\nhttps://evilmartians.com/chronicles/postcss-8-plugin-migration"),process.env.LANG&&process.env.LANG.startsWith("cn")&&console.warn(e+": 里面 postcss.plugin 被弃用. 迁移指南:\nhttps://www.w3ctech.com/topic/2226"));let i=t(...n);return i.postcssPlugin=e,i.postcssVersion=(new vv).version,i}return Object.defineProperty(i,"postcss",{get:()=>(n||(n=i()),n)}),i.process=function(e,t,n){return xv([i(n)]).process(e,t)},i},xv.stringify=Av,xv.parse=Nv,xv.fromJSON=Ev,xv.list=Cv,xv.comment=e=>new Mv(e),xv.atRule=e=>new Tv(e),xv.decl=e=>new _v(e),xv.rule=e=>new Lv(e),xv.root=e=>new Dv(e),xv.document=e=>new bv(e),xv.CssSyntaxError=mv,xv.Declaration=_v,xv.Container=gv,xv.Processor=vv,xv.Document=bv,xv.Comment=Mv,xv.Warning=Sv,xv.AtRule=Tv,xv.Result=wv,xv.Input=Ov,xv.Rule=Lv,xv.Root=Dv,xv.Node=$v,yv.registerPostcss(xv);var Iv=xv;xv.default=xv;const kv=xh,zv=e=>{if("string"!=typeof e)throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")},{isPlainObject:Rv}=zm,Zv=Gm,Pv=Wm.exports,{parse:Fv}=Iv,Uv=["img","audio","video","picture","svg","object","map","iframe","embed"],Bv=["script","style"];function Vv(e,t){e&&Object.keys(e).forEach((function(n){t(e[n],n)}))}function jv(e,t){return{}.hasOwnProperty.call(e,t)}function Hv(e,t){const n=[];return Vv(e,(function(e){t(e)&&n.push(e)})),n}var Yv=Wv;const Gv=/^[^\0\t\n\f\r /<=>]+$/;function Wv(e,t,n){if(null==e)return"";"number"==typeof e&&(e=e.toString());let r="",i="";function a(e,t){const n=this;this.tag=e,this.attribs=t||{},this.tagPosition=r.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(_.length){_[_.length-1].text+=n.text}},this.updateParentNodeMediaChildren=function(){if(_.length&&Uv.includes(this.tag)){_[_.length-1].mediaChildren.push(this.tag)}}}(t=Object.assign({},Wv.defaults,t)).parser=Object.assign({},qv,t.parser);const o=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};Bv.forEach((function(e){o(e)&&!t.allowVulnerableTags&&console.warn(`\n\n⚠️ Your \`allowedTags\` option includes, \`${e}\`, which is inherently\nvulnerable to XSS attacks. Please remove it from \`allowedTags\`.\nOr, to disable this warning, add the \`allowVulnerableTags\` option\nand ensure you are accounting for this risk.\n\n`)}));const s=t.nonTextTags||["script","style","textarea","option"];let u,l;t.allowedAttributes&&(u={},l={},Vv(t.allowedAttributes,(function(e,t){u[t]=[];const n=[];e.forEach((function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(zv(e).replace(/\\\*/g,".*")):u[t].push(e)})),n.length&&(l[t]=new RegExp("^("+n.join("|")+")$"))})));const c={},d={},f={};Vv(t.allowedClasses,(function(e,t){u&&(jv(u,t)||(u[t]=[]),u[t].push("class")),c[t]=[],f[t]=[];const n=[];e.forEach((function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(zv(e).replace(/\\\*/g,".*")):e instanceof RegExp?f[t].push(e):c[t].push(e)})),n.length&&(d[t]=new RegExp("^("+n.join("|")+")$"))}));const h={};let p,m,_,y,g,v,A;Vv(t.transformTags,(function(e,t){let n;"function"==typeof e?n=e:"string"==typeof e&&(n=Wv.simpleTransform(e)),"*"===t?p=n:h[t]=n}));let E=!1;S();const b=new kv.Parser({onopentag:function(e,n){if(t.enforceHtmlBoundary&&"html"===e&&S(),v)return void A++;const b=new a(e,n);_.push(b);let N=!1;const C=!!b.text;let L;if(jv(h,e)&&(L=h[e](e,n),b.attribs=n=L.attribs,void 0!==L.text&&(b.innerText=L.text),e!==L.tagName&&(b.name=e=L.tagName,g[m]=L.tagName)),p&&(L=p(e,n),b.attribs=n=L.attribs,e!==L.tagName&&(b.name=e=L.tagName,g[m]=L.tagName)),(!o(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(const t in e)if(jv(e,t))return!1;return!0}(y)||null!=t.nestingLimit&&m>=t.nestingLimit)&&(N=!0,y[m]=!0,"discard"===t.disallowedTagsMode&&-1!==s.indexOf(e)&&(v=!0,A=1),y[m]=!0),m++,N){if("discard"===t.disallowedTagsMode)return;i=r,r=""}r+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(b.innerText=""),(!u||jv(u,e)||u["*"])&&Vv(n,(function(n,i){if(!Gv.test(i))return void delete b.attribs[i];let a=!1;if(!u||jv(u,e)&&-1!==u[e].indexOf(i)||u["*"]&&-1!==u["*"].indexOf(i)||jv(l,e)&&l[e].test(i)||l["*"]&&l["*"].test(i))a=!0;else if(u&&u[e])for(const t of u[e])if(Rv(t)&&t.name&&t.name===i){a=!0;let e="";if(!0===t.multiple){const r=n.split(" ");for(const n of r)-1!==t.values.indexOf(n)&&(""===e?e=n:e+=" "+n)}else t.values.indexOf(n)>=0&&(e=n);n=e}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(i)&&T(e,n))return void delete b.attribs[i];if("script"===e&&"src"===i){let e=!0;try{const r=w(n);if(t.allowedScriptHostnames||t.allowedScriptDomains){const n=(t.allowedScriptHostnames||[]).find((function(e){return e===r.url.hostname})),i=(t.allowedScriptDomains||[]).find((function(e){return r.url.hostname===e||r.url.hostname.endsWith(`.${e}`)}));e=n||i}}catch(t){e=!1}if(!e)return void delete b.attribs[i]}if("iframe"===e&&"src"===i){let e=!0;try{const r=w(n);if(r.isRelativeUrl)e=jv(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){const n=(t.allowedIframeHostnames||[]).find((function(e){return e===r.url.hostname})),i=(t.allowedIframeDomains||[]).find((function(e){return r.url.hostname===e||r.url.hostname.endsWith(`.${e}`)}));e=n||i}}catch(t){e=!1}if(!e)return void delete b.attribs[i]}if("srcset"===i)try{let e=Pv(n);if(e.forEach((function(e){T("srcset",e.url)&&(e.evil=!0)})),e=Hv(e,(function(e){return!e.evil})),!e.length)return void delete b.attribs[i];n=Hv(e,(function(e){return!e.evil})).map((function(e){if(!e.url)throw new Error("URL missing");return e.url+(e.w?` ${e.w}w`:"")+(e.h?` ${e.h}h`:"")+(e.d?` ${e.d}x`:"")})).join(", "),b.attribs[i]=n}catch(e){return void delete b.attribs[i]}if("class"===i){const t=c[e],r=c["*"],a=d[e],o=f[e],s=[a,d["*"]].concat(o).filter((function(e){return e}));if(!(n=O(n,t&&r?Zv(t,r):t||r,s)).length)return void delete b.attribs[i]}if("style"===i)if(t.parseStyleAttributes)try{const r=function(e,t){if(!t)return e;const n=e.nodes[0];let r;r=t[n.selector]&&t["*"]?Zv(t[n.selector],t["*"]):t[n.selector]||t["*"];r&&(e.nodes[0].nodes=n.nodes.reduce(function(e){return function(t,n){if(jv(e,n.prop)){e[n.prop].some((function(e){return e.test(n.value)}))&&t.push(n)}return t}}(r),[]));return e}(Fv(e+" {"+n+"}"),t.allowedStyles);if(n=function(e){return e.nodes[0].nodes.reduce((function(e,t){return e.push(`${t.prop}:${t.value}${t.important?" !important":""}`),e}),[]).join(";")}(r),0===n.length)return void delete b.attribs[i]}catch(t){return console.warn('Failed to parse "'+e+" {"+n+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),void delete b.attribs[i]}else if(t.allowedStyles)throw new Error("allowedStyles option cannot be used together with parseStyleAttributes: false.");r+=" "+i,n&&n.length&&(r+='="'+M(n,!0)+'"')}else delete b.attribs[i]})),-1!==t.selfClosing.indexOf(e)?r+=" />":(r+=">",!b.innerText||C||t.textFilter||(r+=M(b.innerText),E=!0)),N&&(r=i+M(r),i="")},ontext:function(e){if(v)return;const n=_[_.length-1];let i;if(n&&(i=n.tag,e=void 0!==n.innerText?n.innerText:e),"discard"!==t.disallowedTagsMode||"script"!==i&&"style"!==i){const n=M(e,!1);t.textFilter&&!E?r+=t.textFilter(n,i):E||(r+=n)}else r+=e;if(_.length){_[_.length-1].text+=e}},onclosetag:function(e,n){if(v){if(A--,A)return;v=!1}const a=_.pop();if(!a)return;if(a.tag!==e)return void _.push(a);v=!!t.enforceHtmlBoundary&&"html"===e,m--;const s=y[m];if(s){if(delete y[m],"discard"===t.disallowedTagsMode)return void a.updateParentNodeText();i=r,r=""}g[m]&&(e=g[m],delete g[m]),t.exclusiveFilter&&t.exclusiveFilter(a)?r=r.substr(0,a.tagPosition):(a.updateParentNodeMediaChildren(),a.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||n&&!o(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0?s&&(r=i,i=""):(r+="</"+e+">",s&&(r=i+M(r),i=""),E=!1))}},t.parser);return b.write(e),b.end(),r;function S(){r="",m=0,_=[],y={},g={},v=!1,A=0}function M(e,n){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">"),n&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(/</g,"<").replace(/>/g,">"),n&&(e=e.replace(/"/g,""")),e}function T(e,n){for(n=n.replace(/[\x00-\x20]+/g,"");;){const e=n.indexOf("\x3c!--");if(-1===e)break;const t=n.indexOf("--\x3e",e+4);if(-1===t)break;n=n.substring(0,e)+n.substring(t+3)}const r=n.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!r)return!!n.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;const i=r[1].toLowerCase();return jv(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(i):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(i)}function w(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw new Error("relative: exploit attempt");let t="relative://relative-site";for(let e=0;e<100;e++)t+=`/${e}`;const n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function O(e,t,n){return t?(e=e.split(/\s+/)).filter((function(e){return-1!==t.indexOf(e)||n.some((function(t){return t.test(e)}))})).join(" "):e}}const qv={decodeEntities:!0};Wv.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},Wv.simpleTransform=function(e,t,n){return n=void 0===n||n,t=t||{},function(r,i){let a;if(n)for(a in t)i[a]=t[a];else i=t;return{tagName:e,attribs:i}}};var Kv=Yv;const Jv=t=>{const{id:n,children:r}=t,i=()=>n?Fa.generateId(n,"sanitized"):Fa.generateId("sanitized");return e.jsx("span",{id:i(),"data-testid":i(),dangerouslySetInnerHTML:{__html:Kv("string"!=typeof r?o.renderToStaticMarkup(r):r)}})},Xv={"TEXT-D1":r.Text.D1,"TEXT-D2":r.Text.D2,"TEXT-DBODY":r.Text.DBody,"TEXT-H1":r.Text.H1,"TEXT-H2":r.Text.H2,"TEXT-H3":r.Text.H3,"TEXT-H4":r.Text.H4,"TEXT-H5":r.Text.H5,"TEXT-H6":r.Text.H6,"TEXT-BODY":r.Text.Body,"TEXT-BODYSMALL":r.Text.BodySmall,"TEXT-XSMALL":r.Text.XSmall},Qv=t=>{const{id:n,schema:{children:r,uiType:i,...a}}=t,o=Xv[i.toUpperCase()]||void 0,s=e=>Fa.generateId(e,"text");return e.jsx(o,{id:n,"data-testid":s(n),...a,...(()=>{const e=An(r)&&r.length>1,t=vt(r)&&Object.keys(r).length>1;return e||t})()&&{as:"div"},children:e.jsx(Jv,{id:n,children:An(r)?r.map(((t,r)=>{const i=`${n}-${r}`;return e.jsx(o,{id:i,"data-testid":s(i),children:e.jsx(Jv,{id:i,children:t})},r)})):"object"==typeof r?Object.entries(r).map((([t,n],r)=>e.jsx(Qv,{id:t,schema:n},r))):r})})};var eA=Object.freeze({__proto__:null,Alert:t=>{const{id:r,schema:{children:i,...a}}=t;return e.jsx(n.Alert,{id:r,"data-testid":Fa.generateId(r,"alert"),...a,children:e.jsx(Jv,{id:r,children:i})})},Text:Qv}),tA={exports:{}};
|
|
226
|
-
/**
|
|
227
|
-
* @license
|
|
228
|
-
* Lodash <https://lodash.com/>
|
|
229
|
-
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
230
|
-
* Released under MIT license <https://lodash.com/license>
|
|
231
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
232
|
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
233
|
-
*/
|
|
234
|
-
!function(e,t){(function(){var n,r="Expected a function",i="__lodash_hash_undefined__",a="__lodash_placeholder__",o=16,s=32,u=64,l=128,c=256,d=1/0,f=9007199254740991,h=NaN,p=4294967295,m=[["ary",l],["bind",1],["bindKey",2],["curry",8],["curryRight",o],["flip",512],["partial",s],["partialRight",u],["rearg",c]],_="[object Arguments]",y="[object Array]",g="[object Boolean]",v="[object Date]",A="[object Error]",E="[object Function]",b="[object GeneratorFunction]",S="[object Map]",M="[object Number]",T="[object Object]",w="[object Promise]",O="[object RegExp]",N="[object Set]",C="[object String]",L="[object Symbol]",D="[object WeakMap]",$="[object ArrayBuffer]",x="[object DataView]",I="[object Float32Array]",k="[object Float64Array]",z="[object Int8Array]",R="[object Int16Array]",Z="[object Int32Array]",P="[object Uint8Array]",F="[object Uint8ClampedArray]",U="[object Uint16Array]",B="[object Uint32Array]",V=/\b__p \+= '';/g,j=/\b(__p \+=) '' \+/g,H=/(__e\(.*?\)|\b__t\)) \+\n'';/g,Y=/&(?:amp|lt|gt|quot|#39);/g,G=/[&<>"']/g,W=RegExp(Y.source),q=RegExp(G.source),K=/<%-([\s\S]+?)%>/g,J=/<%([\s\S]+?)%>/g,X=/<%=([\s\S]+?)%>/g,Q=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ee=/^\w*$/,te=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ne=/[\\^$.*+?()[\]{}|]/g,re=RegExp(ne.source),ie=/^\s+/,ae=/\s/,oe=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,se=/\{\n\/\* \[wrapped with (.+)\] \*/,ue=/,? & /,le=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ce=/[()=,{}\[\]\/\s]/,de=/\\(\\)?/g,fe=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,he=/\w*$/,pe=/^[-+]0x[0-9a-f]+$/i,me=/^0b[01]+$/i,_e=/^\[object .+?Constructor\]$/,ye=/^0o[0-7]+$/i,ge=/^(?:0|[1-9]\d*)$/,ve=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ae=/($^)/,Ee=/['\n\r\u2028\u2029\\]/g,be="\\ud800-\\udfff",Se="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Me="\\u2700-\\u27bf",Te="a-z\\xdf-\\xf6\\xf8-\\xff",we="A-Z\\xc0-\\xd6\\xd8-\\xde",Oe="\\ufe0e\\ufe0f",Ne="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ce="['’]",Le="["+be+"]",De="["+Ne+"]",$e="["+Se+"]",xe="\\d+",Ie="["+Me+"]",ke="["+Te+"]",ze="[^"+be+Ne+xe+Me+Te+we+"]",Re="\\ud83c[\\udffb-\\udfff]",Ze="[^"+be+"]",Pe="(?:\\ud83c[\\udde6-\\uddff]){2}",Fe="[\\ud800-\\udbff][\\udc00-\\udfff]",Ue="["+we+"]",Be="\\u200d",Ve="(?:"+ke+"|"+ze+")",je="(?:"+Ue+"|"+ze+")",He="(?:['’](?:d|ll|m|re|s|t|ve))?",Ye="(?:['’](?:D|LL|M|RE|S|T|VE))?",Ge="(?:"+$e+"|"+Re+")"+"?",qe="["+Oe+"]?",Ke=qe+Ge+("(?:"+Be+"(?:"+[Ze,Pe,Fe].join("|")+")"+qe+Ge+")*"),Je="(?:"+[Ie,Pe,Fe].join("|")+")"+Ke,Xe="(?:"+[Ze+$e+"?",$e,Pe,Fe,Le].join("|")+")",Qe=RegExp(Ce,"g"),et=RegExp($e,"g"),tt=RegExp(Re+"(?="+Re+")|"+Xe+Ke,"g"),nt=RegExp([Ue+"?"+ke+"+"+He+"(?="+[De,Ue,"$"].join("|")+")",je+"+"+Ye+"(?="+[De,Ue+Ve,"$"].join("|")+")",Ue+"?"+Ve+"+"+He,Ue+"+"+Ye,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",xe,Je].join("|"),"g"),rt=RegExp("["+Be+be+Se+Oe+"]"),it=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,at=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],ot=-1,st={};st[I]=st[k]=st[z]=st[R]=st[Z]=st[P]=st[F]=st[U]=st[B]=!0,st[_]=st[y]=st[$]=st[g]=st[x]=st[v]=st[A]=st[E]=st[S]=st[M]=st[T]=st[O]=st[N]=st[C]=st[D]=!1;var ut={};ut[_]=ut[y]=ut[$]=ut[x]=ut[g]=ut[v]=ut[I]=ut[k]=ut[z]=ut[R]=ut[Z]=ut[S]=ut[M]=ut[T]=ut[O]=ut[N]=ut[C]=ut[L]=ut[P]=ut[F]=ut[U]=ut[B]=!0,ut[A]=ut[E]=ut[D]=!1;var lt={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},ct=parseFloat,dt=parseInt,ft="object"==typeof We&&We&&We.Object===Object&&We,ht="object"==typeof self&&self&&self.Object===Object&&self,pt=ft||ht||Function("return this")(),mt=t&&!t.nodeType&&t,_t=mt&&e&&!e.nodeType&&e,yt=_t&&_t.exports===mt,gt=yt&&ft.process,vt=function(){try{var e=_t&&_t.require&&_t.require("util").types;return e||gt&>.binding&>.binding("util")}catch(e){}}(),At=vt&&vt.isArrayBuffer,Et=vt&&vt.isDate,bt=vt&&vt.isMap,St=vt&&vt.isRegExp,Mt=vt&&vt.isSet,Tt=vt&&vt.isTypedArray;function wt(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function Ot(e,t,n,r){for(var i=-1,a=null==e?0:e.length;++i<a;){var o=e[i];t(r,o,n(o),e)}return r}function Nt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););return e}function Ct(e,t){for(var n=null==e?0:e.length;n--&&!1!==t(e[n],n,e););return e}function Lt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(!t(e[n],n,e))return!1;return!0}function Dt(e,t){for(var n=-1,r=null==e?0:e.length,i=0,a=[];++n<r;){var o=e[n];t(o,n,e)&&(a[i++]=o)}return a}function $t(e,t){return!!(null==e?0:e.length)&&Bt(e,t,0)>-1}function xt(e,t,n){for(var r=-1,i=null==e?0:e.length;++r<i;)if(n(t,e[r]))return!0;return!1}function It(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i}function kt(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e}function zt(e,t,n,r){var i=-1,a=null==e?0:e.length;for(r&&a&&(n=e[++i]);++i<a;)n=t(n,e[i],i,e);return n}function Rt(e,t,n,r){var i=null==e?0:e.length;for(r&&i&&(n=e[--i]);i--;)n=t(n,e[i],i,e);return n}function Zt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}var Pt=Yt("length");function Ft(e,t,n){var r;return n(e,(function(e,n,i){if(t(e,n,i))return r=n,!1})),r}function Ut(e,t,n,r){for(var i=e.length,a=n+(r?1:-1);r?a--:++a<i;)if(t(e[a],a,e))return a;return-1}function Bt(e,t,n){return t==t?function(e,t,n){var r=n-1,i=e.length;for(;++r<i;)if(e[r]===t)return r;return-1}(e,t,n):Ut(e,jt,n)}function Vt(e,t,n,r){for(var i=n-1,a=e.length;++i<a;)if(r(e[i],t))return i;return-1}function jt(e){return e!=e}function Ht(e,t){var n=null==e?0:e.length;return n?qt(e,t)/n:h}function Yt(e){return function(t){return null==t?n:t[e]}}function Gt(e){return function(t){return null==e?n:e[t]}}function Wt(e,t,n,r,i){return i(e,(function(e,i,a){n=r?(r=!1,e):t(n,e,i,a)})),n}function qt(e,t){for(var r,i=-1,a=e.length;++i<a;){var o=t(e[i]);o!==n&&(r=r===n?o:r+o)}return r}function Kt(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}function Jt(e){return e?e.slice(0,mn(e)+1).replace(ie,""):e}function Xt(e){return function(t){return e(t)}}function Qt(e,t){return It(t,(function(t){return e[t]}))}function en(e,t){return e.has(t)}function tn(e,t){for(var n=-1,r=e.length;++n<r&&Bt(t,e[n],0)>-1;);return n}function nn(e,t){for(var n=e.length;n--&&Bt(t,e[n],0)>-1;);return n}var rn=Gt({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),an=Gt({"&":"&","<":"<",">":">",'"':""","'":"'"});function on(e){return"\\"+lt[e]}function sn(e){return rt.test(e)}function un(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function ln(e,t){return function(n){return e(t(n))}}function cn(e,t){for(var n=-1,r=e.length,i=0,o=[];++n<r;){var s=e[n];s!==t&&s!==a||(e[n]=a,o[i++]=n)}return o}function dn(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}function fn(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=[e,e]})),n}function hn(e){return sn(e)?function(e){var t=tt.lastIndex=0;for(;tt.test(e);)++t;return t}(e):Pt(e)}function pn(e){return sn(e)?function(e){return e.match(tt)||[]}(e):function(e){return e.split("")}(e)}function mn(e){for(var t=e.length;t--&&ae.test(e.charAt(t)););return t}var _n=Gt({"&":"&","<":"<",">":">",""":'"',"'":"'"});var yn=function e(t){var ae=(t=null==t?pt:yn.defaults(pt.Object(),t,yn.pick(pt,at))).Array,be=t.Date,Se=t.Error,Me=t.Function,Te=t.Math,we=t.Object,Oe=t.RegExp,Ne=t.String,Ce=t.TypeError,Le=ae.prototype,De=Me.prototype,$e=we.prototype,xe=t["__core-js_shared__"],Ie=De.toString,ke=$e.hasOwnProperty,ze=0,Re=function(){var e=/[^.]+$/.exec(xe&&xe.keys&&xe.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),Ze=$e.toString,Pe=Ie.call(we),Fe=pt._,Ue=Oe("^"+Ie.call(ke).replace(ne,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Be=yt?t.Buffer:n,Ve=t.Symbol,je=t.Uint8Array,He=Be?Be.allocUnsafe:n,Ye=ln(we.getPrototypeOf,we),Ge=we.create,We=$e.propertyIsEnumerable,qe=Le.splice,Ke=Ve?Ve.isConcatSpreadable:n,Je=Ve?Ve.iterator:n,Xe=Ve?Ve.toStringTag:n,tt=function(){try{var e=da(we,"defineProperty");return e({},"",{}),e}catch(e){}}(),rt=t.clearTimeout!==pt.clearTimeout&&t.clearTimeout,lt=be&&be.now!==pt.Date.now&&be.now,ft=t.setTimeout!==pt.setTimeout&&t.setTimeout,ht=Te.ceil,mt=Te.floor,_t=we.getOwnPropertySymbols,gt=Be?Be.isBuffer:n,vt=t.isFinite,Pt=Le.join,Gt=ln(we.keys,we),gn=Te.max,vn=Te.min,An=be.now,En=t.parseInt,bn=Te.random,Sn=Le.reverse,Mn=da(t,"DataView"),Tn=da(t,"Map"),wn=da(t,"Promise"),On=da(t,"Set"),Nn=da(t,"WeakMap"),Cn=da(we,"create"),Ln=Nn&&new Nn,Dn={},$n=Ra(Mn),xn=Ra(Tn),In=Ra(wn),kn=Ra(On),zn=Ra(Nn),Rn=Ve?Ve.prototype:n,Zn=Rn?Rn.valueOf:n,Pn=Rn?Rn.toString:n;function Fn(e){if(ts(e)&&!jo(e)&&!(e instanceof jn)){if(e instanceof Vn)return e;if(ke.call(e,"__wrapped__"))return Za(e)}return new Vn(e)}var Un=function(){function e(){}return function(t){if(!es(t))return{};if(Ge)return Ge(t);e.prototype=t;var r=new e;return e.prototype=n,r}}();function Bn(){}function Vn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=n}function jn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=p,this.__views__=[]}function Hn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Yn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Gn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Wn(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Gn;++t<n;)this.add(e[t])}function qn(e){var t=this.__data__=new Yn(e);this.size=t.size}function Kn(e,t){var n=jo(e),r=!n&&Vo(e),i=!n&&!r&&Wo(e),a=!n&&!r&&!i&&ls(e),o=n||r||i||a,s=o?Kt(e.length,Ne):[],u=s.length;for(var l in e)!t&&!ke.call(e,l)||o&&("length"==l||i&&("offset"==l||"parent"==l)||a&&("buffer"==l||"byteLength"==l||"byteOffset"==l)||ga(l,u))||s.push(l);return s}function Jn(e){var t=e.length;return t?e[Wr(0,t-1)]:n}function Xn(e,t){return Ia(Ci(e),sr(t,0,e.length))}function Qn(e){return Ia(Ci(e))}function er(e,t,r){(r!==n&&!Fo(e[t],r)||r===n&&!(t in e))&&ar(e,t,r)}function tr(e,t,r){var i=e[t];ke.call(e,t)&&Fo(i,r)&&(r!==n||t in e)||ar(e,t,r)}function nr(e,t){for(var n=e.length;n--;)if(Fo(e[n][0],t))return n;return-1}function rr(e,t,n,r){return fr(e,(function(e,i,a){t(r,e,n(e),a)})),r}function ir(e,t){return e&&Li(t,Ds(t),e)}function ar(e,t,n){"__proto__"==t&&tt?tt(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}function or(e,t){for(var r=-1,i=t.length,a=ae(i),o=null==e;++r<i;)a[r]=o?n:ws(e,t[r]);return a}function sr(e,t,r){return e==e&&(r!==n&&(e=e<=r?e:r),t!==n&&(e=e>=t?e:t)),e}function ur(e,t,r,i,a,o){var s,u=1&t,l=2&t,c=4&t;if(r&&(s=a?r(e,i,a,o):r(e)),s!==n)return s;if(!es(e))return e;var d=jo(e);if(d){if(s=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&ke.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!u)return Ci(e,s)}else{var f=pa(e),h=f==E||f==b;if(Wo(e))return Si(e,u);if(f==T||f==_||h&&!a){if(s=l||h?{}:_a(e),!u)return l?function(e,t){return Li(e,ha(e),t)}(e,function(e,t){return e&&Li(t,$s(t),e)}(s,e)):function(e,t){return Li(e,fa(e),t)}(e,ir(s,e))}else{if(!ut[f])return a?e:{};s=function(e,t,n){var r=e.constructor;switch(t){case $:return Mi(e);case g:case v:return new r(+e);case x:return function(e,t){var n=t?Mi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case I:case k:case z:case R:case Z:case P:case F:case U:case B:return Ti(e,n);case S:return new r;case M:case C:return new r(e);case O:return function(e){var t=new e.constructor(e.source,he.exec(e));return t.lastIndex=e.lastIndex,t}(e);case N:return new r;case L:return i=e,Zn?we(Zn.call(i)):{}}var i}(e,f,u)}}o||(o=new qn);var p=o.get(e);if(p)return p;o.set(e,s),os(e)?e.forEach((function(n){s.add(ur(n,t,r,n,e,o))})):ns(e)&&e.forEach((function(n,i){s.set(i,ur(n,t,r,i,e,o))}));var m=d?n:(c?l?ia:ra:l?$s:Ds)(e);return Nt(m||e,(function(n,i){m&&(n=e[i=n]),tr(s,i,ur(n,t,r,i,e,o))})),s}function lr(e,t,r){var i=r.length;if(null==e)return!i;for(e=we(e);i--;){var a=r[i],o=t[a],s=e[a];if(s===n&&!(a in e)||!o(s))return!1}return!0}function cr(e,t,i){if("function"!=typeof e)throw new Ce(r);return La((function(){e.apply(n,i)}),t)}function dr(e,t,n,r){var i=-1,a=$t,o=!0,s=e.length,u=[],l=t.length;if(!s)return u;n&&(t=It(t,Xt(n))),r?(a=xt,o=!1):t.length>=200&&(a=en,o=!1,t=new Wn(t));e:for(;++i<s;){var c=e[i],d=null==n?c:n(c);if(c=r||0!==c?c:0,o&&d==d){for(var f=l;f--;)if(t[f]===d)continue e;u.push(c)}else a(t,d,r)||u.push(c)}return u}Fn.templateSettings={escape:K,evaluate:J,interpolate:X,variable:"",imports:{_:Fn}},Fn.prototype=Bn.prototype,Fn.prototype.constructor=Fn,Vn.prototype=Un(Bn.prototype),Vn.prototype.constructor=Vn,jn.prototype=Un(Bn.prototype),jn.prototype.constructor=jn,Hn.prototype.clear=function(){this.__data__=Cn?Cn(null):{},this.size=0},Hn.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},Hn.prototype.get=function(e){var t=this.__data__;if(Cn){var r=t[e];return r===i?n:r}return ke.call(t,e)?t[e]:n},Hn.prototype.has=function(e){var t=this.__data__;return Cn?t[e]!==n:ke.call(t,e)},Hn.prototype.set=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Cn&&t===n?i:t,this},Yn.prototype.clear=function(){this.__data__=[],this.size=0},Yn.prototype.delete=function(e){var t=this.__data__,n=nr(t,e);return!(n<0)&&(n==t.length-1?t.pop():qe.call(t,n,1),--this.size,!0)},Yn.prototype.get=function(e){var t=this.__data__,r=nr(t,e);return r<0?n:t[r][1]},Yn.prototype.has=function(e){return nr(this.__data__,e)>-1},Yn.prototype.set=function(e,t){var n=this.__data__,r=nr(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Gn.prototype.clear=function(){this.size=0,this.__data__={hash:new Hn,map:new(Tn||Yn),string:new Hn}},Gn.prototype.delete=function(e){var t=la(this,e).delete(e);return this.size-=t?1:0,t},Gn.prototype.get=function(e){return la(this,e).get(e)},Gn.prototype.has=function(e){return la(this,e).has(e)},Gn.prototype.set=function(e,t){var n=la(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Wn.prototype.add=Wn.prototype.push=function(e){return this.__data__.set(e,i),this},Wn.prototype.has=function(e){return this.__data__.has(e)},qn.prototype.clear=function(){this.__data__=new Yn,this.size=0},qn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},qn.prototype.get=function(e){return this.__data__.get(e)},qn.prototype.has=function(e){return this.__data__.has(e)},qn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Yn){var r=n.__data__;if(!Tn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Gn(r)}return n.set(e,t),this.size=n.size,this};var fr=xi(Ar),hr=xi(Er,!0);function pr(e,t){var n=!0;return fr(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function mr(e,t,r){for(var i=-1,a=e.length;++i<a;){var o=e[i],s=t(o);if(null!=s&&(u===n?s==s&&!us(s):r(s,u)))var u=s,l=o}return l}function _r(e,t){var n=[];return fr(e,(function(e,r,i){t(e,r,i)&&n.push(e)})),n}function yr(e,t,n,r,i){var a=-1,o=e.length;for(n||(n=ya),i||(i=[]);++a<o;){var s=e[a];t>0&&n(s)?t>1?yr(s,t-1,n,r,i):kt(i,s):r||(i[i.length]=s)}return i}var gr=Ii(),vr=Ii(!0);function Ar(e,t){return e&&gr(e,t,Ds)}function Er(e,t){return e&&vr(e,t,Ds)}function br(e,t){return Dt(t,(function(t){return Jo(e[t])}))}function Sr(e,t){for(var r=0,i=(t=vi(t,e)).length;null!=e&&r<i;)e=e[za(t[r++])];return r&&r==i?e:n}function Mr(e,t,n){var r=t(e);return jo(e)?r:kt(r,n(e))}function Tr(e){return null==e?e===n?"[object Undefined]":"[object Null]":Xe&&Xe in we(e)?function(e){var t=ke.call(e,Xe),r=e[Xe];try{e[Xe]=n;var i=!0}catch(e){}var a=Ze.call(e);i&&(t?e[Xe]=r:delete e[Xe]);return a}(e):function(e){return Ze.call(e)}(e)}function wr(e,t){return e>t}function Or(e,t){return null!=e&&ke.call(e,t)}function Nr(e,t){return null!=e&&t in we(e)}function Cr(e,t,r){for(var i=r?xt:$t,a=e[0].length,o=e.length,s=o,u=ae(o),l=1/0,c=[];s--;){var d=e[s];s&&t&&(d=It(d,Xt(t))),l=vn(d.length,l),u[s]=!r&&(t||a>=120&&d.length>=120)?new Wn(s&&d):n}d=e[0];var f=-1,h=u[0];e:for(;++f<a&&c.length<l;){var p=d[f],m=t?t(p):p;if(p=r||0!==p?p:0,!(h?en(h,m):i(c,m,r))){for(s=o;--s;){var _=u[s];if(!(_?en(_,m):i(e[s],m,r)))continue e}h&&h.push(m),c.push(p)}}return c}function Lr(e,t,r){var i=null==(e=Oa(e,t=vi(t,e)))?e:e[za(qa(t))];return null==i?n:wt(i,e,r)}function Dr(e){return ts(e)&&Tr(e)==_}function $r(e,t,r,i,a){return e===t||(null==e||null==t||!ts(e)&&!ts(t)?e!=e&&t!=t:function(e,t,r,i,a,o){var s=jo(e),u=jo(t),l=s?y:pa(e),c=u?y:pa(t),d=(l=l==_?T:l)==T,f=(c=c==_?T:c)==T,h=l==c;if(h&&Wo(e)){if(!Wo(t))return!1;s=!0,d=!1}if(h&&!d)return o||(o=new qn),s||ls(e)?ta(e,t,r,i,a,o):function(e,t,n,r,i,a,o){switch(n){case x:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case $:return!(e.byteLength!=t.byteLength||!a(new je(e),new je(t)));case g:case v:case M:return Fo(+e,+t);case A:return e.name==t.name&&e.message==t.message;case O:case C:return e==t+"";case S:var s=un;case N:var u=1&r;if(s||(s=dn),e.size!=t.size&&!u)return!1;var l=o.get(e);if(l)return l==t;r|=2,o.set(e,t);var c=ta(s(e),s(t),r,i,a,o);return o.delete(e),c;case L:if(Zn)return Zn.call(e)==Zn.call(t)}return!1}(e,t,l,r,i,a,o);if(!(1&r)){var p=d&&ke.call(e,"__wrapped__"),m=f&&ke.call(t,"__wrapped__");if(p||m){var E=p?e.value():e,b=m?t.value():t;return o||(o=new qn),a(E,b,r,i,o)}}if(!h)return!1;return o||(o=new qn),function(e,t,r,i,a,o){var s=1&r,u=ra(e),l=u.length,c=ra(t),d=c.length;if(l!=d&&!s)return!1;var f=l;for(;f--;){var h=u[f];if(!(s?h in t:ke.call(t,h)))return!1}var p=o.get(e),m=o.get(t);if(p&&m)return p==t&&m==e;var _=!0;o.set(e,t),o.set(t,e);var y=s;for(;++f<l;){var g=e[h=u[f]],v=t[h];if(i)var A=s?i(v,g,h,t,e,o):i(g,v,h,e,t,o);if(!(A===n?g===v||a(g,v,r,i,o):A)){_=!1;break}y||(y="constructor"==h)}if(_&&!y){var E=e.constructor,b=t.constructor;E==b||!("constructor"in e)||!("constructor"in t)||"function"==typeof E&&E instanceof E&&"function"==typeof b&&b instanceof b||(_=!1)}return o.delete(e),o.delete(t),_}(e,t,r,i,a,o)}(e,t,r,i,$r,a))}function xr(e,t,r,i){var a=r.length,o=a,s=!i;if(null==e)return!o;for(e=we(e);a--;){var u=r[a];if(s&&u[2]?u[1]!==e[u[0]]:!(u[0]in e))return!1}for(;++a<o;){var l=(u=r[a])[0],c=e[l],d=u[1];if(s&&u[2]){if(c===n&&!(l in e))return!1}else{var f=new qn;if(i)var h=i(c,d,l,e,t,f);if(!(h===n?$r(d,c,3,i,f):h))return!1}}return!0}function Ir(e){return!(!es(e)||(t=e,Re&&Re in t))&&(Jo(e)?Ue:_e).test(Ra(e));var t}function kr(e){return"function"==typeof e?e:null==e?ru:"object"==typeof e?jo(e)?Ur(e[0],e[1]):Fr(e):fu(e)}function zr(e){if(!Sa(e))return Gt(e);var t=[];for(var n in we(e))ke.call(e,n)&&"constructor"!=n&&t.push(n);return t}function Rr(e){if(!es(e))return function(e){var t=[];if(null!=e)for(var n in we(e))t.push(n);return t}(e);var t=Sa(e),n=[];for(var r in e)("constructor"!=r||!t&&ke.call(e,r))&&n.push(r);return n}function Zr(e,t){return e<t}function Pr(e,t){var n=-1,r=Yo(e)?ae(e.length):[];return fr(e,(function(e,i,a){r[++n]=t(e,i,a)})),r}function Fr(e){var t=ca(e);return 1==t.length&&t[0][2]?Ta(t[0][0],t[0][1]):function(n){return n===e||xr(n,e,t)}}function Ur(e,t){return Aa(e)&&Ma(t)?Ta(za(e),t):function(r){var i=ws(r,e);return i===n&&i===t?Os(r,e):$r(t,i,3)}}function Br(e,t,r,i,a){e!==t&&gr(t,(function(o,s){if(a||(a=new qn),es(o))!function(e,t,r,i,a,o,s){var u=Na(e,r),l=Na(t,r),c=s.get(l);if(c)return void er(e,r,c);var d=o?o(u,l,r+"",e,t,s):n,f=d===n;if(f){var h=jo(l),p=!h&&Wo(l),m=!h&&!p&&ls(l);d=l,h||p||m?jo(u)?d=u:Go(u)?d=Ci(u):p?(f=!1,d=Si(l,!0)):m?(f=!1,d=Ti(l,!0)):d=[]:is(l)||Vo(l)?(d=u,Vo(u)?d=ys(u):es(u)&&!Jo(u)||(d=_a(l))):f=!1}f&&(s.set(l,d),a(d,l,i,o,s),s.delete(l));er(e,r,d)}(e,t,s,r,Br,i,a);else{var u=i?i(Na(e,s),o,s+"",e,t,a):n;u===n&&(u=o),er(e,s,u)}}),$s)}function Vr(e,t){var r=e.length;if(r)return ga(t+=t<0?r:0,r)?e[t]:n}function jr(e,t,n){t=t.length?It(t,(function(e){return jo(e)?function(t){return Sr(t,1===e.length?e[0]:e)}:e})):[ru];var r=-1;t=It(t,Xt(ua()));var i=Pr(e,(function(e,n,i){var a=It(t,(function(t){return t(e)}));return{criteria:a,index:++r,value:e}}));return function(e,t){var n=e.length;for(e.sort(t);n--;)e[n]=e[n].value;return e}(i,(function(e,t){return function(e,t,n){var r=-1,i=e.criteria,a=t.criteria,o=i.length,s=n.length;for(;++r<o;){var u=wi(i[r],a[r]);if(u)return r>=s?u:u*("desc"==n[r]?-1:1)}return e.index-t.index}(e,t,n)}))}function Hr(e,t,n){for(var r=-1,i=t.length,a={};++r<i;){var o=t[r],s=Sr(e,o);n(s,o)&&Qr(a,vi(o,e),s)}return a}function Yr(e,t,n,r){var i=r?Vt:Bt,a=-1,o=t.length,s=e;for(e===t&&(t=Ci(t)),n&&(s=It(e,Xt(n)));++a<o;)for(var u=0,l=t[a],c=n?n(l):l;(u=i(s,c,u,r))>-1;)s!==e&&qe.call(s,u,1),qe.call(e,u,1);return e}function Gr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==a){var a=i;ga(i)?qe.call(e,i,1):di(e,i)}}return e}function Wr(e,t){return e+mt(bn()*(t-e+1))}function qr(e,t){var n="";if(!e||t<1||t>f)return n;do{t%2&&(n+=e),(t=mt(t/2))&&(e+=e)}while(t);return n}function Kr(e,t){return Da(wa(e,t,ru),e+"")}function Jr(e){return Jn(Fs(e))}function Xr(e,t){var n=Fs(e);return Ia(n,sr(t,0,n.length))}function Qr(e,t,r,i){if(!es(e))return e;for(var a=-1,o=(t=vi(t,e)).length,s=o-1,u=e;null!=u&&++a<o;){var l=za(t[a]),c=r;if("__proto__"===l||"constructor"===l||"prototype"===l)return e;if(a!=s){var d=u[l];(c=i?i(d,l,u):n)===n&&(c=es(d)?d:ga(t[a+1])?[]:{})}tr(u,l,c),u=u[l]}return e}var ei=Ln?function(e,t){return Ln.set(e,t),e}:ru,ti=tt?function(e,t){return tt(e,"toString",{configurable:!0,enumerable:!1,value:eu(t),writable:!0})}:ru;function ni(e){return Ia(Fs(e))}function ri(e,t,n){var r=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var a=ae(i);++r<i;)a[r]=e[r+t];return a}function ii(e,t){var n;return fr(e,(function(e,r,i){return!(n=t(e,r,i))})),!!n}function ai(e,t,n){var r=0,i=null==e?r:e.length;if("number"==typeof t&&t==t&&i<=2147483647){for(;r<i;){var a=r+i>>>1,o=e[a];null!==o&&!us(o)&&(n?o<=t:o<t)?r=a+1:i=a}return i}return oi(e,t,ru,n)}function oi(e,t,r,i){var a=0,o=null==e?0:e.length;if(0===o)return 0;for(var s=(t=r(t))!=t,u=null===t,l=us(t),c=t===n;a<o;){var d=mt((a+o)/2),f=r(e[d]),h=f!==n,p=null===f,m=f==f,_=us(f);if(s)var y=i||m;else y=c?m&&(i||h):u?m&&h&&(i||!p):l?m&&h&&!p&&(i||!_):!p&&!_&&(i?f<=t:f<t);y?a=d+1:o=d}return vn(o,4294967294)}function si(e,t){for(var n=-1,r=e.length,i=0,a=[];++n<r;){var o=e[n],s=t?t(o):o;if(!n||!Fo(s,u)){var u=s;a[i++]=0===o?0:o}}return a}function ui(e){return"number"==typeof e?e:us(e)?h:+e}function li(e){if("string"==typeof e)return e;if(jo(e))return It(e,li)+"";if(us(e))return Pn?Pn.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function ci(e,t,n){var r=-1,i=$t,a=e.length,o=!0,s=[],u=s;if(n)o=!1,i=xt;else if(a>=200){var l=t?null:qi(e);if(l)return dn(l);o=!1,i=en,u=new Wn}else u=t?[]:s;e:for(;++r<a;){var c=e[r],d=t?t(c):c;if(c=n||0!==c?c:0,o&&d==d){for(var f=u.length;f--;)if(u[f]===d)continue e;t&&u.push(d),s.push(c)}else i(u,d,n)||(u!==s&&u.push(d),s.push(c))}return s}function di(e,t){return null==(e=Oa(e,t=vi(t,e)))||delete e[za(qa(t))]}function fi(e,t,n,r){return Qr(e,t,n(Sr(e,t)),r)}function hi(e,t,n,r){for(var i=e.length,a=r?i:-1;(r?a--:++a<i)&&t(e[a],a,e););return n?ri(e,r?0:a,r?a+1:i):ri(e,r?a+1:0,r?i:a)}function pi(e,t){var n=e;return n instanceof jn&&(n=n.value()),zt(t,(function(e,t){return t.func.apply(t.thisArg,kt([e],t.args))}),n)}function mi(e,t,n){var r=e.length;if(r<2)return r?ci(e[0]):[];for(var i=-1,a=ae(r);++i<r;)for(var o=e[i],s=-1;++s<r;)s!=i&&(a[i]=dr(a[i]||o,e[s],t,n));return ci(yr(a,1),t,n)}function _i(e,t,r){for(var i=-1,a=e.length,o=t.length,s={};++i<a;){var u=i<o?t[i]:n;r(s,e[i],u)}return s}function yi(e){return Go(e)?e:[]}function gi(e){return"function"==typeof e?e:ru}function vi(e,t){return jo(e)?e:Aa(e,t)?[e]:ka(gs(e))}var Ai=Kr;function Ei(e,t,r){var i=e.length;return r=r===n?i:r,!t&&r>=i?e:ri(e,t,r)}var bi=rt||function(e){return pt.clearTimeout(e)};function Si(e,t){if(t)return e.slice();var n=e.length,r=He?He(n):new e.constructor(n);return e.copy(r),r}function Mi(e){var t=new e.constructor(e.byteLength);return new je(t).set(new je(e)),t}function Ti(e,t){var n=t?Mi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function wi(e,t){if(e!==t){var r=e!==n,i=null===e,a=e==e,o=us(e),s=t!==n,u=null===t,l=t==t,c=us(t);if(!u&&!c&&!o&&e>t||o&&s&&l&&!u&&!c||i&&s&&l||!r&&l||!a)return 1;if(!i&&!o&&!c&&e<t||c&&r&&a&&!i&&!o||u&&r&&a||!s&&a||!l)return-1}return 0}function Oi(e,t,n,r){for(var i=-1,a=e.length,o=n.length,s=-1,u=t.length,l=gn(a-o,0),c=ae(u+l),d=!r;++s<u;)c[s]=t[s];for(;++i<o;)(d||i<a)&&(c[n[i]]=e[i]);for(;l--;)c[s++]=e[i++];return c}function Ni(e,t,n,r){for(var i=-1,a=e.length,o=-1,s=n.length,u=-1,l=t.length,c=gn(a-s,0),d=ae(c+l),f=!r;++i<c;)d[i]=e[i];for(var h=i;++u<l;)d[h+u]=t[u];for(;++o<s;)(f||i<a)&&(d[h+n[o]]=e[i++]);return d}function Ci(e,t){var n=-1,r=e.length;for(t||(t=ae(r));++n<r;)t[n]=e[n];return t}function Li(e,t,r,i){var a=!r;r||(r={});for(var o=-1,s=t.length;++o<s;){var u=t[o],l=i?i(r[u],e[u],u,r,e):n;l===n&&(l=e[u]),a?ar(r,u,l):tr(r,u,l)}return r}function Di(e,t){return function(n,r){var i=jo(n)?Ot:rr,a=t?t():{};return i(n,e,ua(r,2),a)}}function $i(e){return Kr((function(t,r){var i=-1,a=r.length,o=a>1?r[a-1]:n,s=a>2?r[2]:n;for(o=e.length>3&&"function"==typeof o?(a--,o):n,s&&va(r[0],r[1],s)&&(o=a<3?n:o,a=1),t=we(t);++i<a;){var u=r[i];u&&e(t,u,i,o)}return t}))}function xi(e,t){return function(n,r){if(null==n)return n;if(!Yo(n))return e(n,r);for(var i=n.length,a=t?i:-1,o=we(n);(t?a--:++a<i)&&!1!==r(o[a],a,o););return n}}function Ii(e){return function(t,n,r){for(var i=-1,a=we(t),o=r(t),s=o.length;s--;){var u=o[e?s:++i];if(!1===n(a[u],u,a))break}return t}}function ki(e){return function(t){var r=sn(t=gs(t))?pn(t):n,i=r?r[0]:t.charAt(0),a=r?Ei(r,1).join(""):t.slice(1);return i[e]()+a}}function zi(e){return function(t){return zt(Js(Vs(t).replace(Qe,"")),e,"")}}function Ri(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var n=Un(e.prototype),r=e.apply(n,t);return es(r)?r:n}}function Zi(e){return function(t,r,i){var a=we(t);if(!Yo(t)){var o=ua(r,3);t=Ds(t),r=function(e){return o(a[e],e,a)}}var s=e(t,r,i);return s>-1?a[o?t[s]:s]:n}}function Pi(e){return na((function(t){var i=t.length,a=i,o=Vn.prototype.thru;for(e&&t.reverse();a--;){var s=t[a];if("function"!=typeof s)throw new Ce(r);if(o&&!u&&"wrapper"==oa(s))var u=new Vn([],!0)}for(a=u?a:i;++a<i;){var l=oa(s=t[a]),c="wrapper"==l?aa(s):n;u=c&&Ea(c[0])&&424==c[1]&&!c[4].length&&1==c[9]?u[oa(c[0])].apply(u,c[3]):1==s.length&&Ea(s)?u[l]():u.thru(s)}return function(){var e=arguments,n=e[0];if(u&&1==e.length&&jo(n))return u.plant(n).value();for(var r=0,a=i?t[r].apply(this,e):n;++r<i;)a=t[r].call(this,a);return a}}))}function Fi(e,t,r,i,a,o,s,u,c,d){var f=t&l,h=1&t,p=2&t,m=24&t,_=512&t,y=p?n:Ri(e);return function l(){for(var g=arguments.length,v=ae(g),A=g;A--;)v[A]=arguments[A];if(m)var E=sa(l),b=function(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}(v,E);if(i&&(v=Oi(v,i,a,m)),o&&(v=Ni(v,o,s,m)),g-=b,m&&g<d){var S=cn(v,E);return Gi(e,t,Fi,l.placeholder,r,v,S,u,c,d-g)}var M=h?r:this,T=p?M[e]:e;return g=v.length,u?v=function(e,t){var r=e.length,i=vn(t.length,r),a=Ci(e);for(;i--;){var o=t[i];e[i]=ga(o,r)?a[o]:n}return e}(v,u):_&&g>1&&v.reverse(),f&&c<g&&(v.length=c),this&&this!==pt&&this instanceof l&&(T=y||Ri(T)),T.apply(M,v)}}function Ui(e,t){return function(n,r){return function(e,t,n,r){return Ar(e,(function(e,i,a){t(r,n(e),i,a)})),r}(n,e,t(r),{})}}function Bi(e,t){return function(r,i){var a;if(r===n&&i===n)return t;if(r!==n&&(a=r),i!==n){if(a===n)return i;"string"==typeof r||"string"==typeof i?(r=li(r),i=li(i)):(r=ui(r),i=ui(i)),a=e(r,i)}return a}}function Vi(e){return na((function(t){return t=It(t,Xt(ua())),Kr((function(n){var r=this;return e(t,(function(e){return wt(e,r,n)}))}))}))}function ji(e,t){var r=(t=t===n?" ":li(t)).length;if(r<2)return r?qr(t,e):t;var i=qr(t,ht(e/hn(t)));return sn(t)?Ei(pn(i),0,e).join(""):i.slice(0,e)}function Hi(e){return function(t,r,i){return i&&"number"!=typeof i&&va(t,r,i)&&(r=i=n),t=hs(t),r===n?(r=t,t=0):r=hs(r),function(e,t,n,r){for(var i=-1,a=gn(ht((t-e)/(n||1)),0),o=ae(a);a--;)o[r?a:++i]=e,e+=n;return o}(t,r,i=i===n?t<r?1:-1:hs(i),e)}}function Yi(e){return function(t,n){return"string"==typeof t&&"string"==typeof n||(t=_s(t),n=_s(n)),e(t,n)}}function Gi(e,t,r,i,a,o,l,c,d,f){var h=8&t;t|=h?s:u,4&(t&=~(h?u:s))||(t&=-4);var p=[e,t,a,h?o:n,h?l:n,h?n:o,h?n:l,c,d,f],m=r.apply(n,p);return Ea(e)&&Ca(m,p),m.placeholder=i,$a(m,e,t)}function Wi(e){var t=Te[e];return function(e,n){if(e=_s(e),(n=null==n?0:vn(ps(n),292))&&vt(e)){var r=(gs(e)+"e").split("e");return+((r=(gs(t(r[0]+"e"+(+r[1]+n)))+"e").split("e"))[0]+"e"+(+r[1]-n))}return t(e)}}var qi=On&&1/dn(new On([,-0]))[1]==d?function(e){return new On(e)}:uu;function Ki(e){return function(t){var n=pa(t);return n==S?un(t):n==N?fn(t):function(e,t){return It(t,(function(t){return[t,e[t]]}))}(t,e(t))}}function Ji(e,t,i,d,f,h,p,m){var _=2&t;if(!_&&"function"!=typeof e)throw new Ce(r);var y=d?d.length:0;if(y||(t&=-97,d=f=n),p=p===n?p:gn(ps(p),0),m=m===n?m:ps(m),y-=f?f.length:0,t&u){var g=d,v=f;d=f=n}var A=_?n:aa(e),E=[e,t,i,d,f,g,v,h,p,m];if(A&&function(e,t){var n=e[1],r=t[1],i=n|r,o=i<131,s=r==l&&8==n||r==l&&n==c&&e[7].length<=t[8]||384==r&&t[7].length<=t[8]&&8==n;if(!o&&!s)return e;1&r&&(e[2]=t[2],i|=1&n?0:4);var u=t[3];if(u){var d=e[3];e[3]=d?Oi(d,u,t[4]):u,e[4]=d?cn(e[3],a):t[4]}(u=t[5])&&(d=e[5],e[5]=d?Ni(d,u,t[6]):u,e[6]=d?cn(e[5],a):t[6]);(u=t[7])&&(e[7]=u);r&l&&(e[8]=null==e[8]?t[8]:vn(e[8],t[8]));null==e[9]&&(e[9]=t[9]);e[0]=t[0],e[1]=i}(E,A),e=E[0],t=E[1],i=E[2],d=E[3],f=E[4],!(m=E[9]=E[9]===n?_?0:e.length:gn(E[9]-y,0))&&24&t&&(t&=-25),t&&1!=t)b=8==t||t==o?function(e,t,r){var i=Ri(e);return function a(){for(var o=arguments.length,s=ae(o),u=o,l=sa(a);u--;)s[u]=arguments[u];var c=o<3&&s[0]!==l&&s[o-1]!==l?[]:cn(s,l);return(o-=c.length)<r?Gi(e,t,Fi,a.placeholder,n,s,c,n,n,r-o):wt(this&&this!==pt&&this instanceof a?i:e,this,s)}}(e,t,m):t!=s&&33!=t||f.length?Fi.apply(n,E):function(e,t,n,r){var i=1&t,a=Ri(e);return function t(){for(var o=-1,s=arguments.length,u=-1,l=r.length,c=ae(l+s),d=this&&this!==pt&&this instanceof t?a:e;++u<l;)c[u]=r[u];for(;s--;)c[u++]=arguments[++o];return wt(d,i?n:this,c)}}(e,t,i,d);else var b=function(e,t,n){var r=1&t,i=Ri(e);return function t(){return(this&&this!==pt&&this instanceof t?i:e).apply(r?n:this,arguments)}}(e,t,i);return $a((A?ei:Ca)(b,E),e,t)}function Xi(e,t,r,i){return e===n||Fo(e,$e[r])&&!ke.call(i,r)?t:e}function Qi(e,t,r,i,a,o){return es(e)&&es(t)&&(o.set(t,e),Br(e,t,n,Qi,o),o.delete(t)),e}function ea(e){return is(e)?n:e}function ta(e,t,r,i,a,o){var s=1&r,u=e.length,l=t.length;if(u!=l&&!(s&&l>u))return!1;var c=o.get(e),d=o.get(t);if(c&&d)return c==t&&d==e;var f=-1,h=!0,p=2&r?new Wn:n;for(o.set(e,t),o.set(t,e);++f<u;){var m=e[f],_=t[f];if(i)var y=s?i(_,m,f,t,e,o):i(m,_,f,e,t,o);if(y!==n){if(y)continue;h=!1;break}if(p){if(!Zt(t,(function(e,t){if(!en(p,t)&&(m===e||a(m,e,r,i,o)))return p.push(t)}))){h=!1;break}}else if(m!==_&&!a(m,_,r,i,o)){h=!1;break}}return o.delete(e),o.delete(t),h}function na(e){return Da(wa(e,n,ja),e+"")}function ra(e){return Mr(e,Ds,fa)}function ia(e){return Mr(e,$s,ha)}var aa=Ln?function(e){return Ln.get(e)}:uu;function oa(e){for(var t=e.name+"",n=Dn[t],r=ke.call(Dn,t)?n.length:0;r--;){var i=n[r],a=i.func;if(null==a||a==e)return i.name}return t}function sa(e){return(ke.call(Fn,"placeholder")?Fn:e).placeholder}function ua(){var e=Fn.iteratee||iu;return e=e===iu?kr:e,arguments.length?e(arguments[0],arguments[1]):e}function la(e,t){var n,r,i=e.__data__;return("string"==(r=typeof(n=t))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof t?"string":"hash"]:i.map}function ca(e){for(var t=Ds(e),n=t.length;n--;){var r=t[n],i=e[r];t[n]=[r,i,Ma(i)]}return t}function da(e,t){var r=function(e,t){return null==e?n:e[t]}(e,t);return Ir(r)?r:n}var fa=_t?function(e){return null==e?[]:(e=we(e),Dt(_t(e),(function(t){return We.call(e,t)})))}:mu,ha=_t?function(e){for(var t=[];e;)kt(t,fa(e)),e=Ye(e);return t}:mu,pa=Tr;function ma(e,t,n){for(var r=-1,i=(t=vi(t,e)).length,a=!1;++r<i;){var o=za(t[r]);if(!(a=null!=e&&n(e,o)))break;e=e[o]}return a||++r!=i?a:!!(i=null==e?0:e.length)&&Qo(i)&&ga(o,i)&&(jo(e)||Vo(e))}function _a(e){return"function"!=typeof e.constructor||Sa(e)?{}:Un(Ye(e))}function ya(e){return jo(e)||Vo(e)||!!(Ke&&e&&e[Ke])}function ga(e,t){var n=typeof e;return!!(t=null==t?f:t)&&("number"==n||"symbol"!=n&&ge.test(e))&&e>-1&&e%1==0&&e<t}function va(e,t,n){if(!es(n))return!1;var r=typeof t;return!!("number"==r?Yo(n)&&ga(t,n.length):"string"==r&&t in n)&&Fo(n[t],e)}function Aa(e,t){if(jo(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!us(e))||(ee.test(e)||!Q.test(e)||null!=t&&e in we(t))}function Ea(e){var t=oa(e),n=Fn[t];if("function"!=typeof n||!(t in jn.prototype))return!1;if(e===n)return!0;var r=aa(n);return!!r&&e===r[0]}(Mn&&pa(new Mn(new ArrayBuffer(1)))!=x||Tn&&pa(new Tn)!=S||wn&&pa(wn.resolve())!=w||On&&pa(new On)!=N||Nn&&pa(new Nn)!=D)&&(pa=function(e){var t=Tr(e),r=t==T?e.constructor:n,i=r?Ra(r):"";if(i)switch(i){case $n:return x;case xn:return S;case In:return w;case kn:return N;case zn:return D}return t});var ba=xe?Jo:_u;function Sa(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||$e)}function Ma(e){return e==e&&!es(e)}function Ta(e,t){return function(r){return null!=r&&(r[e]===t&&(t!==n||e in we(r)))}}function wa(e,t,r){return t=gn(t===n?e.length-1:t,0),function(){for(var n=arguments,i=-1,a=gn(n.length-t,0),o=ae(a);++i<a;)o[i]=n[t+i];i=-1;for(var s=ae(t+1);++i<t;)s[i]=n[i];return s[t]=r(o),wt(e,this,s)}}function Oa(e,t){return t.length<2?e:Sr(e,ri(t,0,-1))}function Na(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}var Ca=xa(ei),La=ft||function(e,t){return pt.setTimeout(e,t)},Da=xa(ti);function $a(e,t,n){var r=t+"";return Da(e,function(e,t){var n=t.length;if(!n)return e;var r=n-1;return t[r]=(n>1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(oe,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return Nt(m,(function(n){var r="_."+n[0];t&n[1]&&!$t(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(se);return t?t[1].split(ue):[]}(r),n)))}function xa(e){var t=0,r=0;return function(){var i=An(),a=16-(i-r);if(r=i,a>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(n,arguments)}}function Ia(e,t){var r=-1,i=e.length,a=i-1;for(t=t===n?i:t;++r<t;){var o=Wr(r,a),s=e[o];e[o]=e[r],e[r]=s}return e.length=t,e}var ka=function(e){var t=Io(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(te,(function(e,n,r,i){t.push(r?i.replace(de,"$1"):n||e)})),t}));function za(e){if("string"==typeof e||us(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function Ra(e){if(null!=e){try{return Ie.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function Za(e){if(e instanceof jn)return e.clone();var t=new Vn(e.__wrapped__,e.__chain__);return t.__actions__=Ci(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}var Pa=Kr((function(e,t){return Go(e)?dr(e,yr(t,1,Go,!0)):[]})),Fa=Kr((function(e,t){var r=qa(t);return Go(r)&&(r=n),Go(e)?dr(e,yr(t,1,Go,!0),ua(r,2)):[]})),Ua=Kr((function(e,t){var r=qa(t);return Go(r)&&(r=n),Go(e)?dr(e,yr(t,1,Go,!0),n,r):[]}));function Ba(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:ps(n);return i<0&&(i=gn(r+i,0)),Ut(e,ua(t,3),i)}function Va(e,t,r){var i=null==e?0:e.length;if(!i)return-1;var a=i-1;return r!==n&&(a=ps(r),a=r<0?gn(i+a,0):vn(a,i-1)),Ut(e,ua(t,3),a,!0)}function ja(e){return(null==e?0:e.length)?yr(e,1):[]}function Ha(e){return e&&e.length?e[0]:n}var Ya=Kr((function(e){var t=It(e,yi);return t.length&&t[0]===e[0]?Cr(t):[]})),Ga=Kr((function(e){var t=qa(e),r=It(e,yi);return t===qa(r)?t=n:r.pop(),r.length&&r[0]===e[0]?Cr(r,ua(t,2)):[]})),Wa=Kr((function(e){var t=qa(e),r=It(e,yi);return(t="function"==typeof t?t:n)&&r.pop(),r.length&&r[0]===e[0]?Cr(r,n,t):[]}));function qa(e){var t=null==e?0:e.length;return t?e[t-1]:n}var Ka=Kr(Ja);function Ja(e,t){return e&&e.length&&t&&t.length?Yr(e,t):e}var Xa=na((function(e,t){var n=null==e?0:e.length,r=or(e,t);return Gr(e,It(t,(function(e){return ga(e,n)?+e:e})).sort(wi)),r}));function Qa(e){return null==e?e:Sn.call(e)}var eo=Kr((function(e){return ci(yr(e,1,Go,!0))})),to=Kr((function(e){var t=qa(e);return Go(t)&&(t=n),ci(yr(e,1,Go,!0),ua(t,2))})),no=Kr((function(e){var t=qa(e);return t="function"==typeof t?t:n,ci(yr(e,1,Go,!0),n,t)}));function ro(e){if(!e||!e.length)return[];var t=0;return e=Dt(e,(function(e){if(Go(e))return t=gn(e.length,t),!0})),Kt(t,(function(t){return It(e,Yt(t))}))}function io(e,t){if(!e||!e.length)return[];var r=ro(e);return null==t?r:It(r,(function(e){return wt(t,n,e)}))}var ao=Kr((function(e,t){return Go(e)?dr(e,t):[]})),oo=Kr((function(e){return mi(Dt(e,Go))})),so=Kr((function(e){var t=qa(e);return Go(t)&&(t=n),mi(Dt(e,Go),ua(t,2))})),uo=Kr((function(e){var t=qa(e);return t="function"==typeof t?t:n,mi(Dt(e,Go),n,t)})),lo=Kr(ro);var co=Kr((function(e){var t=e.length,r=t>1?e[t-1]:n;return r="function"==typeof r?(e.pop(),r):n,io(e,r)}));function fo(e){var t=Fn(e);return t.__chain__=!0,t}function ho(e,t){return t(e)}var po=na((function(e){var t=e.length,r=t?e[0]:0,i=this.__wrapped__,a=function(t){return or(t,e)};return!(t>1||this.__actions__.length)&&i instanceof jn&&ga(r)?((i=i.slice(r,+r+(t?1:0))).__actions__.push({func:ho,args:[a],thisArg:n}),new Vn(i,this.__chain__).thru((function(e){return t&&!e.length&&e.push(n),e}))):this.thru(a)}));var mo=Di((function(e,t,n){ke.call(e,n)?++e[n]:ar(e,n,1)}));var _o=Zi(Ba),yo=Zi(Va);function go(e,t){return(jo(e)?Nt:fr)(e,ua(t,3))}function vo(e,t){return(jo(e)?Ct:hr)(e,ua(t,3))}var Ao=Di((function(e,t,n){ke.call(e,n)?e[n].push(t):ar(e,n,[t])}));var Eo=Kr((function(e,t,n){var r=-1,i="function"==typeof t,a=Yo(e)?ae(e.length):[];return fr(e,(function(e){a[++r]=i?wt(t,e,n):Lr(e,t,n)})),a})),bo=Di((function(e,t,n){ar(e,n,t)}));function So(e,t){return(jo(e)?It:Pr)(e,ua(t,3))}var Mo=Di((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var To=Kr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&va(e,t[0],t[1])?t=[]:n>2&&va(t[0],t[1],t[2])&&(t=[t[0]]),jr(e,yr(t,1),[])})),wo=lt||function(){return pt.Date.now()};function Oo(e,t,r){return t=r?n:t,t=e&&null==t?e.length:t,Ji(e,l,n,n,n,n,t)}function No(e,t){var i;if("function"!=typeof t)throw new Ce(r);return e=ps(e),function(){return--e>0&&(i=t.apply(this,arguments)),e<=1&&(t=n),i}}var Co=Kr((function(e,t,n){var r=1;if(n.length){var i=cn(n,sa(Co));r|=s}return Ji(e,r,t,n,i)})),Lo=Kr((function(e,t,n){var r=3;if(n.length){var i=cn(n,sa(Lo));r|=s}return Ji(t,r,e,n,i)}));function Do(e,t,i){var a,o,s,u,l,c,d=0,f=!1,h=!1,p=!0;if("function"!=typeof e)throw new Ce(r);function m(t){var r=a,i=o;return a=o=n,d=t,u=e.apply(i,r)}function _(e){var r=e-c;return c===n||r>=t||r<0||h&&e-d>=s}function y(){var e=wo();if(_(e))return g(e);l=La(y,function(e){var n=t-(e-c);return h?vn(n,s-(e-d)):n}(e))}function g(e){return l=n,p&&a?m(e):(a=o=n,u)}function v(){var e=wo(),r=_(e);if(a=arguments,o=this,c=e,r){if(l===n)return function(e){return d=e,l=La(y,t),f?m(e):u}(c);if(h)return bi(l),l=La(y,t),m(c)}return l===n&&(l=La(y,t)),u}return t=_s(t)||0,es(i)&&(f=!!i.leading,s=(h="maxWait"in i)?gn(_s(i.maxWait)||0,t):s,p="trailing"in i?!!i.trailing:p),v.cancel=function(){l!==n&&bi(l),d=0,a=c=o=l=n},v.flush=function(){return l===n?u:g(wo())},v}var $o=Kr((function(e,t){return cr(e,1,t)})),xo=Kr((function(e,t,n){return cr(e,_s(t)||0,n)}));function Io(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new Ce(r);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o)||a,o};return n.cache=new(Io.Cache||Gn),n}function ko(e){if("function"!=typeof e)throw new Ce(r);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Io.Cache=Gn;var zo=Ai((function(e,t){var n=(t=1==t.length&&jo(t[0])?It(t[0],Xt(ua())):It(yr(t,1),Xt(ua()))).length;return Kr((function(r){for(var i=-1,a=vn(r.length,n);++i<a;)r[i]=t[i].call(this,r[i]);return wt(e,this,r)}))})),Ro=Kr((function(e,t){var r=cn(t,sa(Ro));return Ji(e,s,n,t,r)})),Zo=Kr((function(e,t){var r=cn(t,sa(Zo));return Ji(e,u,n,t,r)})),Po=na((function(e,t){return Ji(e,c,n,n,n,t)}));function Fo(e,t){return e===t||e!=e&&t!=t}var Uo=Yi(wr),Bo=Yi((function(e,t){return e>=t})),Vo=Dr(function(){return arguments}())?Dr:function(e){return ts(e)&&ke.call(e,"callee")&&!We.call(e,"callee")},jo=ae.isArray,Ho=At?Xt(At):function(e){return ts(e)&&Tr(e)==$};function Yo(e){return null!=e&&Qo(e.length)&&!Jo(e)}function Go(e){return ts(e)&&Yo(e)}var Wo=gt||_u,qo=Et?Xt(Et):function(e){return ts(e)&&Tr(e)==v};function Ko(e){if(!ts(e))return!1;var t=Tr(e);return t==A||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!is(e)}function Jo(e){if(!es(e))return!1;var t=Tr(e);return t==E||t==b||"[object AsyncFunction]"==t||"[object Proxy]"==t}function Xo(e){return"number"==typeof e&&e==ps(e)}function Qo(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=f}function es(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function ts(e){return null!=e&&"object"==typeof e}var ns=bt?Xt(bt):function(e){return ts(e)&&pa(e)==S};function rs(e){return"number"==typeof e||ts(e)&&Tr(e)==M}function is(e){if(!ts(e)||Tr(e)!=T)return!1;var t=Ye(e);if(null===t)return!0;var n=ke.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Ie.call(n)==Pe}var as=St?Xt(St):function(e){return ts(e)&&Tr(e)==O};var os=Mt?Xt(Mt):function(e){return ts(e)&&pa(e)==N};function ss(e){return"string"==typeof e||!jo(e)&&ts(e)&&Tr(e)==C}function us(e){return"symbol"==typeof e||ts(e)&&Tr(e)==L}var ls=Tt?Xt(Tt):function(e){return ts(e)&&Qo(e.length)&&!!st[Tr(e)]};var cs=Yi(Zr),ds=Yi((function(e,t){return e<=t}));function fs(e){if(!e)return[];if(Yo(e))return ss(e)?pn(e):Ci(e);if(Je&&e[Je])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Je]());var t=pa(e);return(t==S?un:t==N?dn:Fs)(e)}function hs(e){return e?(e=_s(e))===d||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function ps(e){var t=hs(e),n=t%1;return t==t?n?t-n:t:0}function ms(e){return e?sr(ps(e),0,p):0}function _s(e){if("number"==typeof e)return e;if(us(e))return h;if(es(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=es(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Jt(e);var n=me.test(e);return n||ye.test(e)?dt(e.slice(2),n?2:8):pe.test(e)?h:+e}function ys(e){return Li(e,$s(e))}function gs(e){return null==e?"":li(e)}var vs=$i((function(e,t){if(Sa(t)||Yo(t))Li(t,Ds(t),e);else for(var n in t)ke.call(t,n)&&tr(e,n,t[n])})),As=$i((function(e,t){Li(t,$s(t),e)})),Es=$i((function(e,t,n,r){Li(t,$s(t),e,r)})),bs=$i((function(e,t,n,r){Li(t,Ds(t),e,r)})),Ss=na(or);var Ms=Kr((function(e,t){e=we(e);var r=-1,i=t.length,a=i>2?t[2]:n;for(a&&va(t[0],t[1],a)&&(i=1);++r<i;)for(var o=t[r],s=$s(o),u=-1,l=s.length;++u<l;){var c=s[u],d=e[c];(d===n||Fo(d,$e[c])&&!ke.call(e,c))&&(e[c]=o[c])}return e})),Ts=Kr((function(e){return e.push(n,Qi),wt(Is,n,e)}));function ws(e,t,r){var i=null==e?n:Sr(e,t);return i===n?r:i}function Os(e,t){return null!=e&&ma(e,t,Nr)}var Ns=Ui((function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=Ze.call(t)),e[t]=n}),eu(ru)),Cs=Ui((function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=Ze.call(t)),ke.call(e,t)?e[t].push(n):e[t]=[n]}),ua),Ls=Kr(Lr);function Ds(e){return Yo(e)?Kn(e):zr(e)}function $s(e){return Yo(e)?Kn(e,!0):Rr(e)}var xs=$i((function(e,t,n){Br(e,t,n)})),Is=$i((function(e,t,n,r){Br(e,t,n,r)})),ks=na((function(e,t){var n={};if(null==e)return n;var r=!1;t=It(t,(function(t){return t=vi(t,e),r||(r=t.length>1),t})),Li(e,ia(e),n),r&&(n=ur(n,7,ea));for(var i=t.length;i--;)di(n,t[i]);return n}));var zs=na((function(e,t){return null==e?{}:function(e,t){return Hr(e,t,(function(t,n){return Os(e,n)}))}(e,t)}));function Rs(e,t){if(null==e)return{};var n=It(ia(e),(function(e){return[e]}));return t=ua(t),Hr(e,n,(function(e,n){return t(e,n[0])}))}var Zs=Ki(Ds),Ps=Ki($s);function Fs(e){return null==e?[]:Qt(e,Ds(e))}var Us=zi((function(e,t,n){return t=t.toLowerCase(),e+(n?Bs(t):t)}));function Bs(e){return Ks(gs(e).toLowerCase())}function Vs(e){return(e=gs(e))&&e.replace(ve,rn).replace(et,"")}var js=zi((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Hs=zi((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Ys=ki("toLowerCase");var Gs=zi((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Ws=zi((function(e,t,n){return e+(n?" ":"")+Ks(t)}));var qs=zi((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Ks=ki("toUpperCase");function Js(e,t,r){return e=gs(e),(t=r?n:t)===n?function(e){return it.test(e)}(e)?function(e){return e.match(nt)||[]}(e):function(e){return e.match(le)||[]}(e):e.match(t)||[]}var Xs=Kr((function(e,t){try{return wt(e,n,t)}catch(e){return Ko(e)?e:new Se(e)}})),Qs=na((function(e,t){return Nt(t,(function(t){t=za(t),ar(e,t,Co(e[t],e))})),e}));function eu(e){return function(){return e}}var tu=Pi(),nu=Pi(!0);function ru(e){return e}function iu(e){return kr("function"==typeof e?e:ur(e,1))}var au=Kr((function(e,t){return function(n){return Lr(n,e,t)}})),ou=Kr((function(e,t){return function(n){return Lr(e,n,t)}}));function su(e,t,n){var r=Ds(t),i=br(t,r);null!=n||es(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=br(t,Ds(t)));var a=!(es(n)&&"chain"in n&&!n.chain),o=Jo(e);return Nt(i,(function(n){var r=t[n];e[n]=r,o&&(e.prototype[n]=function(){var t=this.__chain__;if(a||t){var n=e(this.__wrapped__);return(n.__actions__=Ci(this.__actions__)).push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,kt([this.value()],arguments))})})),e}function uu(){}var lu=Vi(It),cu=Vi(Lt),du=Vi(Zt);function fu(e){return Aa(e)?Yt(za(e)):function(e){return function(t){return Sr(t,e)}}(e)}var hu=Hi(),pu=Hi(!0);function mu(){return[]}function _u(){return!1}var yu=Bi((function(e,t){return e+t}),0),gu=Wi("ceil"),vu=Bi((function(e,t){return e/t}),1),Au=Wi("floor");var Eu,bu=Bi((function(e,t){return e*t}),1),Su=Wi("round"),Mu=Bi((function(e,t){return e-t}),0);return Fn.after=function(e,t){if("function"!=typeof t)throw new Ce(r);return e=ps(e),function(){if(--e<1)return t.apply(this,arguments)}},Fn.ary=Oo,Fn.assign=vs,Fn.assignIn=As,Fn.assignInWith=Es,Fn.assignWith=bs,Fn.at=Ss,Fn.before=No,Fn.bind=Co,Fn.bindAll=Qs,Fn.bindKey=Lo,Fn.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return jo(e)?e:[e]},Fn.chain=fo,Fn.chunk=function(e,t,r){t=(r?va(e,t,r):t===n)?1:gn(ps(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var a=0,o=0,s=ae(ht(i/t));a<i;)s[o++]=ri(e,a,a+=t);return s},Fn.compact=function(e){for(var t=-1,n=null==e?0:e.length,r=0,i=[];++t<n;){var a=e[t];a&&(i[r++]=a)}return i},Fn.concat=function(){var e=arguments.length;if(!e)return[];for(var t=ae(e-1),n=arguments[0],r=e;r--;)t[r-1]=arguments[r];return kt(jo(n)?Ci(n):[n],yr(t,1))},Fn.cond=function(e){var t=null==e?0:e.length,n=ua();return e=t?It(e,(function(e){if("function"!=typeof e[1])throw new Ce(r);return[n(e[0]),e[1]]})):[],Kr((function(n){for(var r=-1;++r<t;){var i=e[r];if(wt(i[0],this,n))return wt(i[1],this,n)}}))},Fn.conforms=function(e){return function(e){var t=Ds(e);return function(n){return lr(n,e,t)}}(ur(e,1))},Fn.constant=eu,Fn.countBy=mo,Fn.create=function(e,t){var n=Un(e);return null==t?n:ir(n,t)},Fn.curry=function e(t,r,i){var a=Ji(t,8,n,n,n,n,n,r=i?n:r);return a.placeholder=e.placeholder,a},Fn.curryRight=function e(t,r,i){var a=Ji(t,o,n,n,n,n,n,r=i?n:r);return a.placeholder=e.placeholder,a},Fn.debounce=Do,Fn.defaults=Ms,Fn.defaultsDeep=Ts,Fn.defer=$o,Fn.delay=xo,Fn.difference=Pa,Fn.differenceBy=Fa,Fn.differenceWith=Ua,Fn.drop=function(e,t,r){var i=null==e?0:e.length;return i?ri(e,(t=r||t===n?1:ps(t))<0?0:t,i):[]},Fn.dropRight=function(e,t,r){var i=null==e?0:e.length;return i?ri(e,0,(t=i-(t=r||t===n?1:ps(t)))<0?0:t):[]},Fn.dropRightWhile=function(e,t){return e&&e.length?hi(e,ua(t,3),!0,!0):[]},Fn.dropWhile=function(e,t){return e&&e.length?hi(e,ua(t,3),!0):[]},Fn.fill=function(e,t,r,i){var a=null==e?0:e.length;return a?(r&&"number"!=typeof r&&va(e,t,r)&&(r=0,i=a),function(e,t,r,i){var a=e.length;for((r=ps(r))<0&&(r=-r>a?0:a+r),(i=i===n||i>a?a:ps(i))<0&&(i+=a),i=r>i?0:ms(i);r<i;)e[r++]=t;return e}(e,t,r,i)):[]},Fn.filter=function(e,t){return(jo(e)?Dt:_r)(e,ua(t,3))},Fn.flatMap=function(e,t){return yr(So(e,t),1)},Fn.flatMapDeep=function(e,t){return yr(So(e,t),d)},Fn.flatMapDepth=function(e,t,r){return r=r===n?1:ps(r),yr(So(e,t),r)},Fn.flatten=ja,Fn.flattenDeep=function(e){return(null==e?0:e.length)?yr(e,d):[]},Fn.flattenDepth=function(e,t){return(null==e?0:e.length)?yr(e,t=t===n?1:ps(t)):[]},Fn.flip=function(e){return Ji(e,512)},Fn.flow=tu,Fn.flowRight=nu,Fn.fromPairs=function(e){for(var t=-1,n=null==e?0:e.length,r={};++t<n;){var i=e[t];r[i[0]]=i[1]}return r},Fn.functions=function(e){return null==e?[]:br(e,Ds(e))},Fn.functionsIn=function(e){return null==e?[]:br(e,$s(e))},Fn.groupBy=Ao,Fn.initial=function(e){return(null==e?0:e.length)?ri(e,0,-1):[]},Fn.intersection=Ya,Fn.intersectionBy=Ga,Fn.intersectionWith=Wa,Fn.invert=Ns,Fn.invertBy=Cs,Fn.invokeMap=Eo,Fn.iteratee=iu,Fn.keyBy=bo,Fn.keys=Ds,Fn.keysIn=$s,Fn.map=So,Fn.mapKeys=function(e,t){var n={};return t=ua(t,3),Ar(e,(function(e,r,i){ar(n,t(e,r,i),e)})),n},Fn.mapValues=function(e,t){var n={};return t=ua(t,3),Ar(e,(function(e,r,i){ar(n,r,t(e,r,i))})),n},Fn.matches=function(e){return Fr(ur(e,1))},Fn.matchesProperty=function(e,t){return Ur(e,ur(t,1))},Fn.memoize=Io,Fn.merge=xs,Fn.mergeWith=Is,Fn.method=au,Fn.methodOf=ou,Fn.mixin=su,Fn.negate=ko,Fn.nthArg=function(e){return e=ps(e),Kr((function(t){return Vr(t,e)}))},Fn.omit=ks,Fn.omitBy=function(e,t){return Rs(e,ko(ua(t)))},Fn.once=function(e){return No(2,e)},Fn.orderBy=function(e,t,r,i){return null==e?[]:(jo(t)||(t=null==t?[]:[t]),jo(r=i?n:r)||(r=null==r?[]:[r]),jr(e,t,r))},Fn.over=lu,Fn.overArgs=zo,Fn.overEvery=cu,Fn.overSome=du,Fn.partial=Ro,Fn.partialRight=Zo,Fn.partition=Mo,Fn.pick=zs,Fn.pickBy=Rs,Fn.property=fu,Fn.propertyOf=function(e){return function(t){return null==e?n:Sr(e,t)}},Fn.pull=Ka,Fn.pullAll=Ja,Fn.pullAllBy=function(e,t,n){return e&&e.length&&t&&t.length?Yr(e,t,ua(n,2)):e},Fn.pullAllWith=function(e,t,r){return e&&e.length&&t&&t.length?Yr(e,t,n,r):e},Fn.pullAt=Xa,Fn.range=hu,Fn.rangeRight=pu,Fn.rearg=Po,Fn.reject=function(e,t){return(jo(e)?Dt:_r)(e,ko(ua(t,3)))},Fn.remove=function(e,t){var n=[];if(!e||!e.length)return n;var r=-1,i=[],a=e.length;for(t=ua(t,3);++r<a;){var o=e[r];t(o,r,e)&&(n.push(o),i.push(r))}return Gr(e,i),n},Fn.rest=function(e,t){if("function"!=typeof e)throw new Ce(r);return Kr(e,t=t===n?t:ps(t))},Fn.reverse=Qa,Fn.sampleSize=function(e,t,r){return t=(r?va(e,t,r):t===n)?1:ps(t),(jo(e)?Xn:Xr)(e,t)},Fn.set=function(e,t,n){return null==e?e:Qr(e,t,n)},Fn.setWith=function(e,t,r,i){return i="function"==typeof i?i:n,null==e?e:Qr(e,t,r,i)},Fn.shuffle=function(e){return(jo(e)?Qn:ni)(e)},Fn.slice=function(e,t,r){var i=null==e?0:e.length;return i?(r&&"number"!=typeof r&&va(e,t,r)?(t=0,r=i):(t=null==t?0:ps(t),r=r===n?i:ps(r)),ri(e,t,r)):[]},Fn.sortBy=To,Fn.sortedUniq=function(e){return e&&e.length?si(e):[]},Fn.sortedUniqBy=function(e,t){return e&&e.length?si(e,ua(t,2)):[]},Fn.split=function(e,t,r){return r&&"number"!=typeof r&&va(e,t,r)&&(t=r=n),(r=r===n?p:r>>>0)?(e=gs(e))&&("string"==typeof t||null!=t&&!as(t))&&!(t=li(t))&&sn(e)?Ei(pn(e),0,r):e.split(t,r):[]},Fn.spread=function(e,t){if("function"!=typeof e)throw new Ce(r);return t=null==t?0:gn(ps(t),0),Kr((function(n){var r=n[t],i=Ei(n,0,t);return r&&kt(i,r),wt(e,this,i)}))},Fn.tail=function(e){var t=null==e?0:e.length;return t?ri(e,1,t):[]},Fn.take=function(e,t,r){return e&&e.length?ri(e,0,(t=r||t===n?1:ps(t))<0?0:t):[]},Fn.takeRight=function(e,t,r){var i=null==e?0:e.length;return i?ri(e,(t=i-(t=r||t===n?1:ps(t)))<0?0:t,i):[]},Fn.takeRightWhile=function(e,t){return e&&e.length?hi(e,ua(t,3),!1,!0):[]},Fn.takeWhile=function(e,t){return e&&e.length?hi(e,ua(t,3)):[]},Fn.tap=function(e,t){return t(e),e},Fn.throttle=function(e,t,n){var i=!0,a=!0;if("function"!=typeof e)throw new Ce(r);return es(n)&&(i="leading"in n?!!n.leading:i,a="trailing"in n?!!n.trailing:a),Do(e,t,{leading:i,maxWait:t,trailing:a})},Fn.thru=ho,Fn.toArray=fs,Fn.toPairs=Zs,Fn.toPairsIn=Ps,Fn.toPath=function(e){return jo(e)?It(e,za):us(e)?[e]:Ci(ka(gs(e)))},Fn.toPlainObject=ys,Fn.transform=function(e,t,n){var r=jo(e),i=r||Wo(e)||ls(e);if(t=ua(t,4),null==n){var a=e&&e.constructor;n=i?r?new a:[]:es(e)&&Jo(a)?Un(Ye(e)):{}}return(i?Nt:Ar)(e,(function(e,r,i){return t(n,e,r,i)})),n},Fn.unary=function(e){return Oo(e,1)},Fn.union=eo,Fn.unionBy=to,Fn.unionWith=no,Fn.uniq=function(e){return e&&e.length?ci(e):[]},Fn.uniqBy=function(e,t){return e&&e.length?ci(e,ua(t,2)):[]},Fn.uniqWith=function(e,t){return t="function"==typeof t?t:n,e&&e.length?ci(e,n,t):[]},Fn.unset=function(e,t){return null==e||di(e,t)},Fn.unzip=ro,Fn.unzipWith=io,Fn.update=function(e,t,n){return null==e?e:fi(e,t,gi(n))},Fn.updateWith=function(e,t,r,i){return i="function"==typeof i?i:n,null==e?e:fi(e,t,gi(r),i)},Fn.values=Fs,Fn.valuesIn=function(e){return null==e?[]:Qt(e,$s(e))},Fn.without=ao,Fn.words=Js,Fn.wrap=function(e,t){return Ro(gi(t),e)},Fn.xor=oo,Fn.xorBy=so,Fn.xorWith=uo,Fn.zip=lo,Fn.zipObject=function(e,t){return _i(e||[],t||[],tr)},Fn.zipObjectDeep=function(e,t){return _i(e||[],t||[],Qr)},Fn.zipWith=co,Fn.entries=Zs,Fn.entriesIn=Ps,Fn.extend=As,Fn.extendWith=Es,su(Fn,Fn),Fn.add=yu,Fn.attempt=Xs,Fn.camelCase=Us,Fn.capitalize=Bs,Fn.ceil=gu,Fn.clamp=function(e,t,r){return r===n&&(r=t,t=n),r!==n&&(r=(r=_s(r))==r?r:0),t!==n&&(t=(t=_s(t))==t?t:0),sr(_s(e),t,r)},Fn.clone=function(e){return ur(e,4)},Fn.cloneDeep=function(e){return ur(e,5)},Fn.cloneDeepWith=function(e,t){return ur(e,5,t="function"==typeof t?t:n)},Fn.cloneWith=function(e,t){return ur(e,4,t="function"==typeof t?t:n)},Fn.conformsTo=function(e,t){return null==t||lr(e,t,Ds(t))},Fn.deburr=Vs,Fn.defaultTo=function(e,t){return null==e||e!=e?t:e},Fn.divide=vu,Fn.endsWith=function(e,t,r){e=gs(e),t=li(t);var i=e.length,a=r=r===n?i:sr(ps(r),0,i);return(r-=t.length)>=0&&e.slice(r,a)==t},Fn.eq=Fo,Fn.escape=function(e){return(e=gs(e))&&q.test(e)?e.replace(G,an):e},Fn.escapeRegExp=function(e){return(e=gs(e))&&re.test(e)?e.replace(ne,"\\$&"):e},Fn.every=function(e,t,r){var i=jo(e)?Lt:pr;return r&&va(e,t,r)&&(t=n),i(e,ua(t,3))},Fn.find=_o,Fn.findIndex=Ba,Fn.findKey=function(e,t){return Ft(e,ua(t,3),Ar)},Fn.findLast=yo,Fn.findLastIndex=Va,Fn.findLastKey=function(e,t){return Ft(e,ua(t,3),Er)},Fn.floor=Au,Fn.forEach=go,Fn.forEachRight=vo,Fn.forIn=function(e,t){return null==e?e:gr(e,ua(t,3),$s)},Fn.forInRight=function(e,t){return null==e?e:vr(e,ua(t,3),$s)},Fn.forOwn=function(e,t){return e&&Ar(e,ua(t,3))},Fn.forOwnRight=function(e,t){return e&&Er(e,ua(t,3))},Fn.get=ws,Fn.gt=Uo,Fn.gte=Bo,Fn.has=function(e,t){return null!=e&&ma(e,t,Or)},Fn.hasIn=Os,Fn.head=Ha,Fn.identity=ru,Fn.includes=function(e,t,n,r){e=Yo(e)?e:Fs(e),n=n&&!r?ps(n):0;var i=e.length;return n<0&&(n=gn(i+n,0)),ss(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&Bt(e,t,n)>-1},Fn.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:ps(n);return i<0&&(i=gn(r+i,0)),Bt(e,t,i)},Fn.inRange=function(e,t,r){return t=hs(t),r===n?(r=t,t=0):r=hs(r),function(e,t,n){return e>=vn(t,n)&&e<gn(t,n)}(e=_s(e),t,r)},Fn.invoke=Ls,Fn.isArguments=Vo,Fn.isArray=jo,Fn.isArrayBuffer=Ho,Fn.isArrayLike=Yo,Fn.isArrayLikeObject=Go,Fn.isBoolean=function(e){return!0===e||!1===e||ts(e)&&Tr(e)==g},Fn.isBuffer=Wo,Fn.isDate=qo,Fn.isElement=function(e){return ts(e)&&1===e.nodeType&&!is(e)},Fn.isEmpty=function(e){if(null==e)return!0;if(Yo(e)&&(jo(e)||"string"==typeof e||"function"==typeof e.splice||Wo(e)||ls(e)||Vo(e)))return!e.length;var t=pa(e);if(t==S||t==N)return!e.size;if(Sa(e))return!zr(e).length;for(var n in e)if(ke.call(e,n))return!1;return!0},Fn.isEqual=function(e,t){return $r(e,t)},Fn.isEqualWith=function(e,t,r){var i=(r="function"==typeof r?r:n)?r(e,t):n;return i===n?$r(e,t,n,r):!!i},Fn.isError=Ko,Fn.isFinite=function(e){return"number"==typeof e&&vt(e)},Fn.isFunction=Jo,Fn.isInteger=Xo,Fn.isLength=Qo,Fn.isMap=ns,Fn.isMatch=function(e,t){return e===t||xr(e,t,ca(t))},Fn.isMatchWith=function(e,t,r){return r="function"==typeof r?r:n,xr(e,t,ca(t),r)},Fn.isNaN=function(e){return rs(e)&&e!=+e},Fn.isNative=function(e){if(ba(e))throw new Se("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");return Ir(e)},Fn.isNil=function(e){return null==e},Fn.isNull=function(e){return null===e},Fn.isNumber=rs,Fn.isObject=es,Fn.isObjectLike=ts,Fn.isPlainObject=is,Fn.isRegExp=as,Fn.isSafeInteger=function(e){return Xo(e)&&e>=-9007199254740991&&e<=f},Fn.isSet=os,Fn.isString=ss,Fn.isSymbol=us,Fn.isTypedArray=ls,Fn.isUndefined=function(e){return e===n},Fn.isWeakMap=function(e){return ts(e)&&pa(e)==D},Fn.isWeakSet=function(e){return ts(e)&&"[object WeakSet]"==Tr(e)},Fn.join=function(e,t){return null==e?"":Pt.call(e,t)},Fn.kebabCase=js,Fn.last=qa,Fn.lastIndexOf=function(e,t,r){var i=null==e?0:e.length;if(!i)return-1;var a=i;return r!==n&&(a=(a=ps(r))<0?gn(i+a,0):vn(a,i-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,a):Ut(e,jt,a,!0)},Fn.lowerCase=Hs,Fn.lowerFirst=Ys,Fn.lt=cs,Fn.lte=ds,Fn.max=function(e){return e&&e.length?mr(e,ru,wr):n},Fn.maxBy=function(e,t){return e&&e.length?mr(e,ua(t,2),wr):n},Fn.mean=function(e){return Ht(e,ru)},Fn.meanBy=function(e,t){return Ht(e,ua(t,2))},Fn.min=function(e){return e&&e.length?mr(e,ru,Zr):n},Fn.minBy=function(e,t){return e&&e.length?mr(e,ua(t,2),Zr):n},Fn.stubArray=mu,Fn.stubFalse=_u,Fn.stubObject=function(){return{}},Fn.stubString=function(){return""},Fn.stubTrue=function(){return!0},Fn.multiply=bu,Fn.nth=function(e,t){return e&&e.length?Vr(e,ps(t)):n},Fn.noConflict=function(){return pt._===this&&(pt._=Fe),this},Fn.noop=uu,Fn.now=wo,Fn.pad=function(e,t,n){e=gs(e);var r=(t=ps(t))?hn(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return ji(mt(i),n)+e+ji(ht(i),n)},Fn.padEnd=function(e,t,n){e=gs(e);var r=(t=ps(t))?hn(e):0;return t&&r<t?e+ji(t-r,n):e},Fn.padStart=function(e,t,n){e=gs(e);var r=(t=ps(t))?hn(e):0;return t&&r<t?ji(t-r,n)+e:e},Fn.parseInt=function(e,t,n){return n||null==t?t=0:t&&(t=+t),En(gs(e).replace(ie,""),t||0)},Fn.random=function(e,t,r){if(r&&"boolean"!=typeof r&&va(e,t,r)&&(t=r=n),r===n&&("boolean"==typeof t?(r=t,t=n):"boolean"==typeof e&&(r=e,e=n)),e===n&&t===n?(e=0,t=1):(e=hs(e),t===n?(t=e,e=0):t=hs(t)),e>t){var i=e;e=t,t=i}if(r||e%1||t%1){var a=bn();return vn(e+a*(t-e+ct("1e-"+((a+"").length-1))),t)}return Wr(e,t)},Fn.reduce=function(e,t,n){var r=jo(e)?zt:Wt,i=arguments.length<3;return r(e,ua(t,4),n,i,fr)},Fn.reduceRight=function(e,t,n){var r=jo(e)?Rt:Wt,i=arguments.length<3;return r(e,ua(t,4),n,i,hr)},Fn.repeat=function(e,t,r){return t=(r?va(e,t,r):t===n)?1:ps(t),qr(gs(e),t)},Fn.replace=function(){var e=arguments,t=gs(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Fn.result=function(e,t,r){var i=-1,a=(t=vi(t,e)).length;for(a||(a=1,e=n);++i<a;){var o=null==e?n:e[za(t[i])];o===n&&(i=a,o=r),e=Jo(o)?o.call(e):o}return e},Fn.round=Su,Fn.runInContext=e,Fn.sample=function(e){return(jo(e)?Jn:Jr)(e)},Fn.size=function(e){if(null==e)return 0;if(Yo(e))return ss(e)?hn(e):e.length;var t=pa(e);return t==S||t==N?e.size:zr(e).length},Fn.snakeCase=Gs,Fn.some=function(e,t,r){var i=jo(e)?Zt:ii;return r&&va(e,t,r)&&(t=n),i(e,ua(t,3))},Fn.sortedIndex=function(e,t){return ai(e,t)},Fn.sortedIndexBy=function(e,t,n){return oi(e,t,ua(n,2))},Fn.sortedIndexOf=function(e,t){var n=null==e?0:e.length;if(n){var r=ai(e,t);if(r<n&&Fo(e[r],t))return r}return-1},Fn.sortedLastIndex=function(e,t){return ai(e,t,!0)},Fn.sortedLastIndexBy=function(e,t,n){return oi(e,t,ua(n,2),!0)},Fn.sortedLastIndexOf=function(e,t){if(null==e?0:e.length){var n=ai(e,t,!0)-1;if(Fo(e[n],t))return n}return-1},Fn.startCase=Ws,Fn.startsWith=function(e,t,n){return e=gs(e),n=null==n?0:sr(ps(n),0,e.length),t=li(t),e.slice(n,n+t.length)==t},Fn.subtract=Mu,Fn.sum=function(e){return e&&e.length?qt(e,ru):0},Fn.sumBy=function(e,t){return e&&e.length?qt(e,ua(t,2)):0},Fn.template=function(e,t,r){var i=Fn.templateSettings;r&&va(e,t,r)&&(t=n),e=gs(e),t=Es({},t,i,Xi);var a,o,s=Es({},t.imports,i.imports,Xi),u=Ds(s),l=Qt(s,u),c=0,d=t.interpolate||Ae,f="__p += '",h=Oe((t.escape||Ae).source+"|"+d.source+"|"+(d===X?fe:Ae).source+"|"+(t.evaluate||Ae).source+"|$","g"),p="//# sourceURL="+(ke.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++ot+"]")+"\n";e.replace(h,(function(t,n,r,i,s,u){return r||(r=i),f+=e.slice(c,u).replace(Ee,on),n&&(a=!0,f+="' +\n__e("+n+") +\n'"),s&&(o=!0,f+="';\n"+s+";\n__p += '"),r&&(f+="' +\n((__t = ("+r+")) == null ? '' : __t) +\n'"),c=u+t.length,t})),f+="';\n";var m=ke.call(t,"variable")&&t.variable;if(m){if(ce.test(m))throw new Se("Invalid `variable` option passed into `_.template`")}else f="with (obj) {\n"+f+"\n}\n";f=(o?f.replace(V,""):f).replace(j,"$1").replace(H,"$1;"),f="function("+(m||"obj")+") {\n"+(m?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(a?", __e = _.escape":"")+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+f+"return __p\n}";var _=Xs((function(){return Me(u,p+"return "+f).apply(n,l)}));if(_.source=f,Ko(_))throw _;return _},Fn.times=function(e,t){if((e=ps(e))<1||e>f)return[];var n=p,r=vn(e,p);t=ua(t),e-=p;for(var i=Kt(r,t);++n<e;)t(n);return i},Fn.toFinite=hs,Fn.toInteger=ps,Fn.toLength=ms,Fn.toLower=function(e){return gs(e).toLowerCase()},Fn.toNumber=_s,Fn.toSafeInteger=function(e){return e?sr(ps(e),-9007199254740991,f):0===e?e:0},Fn.toString=gs,Fn.toUpper=function(e){return gs(e).toUpperCase()},Fn.trim=function(e,t,r){if((e=gs(e))&&(r||t===n))return Jt(e);if(!e||!(t=li(t)))return e;var i=pn(e),a=pn(t);return Ei(i,tn(i,a),nn(i,a)+1).join("")},Fn.trimEnd=function(e,t,r){if((e=gs(e))&&(r||t===n))return e.slice(0,mn(e)+1);if(!e||!(t=li(t)))return e;var i=pn(e);return Ei(i,0,nn(i,pn(t))+1).join("")},Fn.trimStart=function(e,t,r){if((e=gs(e))&&(r||t===n))return e.replace(ie,"");if(!e||!(t=li(t)))return e;var i=pn(e);return Ei(i,tn(i,pn(t))).join("")},Fn.truncate=function(e,t){var r=30,i="...";if(es(t)){var a="separator"in t?t.separator:a;r="length"in t?ps(t.length):r,i="omission"in t?li(t.omission):i}var o=(e=gs(e)).length;if(sn(e)){var s=pn(e);o=s.length}if(r>=o)return e;var u=r-hn(i);if(u<1)return i;var l=s?Ei(s,0,u).join(""):e.slice(0,u);if(a===n)return l+i;if(s&&(u+=l.length-u),as(a)){if(e.slice(u).search(a)){var c,d=l;for(a.global||(a=Oe(a.source,gs(he.exec(a))+"g")),a.lastIndex=0;c=a.exec(d);)var f=c.index;l=l.slice(0,f===n?u:f)}}else if(e.indexOf(li(a),u)!=u){var h=l.lastIndexOf(a);h>-1&&(l=l.slice(0,h))}return l+i},Fn.unescape=function(e){return(e=gs(e))&&W.test(e)?e.replace(Y,_n):e},Fn.uniqueId=function(e){var t=++ze;return gs(e)+t},Fn.upperCase=qs,Fn.upperFirst=Ks,Fn.each=go,Fn.eachRight=vo,Fn.first=Ha,su(Fn,(Eu={},Ar(Fn,(function(e,t){ke.call(Fn.prototype,t)||(Eu[t]=e)})),Eu),{chain:!1}),Fn.VERSION="4.17.21",Nt(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Fn[e].placeholder=Fn})),Nt(["drop","take"],(function(e,t){jn.prototype[e]=function(r){r=r===n?1:gn(ps(r),0);var i=this.__filtered__&&!t?new jn(this):this.clone();return i.__filtered__?i.__takeCount__=vn(r,i.__takeCount__):i.__views__.push({size:vn(r,p),type:e+(i.__dir__<0?"Right":"")}),i},jn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),Nt(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;jn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:ua(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),Nt(["head","last"],(function(e,t){var n="take"+(t?"Right":"");jn.prototype[e]=function(){return this[n](1).value()[0]}})),Nt(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");jn.prototype[e]=function(){return this.__filtered__?new jn(this):this[n](1)}})),jn.prototype.compact=function(){return this.filter(ru)},jn.prototype.find=function(e){return this.filter(e).head()},jn.prototype.findLast=function(e){return this.reverse().find(e)},jn.prototype.invokeMap=Kr((function(e,t){return"function"==typeof e?new jn(this):this.map((function(n){return Lr(n,e,t)}))})),jn.prototype.reject=function(e){return this.filter(ko(ua(e)))},jn.prototype.slice=function(e,t){e=ps(e);var r=this;return r.__filtered__&&(e>0||t<0)?new jn(r):(e<0?r=r.takeRight(-e):e&&(r=r.drop(e)),t!==n&&(r=(t=ps(t))<0?r.dropRight(-t):r.take(t-e)),r)},jn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},jn.prototype.toArray=function(){return this.take(p)},Ar(jn.prototype,(function(e,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),i=/^(?:head|last)$/.test(t),a=Fn[i?"take"+("last"==t?"Right":""):t],o=i||/^find/.test(t);a&&(Fn.prototype[t]=function(){var t=this.__wrapped__,s=i?[1]:arguments,u=t instanceof jn,l=s[0],c=u||jo(t),d=function(e){var t=a.apply(Fn,kt([e],s));return i&&f?t[0]:t};c&&r&&"function"==typeof l&&1!=l.length&&(u=c=!1);var f=this.__chain__,h=!!this.__actions__.length,p=o&&!f,m=u&&!h;if(!o&&c){t=m?t:new jn(this);var _=e.apply(t,s);return _.__actions__.push({func:ho,args:[d],thisArg:n}),new Vn(_,f)}return p&&m?e.apply(this,s):(_=this.thru(d),p?i?_.value()[0]:_.value():_)})})),Nt(["pop","push","shift","sort","splice","unshift"],(function(e){var t=Le[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);Fn.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(jo(i)?i:[],e)}return this[n]((function(n){return t.apply(jo(n)?n:[],e)}))}})),Ar(jn.prototype,(function(e,t){var n=Fn[t];if(n){var r=n.name+"";ke.call(Dn,r)||(Dn[r]=[]),Dn[r].push({name:t,func:n})}})),Dn[Fi(n,2).name]=[{name:"wrapper",func:n}],jn.prototype.clone=function(){var e=new jn(this.__wrapped__);return e.__actions__=Ci(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Ci(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Ci(this.__views__),e},jn.prototype.reverse=function(){if(this.__filtered__){var e=new jn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},jn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=jo(e),r=t<0,i=n?e.length:0,a=function(e,t,n){var r=-1,i=n.length;for(;++r<i;){var a=n[r],o=a.size;switch(a.type){case"drop":e+=o;break;case"dropRight":t-=o;break;case"take":t=vn(t,e+o);break;case"takeRight":e=gn(e,t-o)}}return{start:e,end:t}}(0,i,this.__views__),o=a.start,s=a.end,u=s-o,l=r?s:o-1,c=this.__iteratees__,d=c.length,f=0,h=vn(u,this.__takeCount__);if(!n||!r&&i==u&&h==u)return pi(e,this.__actions__);var p=[];e:for(;u--&&f<h;){for(var m=-1,_=e[l+=t];++m<d;){var y=c[m],g=y.iteratee,v=y.type,A=g(_);if(2==v)_=A;else if(!A){if(1==v)continue e;break e}}p[f++]=_}return p},Fn.prototype.at=po,Fn.prototype.chain=function(){return fo(this)},Fn.prototype.commit=function(){return new Vn(this.value(),this.__chain__)},Fn.prototype.next=function(){this.__values__===n&&(this.__values__=fs(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?n:this.__values__[this.__index__++]}},Fn.prototype.plant=function(e){for(var t,r=this;r instanceof Bn;){var i=Za(r);i.__index__=0,i.__values__=n,t?a.__wrapped__=i:t=i;var a=i;r=r.__wrapped__}return a.__wrapped__=e,t},Fn.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof jn){var t=e;return this.__actions__.length&&(t=new jn(this)),(t=t.reverse()).__actions__.push({func:ho,args:[Qa],thisArg:n}),new Vn(t,this.__chain__)}return this.thru(Qa)},Fn.prototype.toJSON=Fn.prototype.valueOf=Fn.prototype.value=function(){return pi(this.__wrapped__,this.__actions__)},Fn.prototype.first=Fn.prototype.head,Je&&(Fn.prototype[Je]=function(){return this}),Fn}();_t?((_t.exports=yn)._=yn,mt._=yn):pt._=yn}).call(We)}(tA,tA.exports);var nA=tA.exports;var rA=Object.freeze({__proto__:null,Filter:t=>{const{resetField:n,getValues:r}=B(),{id:i,schema:{children:a,label:o,toggleFilterButtonLabel:u,clearButtonDisabled:l}}=t;return e.jsx(s.Filter,{"data-testid":Fa.generateId(i,"filter"),toggleFilterButtonLabel:u,headerTitle:o,clearButtonDisabled:l,onClear:()=>{const e=(()=>{const e=[],t=r();for(const n in t)nA.isEmpty(Pa.getNestedValueByKey(a,n))||e.push(n);return e})();(e=>{e.forEach((e=>n(e)))})(e)},children:e.jsx(hS,{children:a})})},FilterItem:t=>{const{id:n,schema:{children:r,label:i,collapsible:a=!0,showDivider:o=!0,showMobileDivider:u=!0}}=t;return e.jsx(s.Filter.Item,{"data-testid":Fa.generateId(n,"filter-item"),title:i,collapsible:a,showDivider:o,showMobileDivider:u,children:e.jsx(hS,{children:r})})},FilterCheckbox:n=>{const{schema:{label:r,options:i,...a},id:o,value:u,onChange:l}=n,{setValue:c}=B(),[d,f]=t.useState();er((()=>{const e=u?.filter((e=>i.find((t=>t.value===e)))),t=i.filter((e=>u?.find((t=>e.value===t))));f(t),c(o,e)}),[i,u]);return e.jsx(s.Filter.Checkbox,{id:o,...a,"data-testid":Fa.generateId(o,"filter-checkbox"),title:r,selectedOptions:d,options:i,onSelect:e=>{l({target:{value:e.map((e=>e.value))}})}})}});var iA=function(e,t,n,r){for(var i=e.length,a=n+(r?1:-1);r?a--:++a<i;)if(t(e[a],a,e))return a;return-1};var aA=function(e,t,n){for(var r=n-1,i=e.length;++r<i;)if(e[r]===t)return r;return-1},oA=iA,sA=function(e){return e!=e},uA=aA;var lA=function(e,t,n){return t==t?uA(e,t,n):oA(e,sA,n)},cA=lA;var dA=function(e,t){return!!(null==e?0:e.length)&&cA(e,t,0)>-1};var fA=function(e,t,n){for(var r=-1,i=null==e?0:e.length;++r<i;)if(n(t,e[r]))return!0;return!1},hA=Vu,pA=dA,mA=fA,_A=Ss,yA=$n,gA=Hu;var vA=function(e,t,n,r){var i=-1,a=pA,o=!0,s=e.length,u=[],l=t.length;if(!s)return u;n&&(t=_A(t,yA(n))),r?(a=mA,o=!1):t.length>=200&&(a=gA,o=!1,t=new hA(t));e:for(;++i<s;){var c=e[i],d=null==n?c:n(c);if(c=r||0!==c?c:0,o&&d==d){for(var f=l;f--;)if(t[f]===d)continue e;u.push(c)}else a(t,d,r)||u.push(c)}return u};var AA=function(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)},EA=Math.max;var bA=function(e,t,n){return t=EA(void 0===t?e.length-1:t,0),function(){for(var r=arguments,i=-1,a=EA(r.length-t,0),o=Array(a);++i<a;)o[i]=r[t+i];i=-1;for(var s=Array(t+1);++i<t;)s[i]=r[i];return s[t]=n(o),AA(e,this,s)}};var SA=function(e){return function(){return e}},MA=au,TA=MA?function(e,t){return MA(e,"toString",{configurable:!0,enumerable:!1,value:SA(t),writable:!0})}:mc,wA=TA,OA=Date.now;var NA=function(e){var t=0,n=0;return function(){var r=OA(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}(wA),CA=mc,LA=bA,DA=NA;var $A=Mn,xA=dn;var IA=vA,kA=function(e){return xA(e)&&$A(e)},zA=function(e,t){return DA(LA(e,t,CA),e+"")}((function(e,t){return kA(e)?IA(e,t):[]})),RA=zA;const ZA=g.default.label`
|
|
235
|
-
cursor: ${e=>e.disabled?"not-allowed":"pointer"};
|
|
236
|
-
`,PA=g.default(c.Checkbox)`
|
|
237
|
-
margin-right: 5px;
|
|
238
|
-
`,FA=g.default.div`
|
|
239
|
-
display: flex;
|
|
240
|
-
align-items: center;
|
|
241
|
-
:not(:last-of-type) {
|
|
242
|
-
margin-bottom: 1rem;
|
|
243
|
-
}
|
|
244
|
-
`,UA=g.default.div`
|
|
245
|
-
display: flex;
|
|
246
|
-
flex-wrap: wrap;
|
|
247
|
-
gap: 1rem;
|
|
248
|
-
`,BA=g.default.div`
|
|
249
|
-
display: flex;
|
|
250
|
-
flex-direction: ${({chipPosition:e})=>"bottom"!==e?"column":"column-reverse"};
|
|
251
|
-
`,VA=g.default.div`
|
|
252
|
-
margin: 0.5rem 0rem;
|
|
253
|
-
display: flex;
|
|
254
|
-
gap: 0.5rem;
|
|
255
|
-
`,jA=g.default(l.Form.Textarea)`
|
|
256
|
-
width: auto;
|
|
257
|
-
|
|
258
|
-
${e=>e.resizable?a.css`
|
|
259
|
-
resize: vertical;
|
|
260
|
-
max-height: 37.5rem;
|
|
261
|
-
min-height: ${e.rows?`${e.rows+44+24}px`:"5rem"};
|
|
262
|
-
`:a.css`
|
|
263
|
-
resize: none;
|
|
264
|
-
`}
|
|
265
|
-
`,HA=n=>{const{schema:{chipTexts:r,chipPosition:i,rows:a=1,resizable:o,label:s,validation:u,...c},id:d,name:f,onChange:h,value:p,error:m,..._}=n,[y,g]=t.useState(p||""),[v,A]=t.useState(),{setFieldValidationConfig:E}=Nh();t.useEffect((()=>{const e=u?.find((e=>"max"in e)),t=u?.find((e=>"length"in e));e?.max>0?A(e.max):t?.length>0&&A(t.length),E(d,fd(),u)}),[u]),t.useEffect((()=>{g(p)}),[p]);const b=e=>()=>{const t=y?.length||0;if(v&&t>=v)return;const n=((y||"")+(t?` ${e}`:e)).substring(0,v);h({target:{value:n}})};return e.jsx(l.Form.CustomField,{label:s,id:d,children:e.jsxs(BA,{chipPosition:i,children:[r?.length&&e.jsx(VA,{children:r.map(((t,n)=>e.jsx($h,{id:Fa.generateId(d,`chip-${tA.exports.kebabCase(t)}`,n),onClick:b(t),children:t},t)))}),e.jsx(jA,{...c,..._,id:d,"data-testid":Fa.generateId(d,"textarea"),name:f,maxLength:v,rows:a,resizable:o,onChange:e=>{h(e)},value:y,errorMessage:m?.message})]})})},YA=g.default.div`
|
|
266
|
-
display: flex;
|
|
267
|
-
gap: 0.5rem;
|
|
268
|
-
margin-bottom: 0.5rem;
|
|
269
|
-
`,GA=[["Afghanistan",["asia"],"af","93"],["Albania",["europe"],"al","355"],["Algeria",["africa","north-africa"],"dz","213"],["Andorra",["europe"],"ad","376"],["Angola",["africa"],"ao","244"],["Antigua and Barbuda",["america","carribean"],"ag","1268"],["Argentina",["america","south-america"],"ar","54","(..) ........"],["Armenia",["asia","ex-ussr"],"am","374",".. ......"],["Aruba",["america","carribean"],"aw","297"],["Australia",["oceania"],"au","61","(..) .... ...."],["Austria",["europe","eu-union"],"at","43"],["Azerbaijan",["asia","ex-ussr"],"az","994","(..) ... .. .."],["Bahamas",["america","carribean"],"bs","1242"],["Bahrain",["middle-east"],"bh","973"],["Bangladesh",["asia"],"bd","880"],["Barbados",["america","carribean"],"bb","1246"],["Belarus",["europe","ex-ussr"],"by","375","(..) ... .. .."],["Belgium",["europe","eu-union"],"be","32","... .. .. .."],["Belize",["america","central-america"],"bz","501"],["Benin",["africa"],"bj","229"],["Bhutan",["asia"],"bt","975"],["Bolivia",["america","south-america"],"bo","591"],["Bosnia and Herzegovina",["europe","ex-yugos"],"ba","387"],["Botswana",["africa"],"bw","267"],["Brazil",["america","south-america"],"br","55","(..) ........."],["British Indian Ocean Territory",["asia"],"io","246"],["Brunei",["asia"],"bn","673"],["Bulgaria",["europe","eu-union"],"bg","359"],["Burkina Faso",["africa"],"bf","226"],["Burundi",["africa"],"bi","257"],["Cambodia",["asia"],"kh","855"],["Cameroon",["africa"],"cm","237"],["Canada",["america","north-america"],"ca","1","(...) ... ...."],["Cape Verde",["africa"],"cv","238"],["Caribbean Netherlands",["america","carribean"],"bq","599",""],["Central African Republic",["africa"],"cf","236"],["Chad",["africa"],"td","235"],["Chile",["america","south-america"],"cl","56"],["China",["asia"],"cn","86",".. ........."],["Colombia",["america","south-america"],"co","57","... ... ...."],["Comoros",["africa"],"km","269"],["Congo",["africa"],"cd","243"],["Congo",["africa"],"cg","242"],["Costa Rica",["america","central-america"],"cr","506",".... ...."],["Côte d’Ivoire",["africa"],"ci","225",".. .. .. .."],["Croatia",["europe","eu-union","ex-yugos"],"hr","385"],["Cuba",["america","carribean"],"cu","53"],["Curaçao",["america","carribean"],"cw","599",""],["Cyprus",["europe","eu-union"],"cy","357",".. ......"],["Czech Republic",["europe","eu-union"],"cz","420","... ... ..."],["Denmark",["europe","eu-union","baltic"],"dk","45",".. .. .. .."],["Djibouti",["africa"],"dj","253"],["Dominica",["america","carribean"],"dm","1767"],["Dominican Republic",["america","carribean"],"do","1",""],["Ecuador",["america","south-america"],"ec","593"],["Egypt",["africa","north-africa"],"eg","20"],["El Salvador",["america","central-america"],"sv","503",".... ...."],["Equatorial Guinea",["africa"],"gq","240"],["Eritrea",["africa"],"er","291"],["Estonia",["europe","eu-union","ex-ussr","baltic"],"ee","372",".... ......"],["Ethiopia",["africa"],"et","251"],["Fiji",["oceania"],"fj","679"],["Finland",["europe","eu-union","baltic"],"fi","358",".. ... .. .."],["France",["europe","eu-union"],"fr","33",". .. .. .. .."],["French Guiana",["america","south-america"],"gf","594"],["French Polynesia",["oceania"],"pf","689"],["Gabon",["africa"],"ga","241"],["Gambia",["africa"],"gm","220"],["Georgia",["asia","ex-ussr"],"ge","995"],["Germany",["europe","eu-union","baltic"],"de","49",".... ........"],["Ghana",["africa"],"gh","233"],["Greece",["europe","eu-union"],"gr","30"],["Grenada",["america","carribean"],"gd","1473"],["Guadeloupe",["america","carribean"],"gp","590","",0],["Guam",["oceania"],"gu","1671"],["Guatemala",["america","central-america"],"gt","502",".... ...."],["Guinea",["africa"],"gn","224"],["Guinea-Bissau",["africa"],"gw","245"],["Guyana",["america","south-america"],"gy","592"],["Haiti",["america","carribean"],"ht","509",".... ...."],["Honduras",["america","central-america"],"hn","504"],["Hong Kong",["asia"],"hk","852",".... ...."],["Hungary",["europe","eu-union"],"hu","36"],["Iceland",["europe"],"is","354","... ...."],["India",["asia"],"in","91","..... ....."],["Indonesia",["asia"],"id","62"],["Iran",["middle-east"],"ir","98","... ... ...."],["Iraq",["middle-east"],"iq","964"],["Ireland",["europe","eu-union"],"ie","353",".. ......."],["Israel",["middle-east"],"il","972","... ... ...."],["Italy",["europe","eu-union"],"it","39","... ......."],["Jamaica",["america","carribean"],"jm","1876"],["Japan",["asia"],"jp","81",".. .... ...."],["Jordan",["middle-east"],"jo","962"],["Kazakhstan",["asia","ex-ussr"],"kz","7","... ... .. .."],["Kenya",["africa"],"ke","254"],["Kiribati",["oceania"],"ki","686"],["Kosovo",["europe","ex-yugos"],"xk","383"],["Kuwait",["middle-east"],"kw","965"],["Kyrgyzstan",["asia","ex-ussr"],"kg","996","... ... ..."],["Laos",["asia"],"la","856"],["Latvia",["europe","eu-union","ex-ussr","baltic"],"lv","371",".. ... ..."],["Lebanon",["middle-east"],"lb","961"],["Lesotho",["africa"],"ls","266"],["Liberia",["africa"],"lr","231"],["Libya",["africa","north-africa"],"ly","218"],["Liechtenstein",["europe"],"li","423"],["Lithuania",["europe","eu-union","ex-ussr","baltic"],"lt","370"],["Luxembourg",["europe","eu-union"],"lu","352"],["Macau",["asia"],"mo","853"],["Macedonia",["europe","ex-yugos"],"mk","389"],["Madagascar",["africa"],"mg","261"],["Malawi",["africa"],"mw","265"],["Malaysia",["asia"],"my","60",".. .... ...."],["Maldives",["asia"],"mv","960"],["Mali",["africa"],"ml","223"],["Malta",["europe","eu-union"],"mt","356"],["Marshall Islands",["oceania"],"mh","692"],["Martinique",["america","carribean"],"mq","596"],["Mauritania",["africa"],"mr","222"],["Mauritius",["africa"],"mu","230"],["Mexico",["america","central-america"],"mx","52","... ... ...."],["Micronesia",["oceania"],"fm","691"],["Moldova",["europe"],"md","373","(..) .. .. .."],["Monaco",["europe"],"mc","377"],["Mongolia",["asia"],"mn","976"],["Montenegro",["europe","ex-yugos"],"me","382"],["Morocco",["africa","north-africa"],"ma","212"],["Mozambique",["africa"],"mz","258"],["Myanmar",["asia"],"mm","95"],["Namibia",["africa"],"na","264"],["Nauru",["africa"],"nr","674"],["Nepal",["asia"],"np","977"],["Netherlands",["europe","eu-union"],"nl","31",".. ........"],["New Caledonia",["oceania"],"nc","687"],["New Zealand",["oceania"],"nz","64","... ... ...."],["Nicaragua",["america","central-america"],"ni","505"],["Niger",["africa"],"ne","227"],["Nigeria",["africa"],"ng","234"],["North Korea",["asia"],"kp","850"],["Norway",["europe","baltic"],"no","47","... .. ..."],["Oman",["middle-east"],"om","968"],["Pakistan",["asia"],"pk","92","... ......."],["Palau",["oceania"],"pw","680"],["Palestine",["middle-east"],"ps","970"],["Panama",["america","central-america"],"pa","507"],["Papua New Guinea",["oceania"],"pg","675"],["Paraguay",["america","south-america"],"py","595"],["Peru",["america","south-america"],"pe","51"],["Philippines",["asia"],"ph","63",".... ......."],["Poland",["europe","eu-union","baltic"],"pl","48","... ... ..."],["Portugal",["europe","eu-union"],"pt","351"],["Puerto Rico",["america","carribean"],"pr","1",""],["Qatar",["middle-east"],"qa","974"],["Réunion",["africa"],"re","262"],["Romania",["europe","eu-union"],"ro","40"],["Russia",["europe","asia","ex-ussr","baltic"],"ru","7","(...) ... .. .."],["Rwanda",["africa"],"rw","250"],["Saint Kitts and Nevis",["america","carribean"],"kn","1869"],["Saint Lucia",["america","carribean"],"lc","1758"],["Saint Vincent and the Grenadines",["america","carribean"],"vc","1784"],["Samoa",["oceania"],"ws","685"],["San Marino",["europe"],"sm","378"],["São Tomé and Príncipe",["africa"],"st","239"],["Saudi Arabia",["middle-east"],"sa","966"],["Senegal",["africa"],"sn","221"],["Serbia",["europe","ex-yugos"],"rs","381"],["Seychelles",["africa"],"sc","248"],["Sierra Leone",["africa"],"sl","232"],["Singapore",["asia"],"sg","65",".... ...."],["Slovakia",["europe","eu-union"],"sk","421"],["Slovenia",["europe","eu-union","ex-yugos"],"si","386"],["Solomon Islands",["oceania"],"sb","677"],["Somalia",["africa"],"so","252"],["South Africa",["africa"],"za","27"],["South Korea",["asia"],"kr","82","... .... ...."],["South Sudan",["africa","north-africa"],"ss","211"],["Spain",["europe","eu-union"],"es","34","... ... ..."],["Sri Lanka",["asia"],"lk","94"],["Sudan",["africa"],"sd","249"],["Suriname",["america","south-america"],"sr","597"],["Swaziland",["africa"],"sz","268"],["Sweden",["europe","eu-union","baltic"],"se","46","(...) ... ..."],["Switzerland",["europe"],"ch","41",".. ... .. .."],["Syria",["middle-east"],"sy","963"],["Taiwan",["asia"],"tw","886"],["Tajikistan",["asia","ex-ussr"],"tj","992"],["Tanzania",["africa"],"tz","255"],["Thailand",["asia"],"th","66"],["Timor-Leste",["asia"],"tl","670"],["Togo",["africa"],"tg","228"],["Tonga",["oceania"],"to","676"],["Trinidad and Tobago",["america","carribean"],"tt","1868"],["Tunisia",["africa","north-africa"],"tn","216"],["Turkey",["europe"],"tr","90","... ... .. .."],["Turkmenistan",["asia","ex-ussr"],"tm","993"],["Tuvalu",["asia"],"tv","688"],["Uganda",["africa"],"ug","256"],["Ukraine",["europe","ex-ussr"],"ua","380","(..) ... .. .."],["United Arab Emirates",["middle-east"],"ae","971"],["United Kingdom",["europe","eu-union"],"gb","44",".... ......"],["United States",["america","north-america"],"us","1","(...) ... ...."],["Uruguay",["america","south-america"],"uy","598"],["Uzbekistan",["asia","ex-ussr"],"uz","998",".. ... .. .."],["Vanuatu",["oceania"],"vu","678"],["Vatican City",["europe"],"va","39",".. .... ...."],["Venezuela",["america","south-america"],"ve","58"],["Vietnam",["asia"],"vn","84"],["Yemen",["middle-east"],"ye","967"],["Zambia",["africa"],"zm","260"],["Zimbabwe",["africa"],"zw","263"]],WA=()=>(()=>{const e=new Map;return GA.forEach((t=>{const[n,...r]=t,i=r.find((e=>/^\d+$/.test(e)));e.set(n,i)})),e})();var qA=function(e){return function(e,t){for(var n=0;n<KA.length;n++)if(KA[n][e]===t)return KA[n];return null}("country",e)};var KA=[{continent:"Asia",region:"South Asia",country:"Afghanistan",capital:"Kabul",fips:"AF",iso2:"AF",iso3:"AFG",isoNo:"4",internet:"AF"},{continent:"Europe",region:"South East Europe",country:"Albania",capital:"Tirana",fips:"AL",iso2:"AL",iso3:"ALB",isoNo:"8",internet:"AL"},{continent:"Africa",region:"Northern Africa",country:"Algeria",capital:"Algiers",fips:"AG",iso2:"DZ",iso3:"DZA",isoNo:"12",internet:"DZ"},{continent:"Oceania",region:"Pacific",country:"American Samoa",capital:"Pago Pago",fips:"AQ",iso2:"AS",iso3:"ASM",isoNo:"16",internet:"AS"},{continent:"Europe",region:"South West Europe",country:"Andorra",capital:"Andorra la Vella",fips:"AN",iso2:"AD",iso3:"AND",isoNo:"20",internet:"AD"},{continent:"Africa",region:"Southern Africa",country:"Angola",capital:"Luanda",fips:"AO",iso2:"AO",iso3:"AGO",isoNo:"24",internet:"AO"},{continent:"Americas",region:"West Indies",country:"Anguilla",capital:"The Valley",fips:"AV",iso2:"AI",iso3:"AIA",isoNo:"660",internet:"AI"},{continent:"Americas",region:"West Indies",country:"Antigua and Barbuda",capital:"Saint John's",fips:"AC",iso2:"AG",iso3:"ATG",isoNo:"28",internet:"AG"},{continent:"Americas",region:"South America",country:"Argentina",capital:"Buenos Aires",fips:"AR",iso2:"AR",iso3:"ARG",isoNo:"32",internet:"AR"},{continent:"Asia",region:"South West Asia",country:"Armenia",capital:"Yerevan",fips:"AM",iso2:"AM",iso3:"ARM",isoNo:"51",internet:"AM"},{continent:"Americas",region:"West Indies",country:"Aruba",capital:"Oranjestad",fips:"AA",iso2:"AW",iso3:"ABW",isoNo:"533",internet:"AW"},{continent:"Oceania",region:"Pacific",country:"Australia",capital:"Canberra",fips:"AS",iso2:"AU",iso3:"AUS",isoNo:"36",internet:"AU"},{continent:"Europe",region:"Central Europe",country:"Austria",capital:"Vienna",fips:"AU",iso2:"AT",iso3:"AUT",isoNo:"40",internet:"AT"},{continent:"Asia",region:"South West Asia",country:"Azerbaijan",capital:"Baku (Baki)",fips:"AJ",iso2:"AZ",iso3:"AZE",isoNo:"31",internet:"AZ"},{continent:"Americas",region:"West Indies",country:"The Bahamas",capital:"Nassau",fips:"BF",iso2:"BS",iso3:"BHS",isoNo:"44",internet:"BS"},{continent:"Asia",region:"South West Asia",country:"Bahrain",capital:"Manama",fips:"BA",iso2:"BH",iso3:"BHR",isoNo:"48",internet:"BH"},{continent:"Asia",region:"South Asia",country:"Bangladesh",capital:"Dhaka",fips:"BG",iso2:"BD",iso3:"BGD",isoNo:"50",internet:"BD"},{continent:"Americas",region:"West Indies",country:"Barbados",capital:"Bridgetown",fips:"BB",iso2:"BB",iso3:"BRB",isoNo:"52",internet:"BB"},{continent:"Europe",region:"Eastern Europe",country:"Belarus",capital:"Minsk",fips:"BO",iso2:"BY",iso3:"BLR",isoNo:"112",internet:"BY"},{continent:"Europe",region:"Western Europe",country:"Belgium",capital:"Brussels",fips:"BE",iso2:"BE",iso3:"BEL",isoNo:"56",internet:"BE"},{continent:"Americas",region:"Central America",country:"Belize",capital:"Belmopan",fips:"BH",iso2:"BZ",iso3:"BLZ",isoNo:"84",internet:"BZ"},{continent:"Africa",region:"Western Africa",country:"Benin",capital:"Porto-Novo��",fips:"BN",iso2:"BJ",iso3:"BEN",isoNo:"204",internet:"BJ"},{continent:"Americas",region:"West Indies",country:"Bermuda",capital:"Hamilton",fips:"BD",iso2:"BM",iso3:"BMU",isoNo:"60",internet:"BM"},{continent:"Asia",region:"South Asia",country:"Bhutan",capital:"Thimphu",fips:"BT",iso2:"BT",iso3:"BTN",isoNo:"64",internet:"BT"},{continent:"Americas",region:"South America",country:"Bolivia",capital:"La Paz / Sucre",fips:"BL",iso2:"BO",iso3:"BOL",isoNo:"68",internet:"BO"},{continent:"Europe",region:"South East Europe",country:"Bosnia and Herzegovina",capital:"Sarajevo",fips:"BK",iso2:"BA",iso3:"BIH",isoNo:"70",internet:"BA"},{continent:"Africa",region:"Southern Africa",country:"Botswana",capital:"Gaborone",fips:"BC",iso2:"BW",iso3:"BWA",isoNo:"72",internet:"BW"},{continent:"Americas",region:"South America",country:"Brazil",capital:"Brasilia",fips:"BR",iso2:"BR",iso3:"BRA",isoNo:"76",internet:"BR"},{continent:"Americas",region:"West Indies",country:"British Virgin Islands",capital:"Road Town",fips:"VI",iso2:"VG",iso3:"VGB",isoNo:"92",internet:"VG"},{continent:"Asia",region:"South East Asia",country:"Brunei",capital:"Bandar Seri Begawan",fips:"BX",iso2:"BN",iso3:"BRN",isoNo:"96",internet:"BN"},{continent:"Europe",region:"South East Europe",country:"Bulgaria",capital:"Sofia",fips:"BU",iso2:"BG",iso3:"BGR",isoNo:"100",internet:"BG"},{continent:"Africa",region:"Western Africa",country:"Burkina Faso",capital:"Ouagadougou",fips:"UV",iso2:"BF",iso3:"BFA",isoNo:"854",internet:"BF"},{continent:"Africa",region:"Central Africa",country:"Burundi",capital:"Bujumbura",fips:"BY",iso2:"BI",iso3:"BDI",isoNo:"108",internet:"BI"},{continent:"Asia",region:"South East Asia",country:"Cambodia",capital:"Phnom Penh",fips:"CB",iso2:"KH",iso3:"KHM",isoNo:"116",internet:"KH"},{continent:"Africa",region:"Western Africa",country:"Cameroon",capital:"Yaounde",fips:"CM",iso2:"CM",iso3:"CMR",isoNo:"120",internet:"CM"},{continent:"Americas",region:"North America",country:"Canada",capital:"Ottawa",fips:"CA",iso2:"CA",iso3:"CAN",isoNo:"124",internet:"CA"},{continent:"Africa",region:"Western Africa",country:"Cape Verde",capital:"Praia",fips:"CV",iso2:"CV",iso3:"CPV",isoNo:"132",internet:"CV"},{continent:"Americas",region:"West Indies",country:"Cayman Islands",capital:"George Town",fips:"CJ",iso2:"KY",iso3:"CYM",isoNo:"136",internet:"KY"},{continent:"Africa",region:"Central Africa",country:"Central African Republic",capital:"Bangui",fips:"CT",iso2:"CF",iso3:"CAF",isoNo:"140",internet:"CF"},{continent:"Africa",region:"Central Africa",country:"Chad",capital:"N'Djamena",fips:"CD",iso2:"TD",iso3:"TCD",isoNo:"148",internet:"TD"},{continent:"Americas",region:"South America",country:"Chile",capital:"Santiago",fips:"CI",iso2:"CL",iso3:"CHL",isoNo:"152",internet:"CL"},{continent:"Asia",region:"East Asia",country:"China",capital:"Beijing",fips:"CH",iso2:"CN",iso3:"CHN",isoNo:"156",internet:"CN"},{continent:"Asia",region:"South East Asia",country:"Christmas Island",capital:"The Settlement",fips:"KT",iso2:"CX",iso3:"CXR",isoNo:"162",internet:"CX"},{continent:"Asia",region:"South East Asia",country:"Cocos (Keeling) Islands",capital:"West Island",fips:"CK",iso2:"CC",iso3:"CCK",isoNo:"166",internet:"CC"},{continent:"Americas",region:"South America",country:"Colombia",capital:"Bogota",fips:"CO",iso2:"CO",iso3:"COL",isoNo:"170",internet:"CO"},{continent:"Africa",region:"Indian Ocean",country:"Comoros",capital:"Moroni",fips:"CN",iso2:"KM",iso3:"COM",isoNo:"174",internet:"KM"},{continent:"Africa",region:"Central Africa",country:"Republic of the Congo",capital:"Brazzaville",fips:"CF",iso2:"CG",iso3:"COG",isoNo:"178",internet:"CG"},{continent:"Oceania",region:"Pacific",country:"Cook Islands",capital:"Avarua",fips:"CW",iso2:"CK",iso3:"COK",isoNo:"184",internet:"CK"},{continent:"Americas",region:"Central America",country:"Costa Rica",capital:"San Jose",fips:"CS",iso2:"CR",iso3:"CRI",isoNo:"188",internet:"CR"},{continent:"Africa",region:"Western Africa",country:"Cote d'Ivoire",capital:"Yamoussoukro",fips:"IV",iso2:"CI",iso3:"CIV",isoNo:"384",internet:"CI"},{continent:"Europe",region:"South East Europe",country:"Croatia",capital:"Zagreb",fips:"HR",iso2:"HR",iso3:"HRV",isoNo:"191",internet:"HR"},{continent:"Americas",region:"West Indies",country:"Cuba",capital:"Havana",fips:"CU",iso2:"CU",iso3:"CUB",isoNo:"192",internet:"CU"},{continent:"Asia",region:"South West Asia",country:"Cyprus",capital:"Nicosia",fips:"CY",iso2:"CY",iso3:"CYP",isoNo:"196",internet:"CY"},{continent:"Europe",region:"Central Europe",country:"Czech Republic",capital:"Prague",fips:"EZ",iso2:"CZ",iso3:"CZE",isoNo:"203",internet:"CZ"},{continent:"Europe",region:"Northern Europe",country:"Denmark",capital:"Copenhagen",fips:"DA",iso2:"DK",iso3:"DNK",isoNo:"208",internet:"DK"},{continent:"Africa",region:"Eastern Africa",country:"Djibouti",capital:"Djibouti",fips:"DJ",iso2:"DJ",iso3:"DJI",isoNo:"262",internet:"DJ"},{continent:"Americas",region:"West Indies",country:"Dominica",capital:"Roseau",fips:"DO",iso2:"DM",iso3:"DMA",isoNo:"212",internet:"DM"},{continent:"Americas",region:"West Indies",country:"Dominican Republic",capital:"Santo Domingo",fips:"DR",iso2:"DO",iso3:"DOM",isoNo:"214",internet:"DO"},{continent:"Americas",region:"South America",country:"Ecuador",capital:"Quito",fips:"EC",iso2:"EC",iso3:"ECU",isoNo:"218",internet:"EC"},{continent:"Africa",region:"Northern Africa",country:"Egypt",capital:"Cairo",fips:"EG",iso2:"EG",iso3:"EGY",isoNo:"818",internet:"EG"},{continent:"Americas",region:"Central America",country:"El Salvador",capital:"San Salvador",fips:"ES",iso2:"SV",iso3:"SLV",isoNo:"222",internet:"SV"},{continent:"Africa",region:"Western Africa",country:"Equatorial Guinea",capital:"Malabo",fips:"EK",iso2:"GQ",iso3:"GNQ",isoNo:"226",internet:"GQ"},{continent:"Africa",region:"Eastern Africa",country:"Eritrea",capital:"Asmara",fips:"ER",iso2:"ER",iso3:"ERI",isoNo:"232",internet:"ER"},{continent:"Europe",region:"Eastern Europe",country:"Estonia",capital:"Tallinn",fips:"EN",iso2:"EE",iso3:"EST",isoNo:"233",internet:"EE"},{continent:"Africa",region:"Eastern Africa",country:"Ethiopia",capital:"Addis Ababa",fips:"ET",iso2:"ET",iso3:"ETH",isoNo:"231",internet:"ET"},{continent:"Americas",region:"South America",country:"Falkland Islands (Islas Malvinas)",capital:"Stanley",fips:"FA",iso2:"FK",iso3:"FLK",isoNo:"238",internet:"FK"},{continent:"Europe",region:"Northern Europe",country:"Faroe Islands",capital:"Torshavn",fips:"FO",iso2:"FO",iso3:"FRO",isoNo:"234",internet:"FO"},{continent:"Oceania",region:"Pacific",country:"Fiji",capital:"Suva",fips:"FJ",iso2:"FJ",iso3:"FJI",isoNo:"242",internet:"FJ"},{continent:"Europe",region:"Northern Europe",country:"Finland",capital:"Helsinki",fips:"FI",iso2:"FI",iso3:"FIN",isoNo:"246",internet:"FI"},{continent:"Europe",region:"Western Europe",country:"France",capital:"Paris",fips:"FR",iso2:"FR",iso3:"FRA",isoNo:"250",internet:"FR"},{continent:"Americas",region:"South America",country:"French Guiana",capital:"Cayenne",fips:"FG",iso2:"GF",iso3:"GUF",isoNo:"254",internet:"GF"},{continent:"Oceania",region:"Pacific",country:"French Polynesia",capital:"Papeete",fips:"FP",iso2:"PF",iso3:"PYF",isoNo:"258",internet:"PF"},{continent:"Africa",region:"Western Africa",country:"Gabon",capital:"Libreville",fips:"GB",iso2:"GA",iso3:"GAB",isoNo:"266",internet:"GA"},{continent:"Africa",region:"Western Africa",country:"The Gambia",capital:"Banjul",fips:"GA",iso2:"GM",iso3:"GMB",isoNo:"270",internet:"GM"},{continent:"Asia",region:"South West Asia",country:"Georgia",capital:"T'bilisi",fips:"GG",iso2:"GE",iso3:"GEO",isoNo:"268",internet:"GE"},{continent:"Europe",region:"Western Europe",country:"Germany",capital:"Berlin",fips:"GM",iso2:"DE",iso3:"DEU",isoNo:"276",internet:"DE"},{continent:"Africa",region:"Western Africa",country:"Ghana",capital:"Accra",fips:"GH",iso2:"GH",iso3:"GHA",isoNo:"288",internet:"GH"},{continent:"Europe",region:"South West Europe",country:"Gibraltar",capital:"Gibraltar",fips:"GI",iso2:"GI",iso3:"GIB",isoNo:"292",internet:"GI"},{continent:"Europe",region:"South East Europe",country:"Greece",capital:"Athens",fips:"GR",iso2:"GR",iso3:"GRC",isoNo:"300",internet:"GR"},{continent:"Americas",region:"North America",country:"Greenland",capital:"Nuuk (Godthab)",fips:"GL",iso2:"GL",iso3:"GRL",isoNo:"304",internet:"GL"},{continent:"Americas",region:"West Indies",country:"Grenada",capital:"Saint George's",fips:"GJ",iso2:"GD",iso3:"GRD",isoNo:"308",internet:"GD"},{continent:"Americas",region:"West Indies",country:"Guadeloupe",capital:"Basse-Terre",fips:"GP",iso2:"GP",iso3:"GLP",isoNo:"312",internet:"GP"},{continent:"Oceania",region:"Pacific",country:"Guam",capital:"Hagatna (Agana)",fips:"GQ",iso2:"GU",iso3:"GUM",isoNo:"316",internet:"GU"},{continent:"Americas",region:"Central America",country:"Guatemala",capital:"Guatemala",fips:"GT",iso2:"GT",iso3:"GTM",isoNo:"320",internet:"GT"},{continent:"Africa",region:"Western Africa",country:"Guinea",capital:"Conakry",fips:"GV",iso2:"GN",iso3:"GIN",isoNo:"324",internet:"GN"},{continent:"Africa",region:"Western Africa",country:"Guinea-Bissau",capital:"Bissau",fips:"PU",iso2:"GW",iso3:"GNB",isoNo:"624",internet:"GW"},{continent:"Americas",region:"South America",country:"Guyana",capital:"Georgetown",fips:"GY",iso2:"GY",iso3:"GUY",isoNo:"328",internet:"GY"},{continent:"Americas",region:"West Indies",country:"Haiti",capital:"Port-au-Prince",fips:"HA",iso2:"HT",iso3:"HTI",isoNo:"332",internet:"HT"},{continent:"Europe",region:"Southern Europe",country:"Holy See (Vatican City)",capital:"Vatican City",fips:"VT",iso2:"VA",iso3:"VAT",isoNo:"336",internet:"VA"},{continent:"Americas",region:"Central America",country:"Honduras",capital:"Tegucigalpa",fips:"HO",iso2:"HN",iso3:"HND",isoNo:"340",internet:"HN"},{continent:"Europe",region:"Central Europe",country:"Hungary",capital:"Budapest",fips:"HU",iso2:"HU",iso3:"HUN",isoNo:"348",internet:"HU"},{continent:"Europe",region:"Northern Europe",country:"Iceland",capital:"Reykjavik",fips:"IC",iso2:"IS",iso3:"ISL",isoNo:"352",internet:"IS"},{continent:"Asia",region:"South Asia",country:"India",capital:"New Delhi",fips:"IN",iso2:"IN",iso3:"IND",isoNo:"356",internet:"IN"},{continent:"Asia",region:"South East Asia",country:"Indonesia",capital:"Jakarta",fips:"ID",iso2:"ID",iso3:"IDN",isoNo:"360",internet:"ID"},{continent:"Asia",region:"South West Asia",country:"Iran",capital:"Tehran",fips:"IR",iso2:"IR",iso3:"IRN",isoNo:"364",internet:"IR"},{continent:"Asia",region:"South West Asia",country:"Iraq",capital:"Baghdad",fips:"IZ",iso2:"IQ",iso3:"IRQ",isoNo:"368",internet:"IQ"},{continent:"Europe",region:"Western Europe",country:"Ireland",capital:"Dublin",fips:"EI",iso2:"IE",iso3:"IRL",isoNo:"372",internet:"IE"},{continent:"Asia",region:"South West Asia",country:"Israel",capital:"Jerusalem",fips:"IS",iso2:"IL",iso3:"ISR",isoNo:"376",internet:"IL"},{continent:"Europe",region:"Southern Europe",country:"Italy",capital:"Rome",fips:"IT",iso2:"IT",iso3:"ITA",isoNo:"380",internet:"IT"},{continent:"Americas",region:"West Indies",country:"Jamaica",capital:"Kingston",fips:"JM",iso2:"JM",iso3:"JAM",isoNo:"388",internet:"JM"},{continent:"Asia",region:"East Asia",country:"Japan",capital:"Tokyo",fips:"JA",iso2:"JP",iso3:"JPN",isoNo:"392",internet:"JP"},{continent:"Asia",region:"South West Asia",country:"Jordan",capital:"Amman",fips:"JO",iso2:"JO",iso3:"JOR",isoNo:"400",internet:"JO"},{continent:"Asia",region:"Central Asia",country:"Kazakhstan",capital:"Astana (Akmola)",fips:"KZ",iso2:"KZ",iso3:"KAZ",isoNo:"398",internet:"KZ"},{continent:"Africa",region:"Eastern Africa",country:"Kenya",capital:"Nairobi",fips:"KE",iso2:"KE",iso3:"KEN",isoNo:"404",internet:"KE"},{continent:"Oceania",region:"Pacific",country:"Kiribati",capital:"Tarawa",fips:"KR",iso2:"KI",iso3:"KIR",isoNo:"296",internet:"KI"},{continent:"Asia",region:"East Asia",country:"North Korea",capital:"P'yongyang",fips:"KN",iso2:"KP",iso3:"PRK",isoNo:"408",internet:"KP"},{continent:"Asia",region:"East Asia",country:"South Korea",capital:"Seoul",fips:"KS",iso2:"KR",iso3:"KOR",isoNo:"410",internet:"KR"},{continent:"Asia",region:"South West Asia",country:"Kuwait",capital:"Kuwait",fips:"KU",iso2:"KW",iso3:"KWT",isoNo:"414",internet:"KW"},{continent:"Asia",region:"Central Asia",country:"Kyrgyzstan",capital:"Bishkek",fips:"KG",iso2:"KG",iso3:"KGZ",isoNo:"417",internet:"KG"},{continent:"Asia",region:"South East Asia",country:"Laos",capital:"Vientiane",fips:"LA",iso2:"LA",iso3:"LAO",isoNo:"418",internet:"LA"},{continent:"Europe",region:"Eastern Europe",country:"Latvia",capital:"Riga",fips:"LG",iso2:"LV",iso3:"LVA",isoNo:"428",internet:"LV"},{continent:"Asia",region:"South West Asia",country:"Lebanon",capital:"Beirut",fips:"LE",iso2:"LB",iso3:"LBN",isoNo:"422",internet:"LB"},{continent:"Africa",region:"Southern Africa",country:"Lesotho",capital:"Maseru",fips:"LT",iso2:"LS",iso3:"LSO",isoNo:"426",internet:"LS"},{continent:"Africa",region:"Western Africa",country:"Liberia",capital:"Monrovia",fips:"LI",iso2:"LR",iso3:"LBR",isoNo:"430",internet:"LR"},{continent:"Africa",region:"Northern Africa",country:"Libya",capital:"Tripoli",fips:"LY",iso2:"LY",iso3:"LBY",isoNo:"434",internet:"LY"},{continent:"Europe",region:"Central Europe",country:"Liechtenstein",capital:"Vaduz",fips:"LS",iso2:"LI",iso3:"LIE",isoNo:"438",internet:"LI"},{continent:"Europe",region:"Eastern Europe",country:"Lithuania",capital:"Vilnius",fips:"LH",iso2:"LT",iso3:"LTU",isoNo:"440",internet:"LT"},{continent:"Europe",region:"Western Europe",country:"Luxembourg",capital:"Luxembourg",fips:"LU",iso2:"LU",iso3:"LUX",isoNo:"442",internet:"LU"},{continent:"Europe",region:"South East Europe",country:"North Macedonia",capital:"Skopje",fips:"MK",iso2:"MK",iso3:"MKD",isoNo:"807",internet:"MK"},{continent:"Africa",region:"Indian Ocean",country:"Madagascar",capital:"Antananarivo",fips:"MA",iso2:"MG",iso3:"MDG",isoNo:"450",internet:"MG"},{continent:"Africa",region:"Southern Africa",country:"Malawi",capital:"Lilongwe",fips:"MI",iso2:"MW",iso3:"MWI",isoNo:"454",internet:"MW"},{continent:"Asia",region:"South East Asia",country:"Malaysia",capital:"Kuala Lumpur",fips:"MY",iso2:"MY",iso3:"MYS",isoNo:"458",internet:"MY"},{continent:"Asia",region:"South Asia",country:"Maldives",capital:"Male (Maale)",fips:"MV",iso2:"MV",iso3:"MDV",isoNo:"462",internet:"MV"},{continent:"Africa",region:"Western Africa",country:"Mali",capital:"Bamako",fips:"ML",iso2:"ML",iso3:"MLI",isoNo:"466",internet:"ML"},{continent:"Europe",region:"Southern Europe",country:"Malta",capital:"Valletta",fips:"MT",iso2:"MT",iso3:"MLT",isoNo:"470",internet:"MT"},{continent:"Europe",region:"Western Europe",country:"Isle of Man",capital:"Douglas",fips:"IM",iso2:"IM",iso3:"IMN",isoNo:"833",internet:"IM"},{continent:"Oceania",region:"Pacific",country:"Marshall Islands",capital:"Majuro",fips:"RM",iso2:"MH",iso3:"MHL",isoNo:"584",internet:"MH"},{continent:"Americas",region:"West Indies",country:"Martinique",capital:"Fort-de-France",fips:"MB",iso2:"MQ",iso3:"MTQ",isoNo:"474",internet:"MQ"},{continent:"Africa",region:"Western Africa",country:"Mauritania",capital:"Nouakchott",fips:"MR",iso2:"MR",iso3:"MRT",isoNo:"478",internet:"MR"},{continent:"Africa",region:"Indian Ocean",country:"Mauritius",capital:"Port Louis",fips:"MP",iso2:"MU",iso3:"MUS",isoNo:"480",internet:"MU"},{continent:"Africa",region:"Indian Ocean",country:"Mayotte",capital:"Mamoutzou",fips:"MF",iso2:"YT",iso3:"MYT",isoNo:"175",internet:"YT"},{continent:"Americas",region:"Central America",country:"Mexico",capital:"Mexico",fips:"MX",iso2:"MX",iso3:"MEX",isoNo:"484",internet:"MX"},{continent:"Oceania",region:"Pacific",country:"Federated States of Micronesia",capital:"Palikir",fips:"",iso2:"FM",iso3:"FSM",isoNo:"583",internet:"FM"},{continent:"Europe",region:"Eastern Europe",country:"Moldova",capital:"Chisinau",fips:"MD",iso2:"MD",iso3:"MDA",isoNo:"498",internet:"MD"},{continent:"Europe",region:"Western Europe",country:"Monaco",capital:"Monaco",fips:"MN",iso2:"MC",iso3:"MCO",isoNo:"492",internet:"MC"},{continent:"Asia",region:"Northern Asia",country:"Mongolia",capital:"Ulaanbaatar",fips:"MG",iso2:"MN",iso3:"MNG",isoNo:"496",internet:"MN"},{continent:"Americas",region:"West Indies",country:"Montserrat",capital:"Plymouth",fips:"MH",iso2:"MS",iso3:"MSR",isoNo:"500",internet:"MS"},{continent:"Africa",region:"Northern Africa",country:"Morocco",capital:"Rabat",fips:"MO",iso2:"MA",iso3:"MAR",isoNo:"504",internet:"MA"},{continent:"Africa",region:"Southern Africa",country:"Mozambique",capital:"Maputo",fips:"MZ",iso2:"MZ",iso3:"MOZ",isoNo:"508",internet:"MZ"},{continent:"Asia",region:"South East Asia",country:"Myanmar (Burma)",capital:"Rangoon (Yangon)",fips:"BM",iso2:"MM",iso3:"MMR",isoNo:"104",internet:"MM"},{continent:"Africa",region:"Southern Africa",country:"Namibia",capital:"Windhoek",fips:"WA",iso2:"NA",iso3:"NAM",isoNo:"516",internet:"NA"},{continent:"Oceania",region:"Pacific",country:"Nauru",capital:"no official capital",fips:"NR",iso2:"NR",iso3:"NRU",isoNo:"520",internet:"NR"},{continent:"Asia",region:"South Asia",country:"Nepal",capital:"Kathmandu",fips:"NP",iso2:"NP",iso3:"NPL",isoNo:"524",internet:"NP"},{continent:"Europe",region:"Western Europe",country:"Netherlands",capital:"Amsterdam",fips:"NL",iso2:"NL",iso3:"NLD",isoNo:"528",internet:"NL"},{continent:"Americas",region:"West Indies",country:"Netherlands Antilles",capital:"Willemstad",fips:"NT",iso2:"AN",iso3:"ANT",isoNo:"530",internet:"AN"},{continent:"Oceania",region:"Pacific",country:"New Caledonia",capital:"Noumea",fips:"NC",iso2:"NC",iso3:"NCL",isoNo:"540",internet:"NC"},{continent:"Oceania",region:"Pacific",country:"New Zealand",capital:"Wellington",fips:"NZ",iso2:"NZ",iso3:"NZL",isoNo:"554",internet:"NZ"},{continent:"Americas",region:"Central America",country:"Nicaragua",capital:"Managua",fips:"NU",iso2:"NI",iso3:"NIC",isoNo:"558",internet:"NI"},{continent:"Africa",region:"Western Africa",country:"Niger",capital:"Niamey",fips:"NG",iso2:"NE",iso3:"NER",isoNo:"562",internet:"NE"},{continent:"Africa",region:"Western Africa",country:"Nigeria",capital:"Abuja",fips:"NI",iso2:"NG",iso3:"NGA",isoNo:"566",internet:"NG"},{continent:"Oceania",region:"Pacific",country:"Niue",capital:"Alofi",fips:"NE",iso2:"NU",iso3:"NIU",isoNo:"570",internet:"NU"},{continent:"Oceania",region:"Pacific",country:"Norfolk Island",capital:"Kingston",fips:"NF",iso2:"NF",iso3:"NFK",isoNo:"574",internet:"NF"},{continent:"Oceania",region:"Pacific",country:"Northern Mariana Islands",capital:"Saipan",fips:"CQ",iso2:"MP",iso3:"MNP",isoNo:"580",internet:"MP"},{continent:"Europe",region:"Northern Europe",country:"Norway",capital:"Oslo",fips:"NO",iso2:"NO",iso3:"NOR",isoNo:"578",internet:"NO"},{continent:"Asia",region:"South West Asia",country:"Oman",capital:"Muscat",fips:"MU",iso2:"OM",iso3:"OMN",isoNo:"512",internet:"OM"},{continent:"Asia",region:"South Asia",country:"Pakistan",capital:"Islamabad",fips:"PK",iso2:"PK",iso3:"PAK",isoNo:"586",internet:"PK"},{continent:"Oceania",region:"Pacific",country:"Palau",capital:"Koror",fips:"PS",iso2:"PW",iso3:"PLW",isoNo:"585",internet:"PW"},{continent:"Asia",region:"South West Asia",country:"Palestinian Territory",capital:"East Jerusalem",fips:"WE",iso2:"PS",iso3:"PSE",isoNo:"275",internet:"PS"},{continent:"Americas",region:"Central America",country:"Panama",capital:"Panama",fips:"PM",iso2:"PA",iso3:"PAN",isoNo:"591",internet:"PA"},{continent:"Oceania",region:"Pacific",country:"Papua New Guinea",capital:"Port Moresby",fips:"PP",iso2:"PG",iso3:"PNG",isoNo:"598",internet:"PG"},{continent:"Americas",region:"South America",country:"Paraguay",capital:"Asuncion",fips:"PA",iso2:"PY",iso3:"PRY",isoNo:"600",internet:"PY"},{continent:"Americas",region:"South America",country:"Peru",capital:"Lima",fips:"PE",iso2:"PE",iso3:"PER",isoNo:"604",internet:"PE"},{continent:"Asia",region:"South East Asia",country:"Philippines",capital:"Manila",fips:"RP",iso2:"PH",iso3:"PHL",isoNo:"608",internet:"PH"},{continent:"Oceania",region:"Pacific",country:"Pitcairn Islands",capital:"Adamstown",fips:"PC",iso2:"PN",iso3:"PCN",isoNo:"612",internet:"PN"},{continent:"Europe",region:"Eastern Europe",country:"Poland",capital:"Warsaw",fips:"PL",iso2:"PL",iso3:"POL",isoNo:"616",internet:"PL"},{continent:"Europe",region:"South West Europe",country:"Portugal",capital:"Lisbon",fips:"PO",iso2:"PT",iso3:"PRT",isoNo:"620",internet:"PT"},{continent:"Americas",region:"West Indies",country:"Puerto Rico",capital:"San Juan",fips:"RQ",iso2:"PR",iso3:"PRI",isoNo:"630",internet:"PR"},{continent:"Asia",region:"South West Asia",country:"Qatar",capital:"Doha",fips:"QA",iso2:"QA",iso3:"QAT",isoNo:"634",internet:"QA"},{continent:"Africa",region:"Indian Ocean",country:"Reunion",capital:"Saint-Denis",fips:"RE",iso2:"RE",iso3:"REU",isoNo:"638",internet:"RE"},{continent:"Europe",region:"South East Europe",country:"Romania",capital:"Bucharest",fips:"RO",iso2:"RO",iso3:"ROU",isoNo:"642",internet:"RO"},{continent:"Asia",region:"Northern Asia",country:"Russia",capital:"Moscow",fips:"RS",iso2:"RU",iso3:"RUS",isoNo:"643",internet:"RU"},{continent:"Africa",region:"Central Africa",country:"Rwanda",capital:"Kigali",fips:"RW",iso2:"RW",iso3:"RWA",isoNo:"646",internet:"RW"},{continent:"Americas",region:"West Indies",country:"Saint Kitts and Nevis",capital:"Basseterre",fips:"SC",iso2:"KN",iso3:"KNA",isoNo:"659",internet:"KN"},{continent:"Americas",region:"West Indies",country:"Saint Lucia",capital:"Castries",fips:"ST",iso2:"LC",iso3:"LCA",isoNo:"662",internet:"LC"},{continent:"Americas",region:"North America",country:"Saint Pierre and Miquelon",capital:"Saint-Pierre",fips:"SB",iso2:"PM",iso3:"SPM",isoNo:"666",internet:"PM"},{continent:"Americas",region:"West Indies",country:"Saint Vincent and the Grenadines",capital:"Kingstown",fips:"VC",iso2:"VC",iso3:"VCT",isoNo:"670",internet:"VC"},{continent:"Europe",region:"Southern Europe",country:"San Marino",capital:"San Marino",fips:"SM",iso2:"SM",iso3:"SMR",isoNo:"674",internet:"SM"},{continent:"Africa",region:"Western Africa",country:"Sao Tome and Principe",capital:"Sao Tome",fips:"TP",iso2:"ST",iso3:"STP",isoNo:"678",internet:"ST"},{continent:"Asia",region:"South West Asia",country:"Saudi Arabia",capital:"Riyadh",fips:"SA",iso2:"SA",iso3:"SAU",isoNo:"682",internet:"SA"},{continent:"Africa",region:"Western Africa",country:"Senegal",capital:"Dakar",fips:"SG",iso2:"SN",iso3:"SEN",isoNo:"686",internet:"SN"},{continent:"Africa",region:"Indian Ocean",country:"Seychelles",capital:"Victoria",fips:"SE",iso2:"SC",iso3:"SYC",isoNo:"690",internet:"SC"},{continent:"Africa",region:"Western Africa",country:"Sierra Leone",capital:"Freetown",fips:"SL",iso2:"SL",iso3:"SLE",isoNo:"694",internet:"SL"},{continent:"Asia",region:"South East Asia",country:"Singapore",capital:"Singapore",fips:"SN",iso2:"SG",iso3:"SGP",isoNo:"702",internet:"SG"},{continent:"Europe",region:"Central Europe",country:"Slovakia",capital:"Bratislava",fips:"LO",iso2:"SK",iso3:"SVK",isoNo:"703",internet:"SK"},{continent:"Europe",region:"South East Europe",country:"Slovenia",capital:"Ljubljana",fips:"SI",iso2:"SI",iso3:"SVN",isoNo:"705",internet:"SI"},{continent:"Oceania",region:"Pacific",country:"Solomon Islands",capital:"Honiara",fips:"BP",iso2:"SB",iso3:"SLB",isoNo:"90",internet:"SB"},{continent:"Africa",region:"Eastern Africa",country:"Somalia",capital:"Mogadishu",fips:"SO",iso2:"SO",iso3:"SOM",isoNo:"706",internet:"SO"},{continent:"Africa",region:"Southern Africa",country:"South Africa",capital:"Pretoria��",fips:"SF",iso2:"ZA",iso3:"ZAF",isoNo:"710",internet:"ZA"},{continent:"Europe",region:"South West Europe",country:"Spain",capital:"Madrid",fips:"SP",iso2:"ES",iso3:"ESP",isoNo:"724",internet:"ES"},{continent:"Asia",region:"South Asia",country:"Sri Lanka",capital:"Colombo",fips:"CE",iso2:"LK",iso3:"LKA",isoNo:"144",internet:"LK"},{continent:"Africa",region:"Northern Africa",country:"Sudan",capital:"Khartoum",fips:"SU",iso2:"SD",iso3:"SDN",isoNo:"736",internet:"SD"},{continent:"Americas",region:"South America",country:"Suriname",capital:"Paramaribo",fips:"NS",iso2:"SR",iso3:"SUR",isoNo:"740",internet:"SR"},{continent:"Europe",region:"Northern Europe",country:"Svalbard",capital:"Longyearbyen",fips:"SV",iso2:"SJ",iso3:"SJM",isoNo:"744",internet:"SJ"},{continent:"Africa",region:"Southern Africa",country:"Eswatini",capital:"Mbabane",fips:"WZ",iso2:"SZ",iso3:"SWZ",isoNo:"748",internet:"SZ"},{continent:"Europe",region:"Northern Europe",country:"Sweden",capital:"Stockholm",fips:"SW",iso2:"SE",iso3:"SWE",isoNo:"752",internet:"SE"},{continent:"Europe",region:"Central Europe",country:"Switzerland",capital:"Bern",fips:"SZ",iso2:"CH",iso3:"CHE",isoNo:"756",internet:"CH"},{continent:"Asia",region:"South West Asia",country:"Syria",capital:"Damascus",fips:"SY",iso2:"SY",iso3:"SYR",isoNo:"760",internet:"SY"},{continent:"Asia",region:"East Asia",country:"Taiwan",capital:"Taipei",fips:"TW",iso2:"TW",iso3:"TWN",isoNo:"158",internet:"TW"},{continent:"Asia",region:"Central Asia",country:"Tajikistan",capital:"Dushanbe",fips:"TI",iso2:"TJ",iso3:"TJK",isoNo:"762",internet:"TJ"},{continent:"Africa",region:"Eastern Africa",country:"Tanzania",capital:"Dar es Salaam",fips:"TZ",iso2:"TZ",iso3:"TZA",isoNo:"834",internet:"TZ"},{continent:"Asia",region:"South East Asia",country:"Thailand",capital:"Bangkok",fips:"TH",iso2:"TH",iso3:"THA",isoNo:"764",internet:"TH"},{continent:"Africa",region:"Western Africa",country:"Togo",capital:"Lome",fips:"TO",iso2:"TG",iso3:"TGO",isoNo:"768",internet:"TG"},{continent:"Oceania",region:"Pacific",country:"Tokelau",capital:"none",fips:"TL",iso2:"TK",iso3:"TKL",isoNo:"772",internet:"TK"},{continent:"Oceania",region:"Pacific",country:"Tonga",capital:"Nuku'alofa",fips:"TN",iso2:"TO",iso3:"TON",isoNo:"776",internet:"TO"},{continent:"Americas",region:"West Indies",country:"Trinidad and Tobago",capital:"Port-of-Spain",fips:"TD",iso2:"TT",iso3:"TTO",isoNo:"780",internet:"TT"},{continent:"Africa",region:"Northern Africa",country:"Tunisia",capital:"Tunis",fips:"TS",iso2:"TN",iso3:"TUN",isoNo:"788",internet:"TN"},{continent:"Asia",region:"South West Asia",country:"Turkey",capital:"Ankara",fips:"TU",iso2:"TR",iso3:"TUR",isoNo:"792",internet:"TR"},{continent:"Asia",region:"Central Asia",country:"Turkmenistan",capital:"Ashgabat",fips:"TX",iso2:"TM",iso3:"TKM",isoNo:"795",internet:"TM"},{continent:"Americas",region:"West Indies",country:"Turks and Caicos Islands",capital:"Grand Turk",fips:"TK",iso2:"TC",iso3:"TCA",isoNo:"796",internet:"TC"},{continent:"Oceania",region:"Pacific",country:"Tuvalu",capital:"Funafuti",fips:"TV",iso2:"TV",iso3:"TUV",isoNo:"798",internet:"TV"},{continent:"Africa",region:"Eastern Africa",country:"Uganda",capital:"Kampala",fips:"UG",iso2:"UG",iso3:"UGA",isoNo:"800",internet:"UG"},{continent:"Europe",region:"Eastern Europe",country:"Ukraine",capital:"Kiev",fips:"UP",iso2:"UA",iso3:"UKR",isoNo:"804",internet:"UA"},{continent:"Asia",region:"South West Asia",country:"United Arab Emirates",capital:"Abu Dhabi",fips:"TC",iso2:"AE",iso3:"ARE",isoNo:"784",internet:"AE"},{continent:"Europe",region:"Western Europe",country:"United Kingdom",capital:"London",fips:"UK",iso2:"GB",iso3:"GBR",isoNo:"826",internet:"UK"},{continent:"Americas",region:"North America",country:"United States",capital:"Washington DC",fips:"US",iso2:"US",iso3:"USA",isoNo:"840",internet:"US"},{continent:"Americas",region:"North America",country:"United States Minor Outlying Islands",capital:"Washington DC",fips:"",iso2:"UM",iso3:"UMI",isoNo:"581",internet:"US"},{continent:"Americas",region:"South America",country:"Uruguay",capital:"Montevideo",fips:"UY",iso2:"UY",iso3:"URY",isoNo:"858",internet:"UY"},{continent:"Asia",region:"Central Asia",country:"Uzbekistan",capital:"Tashkent (Toshkent)",fips:"UZ",iso2:"UZ",iso3:"UZB",isoNo:"860",internet:"UZ"},{continent:"Oceania",region:"Pacific",country:"Vanuatu",capital:"Port-Vila",fips:"NH",iso2:"VU",iso3:"VUT",isoNo:"548",internet:"VU"},{continent:"Americas",region:"South America",country:"Venezuela",capital:"Caracas",fips:"VE",iso2:"VE",iso3:"VEN",isoNo:"862",internet:"UE"},{continent:"Asia",region:"South East Asia",country:"Vietnam",capital:"Hanoi",fips:"VN",iso2:"VN",iso3:"VNM",isoNo:"704",internet:"VN"},{continent:"Americas",region:"West Indies",country:"Virgin Islands",capital:"Charlotte Amalie",fips:"VQ",iso2:"VI",iso3:"VIR",isoNo:"850",internet:"VI"},{continent:"Oceania",region:"Pacific",country:"Wallis and Futuna",capital:"Mata-Utu (on Ile Uvea)",fips:"WF",iso2:"WF",iso3:"WLF",isoNo:"876",internet:"WF"},{continent:"Africa",region:"Northern Africa",country:"Western Sahara",capital:"none",fips:"WI",iso2:"EH",iso3:"ESH",isoNo:"732",internet:"EH"},{continent:"Oceania",region:"Pacific",country:"Western Samoa",capital:"Apia",fips:"WS",iso2:"WS",iso3:"WSM",isoNo:"882",internet:"WS"},{continent:"Asia",region:"South West Asia",country:"Yemen",capital:"Sanaa",fips:"YM",iso2:"YE",iso3:"YEM",isoNo:"887",internet:"YE"},{continent:"Africa",region:"Central Africa",country:"Democratic Republic of the Congo",capital:"Kinshasa",fips:"CG",iso2:"CD",iso3:"COD",isoNo:"180",internet:"ZR"},{continent:"Africa",region:"Southern Africa",country:"Zambia",capital:"Lusaka",fips:"ZA",iso2:"ZM",iso3:"ZMB",isoNo:"894",internet:"ZM"},{continent:"Africa",region:"Southern Africa",country:"Zimbabwe",capital:"Harare",fips:"ZI",iso2:"ZW",iso3:"ZWE",isoNo:"716",internet:"ZW"},{continent:"Asia",region:"East Asia",country:"Hong Kong",capital:"Victoria",fips:"HK",iso2:"HK",iso3:"HKG",isoNo:"344",internet:"HK"},{continent:"Asia",region:"East Asia",country:"Macau",capital:"Macau",fips:"MC",iso2:"MO",iso3:"MAC",isoNo:"446",internet:"MO"},{continent:"Antarctica",region:"Antarctica",country:"Antarctica",capital:"",fips:"AY",iso2:"AQ",iso3:"ATA",isoNo:"10",internet:"AQ"},{continent:"Atlantic Ocean",region:"South Atlantic Ocean",country:"Bouvet Island",capital:"",fips:"BV",iso2:"BV",iso3:"BVT",isoNo:"74",internet:"BV"},{continent:"Asia",region:"South Asia",country:"British Indian Ocean Territory",capital:"",fips:"IO",iso2:"IO",iso3:"IOT",isoNo:"86",internet:"IO"},{continent:"Indian Ocean",region:"Southern Indian Ocean",country:"French Southern and Antarctic Lands",capital:"",fips:"FS",iso2:"TF",iso3:"ATF",isoNo:"260",internet:"--"},{continent:"Indian Ocean",region:"Southern Indian Ocean",country:"Heard Island and McDonald Islands",capital:"",fips:"HM",iso2:"HM",iso3:"HMD",isoNo:"334",internet:"HM"},{continent:"Atlantic Ocean",region:"South Atlantic Ocean",country:"Saint Helena",capital:"",fips:"SH",iso2:"SH",iso3:"SHN",isoNo:"654",internet:"SH"},{continent:"Atlantic Ocean",region:"South Atlantic Ocean",country:"South Georgia and the South Sandwich Islands",capital:"",fips:"SX",iso2:"GS",iso3:"SGS",isoNo:"239",internet:"GS"},{continent:"Europe",region:"Western Europe",country:"Guernsey",capital:"Saint Peter Port",fips:"GK",iso2:"GG",iso3:"GGY",isoNo:"831",internet:"GG"},{continent:"Europe",region:"South East Europe",country:"Serbia",capital:"Belgrade",fips:"RI",iso2:"RS",iso3:"SRB",isoNo:"688",internet:"RS"},{continent:"Americas",region:"West Indies",country:"Saint Barthélemy",capital:"Gustavia",fips:"TB",iso2:"BL",iso3:"BLM",isoNo:"652",internet:"BL"},{continent:"Europe",region:"South East Europe",country:"Montenegro",capital:"Podgorica",fips:"MJ",iso2:"ME",iso3:"MNE",isoNo:"499",internet:"ME"},{continent:"Europe",region:"Western Europe",country:"Jersey",capital:"Saint Helier",fips:"JE",iso2:"JE",iso3:"JEY",isoNo:"832",internet:"JE"},{continent:"Americas",region:"West Indies",country:"Curaçao",capital:"Willemstad",fips:"UC",iso2:"CW",iso3:"CUW",isoNo:"531",internet:"CW"},{continent:"Americas",region:"West Indies",country:"Saint Martin",capital:"Marigot",fips:"RN",iso2:"MF",iso3:"MAF",isoNo:"663",internet:"MF"},{continent:"Americas",region:"West Indies",country:"Sint Maarten",capital:"Philipsburg",fips:"NN",iso2:"SX",iso3:"SXM",isoNo:"534",internet:"SX"},{continent:"Asia",region:"South East Asia",country:"Timor-Leste",capital:"Dili",fips:"TT",iso2:"TL",iso3:"TLS",isoNo:"626",internet:"TL"},{continent:"Africa",region:"Northern Africa",country:"South Sudan",capital:"Juba",fips:"OD",iso2:"SS",iso3:"SSD",isoNo:"728",internet:"SS"},{continent:"Europe",region:"Northern Europe",country:"Åland Islands",capital:"Mariehamn",fips:"AX",iso2:"AX",iso3:"ALA",isoNo:"248",internet:"AX"},{continent:"Americas",region:"West Indies",country:"Bonaire",capital:"Kralendijk",fips:"BQ",iso2:"BQ",iso3:"BES",isoNo:"535",internet:"BQ"},{continent:"Europe",region:"South East Europe",country:"Republic of Kosovo",capital:"Pristina",fips:"KV",iso2:"XK",iso3:"UNK",isoNo:null,internet:"XK"}],JA={version:4,country_calling_codes:{1:["US","AG","AI","AS","BB","BM","BS","CA","DM","DO","GD","GU","JM","KN","KY","LC","MP","MS","PR","SX","TC","TT","VC","VG","VI"],7:["RU","KZ"],20:["EG"],27:["ZA"],30:["GR"],31:["NL"],32:["BE"],33:["FR"],34:["ES"],36:["HU"],39:["IT","VA"],40:["RO"],41:["CH"],43:["AT"],44:["GB","GG","IM","JE"],45:["DK"],46:["SE"],47:["NO","SJ"],48:["PL"],49:["DE"],51:["PE"],52:["MX"],53:["CU"],54:["AR"],55:["BR"],56:["CL"],57:["CO"],58:["VE"],60:["MY"],61:["AU","CC","CX"],62:["ID"],63:["PH"],64:["NZ"],65:["SG"],66:["TH"],81:["JP"],82:["KR"],84:["VN"],86:["CN"],90:["TR"],91:["IN"],92:["PK"],93:["AF"],94:["LK"],95:["MM"],98:["IR"],211:["SS"],212:["MA","EH"],213:["DZ"],216:["TN"],218:["LY"],220:["GM"],221:["SN"],222:["MR"],223:["ML"],224:["GN"],225:["CI"],226:["BF"],227:["NE"],228:["TG"],229:["BJ"],230:["MU"],231:["LR"],232:["SL"],233:["GH"],234:["NG"],235:["TD"],236:["CF"],237:["CM"],238:["CV"],239:["ST"],240:["GQ"],241:["GA"],242:["CG"],243:["CD"],244:["AO"],245:["GW"],246:["IO"],247:["AC"],248:["SC"],249:["SD"],250:["RW"],251:["ET"],252:["SO"],253:["DJ"],254:["KE"],255:["TZ"],256:["UG"],257:["BI"],258:["MZ"],260:["ZM"],261:["MG"],262:["RE","YT"],263:["ZW"],264:["NA"],265:["MW"],266:["LS"],267:["BW"],268:["SZ"],269:["KM"],290:["SH","TA"],291:["ER"],297:["AW"],298:["FO"],299:["GL"],350:["GI"],351:["PT"],352:["LU"],353:["IE"],354:["IS"],355:["AL"],356:["MT"],357:["CY"],358:["FI","AX"],359:["BG"],370:["LT"],371:["LV"],372:["EE"],373:["MD"],374:["AM"],375:["BY"],376:["AD"],377:["MC"],378:["SM"],380:["UA"],381:["RS"],382:["ME"],383:["XK"],385:["HR"],386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"],691:["FM"],692:["MH"],850:["KP"],852:["HK"],853:["MO"],855:["KH"],856:["LA"],880:["BD"],886:["TW"],960:["MV"],961:["LB"],962:["JO"],963:["SY"],964:["IQ"],965:["KW"],966:["SA"],967:["YE"],968:["OM"],970:["PS"],971:["AE"],972:["IL"],973:["BH"],974:["QA"],975:["BT"],976:["MN"],977:["NP"],992:["TJ"],993:["TM"],994:["AZ"],995:["GE"],996:["KG"],998:["UZ"]},countries:{AC:["247","00","(?:[01589]\\d|[46])\\d{4}",[5,6]],AD:["376","00","(?:1|6\\d)\\d{7}|[135-9]\\d{5}",[6,8,9],[["(\\d{3})(\\d{3})","$1 $2",["[135-9]"]],["(\\d{4})(\\d{4})","$1 $2",["1"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]]],AE:["971","00","(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}",[5,6,7,8,9,10,11,12],[["(\\d{3})(\\d{2,9})","$1 $2",["60|8"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[236]|[479][2-8]"],"0$1"],["(\\d{3})(\\d)(\\d{5})","$1 $2 $3",["[479]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"]],"0"],AF:["93","00","[2-7]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"]],"0"],AG:["1","011","(?:268|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([457]\\d{6})$|1","268$1",0,"268"],AI:["1","011","(?:264|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2457]\\d{6})$|1","264$1",0,"264"],AL:["355","00","(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}",[6,7,8,9],[["(\\d{3})(\\d{3,4})","$1 $2",["80|9"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["4[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2358][2-5]|4"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["[23578]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["6"],"0$1"]],"0"],AM:["374","00","(?:[1-489]\\d|55|60|77)\\d{6}",[8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[89]0"],"0 $1"],["(\\d{3})(\\d{5})","$1 $2",["2|3[12]"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["1|47"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[3-9]"],"0$1"]],"0"],AO:["244","00","[29]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[29]"]]]],AR:["54","00","(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}",[10,11],[["(\\d{4})(\\d{2})(\\d{4})","$1 $2-$3",["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])","2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["1"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[68]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2-$3",["[23]"],"0$1",1],["(\\d)(\\d{4})(\\d{2})(\\d{4})","$2 15-$3-$4",["9(?:2[2-469]|3[3-578])","9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))","9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",0,"$1 $2 $3-$4"],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 15-$3-$4",["91"],"0$1",0,"$1 $2 $3-$4"],["(\\d{3})(\\d{3})(\\d{5})","$1-$2-$3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 15-$3-$4",["9"],"0$1",0,"$1 $2 $3-$4"]],"0",0,"0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?","9$1"],AS:["1","011","(?:[58]\\d\\d|684|900)\\d{7}",[10],0,"1",0,"([267]\\d{6})$|1","684$1",0,"684"],AT:["43","00","1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}",[4,5,6,7,8,9,10,11,12,13],[["(\\d)(\\d{3,12})","$1 $2",["1(?:11|[2-9])"],"0$1"],["(\\d{3})(\\d{2})","$1 $2",["517"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["5[079]"],"0$1"],["(\\d{3})(\\d{3,10})","$1 $2",["(?:31|4)6|51|6(?:5[0-3579]|[6-9])|7(?:20|32|8)|[89]"],"0$1"],["(\\d{4})(\\d{3,9})","$1 $2",["[2-467]|5[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["5"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,7})","$1 $2 $3",["5"],"0$1"]],"0"],AU:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}",[5,6,7,8,9,10,12],[["(\\d{2})(\\d{3,4})","$1 $2",["16"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,4})","$1 $2 $3",["16"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["14|4"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[2378]"],"(0$1)"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:30|[89])"]]],"0",0,"(183[12])|0",0,0,0,[["(?:(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8]))\\d{3}|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4]))|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79])))))\\d{3}",[9]],["4(?:79[01]|83[0-389]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[016-9]|7[02-8]|8[0-24-9]|9[0-27-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,["163\\d{2,6}",[5,6,7,8,9]],["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],AW:["297","00","(?:[25-79]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[25-9]"]]]],AX:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}",[5,6,7,8,9,10,11,12],0,"0",0,0,0,0,"18",0,"00"],AZ:["994","00","365\\d{6}|(?:[124579]\\d|60|88)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[28]|2|365|46","1[28]|2|365[45]|46","1[28]|2|365(?:4|5[02])|46"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[13-9]"],"0$1"]],"0"],BA:["387","00","6\\d{8}|(?:[35689]\\d|49|70)\\d{6}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["6[1-3]|[7-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2-$3",["[3-5]|6[56]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["6"],"0$1"]],"0"],BB:["1","011","(?:246|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","246$1",0,"246"],BD:["880","00","[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{4,6})","$1-$2",["31[5-8]|[459]1"],"0$1"],["(\\d{3})(\\d{3,7})","$1-$2",["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:28|4[14]|5)|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]|22"],"0$1"],["(\\d)(\\d{7,8})","$1-$2",["2"],"0$1"]],"0"],BE:["32","00","4\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:80|9)0"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[239]|4[23]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[15-8]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4"],"0$1"]],"0"],BF:["226","00","[025-7]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[025-7]"]]]],BG:["359","00","00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}",[6,7,8,9,12],[["(\\d)(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["43[1-6]|70[1-9]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:70|8)0"],"0$1"],["(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3",["43[1-7]|7"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[48]|9[08]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"]],"0"],BH:["973","00","[136-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[13679]|8[047]"]]]],BI:["257","00","(?:[267]\\d|31)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2367]"]]]],BJ:["229","00","[24-689]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-689]"]]]],BL:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:2[7-9]|5[12]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-2])\\d{4}"]]],BM:["1","011","(?:441|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","441$1",0,"441"],BN:["673","00","[2-578]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-578]"]]]],BO:["591","00(?:1\\d)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|4[46]"]],["(\\d{8})","$1",["[67]"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["8"]]],"0",0,"0(1\\d)?"],BQ:["599","00","(?:[34]1|7\\d)\\d{5}",[7],0,0,0,0,0,0,"[347]"],BR:["55","00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)","(?:[1-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"],BS:["1","011","(?:242|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([3-8]\\d{6})$|1","242$1",0,"242"],BT:["975","00","[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"]]]],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-79]"]],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37]"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["8"]]]],BY:["375","810","(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3})","$1 $2",["800"],"8 $1"],["(\\d{3})(\\d{2})(\\d{2,4})","$1 $2 $3",["800"],"8 $1"],["(\\d{4})(\\d{2})(\\d{3})","$1 $2-$3",["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])","1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"],"8 0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["1(?:[56]|7[467])|2[1-3]"],"8 0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-4]"],"8 0$1"],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["[89]"],"8 $1"]],"8",0,"0|80?",0,0,0,0,"8~10"],BZ:["501","00","(?:0800\\d|[2-8])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1-$2",["[2-8]"]],["(\\d)(\\d{3})(\\d{4})(\\d{3})","$1-$2-$3-$4",["0"]]]],CA:["1","011","(?:[2-8]\\d|90)\\d{8}|3\\d{6}",[7,10],0,"1",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|73)|90[25])[2-9]\\d{6}",[10]],["",[10]],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",[10]],["900[2-9]\\d{6}",[10]],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:00|2[125-9]|33|44|66|77|88)|622)[2-9]\\d{6}",[10]],0,["310\\d{4}",[7]],0,["600[2-9]\\d{6}",[10]]]],CC:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}",[9]],["4(?:79[01]|83[0-389]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[016-9]|7[02-8]|8[0-24-9]|9[0-27-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CD:["243","00","[189]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[1-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"0$1"]],"0"],CF:["236","00","(?:[27]\\d{3}|8776)\\d{4}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[278]"]]]],CG:["242","00","222\\d{6}|(?:0\\d|80)\\d{7}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[02]"]]]],CH:["41","00","8\\d{11}|[2-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8[047]|90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-79]|81"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["8"],"0$1"]],"0"],CI:["225","00","[02]\\d{9}",[10],[["(\\d{2})(\\d{2})(\\d)(\\d{5})","$1 $2 $3 $4",["2"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3 $4",["0"]]]],CK:["682","00","[2-578]\\d{4}",[5],[["(\\d{2})(\\d{3})","$1 $2",["[2-578]"]]]],CL:["56","(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0","12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}",[9,10,11],[["(\\d{5})(\\d{4})","$1 $2",["219","2196"],"($1)"],["(\\d{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"]]]],CM:["237","00","[26]\\d{8}|88\\d{6,7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["88"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[26]|88"]]]],CN:["86","00|1(?:[12]\\d|79)\\d\\d00","1[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","10(?:10|9[56])|2[0-57-9](?:100|9[56])"],"0$1"],["(\\d{3})(\\d{5,6})","$1 $2",["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]","(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]","85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])","85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["(?:4|80)0"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|2(?:[02-57-9]|1[1-9])","10|2(?:[02-57-9]|1[1-9])","10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"],"0$1",1],["(\\d{3})(\\d{7,8})","$1 $2",["9"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["80"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[3-578]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["1[3-9]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3 $4",["[12]"],"0$1",1]],"0",0,"(1(?:[12]\\d|79)\\d\\d)|0",0,0,0,0,"00"],CO:["57","00(?:4(?:[14]4|56)|[579])","(?:60\\d\\d|9101)\\d{6}|(?:1\\d|3)\\d{9}",[10,11],[["(\\d{3})(\\d{7})","$1 $2",["6"],"($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(4(?:[14]4|56)|[579])?"],CR:["506","00","(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}",[8,10],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[3-9]"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[89]"]]],0,0,"(19(?:0[0-2468]|1[09]|20|66|77|99))"],CU:["53","119","[27]\\d{6,7}|[34]\\d{5,7}|(?:5|8\\d\\d)\\d{7}",[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",["5"],"0$1"],["(\\d{3})(\\d{7})","$1 $2",["8"],"0$1"]],"0"],CV:["238","0","(?:[2-59]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2-589]"]]]],CW:["599","00","(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[3467]"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["9[4-8]"]]],0,0,0,0,0,"[69]"],CX:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}",[9]],["4(?:79[01]|83[0-389]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[016-9]|7[02-8]|8[0-24-9]|9[0-27-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CY:["357","00","(?:[279]\\d|[58]0)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[257-9]"]]]],CZ:["420","00","(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]|9[015-7]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3 $4",["96"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]]],DE:["49","00","[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}",[4,5,6,7,8,9,10,11,12,13,14,15],[["(\\d{2})(\\d{3,13})","$1 $2",["3[02]|40|[68]9"],"0$1"],["(\\d{3})(\\d{3,12})","$1 $2",["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1","2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"],"0$1"],["(\\d{4})(\\d{2,11})","$1 $2",["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]","[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["138"],"0$1"],["(\\d{5})(\\d{2,10})","$1 $2",["3"],"0$1"],["(\\d{3})(\\d{5,11})","$1 $2",["181"],"0$1"],["(\\d{3})(\\d)(\\d{4,10})","$1 $2 $3",["1(?:3|80)|9"],"0$1"],["(\\d{3})(\\d{7,8})","$1 $2",["1[67]"],"0$1"],["(\\d{3})(\\d{7,12})","$1 $2",["8"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["185","1850","18500"],"0$1"],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["18[68]"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"0$1"],["(\\d{3})(\\d{8})","$1 $2",["18"],"0$1"],["(\\d{3})(\\d{2})(\\d{7,8})","$1 $2 $3",["1(?:6[023]|7)"],"0$1"],["(\\d{4})(\\d{2})(\\d{7})","$1 $2 $3",["15[279]"],"0$1"],["(\\d{3})(\\d{2})(\\d{8})","$1 $2 $3",["15"],"0$1"]],"0"],DJ:["253","00","(?:2\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[27]"]]]],DK:["45","00","[2-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-9]"]]]],DM:["1","011","(?:[58]\\d\\d|767|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","767$1",0,"767"],DO:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,0,0,0,"8001|8[024]9"],DZ:["213","00","(?:[1-4]|[5-79]\\d|80)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["9"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-8]"],"0$1"]],"0"],EC:["593","00","1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}",[8,9,10,11],[["(\\d)(\\d{3})(\\d{4})","$1 $2-$3",["[2-7]"],"(0$1)",0,"$1-$2-$3"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{3})(\\d{3,4})","$1 $2 $3",["1"]]],"0"],EE:["372","00","8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88","[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]],["(\\d{4})(\\d{3,4})","$1 $2",["[45]|8(?:00|[1-49])","[45]|8(?:00[1-9]|[1-49])"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],EG:["20","00","[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}",[8,9,10],[["(\\d)(\\d{7,8})","$1 $2",["[23]"],"0$1"],["(\\d{2})(\\d{6,7})","$1 $2",["1[35]|[4-6]|8[2468]|9[235-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[189]"],"0$1"]],"0"],EH:["212","00","[5-8]\\d{8}",[9],0,"0",0,0,0,0,"528[89]"],ER:["291","00","[178]\\d{6}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[178]"],"0$1"]],"0"],ES:["34","00","[5-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]00"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-9]"]]]],ET:["251","00","(?:11|[2-579]\\d)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-579]"],"0$1"]],"0"],FI:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}",[5,6,7,8,9,10,11,12],[["(\\d)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"0$1"]],"0",0,0,0,0,"1[03-79]|[2-9]",0,"00"],FJ:["679","0(?:0|52)","45\\d{5}|(?:0800\\d|[235-9])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1 $2",["[235-9]|45"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]]],0,0,0,0,0,0,0,"00"],FK:["500","00","[2-7]\\d{4}",[5]],FM:["691","00","(?:[39]\\d\\d|820)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[389]"]]]],FO:["298","00","[2-9]\\d{5}",[6],[["(\\d{6})","$1",["[2-9]"]]],0,0,"(10(?:01|[12]0|88))"],FR:["33","00","[1-9]\\d{8}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0 $1"],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[1-79]"],"0$1"]],"0"],GA:["241","00","(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}",[7,8],[["(\\d)(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-7]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["11|[67]"],"0$1"]],0,0,"0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})","$1"],GB:["44","00","[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}",[7,9,10],[["(\\d{3})(\\d{4})","$1 $2",["800","8001","80011","800111","8001111"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["845","8454","84546","845464"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["800"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["1(?:38|5[23]|69|76|94)","1(?:(?:38|69)7|5(?:24|39)|768|946)","1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["1(?:[2-69][02-9]|[78])"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[25]|7(?:0|6[02-9])","[25]|7(?:0|6(?:[03-9]|2[356]))"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[1389]"],"0$1"]],"0",0,0,0,0,0,[["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0-579])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|50))\\d)|2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d\\d|1(?:[0-7]\\d\\d|8(?:[02]\\d|1[0-46-9])))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}",[9,10]],["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]],0," x"],GD:["1","011","(?:473|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","473$1",0,"473"],GE:["995","00","(?:[3-57]\\d\\d|800)\\d{6}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["32"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[57]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[348]"],"0$1"]],"0"],GF:["594","00","[56]94\\d{6}|(?:80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[56]|9[47]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[89]"],"0$1"]],"0"],GG:["44","00","(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?",[7,9,10],0,"0",0,"([25-9]\\d{5})$|0","1481$1",0,0,[["1481[25-9]\\d{5}",[10]],["7(?:(?:781|839)\\d|911[17])\\d{5}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]]],GH:["233","00","(?:[235]\\d{3}|800)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[235]"],"0$1"]],"0"],GI:["350","00","(?:[25]\\d|60)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["2"]]]],GL:["299","00","(?:19|[2-689]\\d|70)\\d{4}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["19|[2-9]"]]]],GM:["220","00","[2-9]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],GN:["224","00","722\\d{6}|(?:3|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["3"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[67]"]]]],GP:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0",0,0,0,0,0,[["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1289]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-2])\\d{4}"]]],GQ:["240","00","222\\d{6}|(?:3\\d|55|[89]0)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235]"]],["(\\d{3})(\\d{6})","$1 $2",["[89]"]]]],GR:["30","00","5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}",[10,11,12],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["21|7"]],["(\\d{4})(\\d{6})","$1 $2",["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2689]"]],["(\\d{3})(\\d{3,4})(\\d{5})","$1 $2 $3",["8"]]]],GT:["502","00","(?:1\\d{3}|[2-7])\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],GU:["1","011","(?:[58]\\d\\d|671|900)\\d{7}",[10],0,"1",0,"([3-9]\\d{6})$|1","671$1",0,"671"],GW:["245","00","[49]\\d{8}|4\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["40"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"]]]],GY:["592","001","9008\\d{3}|(?:[2-467]\\d\\d|862)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-46-9]"]]]],HK:["852","00(?:30|5[09]|[126-9]?)","8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}",[5,6,7,8,9,11],[["(\\d{3})(\\d{2,5})","$1 $2",["900","9003"]],["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{3})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]],0,0,0,0,0,0,0,"00"],HN:["504","00","8\\d{10}|[237-9]\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1-$2",["[237-9]"]]]],HR:["385","00","(?:[24-69]\\d|3[0-79])\\d{7}|80\\d{5,7}|[1-79]\\d{7}|6\\d{5,6}",[6,7,8,9],[["(\\d{2})(\\d{2})(\\d{2,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",["[67]"],"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-5]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"]],"0"],HT:["509","00","(?:[2-489]\\d|55)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[2-589]"]]]],HU:["36","00","[235-7]\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"06 $1"]],"06"],ID:["62","00[89]","(?:(?:00[1-9]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["15"]],["(\\d{2})(\\d{5,9})","$1 $2",["2[124]|[36]1"],"(0$1)"],["(\\d{3})(\\d{5,7})","$1 $2",["800"],"0$1"],["(\\d{3})(\\d{5,8})","$1 $2",["[2-79]"],"(0$1)"],["(\\d{3})(\\d{3,4})(\\d{3})","$1-$2-$3",["8[1-35-9]"],"0$1"],["(\\d{3})(\\d{6,8})","$1 $2",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["804"],"0$1"],["(\\d{3})(\\d)(\\d{3})(\\d{3})","$1 $2 $3 $4",["80"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1-$2-$3",["8"],"0$1"]],"0"],IE:["353","00","(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["2[24-9]|47|58|6[237-9]|9[35-9]"],"(0$1)"],["(\\d{3})(\\d{5})","$1 $2",["[45]0"],"(0$1)"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["1"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2569]|4[1-69]|7[14]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["81"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[78]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["4"],"(0$1)"],["(\\d{2})(\\d)(\\d{3})(\\d{4})","$1 $2 $3 $4",["8"],"0$1"]],"0"],IL:["972","0(?:0|1[2-9])","1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}",[7,8,9,10,11,12],[["(\\d{4})(\\d{3})","$1-$2",["125"]],["(\\d{4})(\\d{2})(\\d{2})","$1-$2-$3",["121"]],["(\\d)(\\d{3})(\\d{4})","$1-$2-$3",["[2-489]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1-$2-$3",["12"]],["(\\d{4})(\\d{6})","$1-$2",["159"]],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3-$4",["1[7-9]"]],["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})","$1-$2 $3-$4",["15"]]],"0"],IM:["44","00","1624\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([25-8]\\d{5})$|0","1624$1",0,"74576|(?:16|7[56])24"],IN:["91","00","(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}",[8,9,10,11,12,13],[["(\\d{8})","$1",["5(?:0|2[23]|3[03]|[67]1|88)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"],0,1],["(\\d{4})(\\d{4,5})","$1 $2",["180","1800"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["140"],0,1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["11|2[02]|33|4[04]|79[1-7]|80[2-46]","11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])","11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"],"0$1",1],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807","1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]","1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"],"0$1",1],["(\\d{5})(\\d{5})","$1 $2",["[6-9]"],"0$1",1],["(\\d{4})(\\d{2,4})(\\d{4})","$1 $2 $3",["1(?:6|8[06])","1(?:6|8[06]0)"],0,1],["(\\d{4})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["18"],0,1]],"0"],IO:["246","00","3\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["3"]]]],IQ:["964","00","(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-6]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],IR:["98","00","[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}",[4,5,6,7,10],[["(\\d{4,5})","$1",["96"],"0$1"],["(\\d{2})(\\d{4,5})","$1 $2",["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[1-8]"],"0$1"]],"0"],IS:["354","00|1(?:0(?:01|[12]0)|100)","(?:38\\d|[4-9])\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["[4-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["3"]]],0,0,0,0,0,0,0,"00"],IT:["39","00","0\\d{5,10}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\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]"]],["(\\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,[["0669[0-79]\\d{1,6}|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[9,10]],["80(?:0\\d{3}|3)\\d{3}",[6,9]],["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}",[6,8,9,10]],["1(?:78\\d|99)\\d{6}",[9,10]],0,0,0,["55\\d{8}",[10]],["84(?:[08]\\d{3}|[17])\\d{3}",[6,9]]]],JE:["44","00","1534\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([0-24-8]\\d{5})$|0","1534$1",0,0,[["1534[0-24-8]\\d{5}"],["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97[7-9]))\\d{5}"],["80(?:07(?:35|81)|8901)\\d{4}"],["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"],["701511\\d{4}"],0,["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"],["56\\d{8}"]]],JM:["1","011","(?:[58]\\d\\d|658|900)\\d{7}",[10],0,"1",0,0,0,0,"658|876"],JO:["962","00","(?:(?:[2689]|7\\d)\\d|32|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"],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|63)|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]|636)|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]|636[457-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[045]|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[27-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])|5(?:2|3[045]|4[0-369]|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])|49|51|6(?:[0-24]|36|5[0-3589]|72|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]))|(?:49|55|83)[29]|(?: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]|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]|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[23]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|72|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]","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]|7[015-9]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17|3[015-9]))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3[045]|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(?:[019]|4[1-3]|6(?:[0-47-9]|5[01346-9])))|3(?:[29]|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[23]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|72|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|829(?:2|66)|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"],KE:["254","000","(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}",[7,8,9,10],[["(\\d{2})(\\d{5,7})","$1 $2",["[24-6]"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[17]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0"],KG:["996","00","8\\d{9}|(?:[235-8]\\d|99)\\d{7}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["3(?:1[346]|[24-79])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235-79]|88"],"0$1"],["(\\d{3})(\\d{3})(\\d)(\\d{2,3})","$1 $2 $3 $4",["8"],"0$1"]],"0"],KH:["855","00[14-9]","1\\d{9}|[1-9]\\d{7,8}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],KI:["686","00","(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}",[5,8],0,"0"],KM:["269","00","[3478]\\d{6}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[3478]"]]]],KN:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","869$1",0,"869"],KP:["850","00|99","85\\d{6}|(?:19\\d|[2-7])\\d{7}",[8,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"]],"0"],KR:["82","00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))","00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}",[5,6,8,9,10,11,12,13,14],[["(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1"],["(\\d{4})(\\d{4})","$1-$2",["1"]],["(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1"]],"0",0,"0(8(?:[1-46-8]|5\\d\\d))?"],KW:["965","00","18\\d{5}|(?:[2569]\\d|41)\\d{6}",[7,8],[["(\\d{4})(\\d{3,4})","$1 $2",["[169]|2(?:[235]|4[1-35-9])|52"]],["(\\d{3})(\\d{5})","$1 $2",["[245]"]]]],KY:["1","011","(?:345|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","345$1",0,"345"],KZ:["7","810","(?:33622|8\\d{8})\\d{5}|[78]\\d{9}",[10,14],0,"8",0,0,0,0,"33|7",0,"8~10"],LA:["856","00","[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2[13]|3[14]|[4-8]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["30[013-9]"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[23]"],"0$1"]],"0"],LB:["961","00","[27-9]\\d{7}|[13-9]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[13-69]|7(?:[2-57]|62|8[0-7]|9[04-9])|8[02-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27-9]"]]],"0"],LC:["1","011","(?:[58]\\d\\d|758|900)\\d{7}",[10],0,"1",0,"([2-8]\\d{6})$|1","758$1",0,"758"],LI:["423","00","[68]\\d{8}|(?:[2378]\\d|90)\\d{5}",[7,9],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2379]|8(?:0[09]|7)","[2379]|8(?:0(?:02|9)|7)"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["69"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]],"0",0,"(1001)|0"],LK:["94","00","[1-9]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[1-689]"],"0$1"]],"0"],LR:["231","00","(?:[25]\\d|33|77|88)\\d{7}|(?:2\\d|[4-6])\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23578]"],"0$1"]],"0"],LS:["266","00","(?:[256]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2568]"]]]],LT:["370","00","(?:[3469]\\d|52|[78]0)\\d{6}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["52[0-7]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",0,"[08]"],LU:["352","00","35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}",[4,5,6,7,8,9,10,11],[["(\\d{2})(\\d{3})","$1 $2",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["20[2-689]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4",["2(?:[0367]|4[3-8])"]],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["80[01]|90[015]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["20"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4 $5",["2(?:[0367]|4[3-8])"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})","$1 $2 $3 $4",["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]],0,0,"(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"],LV:["371","00","(?:[268]\\d|90)\\d{6}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[269]|8[01]"]]]],LY:["218","00","[2-9]\\d{8}",[9],[["(\\d{2})(\\d{7})","$1-$2",["[2-9]"],"0$1"]],"0"],MA:["212","00","[5-8]\\d{8}",[9],[["(\\d{5})(\\d{4})","$1-$2",["5(?:29|38)","5(?:29[1289]|389)","529(?:1[1-46-9]|2[013-8]|90)|5(?:298|389)[0-46-9]"],"0$1"],["(\\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-489]|3[5-9]|9)|892","5(?:2(?:[2-49]|8[235-9])|3[5-9]|9)|892"],"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,[["5293[01]\\d{4}|5(?:2(?:[0-25-7]\\d|3[1-578]|4[02-46-8]|8[0235-7]|9[0-289])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[0189]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"],["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[017]\\d|2[0-2]|6[0-8]|8[0-3]))\\d{6}"],["80\\d{7}"],["89\\d{7}"],0,0,0,0,["592(?:4[0-2]|93)\\d{4}"]]],MC:["377","00","(?:[3489]|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["4"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[389]"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["6"],"0$1"]],"0"],MD:["373","00","(?:[235-7]\\d|[89]0)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["22|3"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[25-7]"],"0$1"]],"0"],ME:["382","00","(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"0$1"]],"0"],MF:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:0[079]|[14]3|[27][79]|30|5[0-268]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-2])\\d{4}"]]],MG:["261","00","[23]\\d{8}",[9],[["(\\d{2})(\\d{2})(\\d{3})(\\d{2})","$1 $2 $3 $4",["[23]"],"0$1"]],"0",0,"([24-9]\\d{6})$|0","20$1"],MH:["692","011","329\\d{4}|(?:[256]\\d|45)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1-$2",["[2-6]"]]],"1"],MK:["389","00","[2-578]\\d{7}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2|34[47]|4(?:[37]7|5[47]|64)"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[347]"],"0$1"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["[58]"],"0$1"]],"0"],ML:["223","00","[24-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-9]"]]]],MM:["95","00","1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}",[6,7,8,9,10],[["(\\d)(\\d{2})(\\d{3})","$1 $2 $3",["16|2"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[4-7]|8[1-35]"],"0$1"],["(\\d)(\\d{3})(\\d{4,6})","$1 $2 $3",["9(?:2[0-4]|[35-9]|4[137-9])"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["92"],"0$1"],["(\\d)(\\d{5})(\\d{4})","$1 $2 $3",["9"],"0$1"]],"0"],MN:["976","001","[12]\\d{7,9}|[5-9]\\d{7}",[8,9,10],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[12]1"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[5-9]"]],["(\\d{3})(\\d{5,6})","$1 $2",["[12]2[1-3]"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["[12](?:27|3[2-8]|4[2-68]|5[1-4689])","[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["[12]"],"0$1"]],"0"],MO:["853","00","0800\\d{3}|(?:28|[68]\\d)\\d{6}",[7,8],[["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{4})(\\d{4})","$1 $2",["[268]"]]]],MP:["1","011","[58]\\d{9}|(?:67|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","670$1",0,"670"],MQ:["596","00","596\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],MR:["222","00","(?:[2-4]\\d\\d|800)\\d{5}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-48]"]]]],MS:["1","011","(?:[58]\\d\\d|664|900)\\d{7}",[10],0,"1",0,"([34]\\d{6})$|1","664$1",0,"664"],MT:["356","00","3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2357-9]"]]]],MU:["230","0(?:0|[24-7]0|3[03])","(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[2-46]|8[013]"]],["(\\d{4})(\\d{4})","$1 $2",["[57]"]],["(\\d{5})(\\d{5})","$1 $2",["8"]]],0,0,0,0,0,0,0,"020"],MV:["960","0(?:0|19)","(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}",[7,10],[["(\\d{3})(\\d{4})","$1-$2",["[34679]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"]]],0,0,0,0,0,0,0,"00"],MW:["265","00","(?:[1289]\\d|31|77)\\d{7}|1\\d{6}",[7,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["1[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[137-9]"],"0$1"]],"0"],MX:["52","0[09]","1(?:(?:[27]2|44|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[01]\\d|2[13-9]|[35][1-9]|4[0-35-9]|6[0-46-9]|7[013-9]|8[1-79]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",0,0,0,0,"00"],MY:["60","00","1\\d{8,9}|(?:3\\d|[4-9])\\d{7}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1-$2 $3",["[4-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1-$2 $3",["1(?:[02469]|[378][1-9]|53)|8","1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2 $3",["3"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3-$4",["1(?:[367]|80)"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2 $3",["15"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2 $3",["1"],"0$1"]],"0"],MZ:["258","00","(?:2|8\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2|8[2-79]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],NA:["264","00","[68]\\d{7,8}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["87"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],NC:["687","00","(?:050|[2-57-9]\\d\\d)\\d{3}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1.$2.$3",["[02-57-9]"]]]],NE:["227","00","[027-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["08"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[089]|2[013]|7[04]"]]]],NF:["672","00","[13]\\d{5}",[6],[["(\\d{2})(\\d{4})","$1 $2",["1[0-3]"]],["(\\d)(\\d{5})","$1 $2",["[13]"]]],0,0,"([0-258]\\d{4})$","3$1"],NG:["234","009","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["[78]"],"0$1"],["(\\d{3})(\\d{5})(\\d{5,6})","$1 $2 $3",["[78]"],"0$1"]],"0"],NI:["505","00","(?:1800|[25-8]\\d{3})\\d{4}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[125-8]"]]]],NL:["31","00","(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}",[5,6,7,8,9,10,11],[["(\\d{3})(\\d{4,7})","$1 $2",["[89]0"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["66"],"0$1"],["(\\d)(\\d{8})","$1 $2",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-578]|91"],"0$1"],["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3",["9"],"0$1"]],"0"],NO:["47","00","(?:0|[2-9]\\d{3})\\d{4}",[5,8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[489]|59"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-7]"]]],0,0,0,0,0,"[02-689]|7[0-8]"],NP:["977","00","(?:1\\d|9)\\d{9}|[1-9]\\d{7}",[8,10,11],[["(\\d)(\\d{7})","$1-$2",["1[2-6]"],"0$1"],["(\\d{2})(\\d{6})","$1-$2",["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"],"0$1"],["(\\d{3})(\\d{7})","$1-$2",["9"]]],"0"],NR:["674","00","(?:444|(?:55|8\\d)\\d|666)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[4-68]"]]]],NU:["683","00","(?:[47]|888\\d)\\d{3}",[4,7],[["(\\d{3})(\\d{4})","$1 $2",["8"]]]],NZ:["64","0(?:0|161)","[29]\\d{7,9}|50\\d{5}(?:\\d{2,3})?|6[0-35-9]\\d{6}|7\\d{7,8}|8\\d{4,9}|(?:11\\d|[34])\\d{7}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,8})","$1 $2",["8[1-579]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["50[036-8]|[89]0","50(?:[0367]|88)|[89]0"],"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)|[59]|80"],"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|86"],"0$1"]],"0",0,0,0,0,0,0,"00"],OM:["968","00","(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}",[7,8,9],[["(\\d{3})(\\d{4,6})","$1 $2",["[58]"]],["(\\d{2})(\\d{6})","$1 $2",["2"]],["(\\d{4})(\\d{4})","$1 $2",["[179]"]]]],PA:["507","00","(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}",[7,8,10,11],[["(\\d{3})(\\d{4})","$1-$2",["[1-57-9]"]],["(\\d{4})(\\d{4})","$1-$2",["[68]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]]],PE:["51","00|19(?:1[124]|77|90)00","(?:[14-8]|9\\d)\\d{7}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["80"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["1"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[4-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"]]],"0",0,0,0,0,0,0,"00"," Anexo "],PF:["689","00","4\\d{5}(?:\\d{2})?|8\\d{7,8}",[6,8,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["44"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4|8[7-9]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],PG:["675","00|140[1-3]","(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["18|[2-69]|85"]],["(\\d{4})(\\d{4})","$1 $2",["[78]"]]],0,0,0,0,0,0,0,"00"],PH:["63","00","(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}",[6,8,9,10,11,12,13],[["(\\d)(\\d{5})","$1 $2",["2"],"(0$1)"],["(\\d{4})(\\d{4,6})","$1 $2",["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2","3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"],"(0$1)"],["(\\d{5})(\\d{4})","$1 $2",["346|4(?:27|9[35])|883","3469|4(?:279|9(?:30|56))|8834"],"(0$1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|8[2-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})","$1 $2 $3 $4",["1"]]],"0"],PK:["92","00","122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,7})","$1 $2 $3",["[89]0"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["1"]],["(\\d{3})(\\d{6,7})","$1 $2",["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])","9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"],"(0$1)"],["(\\d{2})(\\d{7,8})","$1 $2",["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"],"(0$1)"],["(\\d{5})(\\d{5})","$1 $2",["58"],"(0$1)"],["(\\d{3})(\\d{7})","$1 $2",["3"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[24-9]"],"(0$1)"]],"0"],PL:["48","00","(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}",[6,7,8,9,10],[["(\\d{5})","$1",["19"]],["(\\d{3})(\\d{3})","$1 $2",["11|20|64"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1","(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["64"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[2-8]|[2-7]|8[1-79]|9[145]"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["8"]]]],PM:["508","00","[45]\\d{5}|(?:708|80\\d)\\d{6}",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[45]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],PR:["1","011","(?:[589]\\d\\d|787)\\d{7}",[10],0,"1",0,0,0,0,"787|939"],PS:["970","00","[2489]2\\d{6}|(?:1\\d|5)\\d{8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2489]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["5"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],PT:["351","00","1693\\d{5}|(?:[26-9]\\d|30)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["2[12]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["16|[236-9]"]]]],PW:["680","01[12]","(?:[24-8]\\d\\d|345|900)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],PY:["595","00","59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3,6})","$1 $2",["[2-9]0"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"],"(0$1)"],["(\\d{3})(\\d{4,5})","$1 $2",["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["87"]],["(\\d{3})(\\d{6})","$1 $2",["9(?:[5-79]|8[1-6])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["9"]]],"0"],QA:["974","00","800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}",[7,8,9,11],[["(\\d{3})(\\d{4})","$1 $2",["2[16]|8"]],["(\\d{4})(\\d{4})","$1 $2",["[3-7]"]]]],RE:["262","00","(?:26|[689]\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2689]"],"0$1"]],"0",0,0,0,0,0,[["26(?:2\\d\\d|3(?:0\\d|1[0-3]))\\d{4}"],["(?:69(?:2\\d\\d|3(?:0[0-46]|1[013]|2[0-2]|3[0-39]|4\\d|5[0-5]|6[0-6]|7[0-27]|8[0-8]|9[0-479]))|9(?:399[0-3]|479[0-2]|76(?:2[27]|3[0-37]|9\\d)))\\d{4}"],["80\\d{7}"],["89[1-37-9]\\d{6}"],0,0,0,0,0,["8(?:1[019]|2[0156]|84|90)\\d{6}"]]],RO:["40","00","(?:[2378]\\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",["[237-9]"],"0$1"]],"0",0,0,0,0,0,0,0," int "],RS:["381","00","38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}",[6,7,8,9,10,11,12],[["(\\d{3})(\\d{3,9})","$1 $2",["(?:2[389]|39)0|[7-9]"],"0$1"],["(\\d{2})(\\d{5,10})","$1 $2",["[1-36]"],"0$1"]],"0"],RU:["7","810","8\\d{13}|[347-9]\\d{9}",[10,14],[["(\\d{4})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-8]|2[1-9])","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"],"8 ($1)",1],["(\\d{5})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-68]|2[1-9])","7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))","7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[349]|8(?:[02-7]|1[1-8])"],"8 ($1)",1],["(\\d{4})(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3 $4",["8"],"8 ($1)"]],"8",0,0,0,0,"3[04-689]|[489]",0,"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",["[7-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"]]],"0"],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"],SB:["677","0[01]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\d|64)\\d{5}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[246]|9[57]"]]],0,0,0,0,0,0,0,"00"],SD:["249","00","[19]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[19]"],"0$1"]],"0"],SE:["46","00","(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{2,3})(\\d{2})","$1-$2 $3",["20"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{4})","$1-$2",["9(?:00|39|44|9)"],"0$1",0,"$1 $2"],["(\\d{2})(\\d{3})(\\d{2})","$1-$2 $3",["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3"],["(\\d)(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2,3})(\\d{2})","$1-$2 $3",["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{2,3})(\\d{3})","$1-$2 $3",["9(?:00|39|44)"],"0$1",0,"$1 $2 $3"],["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3 $4"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["10|7"],"0$1",0,"$1 $2 $3 $4"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1-$2 $3 $4",["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{3})","$1-$2 $3 $4",["9"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4 $5",["[26]"],"0$1",0,"$1 $2 $3 $4 $5"]],"0"],SG:["65","0[0-3]\\d","(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}",[8,10,11],[["(\\d{4})(\\d{4})","$1 $2",["[369]|8(?:0[1-6]|[1-9])"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]],["(\\d{4})(\\d{4})(\\d{3})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],SH:["290","00","(?:[256]\\d|8)\\d{3}",[4,5],0,0,0,0,0,0,"[256]"],SI:["386","00|10(?:22|66|88|99)","[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}",[5,6,7,8],[["(\\d{2})(\\d{3,6})","$1 $2",["8[09]|9"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["59|8"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37][01]|4[0139]|51|6"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-57]"],"(0$1)"]],"0",0,0,0,0,0,0,"00"],SJ:["47","00","0\\d{4}|(?:[489]\\d|[57]9)\\d{6}",[5,8],0,0,0,0,0,0,"79"],SK:["421","00","[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}",[6,7,9],[["(\\d)(\\d{2})(\\d{3,4})","$1 $2 $3",["21"],"0$1"],["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["[3-5][1-8]1","[3-5][1-8]1[67]"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1/$2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[689]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1/$2 $3 $4",["[3-5]"],"0$1"]],"0"],SL:["232","00","(?:[237-9]\\d|66)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[236-9]"],"(0$1)"]],"0"],SM:["378","00","(?:0549|[5-7]\\d)\\d{6}",[8,10],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-7]"]],["(\\d{4})(\\d{6})","$1 $2",["0"]]],0,0,"([89]\\d{5})$","0549$1"],SN:["221","00","(?:[378]\\d|93)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[379]"]]]],SO:["252","00","[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}",[6,7,8,9],[["(\\d{2})(\\d{4})","$1 $2",["8[125]"]],["(\\d{6})","$1",["[134]"]],["(\\d)(\\d{6})","$1 $2",["[15]|2[0-79]|3[0-46-8]|4[0-7]"]],["(\\d)(\\d{7})","$1 $2",["(?:2|90)4|[67]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[3478]|64|90"]],["(\\d{2})(\\d{5,7})","$1 $2",["1|28|6(?:0[5-7]|[1-35-9])|9[2-9]"]]],"0"],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]"]]]],SS:["211","00","[19]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[19]"],"0$1"]],"0"],ST:["239","00","(?:22|9\\d)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[29]"]]]],SV:["503","00","[267]\\d{7}|[89]00\\d{4}(?:\\d{4})?",[7,8,11],[["(\\d{3})(\\d{4})","$1 $2",["[89]"]],["(\\d{4})(\\d{4})","$1 $2",["[267]"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[89]"]]]],SX:["1","011","7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"(5\\d{6})$|1","721$1",0,"721"],SY:["963","00","[1-39]\\d{8}|[1-5]\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-5]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1",1]],"0"],SZ:["268","00","0800\\d{4}|(?:[237]\\d|900)\\d{6}",[8,9],[["(\\d{4})(\\d{4})","$1 $2",["[0237]"]],["(\\d{5})(\\d{4})","$1 $2",["9"]]]],TA:["290","00","8\\d{3}",[4],0,0,0,0,0,0,"8"],TC:["1","011","(?:[58]\\d\\d|649|900)\\d{7}",[10],0,"1",0,"([2-479]\\d{6})$|1","649$1",0,"649"],TD:["235","00|16","(?:22|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],0,0,0,0,0,0,0,"00"],TG:["228","00","[279]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[279]"]]]],TH:["66","00[1-9]","(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}",[8,9,10,13],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[13-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],TJ:["992","810","[0-57-9]\\d{8}",[9],[["(\\d{6})(\\d)(\\d{2})","$1 $2 $3",["331","3317"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[34]7|91[78]"]],["(\\d{4})(\\d)(\\d{4})","$1 $2 $3",["3[1-5]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[0-57-9]"]]],0,0,0,0,0,0,0,"8~10"],TK:["690","00","[2-47]\\d{3,6}",[4,5,6,7]],TL:["670","00","7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[2-489]|70"]],["(\\d{4})(\\d{4})","$1 $2",["7"]]]],TM:["993","810","[1-6]\\d{7}",[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",["6"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],TN:["216","00","[2-57-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-57-9]"]]]],TO:["676","00","(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}",[5,7],[["(\\d{2})(\\d{3})","$1-$2",["[2-4]|50|6[09]|7[0-24-69]|8[05]"]],["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{3})(\\d{4})","$1 $2",["[5-9]"]]]],TR:["90","00","4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}",[7,10,12,13],[["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[01589]|90"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",1],["(\\d{3})(\\d{3})(\\d{6,7})","$1 $2 $3",["80"],"0$1",1]],"0"],TT:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-46-8]\\d{6})$|1","868$1",0,"868"],TV:["688","00","(?:2|7\\d\\d|90)\\d{4}",[5,6,7],[["(\\d{2})(\\d{3})","$1 $2",["2"]],["(\\d{2})(\\d{4})","$1 $2",["90"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],TW:["886","0(?:0[25-79]|19)","[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}",[7,8,9,10,11],[["(\\d{2})(\\d)(\\d{4})","$1 $2 $3",["202"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[258]0"],"0$1"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]","[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,5})","$1 $2 $3",["7"],"0$1"]],"0",0,0,0,0,0,0,0,"#"],TZ:["255","00[056]","(?:[25-8]\\d|41|90)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[24]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["5"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[67]"],"0$1"]],"0"],UA:["380","00","[89]\\d{9}|[3-9]\\d{8}",[9,10],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]","6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])","3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|89|9[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0",0,0,0,0,0,0,"0~0"],UG:["256","00[057]","800\\d{6}|(?:[29]0|[347]\\d)\\d{7}",[9],[["(\\d{4})(\\d{5})","$1 $2",["202","2024"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[27-9]|4(?:6[45]|[7-9])"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[34]"],"0$1"]],"0"],US:["1","011","[2-9]\\d{9}|3\\d{6}",[10],[["(\\d{3})(\\d{4})","$1-$2",["310"],0,1],["(\\d{3})(\\d{3})(\\d{4})","($1) $2-$3",["[2-9]"],0,1,"$1-$2-$3"]],"1",0,0,0,0,0,[["(?:4722(?:0[0-35]|27)|505(?:[2-57-9]\\d\\d|6(?:[0-35-9]\\d|4[46])))\\d{4}|(?:2(?:0[1-35-9]|1[02-9]|2[03-589]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[01356]|3[0-24679]|4[167]|5[0-2]|6[014]|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]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}"],[""],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"],["900[2-9]\\d{6}"],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"]]],UY:["598","0(?:0|1[3-9]\\d)","(?:0004|4)\\d{9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}",[7,8,10,13],[["(\\d{3})(\\d{4})","$1 $2",["405|8|90"],"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{4})","$1 $2 $3",["4"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3 $4",["0"]]],"0",0,0,0,0,0,0,"00"," int. "],UZ:["998","810","(?:33|[5-79]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[35-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],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],0,0,0,0,0,0,"06698"],VC:["1","011","(?:[58]\\d\\d|784|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","784$1",0,"784"],VE:["58","00","[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}",[10],[["(\\d{3})(\\d{7})","$1-$2",["[24-689]"],"0$1"]],"0"],VG:["1","011","(?:284|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-578]\\d{6})$|1","284$1",0,"284"],VI:["1","011","[58]\\d{9}|(?:34|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","340$1",0,"340"],VN:["84","00","[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["80"],"0$1",1],["(\\d{4})(\\d{4,6})","$1 $2",["1"],0,1],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[69]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[3578]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["2[48]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["2"],"0$1",1]],"0"],VU:["678","00","[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}",[5,7],[["(\\d{3})(\\d{4})","$1 $2",["[57-9]"]]]],WF:["681","00","(?:40|72)\\d{4}|8\\d{5}(?:\\d{3})?",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[478]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],WS:["685","0","(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}",[5,6,7,10],[["(\\d{5})","$1",["[2-5]|6[1-9]"]],["(\\d{3})(\\d{3,7})","$1 $2",["[68]"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],XK:["383","00","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\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",["[23]"],"0$1"]],"0"],YE:["967","00","(?:1|7\\d)\\d{7}|[1-7]\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-6]|7(?:[24-6]|8[0-7])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"],"0$1"]],"0"],YT:["262","00","(?:(?:(?:26|63)9|80\\d)\\d|9398)\\d{5}",[9],0,"0",0,0,0,0,"269|63|9398"],ZA:["27","00","[1-79]\\d{8}|8\\d{4,9}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,4})","$1 $2",["8[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["8[1-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["860"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],ZM:["260","00","800\\d{6}|(?:21|63|[79]\\d)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[28]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[79]"],"0$1"]],"0"],ZW:["263","00","2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}",[5,6,7,8,9,10],[["(\\d{3})(\\d{3,5})","$1 $2",["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"],"0$1"],["(\\d)(\\d{3})(\\d{2,4})","$1 $2 $3",["[49]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["80"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2","2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)","2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["29[013-9]|39|54"],"0$1"],["(\\d{4})(\\d{3,5})","$1 $2",["(?:25|54)8","258|5483"],"0$1"]],"0"]},nonGeographic:{800:["800",0,"(?:00|[1-9]\\d)\\d{6}",[8],[["(\\d{4})(\\d{4})","$1 $2",["\\d"]]],0,0,0,0,0,0,[0,0,["(?:00|[1-9]\\d)\\d{6}"]]],808:["808",0,"[1-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[1-9]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,0,["[1-9]\\d{7}"]]],870:["870",0,"7\\d{11}|[35-7]\\d{8}",[9,12],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[35-7]"]]],0,0,0,0,0,0,[0,["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]],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,"[0-36-9]\\d{8}",[9],[["(\\d)(\\d{3})(\\d{5})","$1 $2 $3",["[0-36-9]"]]],0,0,0,0,0,0,[0,["[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,0,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[013-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}"]]]}};function XA(e){return XA="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},XA(e)}function QA(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function eE(e){var t=iE();return function(){var n,r=oE(e);if(t){var i=oE(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return function(e,t){if(t&&("object"===XA(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return tE(e)}(this,n)}}function tE(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function nE(e){var t="function"==typeof Map?new Map:void 0;return nE=function(e){if(null===e||(n=e,-1===Function.toString.call(n).indexOf("[native code]")))return e;var n;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,r)}function r(){return rE(e,arguments,oE(this).constructor)}return r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),aE(r,e)},nE(e)}function rE(e,t,n){return rE=iE()?Reflect.construct:function(e,t,n){var r=[null];r.push.apply(r,t);var i=new(Function.bind.apply(e,r));return n&&aE(i,n.prototype),i},rE.apply(null,arguments)}function iE(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function aE(e,t){return aE=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},aE(e,t)}function oE(e){return oE=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},oE(e)}var sE=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&aE(e,t)}(a,nE(Error));var t,n,r,i=eE(a);function a(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,a),t=i.call(this,e),Object.setPrototypeOf(tE(t),a.prototype),t.name=t.constructor.name,t}return t=a,n&&QA(t.prototype,n),r&&QA(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}(),uE=2,lE=17,cE=3,dE="0-90-9٠-٩۰-۹",fE="".concat("-‐-―−ー-").concat("//").concat("..").concat(" ").concat("()()[]\\[\\]").concat("~⁓∼~");function hE(e,t){e=e.split("-"),t=t.split("-");for(var n=e[0].split("."),r=t[0].split("."),i=0;i<3;i++){var a=Number(n[i]),o=Number(r[i]);if(a>o)return 1;if(o>a)return-1;if(!isNaN(a)&&isNaN(o))return 1;if(isNaN(a)&&!isNaN(o))return-1}return e[1]&&t[1]?e[1]>t[1]?1:e[1]<t[1]?-1:0:!e[1]&&t[1]?1:e[1]&&!t[1]?-1:0}function pE(e){return pE="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},pE(e)}function mE(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _E(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function yE(e,t,n){return t&&_E(e.prototype,t),n&&_E(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}var gE=" ext. ",vE=/^\d+$/,AE=function(){function e(t){mE(this,e),function(e){if(!e)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!wE(e)||!wE(e.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(wE(e)?"an object of shape: { "+Object.keys(e).join(", ")+" }":"a "+OE(e)+": "+e,"."))}(t),this.metadata=t,CE.call(this,t)}return yE(e,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter((function(e){return"001"!==e}))}},{key:"getCountryMetadata",value:function(e){return this.metadata.countries[e]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(e){return void 0!==this.getCountryMetadata(e)}},{key:"hasCallingCode",value:function(e){if(this.getCountryCodesForCallingCode(e))return!0;if(this.nonGeographic()){if(this.nonGeographic()[e])return!0}else{var t=this.countryCallingCodes()[e];if(t&&1===t.length&&"001"===t[0])return!0}}},{key:"isNonGeographicCallingCode",value:function(e){return this.nonGeographic()?!!this.nonGeographic()[e]:!this.getCountryCodesForCallingCode(e)}},{key:"country",value:function(e){return this.selectNumberingPlan(e)}},{key:"selectNumberingPlan",value:function(e,t){if(e&&vE.test(e)&&(t=e,e=null),e&&"001"!==e){if(!this.hasCountry(e))throw new Error("Unknown country: ".concat(e));this.numberingPlan=new EE(this.getCountryMetadata(e),this)}else if(t){if(!this.hasCallingCode(t))throw new Error("Unknown calling code: ".concat(t));this.numberingPlan=new EE(this.getNumberingPlanMetadata(t),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(e){var t=this.countryCallingCodes()[e];if(t){if(1===t.length&&3===t[0].length)return;return t}}},{key:"getCountryCodeForCallingCode",value:function(e){var t=this.getCountryCodesForCallingCode(e);if(t)return t[0]}},{key:"getNumberingPlanMetadata",value:function(e){var t=this.getCountryCodeForCallingCode(e);if(t)return this.getCountryMetadata(t);if(this.nonGeographic()){var n=this.nonGeographic()[e];if(n)return n}else{var r=this.countryCallingCodes()[e];if(r&&1===r.length&&"001"===r[0])return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(e){return this.numberingPlan.type(e)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(e){return this.selectNumberingPlan(e)}},{key:"hasSelectedNumberingPlan",value:function(){return void 0!==this.numberingPlan}}]),e}(),EE=function(){function e(t,n){mE(this,e),this.globalMetadataObject=n,this.metadata=t,CE.call(this,n.metadata)}return yE(e,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(e){return e[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var e=this,t=this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[];return t.map((function(t){return new bE(t,e)}))}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(e){return e[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return(!this.types()||0!==this.types().length)&&!!this.types()}},{key:"type",value:function(e){if(this.hasTypes()&&TE(this.types(),e))return new ME(TE(this.types(),e),this)}},{key:"ext",value:function(){return this.v1||this.v2?gE:this.metadata[13]||gE}}]),e}(),bE=function(){function e(t,n){mE(this,e),this._format=t,this.metadata=n}return yE(e,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!(!this.nationalPrefixFormattingRule()||SE.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),e}(),SE=/^\(?\$1\)?$/,ME=function(){function e(t,n){mE(this,e),this.type=t,this.metadata=n}return yE(e,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),e}();function TE(e,t){switch(t){case"FIXED_LINE":return e[0];case"MOBILE":return e[1];case"TOLL_FREE":return e[2];case"PREMIUM_RATE":return e[3];case"PERSONAL_NUMBER":return e[4];case"VOICEMAIL":return e[5];case"UAN":return e[6];case"PAGER":return e[7];case"VOIP":return e[8];case"SHARED_COST":return e[9]}}var wE=function(e){return"object"===pE(e)},OE=function(e){return pE(e)};function NE(e,t){if((t=new AE(t)).hasCountry(e))return t.country(e).countryCallingCode();throw new Error("Unknown country: ".concat(e))}function CE(e){var t=e.version;"number"==typeof t?(this.v1=1===t,this.v2=2===t,this.v3=3===t,this.v4=4===t):t?-1===hE(t,"1.2.0")?this.v2=!0:-1===hE(t,"1.7.35")?this.v3=!0:this.v4=!0:this.v1=!0}var LE=function(e){return"([".concat(dE,"]{1,").concat(e,"})")};function DE(e){var t="[ \\t,]*",n="[:\\..]?[ \\t,-]*",r="#?",i="[ \\t]*";return";ext="+LE("20")+"|"+(t+"(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)"+n+LE("20")+r)+"|"+(t+"(?:[xx##~~]|int|int)"+n+LE("9")+r)+"|"+("[- ]+"+LE("6")+"#")+"|"+(i+"(?:,{2}|;)"+n+LE("15")+r)+"|"+(i+"(?:,)+"+n+LE("9")+r)}var $E="["+dE+"]{"+uE+"}",xE="[++]{0,1}(?:["+fE+"]*["+dE+"]){3,}["+fE+dE+"]*",IE=new RegExp("^[++]{0,1}(?:["+fE+"]*["+dE+"]){1,2}$","i"),kE=xE+"(?:"+DE()+")?",zE=new RegExp("^"+$E+"$|^"+kE+"$","i");var RE=new RegExp("(?:"+DE()+")$","i");var ZE={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function PE(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return FE(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return FE(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function FE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function UE(e){for(var t,n="",r=PE(e.split(""));!(t=r()).done;){n+=BE(t.value,n)||""}return n}function BE(e,t){if("+"===e){if(t)return;return"+"}return function(e){return ZE[e]}(e)}function VE(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return jE(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return jE(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function jE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function HE(e,t){return YE(e,void 0,t)}function YE(e,t,n){var r=n.type(t),i=r&&r.possibleLengths()||n.possibleLengths();if(!i)return"IS_POSSIBLE";if("FIXED_LINE_OR_MOBILE"===t){if(!n.type("FIXED_LINE"))return YE(e,"MOBILE",n);var a=n.type("MOBILE");a&&(i=function(e,t){for(var n,r=e.slice(),i=VE(t);!(n=i()).done;){var a=n.value;e.indexOf(a)<0&&r.push(a)}return r.sort((function(e,t){return e-t}))}(i,a.possibleLengths()))}else if(t&&!r)return"INVALID_LENGTH";var o=e.length,s=i[0];return s===o?"IS_POSSIBLE":s>o?"TOO_SHORT":i[i.length-1]<o?"TOO_LONG":i.indexOf(o,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function GE(e,t){return"IS_POSSIBLE"===HE(e,t)}function WE(e,t){return e=e||"",new RegExp("^(?:"+t+")$").test(e)}function qE(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return KE(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return KE(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function KE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var JE=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function XE(e,t,n){if(t=t||{},e.country){(n=new AE(n)).selectNumberingPlan(e.country,e.countryCallingCode);var r=t.v2?e.nationalNumber:e.phone;if(WE(r,n.nationalNumberPattern())){if(QE(r,"FIXED_LINE",n))return n.type("MOBILE")&&""===n.type("MOBILE").pattern()?"FIXED_LINE_OR_MOBILE":n.type("MOBILE")?QE(r,"MOBILE",n)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE":"FIXED_LINE_OR_MOBILE";for(var i,a=qE(JE);!(i=a()).done;){var o=i.value;if(QE(r,o,n))return o}}}}function QE(e,t,n){return!(!(t=n.type(t))||!t.pattern())&&(!(t.possibleLengths()&&t.possibleLengths().indexOf(e.length)<0)&&WE(e,t.pattern()))}function eb(e,t,n){var r=new AE(n).getCountryCodesForCallingCode(e);return r?r.filter((function(e){return function(e,t,n){var r=new AE(n);if(r.selectNumberingPlan(t),r.numberingPlan.possibleLengths().indexOf(e.length)>=0)return!0;return!1}(t,e,n)})):[]}var tb=/(\$\d)/;function nb(e,t,n){var r=n.useInternationalFormat,i=n.withNationalPrefix;n.carrierCode,n.metadata;var a=e.replace(new RegExp(t.pattern()),r?t.internationalFormat():i&&t.nationalPrefixFormattingRule()?t.format().replace(tb,t.nationalPrefixFormattingRule()):t.format());return r?function(e){return e.replace(new RegExp("[".concat(fE,"]+"),"g")," ").trim()}(a):a}var rb=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function ib(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return ab(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ab(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function ab(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function ob(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function sb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ob(Object(n),!0).forEach((function(t){ub(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ob(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ub(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var lb={formatExtension:function(e,t,n){return"".concat(e).concat(n.ext()).concat(t)}};function cb(e,t,n,r){if(n=n?sb(sb({},lb),n):lb,r=new AE(r),e.country&&"001"!==e.country){if(!r.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));r.country(e.country)}else{if(!e.countryCallingCode)return e.phone||"";r.selectNumberingPlan(e.countryCallingCode)}var i,a=r.countryCallingCode(),o=n.v2?e.nationalNumber:e.phone;switch(t){case"NATIONAL":return o?fb(i=db(o,e.carrierCode,"NATIONAL",r,n),e.ext,r,n.formatExtension):"";case"INTERNATIONAL":return o?(i=db(o,null,"INTERNATIONAL",r,n),fb(i="+".concat(a," ").concat(i),e.ext,r,n.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(o);case"RFC3966":return function(e){var t=e.number,n=e.ext;if(!t)return"";if("+"!==t[0])throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(t).concat(n?";ext="+n:"")}({number:"+".concat(a).concat(o),ext:e.ext});case"IDD":if(!n.fromCountry)return;var s=function(e,t,n,r,i){var a=NE(r,i.metadata);if(a===n){var o=db(e,t,"NATIONAL",i);return"1"===n?n+" "+o:o}var s=function(e,t,n){var r=new AE(n);return r.selectNumberingPlan(e,t),r.defaultIDDPrefix()?r.defaultIDDPrefix():rb.test(r.IDDPrefix())?r.IDDPrefix():void 0}(r,void 0,i.metadata);if(s)return"".concat(s," ").concat(n," ").concat(db(e,null,"INTERNATIONAL",i))}(o,e.carrierCode,a,n.fromCountry,r);return fb(s,e.ext,r,n.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(t,'"'))}}function db(e,t,n,r,i){var a=function(e,t){for(var n,r=ib(e);!(n=r()).done;){var i=n.value;if(i.leadingDigitsPatterns().length>0){var a=i.leadingDigitsPatterns()[i.leadingDigitsPatterns().length-1];if(0!==t.search(a))continue}if(WE(t,i.pattern()))return i}}(r.formats(),e);return a?nb(e,a,{useInternationalFormat:"INTERNATIONAL"===n,withNationalPrefix:!a.nationalPrefixIsOptionalWhenFormattingInNationalFormat()||!i||!1!==i.nationalPrefix,carrierCode:t,metadata:r}):e}function fb(e,t,n,r){return t?r(e,t,n):e}function hb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?hb(Object(n),!0).forEach((function(t){mb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):hb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function mb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _b(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}var yb=function(){function e(t,n,r){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),!t)throw new TypeError("`country` or `countryCallingCode` not passed");if(!n)throw new TypeError("`nationalNumber` not passed");if(!r)throw new TypeError("`metadata` not passed");var i=function(e,t){var n,r,i=new AE(t);gb(e)?(n=e,i.selectNumberingPlan(n),r=i.countryCallingCode()):r=e;return{country:n,countryCallingCode:r}}(t,r),a=i.country,o=i.countryCallingCode;this.country=a,this.countryCallingCode=o,this.nationalNumber=n,this.number="+"+this.countryCallingCode+this.nationalNumber,this.metadata=r}var t,n,r;return t=e,n=[{key:"setExt",value:function(e){this.ext=e}},{key:"getPossibleCountries",value:function(){return this.country?[this.country]:eb(this.countryCallingCode,this.nationalNumber,this.metadata)}},{key:"isPossible",value:function(){return function(e,t,n){if(void 0===t&&(t={}),n=new AE(n),t.v2){if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}else{if(!e.phone)return!1;if(e.country){if(!n.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));n.country(e.country)}else{if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}}if(n.possibleLengths())return GE(e.phone||e.nationalNumber,n);if(e.countryCallingCode&&n.isNonGeographicCallingCode(e.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}(this,{v2:!0},this.metadata)}},{key:"isValid",value:function(){return function(e,t,n){return t=t||{},(n=new AE(n)).selectNumberingPlan(e.country,e.countryCallingCode),n.hasTypes()?void 0!==XE(e,t,n.metadata):WE(t.v2?e.nationalNumber:e.phone,n.nationalNumberPattern())}(this,{v2:!0},this.metadata)}},{key:"isNonGeographic",value:function(){return new AE(this.metadata).isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(e){return this.number===e.number&&this.ext===e.ext}},{key:"getType",value:function(){return XE(this,{v2:!0},this.metadata)}},{key:"format",value:function(e,t){return cb(this,e,t?pb(pb({},t),{},{v2:!0}):{v2:!0},this.metadata)}},{key:"formatNational",value:function(e){return this.format("NATIONAL",e)}},{key:"formatInternational",value:function(e){return this.format("INTERNATIONAL",e)}},{key:"getURI",value:function(e){return this.format("RFC3966",e)}}],n&&_b(t.prototype,n),r&&_b(t,r),Object.defineProperty(t,"prototype",{writable:!1}),e}(),gb=function(e){return/^[A-Z]{2}$/.test(e)};var vb=new RegExp("(["+dE+"])");function Ab(e,t){var n=function(e,t){if(e&&t.numberingPlan.nationalPrefixForParsing()){var n=new RegExp("^(?:"+t.numberingPlan.nationalPrefixForParsing()+")"),r=n.exec(e);if(r){var i,a,o,s=r.length-1,u=s>0&&r[s];if(t.nationalPrefixTransformRule()&&u)i=e.replace(n,t.nationalPrefixTransformRule()),s>1&&(a=r[1]);else{var l=r[0];i=e.slice(l.length),u&&(a=r[1])}if(u){var c=e.indexOf(r[1]);e.slice(0,c)===t.numberingPlan.nationalPrefix()&&(o=t.numberingPlan.nationalPrefix())}else o=r[0];return{nationalNumber:i,nationalPrefix:o,carrierCode:a}}}return{nationalNumber:e}}(e,t),r=n.carrierCode,i=n.nationalNumber;if(i!==e){if(!function(e,t,n){if(WE(e,n.nationalNumberPattern())&&!WE(t,n.nationalNumberPattern()))return!1;return!0}(e,i,t))return{nationalNumber:e};if(t.possibleLengths()&&!function(e,t){switch(HE(e,t)){case"TOO_SHORT":case"INVALID_LENGTH":return!1;default:return!0}}(i,t))return{nationalNumber:e}}return{nationalNumber:i,carrierCode:r}}function Eb(e,t,n,r){if(!e)return{};var i;if("+"!==e[0]){var a=function(e,t,n,r){if(t){var i=new AE(r);i.selectNumberingPlan(t,n);var a=new RegExp(i.IDDPrefix());if(0===e.search(a)){var o=(e=e.slice(e.match(a)[0].length)).match(vb);if(!(o&&null!=o[1]&&o[1].length>0&&"0"===o[1]))return e}}}(e,t,n,r);if(!a||a===e){if(t||n){var o=function(e,t,n,r){var i=t?NE(t,r):n;if(0===e.indexOf(i)){(r=new AE(r)).selectNumberingPlan(t,n);var a=e.slice(i.length),o=Ab(a,r).nationalNumber,s=Ab(e,r).nationalNumber;if(!WE(s,r.nationalNumberPattern())&&WE(o,r.nationalNumberPattern())||"TOO_LONG"===HE(s,r))return{countryCallingCode:i,number:a}}return{number:e}}(e,t,n,r),s=o.countryCallingCode,u=o.number;if(s)return{countryCallingCodeSource:"FROM_NUMBER_WITHOUT_PLUS_SIGN",countryCallingCode:s,number:u}}return{number:e}}i=!0,e="+"+a}if("0"===e[1])return{};r=new AE(r);for(var l=2;l-1<=cE&&l<=e.length;){var c=e.slice(1,l);if(r.hasCallingCode(c))return r.selectNumberingPlan(c),{countryCallingCodeSource:i?"FROM_NUMBER_WITH_IDD":"FROM_NUMBER_WITH_PLUS_SIGN",countryCallingCode:c,number:e.slice(l)};l++}return{}}function bb(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return Sb(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Sb(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Sb(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Mb=!1;function Tb(e,t,n){if(Mb&&n.isNonGeographicCallingCode(e))return"001";var r=n.getCountryCodesForCallingCode(e);return r?1===r.length?r[0]:function(e,t,n){n=new AE(n);for(var r,i=bb(e);!(r=i()).done;){var a=r.value;if(n.country(a),n.leadingDigits()){if(t&&0===t.search(n.leadingDigits()))return a}else if(XE({phone:t,country:a},void 0,n.metadata))return a}}(r,t,n.metadata):void 0}var wb="+",Ob="(["+dE+"]|[\\-\\.\\(\\)]?)",Nb=new RegExp("^\\"+wb+Ob+"*["+dE+"]"+Ob+"*$","g"),Cb=new RegExp("^("+("["+dE+"]+((\\-)*["+dE+"])*")+"\\.)*"+("[a-zA-Z]+((\\-)*["+dE+"])*")+"\\.?$","g"),Lb="tel:",Db=";phone-context=",$b=";isub=";function xb(e,t){var n,r=t.extractFormattedPhoneNumber,i=function(e){var t=e.indexOf(Db);if(t<0)return null;var n=t+Db.length;if(n>=e.length)return"";var r=e.indexOf(";",n);return r>=0?e.substring(n,r):e.substring(n)}(e);if(!function(e){return null===e||0!==e.length&&(Nb.test(e)||Cb.test(e))}(i))throw new sE("NOT_A_NUMBER");if(null===i)n=r(e)||"";else{n="",i.charAt(0)===wb&&(n+=i);var a,o=e.indexOf(Lb);a=o>=0?o+Lb.length:0;var s=e.indexOf(Db);n+=e.substring(a,s)}var u=n.indexOf($b);if(u>0&&(n=n.substring(0,u)),""!==n)return n}var Ib=250,kb=new RegExp("[++"+dE+"]"),zb=new RegExp("[^"+dE+"#]+$");function Rb(e,t,n){if(t=t||{},n=new AE(n),t.defaultCountry&&!n.hasCountry(t.defaultCountry)){if(t.v2)throw new sE("INVALID_COUNTRY");throw new Error("Unknown country: ".concat(t.defaultCountry))}var r=function(e,t,n){var r=xb(e,{extractFormattedPhoneNumber:function(e){return function(e,t,n){if(!e)return;if(e.length>Ib){if(n)throw new sE("TOO_LONG");return}if(!1===t)return e;var r=e.search(kb);if(r<0)return;return e.slice(r).replace(zb,"")}(e,n,t)}});if(!r)return{};if(!function(e){return e.length>=uE&&zE.test(e)}(r))return function(e){return IE.test(e)}(r)?{error:"TOO_SHORT"}:{};var i=function(e){var t=e.search(RE);if(t<0)return{};for(var n=e.slice(0,t),r=e.match(RE),i=1;i<r.length;){if(r[i])return{number:n,ext:r[i]};i++}}(r);if(i.ext)return i;return{number:r}}(e,t.v2,t.extract),i=r.number,a=r.ext,o=r.error;if(!i){if(t.v2){if("TOO_SHORT"===o)throw new sE("TOO_SHORT");throw new sE("NOT_A_NUMBER")}return{}}var s=function(e,t,n,r){var i,a=Eb(UE(e),t,n,r.metadata),o=a.countryCallingCodeSource,s=a.countryCallingCode,u=a.number;if(s)r.selectNumberingPlan(s);else{if(!u||!t&&!n)return{};r.selectNumberingPlan(t,n),t&&(i=t),s=n||NE(t,r.metadata)}if(!u)return{countryCallingCodeSource:o,countryCallingCode:s};var l=Ab(UE(u),r),c=l.nationalNumber,d=l.carrierCode,f=Tb(s,c,r);f&&(i=f,"001"===f||r.country(i));return{country:i,countryCallingCode:s,countryCallingCodeSource:o,nationalNumber:c,carrierCode:d}}(i,t.defaultCountry,t.defaultCallingCode,n),u=s.country,l=s.nationalNumber,c=s.countryCallingCode,d=s.countryCallingCodeSource,f=s.carrierCode;if(!n.hasSelectedNumberingPlan()){if(t.v2)throw new sE("INVALID_COUNTRY");return{}}if(!l||l.length<uE){if(t.v2)throw new sE("TOO_SHORT");return{}}if(l.length>lE){if(t.v2)throw new sE("TOO_LONG");return{}}if(t.v2){var h=new yb(c,l,n.metadata);return u&&(h.country=u),f&&(h.carrierCode=f),a&&(h.ext=a),h.__countryCallingCodeSource=d,h}var p=!!(t.extended?n.hasSelectedNumberingPlan():u)&&WE(l,n.nationalNumberPattern());return t.extended?{country:u,countryCallingCode:c,carrierCode:f,valid:p,possible:!!p||!(!0!==t.extended||!n.possibleLengths()||!GE(l,n)),phone:l,ext:a}:p?function(e,t,n){var r={country:e,phone:t};n&&(r.ext=n);return r}(u,l,a):{}}function Zb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Pb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Zb(Object(n),!0).forEach((function(t){Fb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Zb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Fb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ub(e){return Ub="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ub(e)}function Bb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Vb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function jb(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,i,a=[],o=!0,s=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);o=!0);}catch(e){s=!0,i=e}finally{try{o||null==n.return||n.return()}finally{if(s)throw i}}return a}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Hb(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Hb(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Hb(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Yb(e){var t,n,r,i=jb(Array.prototype.slice.call(e),4),a=i[0],o=i[1],s=i[2],u=i[3];if("string"!=typeof a)throw new TypeError("A text for parsing must be a string.");if(t=a,o&&"string"!=typeof o){if(!Gb(o))throw new Error("Invalid second argument: ".concat(o));s?(n=o,r=s):r=o}else u?(n=s,r=u):(n=void 0,r=s),o&&(n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Bb(Object(n),!0).forEach((function(t){Vb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Bb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({defaultCountry:o},n));return{text:t,options:n,metadata:r}}var Gb=function(e){return"object"===Ub(e)};function Wb(){var e=Yb(arguments);return function(e,t,n){return Rb(e,Pb(Pb({},t),{},{v2:!0}),n)}(e.text,e.options,e.metadata)}function qb(){return function(e,t){var n=Array.prototype.slice.call(t);return n.push(JA),e.apply(this,n)}(Wb,arguments)}const Kb=/^(?!\+?6599)(?!^\+65\d{6}$)^(?:\+?(?:65)?([9,8,6,3]{1}\d{7}))$/,Jb=/^(?!\+?6599)(?!^\+65\d{6}$)^(?:\+?(?:65)?([9,8]{1}\d{7}))$/;var Xb;!function(e){e.getParsedPhoneNumber=e=>{const t=e.split(" "),n=t.length>1;return{prefix:n?t[0]:"",number:n?t[1]:e}},e.isSingaporeNumber=(t,n=!1)=>{try{const{number:r}=e.getParsedPhoneNumber(t),i=qb(t,"SG").isValid(),a=Jb.test(r),o=Kb.test(r);return n?i&&o&&!a:i&&o&&a}catch(e){return!1}},e.isInternationalNumber=(e,t)=>{try{if(!e||!t)return!1;const n=qA(e).iso2;return qb(t,n).isValid()}catch(e){return!1}},e.formatPhoneNumber=(e,t)=>{if(t)return e?`${e} ${t}`:t}}(Xb||(Xb={}));const Qb="uuuu-MM-dd",eS=g.default.label`
|
|
270
|
-
cursor: ${e=>e.disabled?"not-allowed":"pointer"};
|
|
271
|
-
`,tS=g.default(f.RadioButton)`
|
|
272
|
-
margin-right: 5px;
|
|
273
|
-
`,nS=g.default.div`
|
|
274
|
-
display: flex;
|
|
275
|
-
align-items: center;
|
|
276
|
-
:not(:last-of-type) {
|
|
277
|
-
margin-bottom: 1rem;
|
|
278
|
-
}
|
|
279
|
-
`,rS=g.default.div`
|
|
280
|
-
display: flex;
|
|
281
|
-
flex-wrap: wrap;
|
|
282
|
-
gap: 1rem;
|
|
283
|
-
`;var iS,aS,oS,sS,uS=Object.freeze({__proto__:null,CheckboxGroup:n=>{const{schema:{label:r,options:i,validation:a,disabled:o,customOptions:s,...c},id:d,value:f,error:h,onChange:p}=n,{setValue:m}=B(),[_,y]=t.useState(f||[]),{setFieldValidationConfig:g}=Nh();t.useEffect((()=>{const e=a?.find((e=>"required"in e));g(d,uh().of(fd()).test("is-empty-array",e?.errorMessage||$a.REQUIRED_OPTION,(t=>!t||!e?.required||t.length>0)),a)}),[a]),er((()=>{const e=f?.filter((e=>i.find((t=>t.value===e))));m(d,e)}),[i]),t.useEffect((()=>{y(f||[])}),[f]);const v=(e,t)=>{const n=i.find((e=>!0===e.none));let r=[..._];t?r=r.includes(e)?[]:[e]:r.includes(e)?r=RA(r,e,n?.value):(r.push(e),r=RA(r,n?.value)),p({target:{value:r}})},A=e=>_.includes(e),E=e=>`${d}-${e}`;return e.jsx(l.Form.CustomField,{id:d,label:r,errorMessage:h?.message,children:"toggle"===s?.styleType?i.length>0&&e.jsx(UA,{children:i.map(((t,n)=>{const r=E(n);return e.jsx(u.Toggle,{...c,type:"checkbox","data-testid":Fa.generateId(d,"toggle"),id:r,disabled:o??t.disabled,name:t.label,indicator:"toggle"===s.styleType&&s?.indicator,styleType:"toggle"===s.styleType&&!1===s?.border?"no-border":"default",checked:A(t.value),onChange:()=>v(t.value,t.none),children:t.label},n)}))}):i.length>0&&i.map(((t,n)=>{const r=E(n);return e.jsxs(FA,{children:[e.jsx(PA,{...c,"data-testid":Fa.generateId(d,"checkbox"),id:r,disabled:o??t.disabled,name:t.label,value:t.value,checked:A(t.value),onChange:()=>v(t.value)}),e.jsx(ZA,{htmlFor:r,disabled:o??t.disabled,children:t.label})]},n)}))})},Chips:n=>{const{schema:{label:r,options:i,validation:a,disabled:o,textarea:s,...u},id:c,value:d,onChange:f,error:h,...p}=n,[m,_]=t.useState(d||[]),[y,g]=t.useState(!1),[v,A]=t.useState(!0),{control:E,setValue:b}=B(),{setFieldValidationConfig:S,removeFieldValidationConfig:M}=Nh();t.useEffect((()=>{const e=a?.find((e=>"required"in e)),t=a?.find((e=>"max"in e)),n=a?.find((e=>"length"in e));S(c,uh().of(fd()).test("is-empty-array",e?.errorMessage||$a.REQUIRED_OPTION,(t=>!t||!e?.required||t.length>0)),a),1!==t?.max&&1!==n?.length||A(!1)}),[a]),er((()=>{const e=d?.filter((e=>i.find((t=>t.value===e))));b(c,e)}),[i]),t.useEffect((()=>{_(d||[])}),[d]);const T=e=>m.includes(e),w=()=>`${c}-textarea`,O=e=>{let t=[...m];if(t.includes(e))return t=t.filter((t=>t!==e)),void f({target:{value:t}});v?t.push(e):t=[e],f({target:{value:t}})};return e.jsxs(l.Form.CustomField,{label:r,errorMessage:h?.message,...p,children:[e.jsxs(YA,{"data-testid":Fa.generateId(c,"chips"),children:[i.map(((e,n)=>t.createElement($h,{...u,key:n,onClick:()=>O(e.value),isActive:T(e.value),disabled:o??e.disabled},e.label))),(()=>{const t=s?.label;if(s||t)return e.jsx($h,{...u,onClick:()=>(O(t),void g((e=>(e&&M(w()),!e)))),isActive:T(t),children:t})})()]}),(()=>{const t=s?.label;if(!s&&!t)return e.jsx(e.Fragment,{});const n=w(),i={uiType:"textarea",label:r,...s};return y?e.jsx(re,{control:E,name:n,shouldUnregister:!0,render:({field:t,fieldState:r})=>{const a={...t,id:n,ref:void 0};return e.jsx(HA,{schema:i,...a,...r})}}):e.jsx(e.Fragment,{})})()]})},ContactField:n=>{const{schema:{label:r,defaultCountry:i,disabled:a,enableSearch:o,validation:s,placeholder:u,...c},id:d,name:f,onChange:h,value:p,error:m,..._}=n,[y,g]=t.useState(p||""),v=(e=>{const n=t.useRef();return t.useEffect((()=>{n.current=e}),[e]),n.current})(i),[A,E]=t.useState(i),[b]=t.useState(WA()),[S,M]=t.useState(),[T,w]=t.useState(),[O,N]=t.useState(!1),{setFieldValidationConfig:C}=Nh();t.useEffect((()=>{const e=s?.find((e=>"contactNumber"in e)),t=e?.contactNumber?.singaporeNumber,n=e?.contactNumber?.internationalNumber,r=e?.errorMessage;b.has(n)?(E(n),N(!0)):["default","house","mobile"].includes(t)&&(E("Singapore"),N(!0)),w(t),C(d,fd().test("singaporeNumber",r||xa.INVALID_SINGAPORE_NUMBER,(e=>{if(!e||!t)return!0;switch(t){case"default":return Xb.isSingaporeNumber(e,!0)||Xb.isSingaporeNumber(e);case"house":return Xb.isSingaporeNumber(e,!0);case"mobile":return Xb.isSingaporeNumber(e)}})).test("internationalNumber",r||xa.INVALID_INTERNATIONAL_NUMBER,(e=>!(e&&!t)||Xb.isInternationalNumber(S?.name,e))),s)}),[s,S]),t.useEffect((()=>{const e=A||"Singapore";M({name:e,prefix:b.get(e)})}),[A,b]),t.useEffect((()=>{const e=s?.find((e=>"contactNumber"in e)),t=e?.contactNumber?.singaporeNumber,n=e?.contactNumber?.internationalNumber;!i||v===i||b.has(n)||["default","house","mobile"].includes(t)||E(i)}),[s,i]);return e.jsx(l.Form.PhoneNumberInput,{...c,..._,"data-testid":Fa.generateId(d,"contact"),disabled:a,enableSearch:o,errorMessage:m?.message,fixedCountry:O,id:d,label:r,name:f,placeholder:(()=>{if(u)return u;if(T){return`Enter ${"mobile"===T?"mobile":"home"} number`}return"Enter contact number"})(),value:(()=>{if(!S)return;const{prefix:e}=S;return{number:y,countryCode:e}})(),onChange:e=>{const{countryCode:t,number:n}=e,r=t.replace(/\+/g,""),i=Xb.formatPhoneNumber(t,n);if(r!==S.prefix){const e=((e,t)=>{for(const[n,r]of t.entries())if(r===e)return n})(r,b);M({name:e,prefix:t})}g(n),h({target:{value:i}})}})},DateField:n=>{const{schema:{label:r,useCurrentDate:i,dateFormat:a=Qb,validation:o,...s},id:u,onChange:c,value:d,error:f,...h}=n,[p,m]=t.useState(d||""),{setFieldValidationConfig:_}=Nh();t.useEffect((()=>{const e=o?.find((e=>"future"in e)),t=o?.find((e=>"past"in e)),n=o?.find((e=>"notFuture"in e)),r=o?.find((e=>"notPast"in e)),i=o?.find((e=>"minDate"in e)),s=o?.find((e=>"maxDate"in e)),l=Za.toLocalDateOrTime(i?.minDate,a,"date"),c=Za.toLocalDateOrTime(s?.maxDate,a,"date");_(u,fd().test("is-date",ka.INVALID,(e=>!e||""===e||!!y(e)&&!!Za.toLocalDateOrTime(e,a,"date"))).test("future",e?.errorMessage||ka.MUST_BE_FUTURE,(t=>{if(!y(t)||!e?.future)return!0;const n=Za.toLocalDateOrTime(t,a,"date");return!!n?.isAfter(sa.now())})).test("past",t?.errorMessage||ka.MUST_BE_PAST,(e=>{if(!y(e)||!t?.past)return!0;const n=Za.toLocalDateOrTime(e,a,"date");return!!n?.isBefore(sa.now())})).test("not-future",n?.errorMessage||ka.CANNOT_BE_FUTURE,(e=>{if(!y(e)||!n?.notFuture)return!0;const t=Za.toLocalDateOrTime(e,a,"date");return!t?.isAfter(sa.now())})).test("not-past",r?.errorMessage||ka.CANNOT_BE_PAST,(e=>{if(!y(e)||!r?.notPast)return!0;const t=Za.toLocalDateOrTime(e,a,"date");return!t?.isBefore(sa.now())})).test("min-date",i?.errorMessage||ka.MIN_DATE(Za.formatDateTime(i?.minDate,"dd/MM/uuuu","date")),(e=>{if(!y(e)||!l)return!0;const t=Za.toLocalDateOrTime(e,a,"date");return!t?.isBefore(l)})).test("max-date",s?.errorMessage||ka.MAX_DATE(Za.formatDateTime(s?.maxDate,"dd/MM/uuuu","date")),(e=>{if(!y(e)||!c)return!0;const t=Za.toLocalDateOrTime(e,a,"date");return!t?.isAfter(c)})),o)}),[o]),t.useEffect((()=>{if(a)if(i&&!d){const e=Za.formatDateTime(sa.now().toString(),a,"date");c({target:{value:e}});const t=Za.formatDateTime(sa.now().toString(),Qb,"date");m(t)}else if(y(d)){const e=Za.toLocalDateOrTime(d,a,"date");m(Za.formatDateTime(e?.toString(),Qb,"date",ka.INVALID))}else m(ka.INVALID)}),[i,d,a]);const y=e=>e&&e!==ka.INVALID;return e.jsx(l.Form.DateInput,{...s,...h,id:u,"data-testid":Fa.generateId(u,"date"),label:r,errorMessage:f?.message,onChangeRaw:([e,t,n])=>{e||t||n?e.length<2||t.length<2||n.length<4?c({target:{value:ka.INVALID}}):c({target:{value:Za.formatDateTime([n,t,e].join("-"),a,"date",ka.INVALID)}}):c({target:{value:void 0}})},value:p})},MultiSelect:n=>{const{schema:{label:r,validation:i,options:a,...o},id:s,name:u,value:c,onChange:f,error:h}=n,{setValue:p}=B(),[m,_]=t.useState(c||[]),{setFieldValidationConfig:y}=Nh();t.useEffect((()=>{const e=i?.find((e=>"required"in e));y(s,uh().of(fd()).test("is-empty-array",e?.errorMessage||$a.REQUIRED_OPTION,(t=>!t||!e?.required||t.length>0)),i)}),[i]),er((()=>{const e=c?.filter((e=>a.find((t=>t.value===e))));p(s,e)}),[a]),t.useEffect((()=>{_(c||[])}),[c]);return e.jsx(l.Form.CustomField,{id:s,label:r,errorMessage:h?.message,children:e.jsx(d.InputMultiSelect,{...o,id:s,"data-testid":Fa.generateId(s,"multi-select"),name:u,options:a,onSelectOptions:e=>{const t=e.map((e=>e.value));f({target:{value:t}})},selectedOptions:a.filter((e=>m.includes(e.value))),valueExtractor:e=>e.value,listExtractor:e=>e.label})})},RadioButtonGroup:n=>{const{schema:{label:r,options:i,disabled:a,validation:o,customOptions:s,...c},id:d,value:f,error:h,onChange:p}=n,{setValue:m}=B(),[_,y]=t.useState(f||""),{setFieldValidationConfig:g}=Nh();t.useEffect((()=>{g(d,fd(),o)}),[o]),er((()=>{i.find((e=>e.value===f))||m(d,"")}),[i]),t.useEffect((()=>{y(f||"")}),[f]);const v=(e,t)=>{t??y(t),p(t?{target:{value:t}}:e)},A=e=>_===e,E=e=>`${d}-${e}`;return e.jsx(l.Form.CustomField,{id:d,label:r,errorMessage:h?.message,children:"toggle"===s?.styleType?i.length>0&&e.jsx(rS,{children:i.map(((e,n)=>{const r=E(n);return t.createElement(u.Toggle,{...c,key:n,type:"radio",id:r,"data-testid":Fa.generateId(d,"radio"),disabled:a??e.disabled,name:e.label,indicator:"toggle"===s.styleType&&s?.indicator,styleType:"toggle"===s.styleType&&!1===s?.border?"no-border":"default",checked:A(e.value),onChange:t=>v(t,e.value)},e.label)}))}):i.length>0&&i.map(((t,n)=>{const r=E(n);return e.jsxs(nS,{children:[e.jsx(tS,{...c,id:r,"data-testid":Fa.generateId(d,"radio"),disabled:a??t.disabled,name:t.label,value:t.value,checked:A(t.value),onChange:v}),e.jsx(eS,{htmlFor:r,disabled:a??t.disabled,children:t.label})]},n)}))})},Select:n=>{const{schema:{label:r,validation:i,options:a,...o},id:s,name:u,value:c,error:f,onChange:h}=n,{setValue:p}=B(),[m,_]=t.useState(c||""),{setFieldValidationConfig:y}=Nh();t.useEffect((()=>{y(s,fd(),i)}),[i]),er((()=>{a.find((e=>e.value===c))||p(s,"")}),[a]),t.useEffect((()=>{_(c||"")}),[c]);return e.jsx(l.Form.CustomField,{id:s,label:r,errorMessage:f?.message,children:e.jsx(d.InputSelect,{...o,id:s,"data-testid":Fa.generateId(s,"select"),name:u,options:a,onSelectOption:(e,t)=>{h({target:{value:t}})},selectedOption:a.find((({value:e})=>e===m)),displayValueExtractor:e=>e.label,valueExtractor:e=>e.value,listExtractor:e=>e.label})})},SubmitButton:n=>{const{schema:{label:r,disabled:i,...a},id:o,...s}=n,{setFieldValidationConfig:u}=Nh(),{hardValidationSchema:l}=Ch(),c=X({disabled:"invalid-form"!==i}),[d,f]=t.useState(!0===i);return t.useEffect((()=>{u(o,rd())}),[]),er((()=>{if("invalid-form"===i)try{l.validateSync(c),f(!1)}catch(e){f(!0)}}),[c]),e.jsx(h.Button.Default,{...a,...s,disabled:d,"data-testid":o,id:o,type:"submit",children:r})},TextField:n=>{const{schema:{inputMode:r,label:i,uiType:a,validation:o,...s},id:u,value:c,onChange:d,error:f,...h}=n,[p,m]=t.useState(c||""),[_,y]=t.useState({}),{setFieldValidationConfig:g}=Nh();t.useEffect((()=>{switch(a){case"numeric-field":{g(u,pd(),o);const e=o?.find((e=>"min"in e)),t=o?.find((e=>"max"in e)),n={..._};e?.min>0&&(n.min=e.min),t?.max>0&&(n.max=t.max),y(n);break}case"email-field":{const e=o?.find((e=>e.email));g(u,fd().email(e?.errorMessage||Ia.INVALID),o);const t=o?.find((e=>"max"in e)),n=o?.find((e=>"length"in e)),r={..._};t?.max>0?r.maxLength=t.max:n?.length>0&&(r.maxLength=n.length),y(r);break}case"text-field":{g(u,fd(),o);const e=o?.find((e=>"max"in e)),t=o?.find((e=>"length"in e)),n={..._};e?.max>0?n.maxLength=e.max:t?.length>0&&(n.maxLength=t.length),y(n);break}}}),[o]),t.useEffect((()=>{m(c||"")}),[c]);return e.jsx(l.Form.Input,{...s,...h,..._,id:u,"data-testid":Fa.generateId(u,a),type:(()=>{switch(a){case"numeric-field":return"number";case"email-field":return"email";default:return"text"}})(),label:i,inputMode:(()=>{if(r)return r;switch(a){case"numeric-field":return"numeric";case"email-field":return"email";case"text-field":return"text";default:return"none"}})(),onChange:e=>{d(e)},value:p,errorMessage:f?.message})},Textarea:HA,TimeField:n=>{const{schema:{label:r,validation:i,placeholder:a,is24HourFormat:o,useCurrentTime:s,...u},id:c,value:d,error:f,onChange:h,...p}=n,[m,_]=t.useState(d||""),{setFieldValidationConfig:y}=Nh();t.useEffect((()=>{y(c,fd(),i)}),[i]),t.useEffect((()=>{if(s&&!d){g(o?"H:mm":"h:mma")}else _(d)}),[d,s,o]);const g=e=>{const t=Za.formatDateTime(ca.now().toString(),e,"time");_(t),h({target:{value:t}})};return e.jsx(l.Form.Timepicker,{...u,...p,id:c,"data-testid":Fa.generateId(c,"time"),label:r,errorMessage:f?.message,value:m,placeholder:a,format:o?"24hr":"12hr",onChange:e=>{h({target:{value:e}})}})},ResetButton:t=>{const{schema:{label:n,disabled:r,...i},id:a,...o}=t,{reset:s}=B();return e.jsx(h.Button.Default,{...i,...o,disabled:r,"data-testid":a,id:a,type:"reset",onClick:()=>{s()},children:n})},UnitNumberField:n=>{const{schema:{label:r,validation:i,...a},id:o,value:s,error:u,onChange:c,...d}=n,[f,h]=t.useState(s||""),{setFieldValidationConfig:p}=Nh();t.useEffect((()=>{const e=i?.find((e=>"unitNumberFormat"in e));p(o,fd().matches(/^([a-zA-Z0-9]{1,3}-[a-zA-Z0-9]{1,5})$/,{excludeEmptyString:!0,message:e?.errorMessage||za.INVALID}),i)}),[i]),t.useEffect((()=>{h(s||"")}),[s]);return e.jsx(l.Form.UnitNumberInput,{...a,...d,id:o,"data-testid":Fa.generateId(o,"unit-number"),label:r,value:f,onChange:e=>{c({target:{value:e}})},errorMessage:u?.message})}});!function(e){e.TEXTAREA="Textarea",e["TEXT-FIELD"]="TextField",e["NUMERIC-FIELD"]="TextField",e["EMAIL-FIELD"]="TextField",e.SUBMIT="SubmitButton",e.SELECT="Select",e["MULTI-SELECT"]="MultiSelect",e["DATE-FIELD"]="DateField",e.CHECKBOX="CheckboxGroup",e["CONTACT-FIELD"]="ContactField",e.RADIO="RadioButtonGroup",e["TIME-FIELD"]="TimeField",e.CHIPS="Chips",e.RESET="ResetButton",e["UNIT-NUMBER-FIELD"]="UnitNumberField"}(iS||(iS={})),function(e){e.ALERT="Alert",e["TEXT-D1"]="Text",e["TEXT-D2"]="Text",e["TEXT-DBODY"]="Text",e["TEXT-H1"]="Text",e["TEXT-H2"]="Text",e["TEXT-H3"]="Text",e["TEXT-H4"]="Text",e["TEXT-H5"]="Text",e["TEXT-H6"]="Text",e["TEXT-BODY"]="Text",e["TEXT-BODYSMALL"]="Text",e["TEXT-XSMALL"]="Text",e.DIV="Wrapper",e.SPAN="Wrapper",e.HEADER="Wrapper",e.FOOTER="Wrapper",e.H1="Wrapper",e.H2="Wrapper",e.H3="Wrapper",e.H4="Wrapper",e.H5="Wrapper",e.H6="Wrapper",e.P="Wrapper"}(aS||(aS={})),function(e){e.FILTER="Filter",e["FILTER-ITEM"]="FilterItem"}(oS||(oS={})),function(e){e["FILTER-CHECKBOX"]="FilterCheckbox"}(sS||(sS={}));const lS=({id:n,renderRules:r,children:i,schema:a})=>{const{watch:o}=B(),{formValidationConfig:s,removeFieldValidationConfig:u}=Nh(),[l,c]=t.useState(!1),[d,f]=t.useState();t.useEffect((()=>{const e=o((e=>f(e)));return()=>e.unsubscribe()}),[o]),tr((()=>{if(Wn(r))return;const e=h();if(e!==l){if(!e){[n,...p(a?.children)].forEach((e=>u(e)))}c(e)}}),[s,d,r]);const h=()=>{if(Wn(r))return!0;let e=!1;return r.forEach((t=>{if(!e){const n={};Object.entries(t).forEach((([e,t])=>{const r=s?.[e]?.schema.type;if(r){let i=ph.mapSchemaType(r);"number"===r&&(i=i.nullable().transform(((e,t)=>Wn(t)?void 0:+t))),n[e]={schema:i,validationRules:t}}}));const r=ph.buildSchema(n);try{r.validateSync(d),e=!0}catch(e){}}})),e},p=e=>{const t=[];return Wn(e)||!vt(e)||Object.keys(e).forEach((n=>{t.push(n),e.children&&t.push(...p(e.children))})),t};return Wn(r)||l?e.jsx(e.Fragment,{children:i}):null},cS=g.default(n.Alert)`
|
|
284
|
-
margin: -1rem 0rem 2rem;
|
|
285
|
-
`,dS=Object.keys(iS),fS=Object.keys(aS),hS=n=>{const{id:r,schema:i,children:a,warnings:o}=n,{showIf:s,uiType:u,children:l,...c}=i||{},[d,f]=t.useState(null),{control:h}=B();t.useEffect((()=>{const n=l||a;if("object"==typeof n){const r=[];Object.entries(n).forEach((([n,i])=>{if(Wn(i)||"object"!=typeof i)return;const a=i.referenceKey?(e=>{const t=e?.toUpperCase();if(rA[sS[t]])return{fieldType:rA[sS[t]]};if(rA[oS[t]])return{elementType:rA[oS[t]]}})(i.referenceKey):((n,r)=>{const i=n?.toUpperCase(),a={...uS,...eA};if(dS.includes(i))return{fieldType:a[iS[i]]};if(fS.includes(i))return{elementType:a[aS[i]]||hS};return{fragment:e.jsx(t.Fragment,{children:Ra.UNSUPPORTED},r)}})(i.uiType,n);a&&(a.fragment?r.push(a.fragment):a.fieldType?r.push(((t,n,r,i,a)=>e.jsx(lS,{id:n,...r&&"showIf"in r&&{renderRules:r.showIf},schema:r,children:e.jsx(re,{control:i,name:n,shouldUnregister:!0,render:({field:i,fieldState:o})=>{const s={...i,id:n,ref:void 0},u=a?.[n];return u?e.jsxs(e.Fragment,{children:[e.jsx(t,{schema:r,...s,...o}),e.jsx(cS,{type:"warning",children:u})]}):e.jsx(t,{schema:r,...s,...o})}})},n))(a.fieldType,n,i,h,o)):r.push(((t,n,r)=>e.jsx(lS,{id:n,...r&&"showIf"in r&&{renderRules:r.showIf},schema:r,children:e.jsx(t,{schema:r,id:n})},n))(a.elementType,n,i)))})),f(r)}else f("string"==typeof n?n:Ra.UNSUPPORTED)}),[l||a,h,o]);const p=u;return p?e.jsx(p,{...c,id:r,"data-testid":Fa.generateId(r,u),children:d}):e.jsx(e.Fragment,{children:d})},pS=t=>{const{sectionSchema:{children:n},...r}=t;return e.jsx(hS,{...r,children:n})},mS=t=>{const{schema:n,warnings:r}=t;return e.jsx(e.Fragment,{children:Object.entries(n).map((([t,n],i)=>e.jsx(pS,{id:t,sectionSchema:n,warnings:r},`section-${i}`)))})},_S=t.forwardRef(((n,r)=>{const{data:{className:i=null,defaultValues:a,sections:o,id:s,revalidationMode:u="onChange",validationMode:l="onTouched"},className:c=null,onChange:d,onSubmit:f}=n,{warnings:h,performSoftValidation:p,softValidationSchema:m,hardValidationSchema:y}=Ch(),g=function(e={}){const t=_.default.useRef(),[n,r]=_.default.useState({isDirty:!1,isValidating:!1,isLoading:de(e.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},errors:{},defaultValues:de(e.defaultValues)?void 0:e.defaultValues});t.current||(t.current={...je(e,(()=>r((e=>({...e}))))),formState:n});const i=t.current.control;return i._options=e,q({subject:i._subjects.state,next:e=>{Y(e,i._proxyFormState,i._updateFormState,!0)&&r({...i._formState})}}),_.default.useEffect((()=>{e.values&&!Oe(e.values,i._defaultValues)?i._reset(e.values,i._options.resetOptions):i._resetDefaultValues()}),[e.values,i]),_.default.useEffect((()=>{i._state.mount||(i._updateValid(),i._state.mount=!0),i._state.watch&&(i._state.watch=!1,i._subjects.state.next({...i._formState})),i._removeUnmounted()})),t.current.formState=j(n,i),t.current}({mode:l,reValidateMode:u,defaultValues:a,resolver:async(e,t,n)=>(p(m,e),await function(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),function(r,i,a){try{return Promise.resolve(function(o,s){try{var u=(t.context&&"development"===process.env.NODE_ENV&&console.warn("You should not used the yup options context. Please, use the 'useForm' context object instead"),Promise.resolve(e["sync"===n.mode?"validateSync":"validate"](r,Object.assign({abortEarly:!1},t,{context:i}))).then((function(e){return a.shouldUseNativeValidation&&Ye({},a),{values:n.rawValues?r:e,errors:{}}})))}catch(e){return s(e)}return u&&u.then?u.then(void 0,s):u}(0,(function(e){if(!e.inner)throw e;return{values:{},errors:Ge((t=e,n=!a.shouldUseNativeValidation&&"all"===a.criteriaMode,(t.inner||[]).reduce((function(e,t){if(e[t.path]||(e[t.path]={message:t.message,type:t.type}),n){var r=e[t.path].types,i=r&&r[t.type];e[t.path]=ie(t.path,n,e,t.type,i?[].concat(i,t.message):t.message)}return e}),{})),a)};var t,n})))}catch(e){return Promise.reject(e)}}}(y)(e,t,n))}),{reset:v,watch:A,handleSubmit:E,getValues:b,setValue:S,setError:M,formState:T,clearErrors:w}=g,[O,N]=t.useState({});t.useImperativeHandle(r,(()=>({getValues:b,setValue:S,isValid:C,submit:E(L),addCustomValidation:ph.addCondition,setErrors:D,reset:v})));const C=t.useCallback((()=>{try{return y.validateSync(b()),!0}catch(e){return!1}}),[b,y]),L=e=>{f?.(e)},D=e=>{Object.entries(e).forEach((([t,n])=>{if(!!Pa.getNestedValueByKey(o,t))if(Array.isArray(n))M(t,{type:"api",message:n[0]});else if("object"==typeof n)D(n);else{const n=Pa.getNestedValueByKey(e,t),r=Object.values(n)[0],i=Object.keys(n)[0];M(i,{type:"api",message:r})}}))};t.useEffect((()=>{if(d){const e=A((e=>{d(e,C())}));return()=>e.unsubscribe()}}),[C,d,A]),t.useEffect((()=>{const e=T.errors;if(e&&!Wn(e)){const e=A((e=>{const t=Object.fromEntries(Object.entries(T.errors).filter((([e,t])=>"api"===t.type)));t&&!Wn(t)&&Object.keys(t).forEach((t=>{O[t]!==e[t]&&w(t)})),N(e)}));return()=>e.unsubscribe()}}),[T,A]),tr((()=>{v(a)}),[a]);const $=s?`frontend-engine-${s}`:"frontend-engine",x=[c,i].join(" ").trim();return e.jsx(V,{...g,children:e.jsx("form",{id:$,"data-testid":Fa.generateId(s,"frontend-engine"),className:x,noValidate:!0,onSubmit:E(L),ref:r,children:e.jsx(mS,{warnings:h,schema:o})})})})),yS=t.forwardRef(((t,n)=>e.jsx(Ba,{children:e.jsx(_S,{...t,ref:n})})));exports.FrontendEngine=yS;
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var e=require("./chunks/index.3a31dd0d.js");require("react/jsx-runtime"),require("react"),require("events"),require("buffer"),require("@lifesg/react-design-system/media"),require("@lifesg/react-design-system/alert"),require("@lifesg/react-design-system/text"),require("@lifesg/react-design-system/color"),require("styled-components"),require("@lifesg/react-design-system/modal"),require("@lifesg/react-design-system/button"),require("react-dom/server"),require("@lifesg/react-design-system"),require("@lifesg/react-design-system/toggle"),require("@lifesg/react-design-system/form"),require("@lifesg/react-design-system/checkbox"),require("@lifesg/react-design-system/input-textarea"),require("@lifesg/react-icons/cross"),require("@lifesg/react-design-system/icon-button"),require("@lifesg/react-design-system/input-select"),require("@lifesg/react-design-system/radio-button"),exports.FrontendEngine=e.FrontendEngine;
|
|
286
2
|
//# sourceMappingURL=index.js.map
|