← Back
Editing: calendar-contacts-menu.js
(()=>{var e,t,r,n={55950(e,t,r){"use strict";let n=r(92322),{MAX_LENGTH:i,MAX_SAFE_INTEGER:o}=r(76692),{safeRe:a,t:s}=r(15208),c=r(29901),{compareIdentifiers:u}=r(3229);e.exports=class e{constructor(t,r){if(r=c(r),t instanceof e)if(!!r.loose===t.loose&&!!r.includePrerelease===t.includePrerelease)return t;else t=t.version;else if("string"!=typeof t)throw TypeError(`Invalid version. Must be a string. Got type "${typeof t}".`);if(t.length>i)throw TypeError(`version is longer than ${i} characters`);n("SemVer",t,r),this.options=r,this.loose=!!r.loose,this.includePrerelease=!!r.includePrerelease;const u=t.trim().match(r.loose?a[s.LOOSE]:a[s.FULL]);if(!u)throw TypeError(`Invalid Version: ${t}`);if(this.raw=t,this.major=+u[1],this.minor=+u[2],this.patch=+u[3],this.major>o||this.major<0)throw TypeError("Invalid major version");if(this.minor>o||this.minor<0)throw TypeError("Invalid minor version");if(this.patch>o||this.patch<0)throw TypeError("Invalid patch version");u[4]?this.prerelease=u[4].split(".").map(e=>{if(/^[0-9]+$/.test(e)){let t=+e;if(t>=0&&t<o)return t}return e}):this.prerelease=[],this.build=u[5]?u[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(t){if(n("SemVer.compare",this.version,this.options,t),!(t instanceof e)){if("string"==typeof t&&t===this.version)return 0;t=new e(t,this.options)}return t.version===this.version?0:this.compareMain(t)||this.comparePre(t)}compareMain(t){return(t instanceof e||(t=new e(t,this.options)),this.major<t.major)?-1:this.major>t.major?1:this.minor<t.minor?-1:this.minor>t.minor?1:this.patch<t.patch?-1:+(this.patch>t.patch)}comparePre(t){if(t instanceof e||(t=new e(t,this.options)),this.prerelease.length&&!t.prerelease.length)return -1;if(!this.prerelease.length&&t.prerelease.length)return 1;if(!this.prerelease.length&&!t.prerelease.length)return 0;let r=0;do{let e=this.prerelease[r],i=t.prerelease[r];if(n("prerelease compare",r,e,i),void 0===e&&void 0===i)return 0;if(void 0===i)return 1;if(void 0===e)return -1;else if(e===i)continue;else return u(e,i)}while(++r)}compareBuild(t){t instanceof e||(t=new e(t,this.options));let r=0;do{let e=this.build[r],i=t.build[r];if(n("build compare",r,e,i),void 0===e&&void 0===i)return 0;if(void 0===i)return 1;if(void 0===e)return -1;else if(e===i)continue;else return u(e,i)}while(++r)}inc(e,t,r){if(e.startsWith("pre")){if(!t&&!1===r)throw Error("invalid increment argument: identifier is empty");if(t){let e=`-${t}`.match(this.options.loose?a[s.PRERELEASELOOSE]:a[s.PRERELEASE]);if(!e||e[1]!==t)throw Error(`invalid identifier: ${t}`)}}switch(e){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",t,r);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",t,r);break;case"prepatch":this.prerelease.length=0,this.inc("patch",t,r),this.inc("pre",t,r);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",t,r),this.inc("pre",t,r);break;case"release":if(0===this.prerelease.length)throw Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;break;case"major":(0!==this.minor||0!==this.patch||0===this.prerelease.length)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(0!==this.patch||0===this.prerelease.length)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":{let e=+!!Number(r);if(0===this.prerelease.length)this.prerelease=[e];else{let n=this.prerelease.length;for(;--n>=0;)"number"==typeof this.prerelease[n]&&(this.prerelease[n]++,n=-2);if(-1===n){if(t===this.prerelease.join(".")&&!1===r)throw Error("invalid increment argument: identifier already exists");this.prerelease.push(e)}}if(t){let n=[t,e];!1===r&&(n=[t]),0===u(this.prerelease[0],t)?isNaN(this.prerelease[1])&&(this.prerelease=n):this.prerelease=n}break}default:throw Error(`invalid increment argument: ${e}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}},38064(e,t,r){"use strict";let n=r(55950);e.exports=(e,t)=>new n(e,t).major},68690(e,t,r){"use strict";let n=r(55950);e.exports=(e,t,r=!1)=>{if(e instanceof n)return e;try{return new n(e,t)}catch(e){if(!r)return null;throw e}}},38711(e,t,r){"use strict";let n=r(68690);e.exports=(e,t)=>{let r=n(e,t);return r?r.version:null}},76692(e){"use strict";e.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:16,MAX_SAFE_BUILD_LENGTH:250,MAX_SAFE_INTEGER:Number.MAX_SAFE_INTEGER||0x1fffffffffffff,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:"2.0.0",FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},92322(e,t,r){"use strict";var n=r(65606);e.exports="object"==typeof n&&n.env&&n.env.NODE_DEBUG&&/\bsemver\b/i.test(n.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{}},3229(e){"use strict";let t=/^[0-9]+$/,r=(e,r)=>{if("number"==typeof e&&"number"==typeof r)return e===r?0:e<r?-1:1;let n=t.test(e),i=t.test(r);return n&&i&&(e*=1,r*=1),e===r?0:n&&!i?-1:i&&!n?1:e<r?-1:1};e.exports={compareIdentifiers:r,rcompareIdentifiers:(e,t)=>r(t,e)}},29901(e){"use strict";let t=Object.freeze({loose:!0}),r=Object.freeze({});e.exports=e=>e?"object"!=typeof e?t:e:r},15208(e,t,r){"use strict";let{MAX_SAFE_COMPONENT_LENGTH:n,MAX_SAFE_BUILD_LENGTH:i,MAX_LENGTH:o}=r(76692),a=r(92322),s=(t=e.exports={}).re=[],c=t.safeRe=[],u=t.src=[],l=t.safeSrc=[],f=t.t={},d=0,p="[a-zA-Z0-9-]",h=[["\\s",1],["\\d",o],[p,i]],A=(e,t,r)=>{let n=(e=>{for(let[t,r]of h)e=e.split(`${t}*`).join(`${t}{0,${r}}`).split(`${t}+`).join(`${t}{1,${r}}`);return e})(t),i=d++;a(e,i,t),f[e]=i,u[i]=t,l[i]=n,s[i]=new RegExp(t,r?"g":void 0),c[i]=new RegExp(n,r?"g":void 0)};A("NUMERICIDENTIFIER","0|[1-9]\\d*"),A("NUMERICIDENTIFIERLOOSE","\\d+"),A("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${p}*`),A("MAINVERSION",`(${u[f.NUMERICIDENTIFIER]})\\.(${u[f.NUMERICIDENTIFIER]})\\.(${u[f.NUMERICIDENTIFIER]})`),A("MAINVERSIONLOOSE",`(${u[f.NUMERICIDENTIFIERLOOSE]})\\.(${u[f.NUMERICIDENTIFIERLOOSE]})\\.(${u[f.NUMERICIDENTIFIERLOOSE]})`),A("PRERELEASEIDENTIFIER",`(?:${u[f.NONNUMERICIDENTIFIER]}|${u[f.NUMERICIDENTIFIER]})`),A("PRERELEASEIDENTIFIERLOOSE",`(?:${u[f.NONNUMERICIDENTIFIER]}|${u[f.NUMERICIDENTIFIERLOOSE]})`),A("PRERELEASE",`(?:-(${u[f.PRERELEASEIDENTIFIER]}(?:\\.${u[f.PRERELEASEIDENTIFIER]})*))`),A("PRERELEASELOOSE",`(?:-?(${u[f.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${u[f.PRERELEASEIDENTIFIERLOOSE]})*))`),A("BUILDIDENTIFIER",`${p}+`),A("BUILD",`(?:\\+(${u[f.BUILDIDENTIFIER]}(?:\\.${u[f.BUILDIDENTIFIER]})*))`),A("FULLPLAIN",`v?${u[f.MAINVERSION]}${u[f.PRERELEASE]}?${u[f.BUILD]}?`),A("FULL",`^${u[f.FULLPLAIN]}$`),A("LOOSEPLAIN",`[v=\\s]*${u[f.MAINVERSIONLOOSE]}${u[f.PRERELEASELOOSE]}?${u[f.BUILD]}?`),A("LOOSE",`^${u[f.LOOSEPLAIN]}$`),A("GTLT","((?:<|>)?=?)"),A("XRANGEIDENTIFIERLOOSE",`${u[f.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),A("XRANGEIDENTIFIER",`${u[f.NUMERICIDENTIFIER]}|x|X|\\*`),A("XRANGEPLAIN",`[v=\\s]*(${u[f.XRANGEIDENTIFIER]})(?:\\.(${u[f.XRANGEIDENTIFIER]})(?:\\.(${u[f.XRANGEIDENTIFIER]})(?:${u[f.PRERELEASE]})?${u[f.BUILD]}?)?)?`),A("XRANGEPLAINLOOSE",`[v=\\s]*(${u[f.XRANGEIDENTIFIERLOOSE]})(?:\\.(${u[f.XRANGEIDENTIFIERLOOSE]})(?:\\.(${u[f.XRANGEIDENTIFIERLOOSE]})(?:${u[f.PRERELEASELOOSE]})?${u[f.BUILD]}?)?)?`),A("XRANGE",`^${u[f.GTLT]}\\s*${u[f.XRANGEPLAIN]}$`),A("XRANGELOOSE",`^${u[f.GTLT]}\\s*${u[f.XRANGEPLAINLOOSE]}$`),A("COERCEPLAIN",`(^|[^\\d])(\\d{1,${n}})(?:\\.(\\d{1,${n}}))?(?:\\.(\\d{1,${n}}))?`),A("COERCE",`${u[f.COERCEPLAIN]}(?:$|[^\\d])`),A("COERCEFULL",u[f.COERCEPLAIN]+`(?:${u[f.PRERELEASE]})?`+`(?:${u[f.BUILD]})?`+"(?:$|[^\\d])"),A("COERCERTL",u[f.COERCE],!0),A("COERCERTLFULL",u[f.COERCEFULL],!0),A("LONETILDE","(?:~>?)"),A("TILDETRIM",`(\\s*)${u[f.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",A("TILDE",`^${u[f.LONETILDE]}${u[f.XRANGEPLAIN]}$`),A("TILDELOOSE",`^${u[f.LONETILDE]}${u[f.XRANGEPLAINLOOSE]}$`),A("LONECARET","(?:\\^)"),A("CARETTRIM",`(\\s*)${u[f.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",A("CARET",`^${u[f.LONECARET]}${u[f.XRANGEPLAIN]}$`),A("CARETLOOSE",`^${u[f.LONECARET]}${u[f.XRANGEPLAINLOOSE]}$`),A("COMPARATORLOOSE",`^${u[f.GTLT]}\\s*(${u[f.LOOSEPLAIN]})$|^$`),A("COMPARATOR",`^${u[f.GTLT]}\\s*(${u[f.FULLPLAIN]})$|^$`),A("COMPARATORTRIM",`(\\s*)${u[f.GTLT]}\\s*(${u[f.LOOSEPLAIN]}|${u[f.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",A("HYPHENRANGE",`^\\s*(${u[f.XRANGEPLAIN]})\\s+-\\s+(${u[f.XRANGEPLAIN]})\\s*$`),A("HYPHENRANGELOOSE",`^\\s*(${u[f.XRANGEPLAINLOOSE]})\\s+-\\s+(${u[f.XRANGEPLAINLOOSE]})\\s*$`),A("STAR","(<|>)?=?\\s*\\*"),A("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),A("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},88008(e,t,r){"use strict";r.r(t);var n=r(71354),i=r.n(n),o=r(76314),a=r.n(o)()(i());a.push([e.id,`/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later *//*! * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.app-calendar .app-navigation-toggle,.app-navigation-toggle--prevent-overlap{background-color:var(--color-main-background) !important;border:1px solid var(--color-background-dark) !important}.app-calendar .datepicker-button-section,.app-calendar .today-button-section,.app-calendar .view-button-section{display:flex}.app-calendar .datepicker-button-section__left{border-radius:var(--border-radius-element) 0 0 var(--border-radius-element) !important}.app-calendar .datepicker-button-section__right{border-radius:0 var(--border-radius-element) var(--border-radius-element) 0 !important}.app-calendar .app-navigation__body{overflow-y:unset !important}.app-calendar .app-navigation__body .app-navigation-header{padding:calc(var(--default-grid-baseline, 4px)*2)}.app-calendar .new-event-today-view-section{display:flex;gap:var(--default-grid-baseline);margin-top:var(--default-grid-baseline)}.app-calendar .new-event-today-view-section .button{margin:0 var(--default-grid-baseline) 0 0}.app-calendar .new-event-today-view-section .new-event{flex-grow:5;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.app-calendar .new-event-today-view-section .today{flex-grow:1;font-weight:normal !important}.app-calendar .app-navigation button.icon-share{opacity:.3 !important}.app-calendar .app-navigation button.icon-shared,.app-calendar .app-navigation button.icon-public{opacity:.7 !important}.app-calendar .app-navigation button.icon-share:active,.app-calendar .app-navigation button.icon-share:focus,.app-calendar .app-navigation button.icon-share:hover,.app-calendar .app-navigation button.icon-shared:active,.app-calendar .app-navigation button.icon-shared:focus,.app-calendar .app-navigation button.icon-shared:hover,.app-calendar .app-navigation button.icon-public:active,.app-calendar .app-navigation button.icon-public:focus,.app-calendar .app-navigation button.icon-public:hover{opacity:1 !important}.app-calendar .app-navigation #calendars-list{display:block !important}.app-calendar .app-navigation li.app-navigation-loading-placeholder-entry div.icon.icon-loading{min-height:44px}.app-calendar .app-navigation .app-navigation-entry-wrapper.deleted .app-navigation-entry__name{text-decoration:line-through}.app-calendar .app-navigation .app-navigation-entry-wrapper.open-sharing{box-shadow:inset 4px 0 var(--color-primary-element) !important;margin-inline-start:-6px;padding-inline-start:6px}.app-calendar .app-navigation .app-navigation-entry-wrapper.disabled .app-navigation-entry__name{color:var(--color-text-lighter) !important}.app-calendar .app-navigation .app-navigation-entry-wrapper .app-navigation-entry__children .app-navigation-entry{padding-inline-start:0 !important}.app-calendar .app-navigation .app-navigation-entry-wrapper .app-navigation-entry__children .app-navigation-entry .avatar{width:32px;height:32px;background-color:var(--color-border-dark);background-size:16px}.app-calendar .app-navigation .app-navigation-entry-wrapper .app-navigation-entry__children .app-navigation-entry .avatar.published{background-color:var(--color-primary-element);color:#fff}.app-calendar .app-navigation .app-navigation-entry__multiselect{padding:0 8px}.app-calendar .app-navigation .app-navigation-entry__multiselect .multiselect{width:100%;border-radius:var(--border-radius-large)}.app-calendar .app-navigation .app-navigation-entry__multiselect .multiselect__content-wrapper{z-index:200 !important}.app-calendar .app-navigation .app-navigation-entry__utils .action-checkbox__label{padding-inline-end:0 !important}.app-calendar .app-navigation .app-navigation-entry__utils .action-checkbox__label::before{margin:0 4px 0 !important}.app-calendar .app-navigation .app-navigation-entry-new-calendar .app-navigation-entry__name{color:var(--color-text-maxcontrast) !important}.app-calendar .app-navigation .app-navigation-entry-new-calendar:hover .app-navigation-entry__name,.app-calendar .app-navigation .app-navigation-entry-new-calendar--open .app-navigation-entry__name{color:var(--color-text-light) !important}.app-calendar .app-navigation .app-navigation-entry-new-calendar .action-item:not(.action-item--open) .action-item__menutoggle:not(:hover):not(:focus):not(:active){opacity:.5}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section div.multiselect{width:calc(100% - 14px);max-width:none;z-index:105}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .oneline{white-space:nowrap;position:relative}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList{list-style-type:none;display:flex;flex-direction:column}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li{height:44px;white-space:normal;display:inline-flex;align-items:center;position:relative}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li .username{padding:0 8px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup{margin-inline-start:auto;display:flex;align-items:center;white-space:nowrap}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>a:hover,.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>a:focus,.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>.share-menu>a:hover,.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>.share-menu>a:focus{box-shadow:none !important;opacity:1 !important}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>.icon:not(.hidden),.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>.share-menu .icon:not(.hidden){padding:14px;height:44px;width:44px;opacity:.5;display:block;cursor:pointer}.app-calendar .app-navigation ul>li.app-navigation-entry-wrapper div.sharing-section .shareWithList>li>.sharingOptionsGroup>.share-menu{position:relative;display:block}.app-calendar .app-navigation ul .appointment-config-list .app-navigation-caption{margin-top:22px}.app-calendar .app-navigation ul .appointment-config-list .app-navigation-entry-link,.app-calendar .app-navigation ul .appointment-config-list .app-navigation-entry-link *{cursor:default}/*! * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.property-text{display:flex;gap:calc(var(--default-grid-baseline)*4);margin:0;flex-grow:1;align-items:flex-start}.property-text-wrapper{display:flex;gap:calc(var(--default-grid-baseline)*4);justify-content:stretch}.property-text .property-text__input,.property-text textarea,.property-text input{width:100%;flex-basis:unset !important}.property-description span{align-self:flex-start;padding-top:var(--default-grid-baseline)}.property-title__input{font-size:calc(var(--default-font-size)*1.5);font-weight:bold;width:100%}.property-title__input input{width:100%}.property-title-time-picker{display:flex;justify-content:stretch;flex-direction:column}.property-title-time-picker__time-pickers{flex-grow:1;display:flex;gap:calc(var(--default-grid-baseline)*4)}.property-title-time-picker__time-pickers .date-time-picker{flex-grow:1;flex-basis:calc(var(--total-width)*2/3 - var(--column-gap)/2 - (var(--default-grid-baseline)*4 + 20px))}.property-select,.property-select-multiple,.property-color,.property-repeat__summary{display:flex;align-content:center;align-items:center;gap:calc(var(--default-grid-baseline)*4);justify-content:flex-start}.property-select__input,.property-select-multiple__input,.property-color__input,.property-repeat__summary__input{width:unset !important;flex-grow:1}.property-select__input .v-select,.property-select-multiple__input .v-select,.property-color__input .v-select,.property-repeat__summary__input .v-select{width:100%;margin:0 !important;overflow-x:hidden}.property-select__input .v-select .vs__dropdown-toggle,.property-select-multiple__input .v-select .vs__dropdown-toggle,.property-color__input .v-select .vs__dropdown-toggle,.property-repeat__summary__input .v-select .vs__dropdown-toggle{overflow-y:visible !important}.vs__selected-options{max-width:calc(100% - var(--default-clickable-area) - var(--default-grid-baseline))}.property-repeat__summary__content{max-width:300px}.property-repeat{display:flex}.property-repeat__summary{gap:calc(var(--default-grid-baseline)*4)}.property-categories .property-select-multiple-colored-tag{display:flex;align-content:center;align-items:center;gap:var(--default-grid-baseline)}.property-color__input{display:flex}.property-alarm-item{justify-content:space-between;display:flex;align-items:center;gap:calc(var(--default-grid-baseline)*4)}.property-alarm-item__front,.property-alarm-item__edit{margin-inline-start:calc(var(--default-grid-baseline)*10)}.app-full .property-alarm-item__front,.property-alarm-item__edit{margin-inline-start:calc(var(--default-grid-baseline)*9)}.property-alarm-item__label--default{color:var(--color-text-maxcontrast)}.property-add-talk{display:flex;gap:calc(var(--default-grid-baseline)*4)}.invitees-list{display:flex;flex-direction:column;gap:calc(var(--default-grid-baseline)*2)}.resource-search{display:flex;flex-direction:column;gap:calc(var(--default-grid-baseline)*2)}.resource-search__capacity{display:flex;align-items:center}.resource-search__capacity__actions{margin-inline-start:5px}.resource-search__capacity .input-field{margin-block-start:0}.resource-search .v-select{width:100%;margin:0 !important}.resource-search .v-select.select{min-width:unset !important}.editor-reminders-list-empty-message__caption{text-align:center;margin:0 0 calc(var(--default-grid-baseline)*4)}.repeat-option-set{flex-wrap:nowrap;align-items:baseline}.repeat-option-set .repeat-option-set__repeat{flex-wrap:nowrap;gap:calc(var(--default-grid-baseline)*2)}.repeat-option-set .repeat-option-set__repeat-field{flex:1 1 150px;min-width:150px}.repeat-option-set .repeat-option-set__end-repeat{display:flex;flex-wrap:wrap;align-items:center;gap:calc(var(--default-grid-baseline)*2)}.repeat-option-set .repeat-option-set__end-repeat .repeat-option-set__end-repeat-field{flex:1 1 150px;min-width:350px}.repeat-option-set .repeat-option-set-section:not(:first-of-type){margin-top:10px;display:flex;flex-wrap:wrap;flex-direction:column;gap:calc(var(--default-grid-baseline)*2)}.repeat-option-set .repeat-option-set-section--on-the-select{display:flex}.repeat-option-set .repeat-option-set-section--on-the-select .v-select{width:100%;min-width:100px !important}.repeat-option-set .repeat-option-set-section__title{list-style:none}.repeat-option-set .repeat-option-set-section__grid{display:grid;gap:0}.repeat-option-set .repeat-option-set-section__grid .repeat-option-set-section-grid-item{padding:var(--default-grid-baseline);width:100%;border:var(--border-width-input) solid var(--color-border-dark);text-align:center;margin:0}.repeat-option-set--weekly .repeat-option-set-section__grid,.repeat-option-set--monthly .repeat-option-set-section__grid{grid-template-columns:repeat(7, auto)}.repeat-option-set--yearly .repeat-option-set-section__grid{grid-template-columns:repeat(7, auto)}.repeat-option-set--interval-freq{display:flex}.repeat-option-set--interval-freq .multiselect{min-width:100px;width:25%}.repeat-option-set--end{margin-top:calc(var(--default-grid-baseline)*2)}.repeat-option-set--end .repeat-option-end{width:100%;display:flex;flex-wrap:wrap;align-items:center}.repeat-option-set--end .repeat-option-end__label,.repeat-option-set--end .repeat-option-end__end-type-select,.repeat-option-set--end .repeat-option-end__until,.repeat-option-set--end .repeat-option-end__count{flex:1 1 auto;min-width:0;margin-inline-end:calc(var(--default-grid-baseline)*2)}.repeat-option-set--end .repeat-option-end__label{display:block;min-width:60px}.repeat-option-set--end .repeat-option-end__end-type-select{min-width:90px;width:100%}.repeat-option-set--end .repeat-option-end__until{min-width:90px;width:100%;display:inline-block}.repeat-option-set--end .repeat-option-end__count{min-width:90px;width:100%}.repeat-option-set .end-repeat-container .end-repeat-dropdown,.repeat-option-set .end-repeat-container .end-repeat-date{flex:0 1 auto;min-width:150px;width:auto}.repeat-option-set__label{margin-inline-end:auto}.repeat-option-warning{text-align:center}.invitation-response-buttons--grow{width:unset;max-width:calc(var(--total-width)*2/3 - var(--column-gap)/2 - 38px);margin-inline-start:calc(var(--default-grid-baseline)*4 + 22px)}.resource-list-item,.invitees-list-item{display:flex;align-items:center;min-height:44px}.resource-list-item__displayname,.invitees-list-item__displayname{margin-inline-start:calc(var(--default-grid-baseline)*2)}.resource-list-item__actions,.invitees-list-item__actions{margin-inline-start:auto}.resource-list-item__organizer-hint,.invitees-list-item__organizer-hint{color:var(--color-text-maxcontrast);font-weight:300;margin-inline-start:var(--default-grid-baseline)}.invitees-search__vselect{margin-inline-start:calc(var(--default-grid-baseline)*4 + 20px)}.resource-search-list-item,.invitees-search-list-item{display:flex;align-items:center;width:100%;text-align:start}.resource-search-list-item__label,.invitees-search-list-item__label{width:100%;padding:0 calc(var(--default-grid-baseline)*2)}.resource-search-list-item__label__availability,.invitees-search-list-item__label__availability{color:var(--color-text-maxcontrast)}.resource-search-list-item__label div,.invitees-search-list-item__label div{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.resource-search-list-item__label div:nth-child(1),.invitees-search-list-item__label div:nth-child(1){color:var(--color-main-text)}.resource-search-list-item__label div:nth-child(2),.invitees-search-list-item__label div:nth-child(2){color:var(--color-text-lighter);line-height:1}textarea{padding:5px 12px !important}.property-select__input{height:34px}/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */#app-settings-modal .settings-fieldset-interior-item{align-items:stretch}#app-settings-modal .button-content-with-icon{display:flex;align-items:center;gap:calc(var(--default-grid-baseline)*2)}#app-settings-modal .no-wrap-label{white-space:nowrap}@media screen and (max-width: 800px){.shortcut-overview-modal .modal-container .shortcut-section{width:100%}}/*! * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.appointment-config-modal{padding:calc(var(--default-grid-baseline)*6)}.appointment-config-modal__form{display:flex;flex-direction:column;width:100%}.appointment-config-modal__form__title h2{margin:0}.appointment-config-modal__form fieldset{padding:calc(var(--default-grid-baseline)*4) 0}.appointment-config-modal__form fieldset header h3{font-size:20px;font-weight:600;margin:var(--default-grid-baseline) 0}.appointment-config-modal__form .availability-select,.appointment-config-modal__form .calendar-select{display:flex;flex-direction:column}.appointment-config-modal__form__row--wrapped{display:flex;flex-wrap:wrap;gap:calc(var(--default-grid-baseline)*2) calc(var(--default-grid-baseline)*4)}.appointment-config-modal__form__row--wrapped>div{flex:1}.appointment-config-modal__form__row--local{display:flex;flex-direction:column}.appointment-config-modal__form__row+.appointment-config-modal__form__row{margin-top:calc(var(--default-grid-baseline)*2)}.appointment-config-modal__form .multiselect__tags{height:unset !important;margin:0 !important}.appointment-config-modal__submit-button{margin-top:calc(var(--default-grid-baseline)*4);margin-inline-start:auto}.app-config-modal-confirmation .empty-content{margin-top:0 !important;margin-bottom:calc(var(--default-grid-baseline)*4)}.app-config-modal-confirmation__buttons{display:flex;justify-content:center;gap:0 calc(var(--default-grid-baseline)*2)}/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.modal--scheduler{position:relative}.modal--scheduler .fc-bgevent{opacity:.8}.modal--scheduler .blocking-event-free-busy{border-color:var(--color-primary-element);border-style:solid;border-inline-start-width:2px;border-inline-end-width:2px;background-color:rgba(0,0,0,0) !important;opacity:.7 !important;z-index:2}.modal--scheduler .blocking-event-free-busy.blocking-event-free-busy--first-row{border-radius:var(--border-radius) var(--border-radius) 0 0;border-block-start-width:2px}.modal--scheduler .blocking-event-free-busy.blocking-event-free-busy--last-row{border-radius:0 0 var(--border-radius) var(--border-radius);border-block-end-width:2px}.modal--scheduler .loading-indicator{width:100%;position:absolute;top:0;height:50px;margin-top:75px}.freebusy-caption{margin-top:10px}.freebusy-caption__calendar-user-types,.freebusy-caption__colors{width:50%;display:flex}.freebusy-caption__colors{width:100%;display:flex;flex-direction:column;padding:5px}.freebusy-caption__colors .freebusy-caption-item{display:flex;align-items:center;margin-inline-end:30px}.freebusy-caption__colors .freebusy-caption-item__color{height:1em;width:2em;display:block;border:1px solid var(--color-border-dark);opacity:.8}.freebusy-caption__colors .freebusy-caption-item__label{margin-inline-start:5px}/*! * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.fc{--fc-small-font-size: 0.875em;--fc-page-bg-color: var(--color-main-background) !important;--fc-neutral-bg-color: var(--color-background-dark) !important;--fc-neutral-text-color: var(--color-text-lighter) !important;--fc-border-color: var(--color-border) !important;--fc-daygrid-event-dot-width: 10px !important;--fc-event-bg-color: var(--color-primary-element);--fc-event-border-color: var(--color-primary-element);--fc-event-text-color: var(--color-main-text);--fc-event-selected-overlay-color: var(--color-box-shadow);--fc-event-resizer-thickness: 8px;--fc-event-resizer-dot-total-width: 8px;--fc-event-resizer-dot-border-width: 1px;--fc-non-business-color: var(--color-background-dark);--fc-bg-event-color: var(--color-primary-element);--fc-bg-event-opacity: 0.3;--fc-highlight-color: rgba(188, 232, 241, 0.3);--fc-today-bg-color: var(--color-main-background) !important;--fc-now-indicator-color: red;--fc-list-event-hover-bg-color: var(--color-background-hover) !important;font-family:var(--font-face) !important}.fc-timegrid-axis-frame,.fc-timegrid-slot-label,.fc-col-header-cell a{color:var(--color-text-lighter) !important}.fc .fc-timegrid-slot-minor{border-block-start-style:none !important}.fc-daygrid-day-top{justify-content:center}.fc-state-highlight.fc-day-number,.fc tbody tr,.fc tbody tr:hover,.fc tbody tr:focus{background:inherit !important}.fc-day-today.fc-col-header-cell a,.fc-day-today.fc-col-header-cell span{padding:2px 6px;font-weight:bold;background-color:var(--color-primary-element);color:var(--color-primary-element-text) !important;border-radius:var(--border-radius-small)}.fc-day-today .fc-event{box-shadow:0px 0px 0px 1px var(--color-primary-element-light) !important;margin-top:0px}.fc-day-today .fc-daygrid-day-top .fc-daygrid-day-number{margin:var(--default-grid-baseline) 0 calc(var(--default-grid-baseline) + 1px);padding:0 var(--default-grid-baseline);text-align:center;font-weight:bold !important;background:var(--color-primary-element);color:var(--color-primary-element-text);border-radius:var(--border-radius-small)}.fc-list-table td{white-space:normal;word-break:break-word}.fc .fc-list-sticky .fc-list-day>*{z-index:1}.fc-list-table .fc-list-day-cushion{padding-inline-start:calc(var(--default-clickable-area) + var(--default-grid-baseline)*2)}.fc-timeGridWeek-view .fc-col-header-cell.fc-day-today,.fc-timeGridWeek-view .fc-daygrid-day.fc-day-today,.fc-timeGridWeek-view .fc-timegrid-col.fc-day-today,.fc-dayGridMonth-view .fc-col-header-cell.fc-day-today,.fc-dayGridMonth-view .fc-daygrid-day.fc-day-today,.fc-dayGridMonth-view .fc-timegrid-col.fc-day-today{background-color:var(--color-primary-element-light) !important}.fc-daygrid-day.fc-day.fc-day-other,.fc .fc-daygrid-day.fc-day-today.fc-day-other{background-color:var(--color-background-dark) !important;border:1px solid var(--color-background-darker)}.fc-daygrid-day.fc-day.fc-day-other .fc-daygrid-day-top,.fc .fc-daygrid-day.fc-day-today.fc-day-other .fc-daygrid-day-top{opacity:.8}.fc-event{padding-inline-start:3px}.fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event){border-block-start-width:0 !important;border-block-end-width:0 !important;border-inline-end-width:0 !important;border-inline-start-width:calc(var(--default-grid-baseline) + var(--default-grid-basline)*.5) !important;border-inline-start-style:solid !important}.fc-event.fc-event-nc-free:not(.fc-daygrid-dot-event):not(.fc-list-event):not(.fc-timegrid-event){position:relative}.fc-event.fc-event-nc-free:not(.fc-daygrid-dot-event):not(.fc-list-event){border-inline-start-color:rgba(0,0,0,0) !important}.fc-event.fc-event-nc-free:not(.fc-daygrid-dot-event):not(.fc-list-event)::before{content:"";position:absolute;inset-inline-start:calc(-1*var(--default-grid-baseline));top:0;bottom:0;width:var(--default-grid-baseline);background:var(--fc-page-bg-color);border-inline-start:1px solid var(--nc-event-color, currentColor);border-inline-end:1px solid var(--nc-event-color, currentColor);border-start-start-radius:inherit;border-end-start-radius:inherit;box-sizing:border-box}.fc-event.fc-event-nc-task-completed .fc-event-title,.fc-event.fc-event-nc-task-completed .fc-list-event-title,.fc-event.fc-event-nc-cancelled .fc-event-title,.fc-event.fc-event-nc-cancelled .fc-list-event-title{text-decoration:line-through !important}.fc-event.fc-event-nc-all-declined:not(.fc-daygrid-dot-event):not(.fc-list-event),.fc-event.fc-event-nc-needs-action:not(.fc-daygrid-dot-event):not(.fc-list-event),.fc-event.fc-event-nc-declined:not(.fc-daygrid-dot-event):not(.fc-list-event){background-color:rgba(0,0,0,0) !important;border-block-start-width:1px !important;border-block-end-width:1px !important;border-inline-end-width:1px !important;border-inline-start-width:calc(var(--default-grid-baseline) + var(--default-grid-basline)*.5) !important}.fc-event .fc-event-title{text-overflow:ellipsis;font-weight:700}.fc-event .fc-event-nc-alarms .icon-event-reminder{background-color:inherit;background-position:right;position:absolute;top:0;inset-inline-end:0}.fc-event .fc-event-nc-alarms .icon-event-reminder--light{background-image:var(--icon-calendar-reminder-fffffe)}.fc-event .fc-event-nc-alarms .icon-event-reminder--dark{background-image:var(--icon-calendar-reminder-000001)}.fc-event .fc-event-title-container{display:flex;align-content:center}.fc-event .fc-event-title-container .fc-event-title-checkbox{margin:4px 4px 0 0;line-height:1}.fc-event .fc-list-event-checkbox{margin:2px 4px 0 -2px;line-height:1}.fc-event .fc-daygrid-event-checkbox{margin:2px 4px 0 4px;line-height:1}.fc-event .fc-list-event-location span,.fc-event .fc-list-event-description span{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;white-space:pre-wrap;max-width:25vw}.fc-event svg{margin-inline-end:2px}@media only screen and (max-width: 767px){.fc-event .fc-list-event-location,.fc-event .fc-list-event-description{display:none}}.fc-list-empty .fc-list-empty-cushion{display:none}.fc-list-empty .empty-content{margin-top:0 !important}.fc-timeGridWeek-view .fc-daygrid-more-link{word-break:break-all;white-space:normal}.fc-timeGridWeek-view .fc-event-main{flex-wrap:wrap}.fc-timegrid-col-events{margin:0 !important}.fc-v-event.fc-timegrid-event-short{min-height:2em}.fc-v-event .fc-event-title{white-space:initial}.fc-dayGridMonth-view .fc-daygrid-more-link{word-break:break-word;white-space:normal}.fc-dayGridMonth-view .fc-daygrid-day-frame{min-height:150px !important}.fc-col-header-cell{padding-top:10px !important}.fc-col-header-cell-cushion{text-overflow:ellipsis;overflow:clip;max-width:100%}.fc-timegrid-axis-cushion{margin-top:44px}.fc-timegrid-axis.fc-scrollgrid-shrink{height:65px}.fc-timegrid-event-harness,.fc-timegrid-event{margin-bottom:0}.fc-timeGridDay-view .fc-event,.fc-timeGridWeek-view .fc-event{margin-inline-end:1vw}.fc-timeGridDay-view .fc-event-mirror,.fc-timeGridWeek-view .fc-event-mirror{border:none !important}.fc-timeGridDay-view .fc-event{margin-inline-end:2vw}@media(prefers-contrast: more){.fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event){background-color:var(--fc-page-bg-color) !important;background-image:none !important}.fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-title,.fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-time{color:var(--color-main-text) !important}}[data-theme-light-highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event),[data-theme-dark-highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event),[data-themes*=highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event){background-color:var(--fc-page-bg-color) !important;background-image:none !important}[data-theme-light-highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-title,[data-theme-light-highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-time,[data-theme-dark-highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-title,[data-theme-dark-highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-time,[data-themes*=highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-title,[data-themes*=highcontrast] .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) .fc-event-time{color:var(--color-main-text) !important}/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.toast-calendar-multiline{white-space:pre-wrap}.app-navigation-spacer{list-style-type:none}/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.import-modal .modal-container{padding:24px !important;min-width:50%;overflow:visible !important}.import-modal .modal-container .import-modal__title,.import-modal .modal-container .import-modal__subtitle{text-align:center}.import-modal .modal-container .import-modal__actions{display:flex;gap:5px}.import-modal .modal-container .import-modal-file-item{display:flex;margin-top:calc(var(--default-grid-baseline)*2);margin-bottom:calc(var(--default-grid-baseline)*2)}.import-modal .modal-container .import-modal-file-item--header{font-weight:bold}.import-modal .modal-container .import-modal-file-item__filename{flex:2 1 0}.import-modal .modal-container .import-modal-file-item__calendar-select{flex:1 1 0}.import-modal .modal-container .import-modal-file-item__calendar-disabled-hint{color:var(--color-text-maxcontrast)}/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */@media print{.app-navigation{display:none}}/*! * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */#emptycontent-container #emptycontent{color:#a9a9a9 !important}.content.app-calendar.app-calendar-public-embedded{flex-direction:column}.content.app-calendar.app-calendar-public-embedded #embed-header{flex-wrap:wrap;gap:calc(var(--default-grid-baseline)*2);width:100%;padding:calc(var(--default-grid-baseline)*2);box-sizing:border-box;background-color:var(--color-main-background);border-bottom:1px solid var(--color-border);overflow:visible;z-index:2000;display:flex;align-items:center;justify-content:space-between}.content.app-calendar.app-calendar-public-embedded #embed-header .embed-header__date-section,.content.app-calendar.app-calendar-public-embedded #embed-header .embed-header__share-section{display:flex;gap:5px}.content.app-calendar.app-calendar-public-embedded #embed-header .view-button-section .button{min-width:75px}.content.app-calendar.app-calendar-public-embedded #embed-header .datepicker-button-section button,.content.app-calendar.app-calendar-public-embedded #embed-header .today-button-section button,.content.app-calendar.app-calendar-public-embedded #embed-header .view-button-section button{margin:0}.content.app-calendar.app-calendar-public-embedded .app-content{flex-basis:auto}#body-public input#initial-state-calendar-is_embed~header#header{display:none}#body-public .app-calendar-public+footer{border-radius:0 0 var(--border-radius-large) var(--border-radius-large)}#body-public .app-calendar-public .app-content{height:calc(100% - 65px) !important}/*! * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */.property-text__input--linkify{flex-basis:min-content}.linkify-links{border:2px solid var(--color-border-maxcontrast);border-radius:var(--border-radius-large);cursor:text;width:100% !important;box-sizing:border-box;padding:12px;white-space:pre-line;overflow:auto;line-height:normal;word-break:break-word;display:inline-block;vertical-align:top;max-height:16em;max-height:calc(100vh - 500px)}.linkify-links a.linkified{text-decoration:underline;margin:0}.linkify-links a.linkified::after{content:" ↗"}`,"",{version:3,sources:["webpack://./css/calendar.scss","webpack://./css/app-navigation.scss","webpack://./css/app-full.scss","webpack://./css/app-settings.scss","webpack://./css/app-modal.scss","webpack://./css/freebusy.scss","webpack://./css/fullcalendar.scss","webpack://./css/global.scss","webpack://./css/import.scss","webpack://./css/print.scss","webpack://./css/public.scss","webpack://./css/props-linkify-links.scss"],names:[],mappings:"AAAA;;;EAAA,CAAA;;;EAAA,CCKA,6EACC,wDAAA,CACA,wDAAA,CAQA,gHAGC,YAAA,CAIA,+CACC,sFAAA,CAED,gDACC,sFAAA,CAIF,oCACC,2BAAA,CAEA,2DACC,iDAAA,CAIF,4CACC,YAAA,CACA,gCAAA,CACA,uCAAA,CAGA,oDACC,yCAAA,CAGD,uDACC,WAAA,CACA,sBAAA,CACA,kBAAA,CACA,eAAA,CAGD,mDACC,WAAA,CACA,6BAAA,CAUD,gDACC,qBAAA,CAGD,kGAEC,qBAAA,CAGD,+eASC,oBAAA,CAGD,8CACC,wBAAA,CAIA,gGACC,eAAA,CAKD,gGACC,4BAAA,CAIF,yEACC,8DAAA,CACA,wBAAA,CACA,wBAAA,CAIA,iGACC,0CAAA,CAIF,kHACC,iCAAA,CAEA,0HACC,UAAA,CACA,WAAA,CACA,yCAAA,CACA,oBAAA,CAGD,oIACC,6CAAA,CACA,UAAA,CAIF,iEACC,aAAA,CAEA,8EACC,UAAA,CACA,wCAAA,CAEA,+FACC,sBAAA,CAMF,mFACC,+BAAA,CAGD,2FACC,yBAAA,CAKD,6FACC,8CAAA,CAKA,sMACC,wCAAA,CAKD,oKACC,UAAA,CAkBA,qGACC,uBAAA,CACA,cAAA,CACA,WAAA,CAGD,8FACC,kBAAA,CACA,iBAAA,CAGD,oGACC,oBAAA,CACA,YAAA,CACA,qBAAA,CAEA,uGACC,WAAA,CACA,kBAAA,CACA,mBAAA,CACA,kBAAA,CACA,iBAAA,CAIA,iHACC,aAAA,CACA,eAAA,CACA,kBAAA,CACA,sBAAA,CAGD,4HACC,wBAAA,CACA,YAAA,CACA,kBAAA,CACA,kBAAA,CAEA,wiBAIC,0BAAA,CACA,oBAAA,CAGD,0SAEC,YAAA,CACA,WAAA,CACA,UAAA,CACA,UAAA,CACA,aAAA,CACA,cAAA,CAGD,wIACC,iBAAA,CACA,aAAA,CASL,kFACC,eAAA,CAGD,4KAEC,cAAA,CCpQL;;;EAAA,CAKA,eACC,YAAA,CACA,wCAAA,CACA,QAAA,CACA,WAAA,CACA,sBAAA,CAEA,uBACC,YAAA,CACA,wCAAA,CACA,uBAAA,CAGD,kFACC,UAAA,CACA,2BAAA,CAKD,2BACC,qBAAA,CACA,wCAAA,CAIF,uBACC,4CAAA,CACA,gBAAA,CACA,UAAA,CAEA,6BACC,UAAA,CAIF,4BACC,YAAA,CACA,uBAAA,CACA,qBAAA,CAEA,0CACC,WAAA,CACA,YAAA,CACA,wCAAA,CAEA,4DACC,WAAA,CACA,uGAAA,CAKH,qFACC,YAAA,CACA,oBAAA,CACA,kBAAA,CACA,wCAAA,CACA,0BAAA,CAEA,iHACC,sBAAA,CACA,WAAA,CAEA,yJACC,UAAA,CACA,mBAAA,CACA,iBAAA,CAEA,6OACC,6BAAA,CAMJ,sBACC,mFAAA,CAGD,mCACC,eAAA,CAGD,iBACC,YAAA,CAGD,0BACC,wCAAA,CAGD,2DACC,YAAA,CACA,oBAAA,CACA,kBAAA,CACA,gCAAA,CAGD,uBACC,YAAA,CAGD,qBACC,6BAAA,CACA,YAAA,CACA,kBAAA,CACA,wCAAA,CAEA,uDACC,yDAAA,CAGD,iEACC,wDAAA,CAGD,qCACC,mCAAA,CAIF,mBACC,YAAA,CACA,wCAAA,CAGD,eACC,YAAA,CACA,qBAAA,CACA,wCAAA,CAGD,iBACC,YAAA,CACA,qBAAA,CACA,wCAAA,CAEA,2BACC,YAAA,CACA,kBAAA,CAEA,oCACC,uBAAA,CAGD,wCACC,oBAAA,CAIF,2BACC,UAAA,CACA,mBAAA,CAGD,kCACC,0BAAA,CAIF,8CACC,iBAAA,CACA,+CAAA,CAGD,mBACC,gBAAA,CACA,oBAAA,CAEA,8CACC,gBAAA,CACA,wCAAA,CAED,oDACC,cAAA,CACA,eAAA,CAED,kDACC,YAAA,CACA,cAAA,CACA,kBAAA,CACA,wCAAA,CAEA,uFACC,cAAA,CACA,eAAA,CAID,kEACC,eAAA,CACA,YAAA,CACA,cAAA,CACA,qBAAA,CACA,wCAAA,CAGD,6DACC,YAAA,CAEA,uEACC,UAAA,CACA,0BAAA,CAIF,qDACC,eAAA,CAGD,oDACC,YAAA,CACA,KAAA,CAEA,yFACC,oCAAA,CACA,UAAA,CACA,+DAAA,CACA,iBAAA,CACA,QAAA,CAQD,yHACC,qCAAA,CAOD,4DACC,qCAAA,CAKH,kCACC,YAAA,CAEA,+CACC,eAAA,CACA,SAAA,CAIF,wBACC,+CAAA,CACA,2CACC,UAAA,CACA,YAAA,CACA,cAAA,CACA,kBAAA,CACA,kNAIC,aAAA,CACA,WAAA,CACA,sDAAA,CAED,kDACC,aAAA,CACA,cAAA,CAED,4DACC,cAAA,CACA,UAAA,CAGD,kDACC,cAAA,CACA,UAAA,CACA,oBAAA,CAGD,kDACC,cAAA,CACA,UAAA,CAIH,wHAEC,aAAA,CACA,eAAA,CACA,UAAA,CAGD,0BACC,sBAAA,CAIF,uBACC,iBAAA,CAGD,mCACC,WAAA,CACA,mEAAA,CACA,+DAAA,CAGD,wCAEC,YAAA,CACA,kBAAA,CACA,eAAA,CAEA,kEACC,wDAAA,CAGD,0DACC,wBAAA,CAGD,wEACC,mCAAA,CACA,eAAA,CACA,gDAAA,CAIF,0BACC,+DAAA,CAGD,sDAEC,YAAA,CACA,kBAAA,CACA,UAAA,CACA,gBAAA,CAGA,oEACC,UAAA,CACA,8CAAA,CAEA,gGACC,mCAAA,CAGD,4EACC,eAAA,CACA,sBAAA,CACA,kBAAA,CAGD,sGACC,4BAAA,CAGD,sGACC,+BAAA,CACA,aAAA,CAMH,SACC,2BAAA,CAGD,wBACC,WAAA,CC1XD;;;EAAA,CAMC,qDACC,mBAAA,CAGD,8CACC,YAAA,CACA,kBAAA,CACA,wCAAA,CAGD,mCACC,kBAAA,CAKF,qCACC,4DACC,UAAA,CAAA,CCxBF;;;EAAA,CAKA,0BACC,4CAAA,CAEA,gCACC,YAAA,CACA,qBAAA,CACA,UAAA,CAGC,0CACC,QAAA,CAKF,yCACC,8CAAA,CAIC,mDACC,cAAA,CACA,eAAA,CACA,qCAAA,CAKH,sGACC,YAAA,CACA,qBAAA,CAIA,8CACC,YAAA,CAEA,cAAA,CACA,6EAAA,CAEA,kDACC,MAAA,CAKF,4CACC,YAAA,CACA,qBAAA,CAIF,0EACC,+CAAA,CAID,mDACC,uBAAA,CACA,mBAAA,CAIF,yCACC,+CAAA,CACA,wBAAA,CAKD,8CACC,uBAAA,CACA,kDAAA,CAGD,wCACC,YAAA,CACA,sBAAA,CACA,0CAAA,CCnFF;;;EAAA,CAKA,kBACC,iBAAA,CAEA,8BACC,UAAA,CAGD,4CACC,yCAAA,CACA,kBAAA,CACA,6BAAA,CACA,2BAAA,CACA,yCAAA,CACA,qBAAA,CACA,SAAA,CAGD,gFACC,2DAAA,CACA,4BAAA,CAGD,+EACC,2DAAA,CACA,0BAAA,CAGD,qCACC,UAAA,CACA,iBAAA,CACA,KAAA,CACA,WAAA,CACA,eAAA,CAIF,kBACC,eAAA,CAEA,iEAEC,SAAA,CACA,YAAA,CAGD,0BACC,UAAA,CACA,YAAA,CACA,qBAAA,CACA,WAAA,CACA,iDACC,YAAA,CACA,kBAAA,CACA,sBAAA,CAEA,wDACC,UAAA,CACA,SAAA,CACA,aAAA,CACA,yCAAA,CACA,UAAA,CAGD,wDACC,uBAAA,CCrEJ;;;EAAA,CAMA,IACC,6BAAA,CACA,2DAAA,CACA,8DAAA,CACA,6DAAA,CACA,iDAAA,CAEA,6CAAA,CAEA,iDAAA,CACA,qDAAA,CACA,6CAAA,CACA,0DAAA,CAEA,iCAAA,CACA,uCAAA,CACA,wCAAA,CAEA,qDAAA,CACA,iDAAA,CACA,0BAAA,CACA,8CAAA,CACA,4DAAA,CACA,6BAAA,CACA,wEAAA,CACA,uCAAA,CAKD,sEAGC,0CAAA,CAID,4BACC,wCAAA,CAID,oBACC,sBAAA,CAID,qFAIC,6BAAA,CAMC,yEACC,eAAA,CACA,gBAAA,CACA,6CAAA,CACA,kDAAA,CACA,wCAAA,CAIF,wBACC,wEAAA,CACA,cAAA,CAIA,yDACC,8EAAA,CACA,sCAAA,CACA,iBAAA,CACA,2BAAA,CACA,uCAAA,CACA,uCAAA,CACA,wCAAA,CAMH,kBACC,kBAAA,CAGA,qBAAA,CAID,mCACC,SAAA,CAID,oCACC,yFAAA,CAMA,4TAGC,8DAAA,CAKF,kFAEC,wDAAA,CACA,+CAAA,CACA,0HACC,UAAA,CAKF,UACC,wBAAA,CAGA,yDACC,qCAAA,CACA,mCAAA,CACA,oCAAA,CACA,wGAAA,CACA,0CAAA,CAMC,kGACC,iBAAA,CAFF,0EAKC,kDAAA,CAEA,kFACC,UAAA,CACA,iBAAA,CAEA,wDAAA,CACA,KAAA,CACA,QAAA,CACA,kCAAA,CACA,kCAAA,CACA,iEAAA,CACA,+DAAA,CACA,iCAAA,CACA,+BAAA,CACA,qBAAA,CAOF,oNAEC,uCAAA,CASD,kPACC,yCAAA,CACA,uCAAA,CACA,qCAAA,CACA,sCAAA,CACA,wGAAA,CAIF,0BACC,sBAAA,CACA,eAAA,CAKA,mDACC,wBAAA,CACA,yBAAA,CACA,iBAAA,CACA,KAAA,CACA,kBAAA,CACA,0DACC,qDAAA,CAED,yDACC,qDAAA,CAMH,oCACC,YAAA,CACA,oBAAA,CAEA,6DACC,kBAAA,CACA,aAAA,CAIF,kCACC,qBAAA,CACA,aAAA,CAGD,qCACC,oBAAA,CACA,aAAA,CAGD,iFAEC,eAAA,CACA,sBAAA,CACA,mBAAA,CACA,oBAAA,CACA,2BAAA,CACA,oBAAA,CACA,cAAA,CAGD,cACC,qBAAA,CAGD,0CACC,uEAEC,YAAA,CAAA,CAMF,sCACC,YAAA,CAGD,8BACC,uBAAA,CAKD,4CAGC,oBAAA,CACA,kBAAA,CAGD,qCACC,cAAA,CAIF,wBACC,mBAAA,CAIA,oCACC,cAAA,CAGD,4BACC,mBAAA,CAMD,4CAGC,qBAAA,CACA,kBAAA,CAGD,4CACC,2BAAA,CAKF,oBACC,2BAAA,CAEA,4BACC,sBAAA,CACA,aAAA,CACA,cAAA,CAIF,0BACC,eAAA,CAID,uCACC,WAAA,CAGD,8CAGC,eAAA,CAKA,+DACC,qBAAA,CAGD,6EACC,sBAAA,CAMD,+BACC,qBAAA,CAuBF,+BAXC,yDACC,mDAAA,CACA,gCAAA,CAEA,iJAEC,uCAAA,CAAA,CANF,sQACC,mDAAA,CACA,gCAAA,CAEA,ymBAEC,uCAAA,CC7WH;;;EAAA,CAKA,0BACC,oBAAA,CAGD,uBACC,oBAAA,CCVD;;;EAAA,CAMC,+BACC,uBAAA,CACA,aAAA,CACA,2BAAA,CAEA,2GAEC,iBAAA,CAGD,sDACC,YAAA,CACA,OAAA,CAGD,uDACC,YAAA,CACA,+CAAA,CACA,kDAAA,CAEA,+DACC,gBAAA,CAGD,iEACC,UAAA,CAGD,wEACC,UAAA,CAGD,+EACC,mCAAA,CCvCJ;;;EAAA,CAKA,aACC,gBACC,YAAA,CAAA,CCPF;;;EAAA,CAKA,sCACC,wBAAA,CAGD,mDACC,qBAAA,CAEA,iEACC,cAAA,CACA,wCAAA,CACA,UAAA,CACA,4CAAA,CACA,qBAAA,CACA,6CAAA,CACA,2CAAA,CACA,gBAAA,CACA,YAAA,CACA,YAAA,CACA,kBAAA,CACA,6BAAA,CAEA,2LAEC,YAAA,CACA,OAAA,CAIA,8FACC,cAAA,CAQD,8RAEC,QAAA,CAKH,gEAEC,eAAA,CAKD,iEACC,YAAA,CAGA,yCAEC,uEAAA,CAGD,+CACC,mCAAA,CClEH;;;EAAA,CAIA,+BACC,sBAAA,CAGD,eACC,gDAAA,CACA,wCAAA,CACA,WAAA,CACA,qBAAA,CACA,qBAAA,CACA,YAAA,CACA,oBAAA,CACA,aAAA,CACA,kBAAA,CAGA,qBAAA,CACA,oBAAA,CACA,kBAAA,CACA,eAAA,CACA,8BAAA,CAEA,2BACC,yBAAA,CAGA,QAAA,CAEA,kCACC,YAAA",sourcesContent:["/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n@use 'app-navigation.scss';\n@use 'app-full.scss';\n@use 'app-settings.scss';\n@use 'app-modal.scss';\n@use 'freebusy.scss';\n@use 'fullcalendar.scss';\n@use 'global.scss';\n@use 'import.scss';\n@use 'print.scss';\n@use 'public.scss';\n@use 'props-linkify-links.scss';\n","/*!\n * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n%prevent-overlap {\n background-color: var(--color-main-background) !important;\n border: 1px solid var(--color-background-dark) !important;\n}\n\n.app-navigation-toggle--prevent-overlap {\n @extend %prevent-overlap;\n}\n\n.app-calendar {\n .datepicker-button-section,\n .today-button-section,\n .view-button-section {\n display: flex;\n }\n\n .datepicker-button-section {\n &__left{\n border-radius: var(--border-radius-element) 0 0 var(--border-radius-element) !important;\n }\n &__right{\n border-radius: 0 var(--border-radius-element) var(--border-radius-element) 0 !important;\n }\n }\n\n .app-navigation__body {\n overflow-y: unset !important;\n\n .app-navigation-header {\n padding: calc(var(--default-grid-baseline, 4px) * 2);\n }\n }\n\n .new-event-today-view-section {\n display: flex;\n gap: var(--default-grid-baseline);\n margin-top: var(--default-grid-baseline);\n\n // Fix margins from core\n .button {\n margin: 0 var(--default-grid-baseline) 0 0;\n }\n\n .new-event {\n flex-grow: 5;\n text-overflow: ellipsis;\n white-space: nowrap;\n overflow: hidden;\n }\n\n .today {\n flex-grow: 1;\n font-weight: normal !important;\n }\n }\n\n // Add background to navigation toggle to fix overlap with calendar elements\n .app-navigation-toggle {\n @extend %prevent-overlap;\n }\n\n .app-navigation {\n button.icon-share {\n opacity: 0.3 !important;\n }\n\n button.icon-shared,\n button.icon-public {\n opacity: 0.7 !important;\n }\n\n button.icon-share:active,\n button.icon-share:focus,\n button.icon-share:hover,\n button.icon-shared:active,\n button.icon-shared:focus,\n button.icon-shared:hover,\n button.icon-public:active,\n button.icon-public:focus,\n button.icon-public:hover {\n opacity: 1 !important;\n }\n\n #calendars-list {\n display: block !important;\n }\n\n li.app-navigation-loading-placeholder-entry {\n div.icon.icon-loading {\n min-height: 44px;\n }\n }\n\n .app-navigation-entry-wrapper.deleted {\n .app-navigation-entry__name {\n text-decoration: line-through;\n }\n }\n\n .app-navigation-entry-wrapper.open-sharing {\n box-shadow: inset 4px 0 var(--color-primary-element) !important;\n margin-inline-start: -6px;\n padding-inline-start: 6px;\n }\n\n .app-navigation-entry-wrapper.disabled {\n .app-navigation-entry__name {\n color: var(--color-text-lighter) !important;\n }\n }\n\n .app-navigation-entry-wrapper .app-navigation-entry__children .app-navigation-entry {\n padding-inline-start: 0 !important;\n\n .avatar {\n width: 32px;\n height: 32px;\n background-color: var(--color-border-dark);\n background-size: 16px;\n }\n\n .avatar.published {\n background-color: var(--color-primary-element);\n color: white;\n }\n }\n\n .app-navigation-entry__multiselect {\n padding: 0 8px;\n\n .multiselect {\n width: 100%;\n border-radius: var(--border-radius-large);\n\n &__content-wrapper {\n z-index: 200 !important;\n }\n }\n }\n\n .app-navigation-entry__utils {\n .action-checkbox__label {\n padding-inline-end: 0 !important;\n }\n\n .action-checkbox__label::before {\n margin: 0 4px 0 !important;\n }\n }\n\n .app-navigation-entry-new-calendar {\n .app-navigation-entry__name {\n color: var(--color-text-maxcontrast) !important;\n }\n\n &:hover,\n &--open {\n .app-navigation-entry__name{\n color: var(--color-text-light) !important;\n }\n }\n\n .action-item:not(.action-item--open) {\n .action-item__menutoggle:not(:hover):not(:focus):not(:active) {\n opacity: .5;\n }\n }\n\n }\n\n\n ul {\n\n // Calendar list items / Subscription list items\n > li.app-navigation-entry-wrapper {\n\n div.sharing-section {\n //box-shadow: inset 4px 0 var(--color-primary-element);\n //padding-left: 12px;\n //padding-right: 12px;\n //width: 100%;\n\n div.multiselect {\n width: calc(100% - 14px);\n max-width: none;\n z-index: 105;\n }\n\n .oneline {\n white-space: nowrap;\n position: relative;\n }\n\n .shareWithList {\n list-style-type: none;\n display: flex;\n flex-direction: column;\n\n > li {\n height: 44px;\n white-space: normal;\n display: inline-flex;\n align-items: center;\n position: relative;\n\n\n\n .username {\n padding: 0 8px;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n }\n\n > .sharingOptionsGroup {\n margin-inline-start: auto;\n display: flex;\n align-items: center;\n white-space: nowrap;\n\n > a:hover,\n > a:focus,\n > .share-menu > a:hover,\n > .share-menu > a:focus {\n box-shadow: none !important;\n opacity: 1 !important;\n }\n\n > .icon:not(.hidden),\n > .share-menu .icon:not(.hidden){\n padding: 14px;\n height: 44px;\n width: 44px;\n opacity: 0.5;\n display: block;\n cursor: pointer;\n }\n\n > .share-menu {\n position: relative;\n display: block;\n }\n }\n }\n }\n }\n }\n\n .appointment-config-list {\n .app-navigation-caption {\n margin-top: 22px;\n }\n\n .app-navigation-entry-link,\n .app-navigation-entry-link * {\n cursor: default;\n }\n }\n }\n }\n}\n","/*!\n * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n.property-text {\n display: flex;\n gap: calc(var(--default-grid-baseline) * 4);\n margin: 0;\n flex-grow: 1;\n align-items: flex-start;\n\n &-wrapper {\n display: flex;\n gap: calc(var(--default-grid-baseline) * 4);\n justify-content: stretch;\n }\n\n .property-text__input, textarea, input {\n width: 100%;\n flex-basis: unset !important;\n }\n}\n\n.property-description {\n span {\n align-self: flex-start;\n padding-top: var(--default-grid-baseline);\n }\n}\n\n.property-title__input {\n font-size: calc(var(--default-font-size) * 1.5);\n font-weight: bold;\n width: 100%;\n\n input {\n width: 100%;\n }\n}\n\n.property-title-time-picker {\n display: flex;\n justify-content: stretch;\n flex-direction: column;\n\n &__time-pickers {\n flex-grow: 1;\n display: flex;\n gap: calc(var(--default-grid-baseline) * 4);\n\n .date-time-picker {\n flex-grow: 1;\n flex-basis: calc(var(--total-width) * 2 / 3 - var(--column-gap) / 2 - (var(--default-grid-baseline) * 4 + 20px));\n }\n }\n}\n\n.property-select, .property-select-multiple, .property-color, .property-repeat__summary {\n display: flex;\n align-content: center;\n align-items: center;\n gap: calc(var(--default-grid-baseline) * 4);\n justify-content: flex-start;\n\n &__input {\n width: unset !important;\n flex-grow: 1;\n\n .v-select {\n width: 100%;\n margin: 0 !important;\n overflow-x: hidden;\n\n .vs__dropdown-toggle {\n overflow-y: visible !important;\n }\n }\n }\n}\n\n.vs__selected-options {\n max-width: calc(100% - var(--default-clickable-area) - var(--default-grid-baseline));\n}\n\n.property-repeat__summary__content {\n max-width: 300px;\n}\n\n.property-repeat {\n display: flex;\n}\n\n.property-repeat__summary {\n gap: calc(var(--default-grid-baseline) * 4);\n}\n\n.property-categories .property-select-multiple-colored-tag {\n display: flex;\n align-content: center;\n align-items: center;\n gap: var(--default-grid-baseline);\n}\n\n.property-color__input {\n display: flex;\n}\n\n.property-alarm-item {\n justify-content: space-between;\n display: flex;\n align-items: center;\n gap: calc(var(--default-grid-baseline) * 4);\n\n &__front, &__edit {\n margin-inline-start: calc(var(--default-grid-baseline) * 10);\n }\n\n .app-full &__front, &__edit {\n margin-inline-start: calc(var(--default-grid-baseline) * 9);\n }\n\n &__label--default {\n color: var(--color-text-maxcontrast);\n }\n}\n\n.property-add-talk {\n display: flex;\n gap: calc(var(--default-grid-baseline) * 4);\n}\n\n.invitees-list {\n display: flex;\n flex-direction: column;\n gap: calc(var(--default-grid-baseline) * 2);\n}\n\n.resource-search {\n display: flex;\n flex-direction: column;\n gap: calc(var(--default-grid-baseline) * 2);\n\n &__capacity {\n display: flex;\n align-items: center;\n\n &__actions {\n margin-inline-start: 5px;\n }\n\n .input-field {\n margin-block-start: 0;\n }\n }\n\n .v-select {\n width: 100%;\n margin: 0 !important;\n }\n\n .v-select.select {\n min-width: unset !important;\n }\n}\n\n.editor-reminders-list-empty-message__caption {\n text-align: center;\n margin: 0 0 calc(var(--default-grid-baseline) * 4);\n}\n\n.repeat-option-set {\n flex-wrap: nowrap;\n align-items: baseline;\n\n .repeat-option-set__repeat {\n flex-wrap: nowrap;\n gap: calc(var(--default-grid-baseline) * 2);\n }\n .repeat-option-set__repeat-field {\n flex: 1 1 150px;\n min-width: 150px;\n }\n .repeat-option-set__end-repeat {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: calc(var(--default-grid-baseline) * 2);\n\n .repeat-option-set__end-repeat-field {\n flex: 1 1 150px;\n min-width: 350px;\n }\n }\n .repeat-option-set-section {\n &:not(:first-of-type) {\n margin-top: 10px;\n display: flex;\n flex-wrap: wrap;\n flex-direction: column;\n gap: calc(var(--default-grid-baseline) * 2);\n }\n\n &--on-the-select {\n display: flex;\n\n .v-select {\n width: 100%;\n min-width: 100px !important; // Set a lower min-width\n }\n }\n\n &__title {\n list-style: none;\n }\n\n &__grid {\n display: grid;\n gap: 0;\n\n .repeat-option-set-section-grid-item {\n padding: var(--default-grid-baseline);\n width: 100%;\n border: var(--border-width-input) solid var(--color-border-dark);\n text-align: center;\n margin: 0;\n }\n }\n }\n\n &--weekly,\n &--monthly {\n .repeat-option-set-section {\n &__grid {\n grid-template-columns: repeat(7, auto);\n }\n }\n }\n\n &--yearly {\n .repeat-option-set-section {\n &__grid {\n grid-template-columns: repeat(7, auto);\n }\n }\n }\n\n &--interval-freq {\n display: flex;\n\n .multiselect {\n min-width: 100px;\n width: 25%;\n }\n }\n\n &--end {\n margin-top: calc(var(--default-grid-baseline) * 2);\n .repeat-option-end {\n width: 100%;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n &__label,\n &__end-type-select,\n &__until,\n &__count {\n flex: 1 1 auto;\n min-width: 0;\n margin-inline-end: calc(var(--default-grid-baseline) * 2);\n }\n &__label{\n display: block;\n min-width: 60px;\n }\n &__end-type-select {\n min-width: 90px;\n width: 100%;\n }\n\n &__until {\n min-width: 90px;\n width: 100%;\n display: inline-block;\n }\n\n &__count {\n min-width: 90px;\n width: 100%;\n }\n }\n }\n .end-repeat-container .end-repeat-dropdown,\n .end-repeat-container .end-repeat-date {\n flex: 0 1 auto;\n min-width: 150px;\n width: auto;\n }\n\n &__label {\n margin-inline-end: auto;\n }\n}\n\n.repeat-option-warning {\n text-align: center;\n}\n\n.invitation-response-buttons--grow {\n width: unset;\n max-width: calc(var(--total-width) * 2 / 3 - var(--column-gap) / 2 - 38px);\n margin-inline-start: calc(var(--default-grid-baseline) * 4 + 22px);\n}\n\n.resource-list-item,\n.invitees-list-item {\n display: flex;\n align-items: center;\n min-height: 44px;\n\n &__displayname {\n margin-inline-start: calc(var(--default-grid-baseline) * 2);\n }\n\n &__actions {\n margin-inline-start: auto;\n }\n\n &__organizer-hint {\n color: var(--color-text-maxcontrast);\n font-weight: 300;\n margin-inline-start: var(--default-grid-baseline);\n }\n}\n\n.invitees-search__vselect {\n margin-inline-start: calc(var(--default-grid-baseline) * 4 + 20px);\n}\n\n.resource-search-list-item,\n.invitees-search-list-item {\n display: flex;\n align-items: center;\n width: 100%;\n text-align: start;\n // Account for avatar width (because it is position: relative)\n\n &__label {\n width: 100%;\n padding: 0 calc(var(--default-grid-baseline) * 2);\n\n &__availability {\n color: var(--color-text-maxcontrast);\n }\n\n div {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n div:nth-child(1) {\n color: var(--color-main-text)\n }\n\n div:nth-child(2) {\n color: var(--color-text-lighter);\n line-height: 1;\n }\n }\n}\n\n\ntextarea {\n padding: 5px 12px !important;\n}\n\n.property-select__input {\n height: 34px;\n}\n","/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n#app-settings-modal {\n .settings-fieldset-interior-item {\n align-items: stretch;\n }\n\n .button-content-with-icon {\n display: flex;\n align-items: center;\n gap: calc(var(--default-grid-baseline) * 2);\n }\n\n .no-wrap-label {\n white-space: nowrap;\n }\n}\n\n// Fix the shortcut overview on smaller screens\n@media screen and (max-width: 800px) {\n .shortcut-overview-modal .modal-container .shortcut-section {\n width: 100%;\n }\n}\n","/*!\n * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n.appointment-config-modal {\n padding: calc(var(--default-grid-baseline) * 6);\n\n &__form {\n display: flex;\n flex-direction: column;\n width: 100%;\n\n &__title {\n h2 {\n margin: 0;\n }\n \n }\n\n fieldset {\n padding: calc(var(--default-grid-baseline) * 4) 0;\n\n header {\n\n h3 { \n font-size: 20px;\n font-weight: 600;\n margin: var(--default-grid-baseline) 0;\n }\n }\n }\n\n .availability-select, .calendar-select {\n display: flex;\n flex-direction: column;\n }\n\n &__row {\n &--wrapped {\n display: flex;\n // flex-direction: column;\n flex-wrap: wrap;\n gap: calc(var(--default-grid-baseline) * 2) calc(var(--default-grid-baseline) * 4);\n\n > div {\n flex: 1;\n }\n }\n\n // Rows that don't have their own vue components\n &--local {\n display: flex;\n flex-direction: column;\n }\n }\n\n &__row + &__row {\n margin-top: calc(var(--default-grid-baseline) * 2);\n }\n\n // Fix calendar picker styling\n .multiselect__tags {\n height: unset !important;\n margin: 0 !important;\n }\n }\n\n &__submit-button {\n margin-top: calc(var(--default-grid-baseline) * 4);\n margin-inline-start: auto;\n }\n}\n\n.app-config-modal-confirmation {\n .empty-content {\n margin-top: 0 !important;\n margin-bottom: calc(var(--default-grid-baseline) * 4);\n }\n\n &__buttons {\n display: flex;\n justify-content: center;\n gap: 0 calc(var(--default-grid-baseline) * 2);\n }\n}\n","/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n.modal--scheduler {\n position: relative;\n\n .fc-bgevent {\n opacity: .8;\n }\n\n .blocking-event-free-busy {\n border-color: var(--color-primary-element);\n border-style: solid;\n border-inline-start-width: 2px;\n border-inline-end-width: 2px;\n background-color: transparent !important;\n opacity: 0.7 !important;\n z-index: 2;\n }\n\n .blocking-event-free-busy.blocking-event-free-busy--first-row {\n border-radius: var(--border-radius) var(--border-radius) 0 0;\n border-block-start-width: 2px;\n }\n\n .blocking-event-free-busy.blocking-event-free-busy--last-row {\n border-radius: 0 0 var(--border-radius) var(--border-radius) ;\n border-block-end-width: 2px;\n }\n\n .loading-indicator {\n width: 100%;\n position: absolute;\n top: 0;\n height: 50px;\n margin-top: 75px;\n }\n}\n\n.freebusy-caption {\n margin-top: 10px;\n\n &__calendar-user-types,\n &__colors {\n width: 50%;\n display: flex;\n }\n\n &__colors {\n width: 100%;\n display:flex;\n flex-direction: column;\n padding: 5px;\n .freebusy-caption-item {\n display: flex;\n align-items: center;\n margin-inline-end: 30px;\n\n &__color {\n height: 1em;\n width: 2em;\n display: block;\n border: 1px solid var(--color-border-dark);\n opacity: 0.8;\n }\n\n &__label {\n margin-inline-start: 5px;\n }\n }\n }\n}\n",'/*!\n * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n/** Override some FullCalendar CSS vars: */\n.fc {\n --fc-small-font-size: 0.875em;\n --fc-page-bg-color: var(--color-main-background) !important;\n --fc-neutral-bg-color: var(--color-background-dark) !important;\n --fc-neutral-text-color: var(--color-text-lighter) !important;\n --fc-border-color: var(--color-border) !important;\n\n --fc-daygrid-event-dot-width: 10px !important;\n\n --fc-event-bg-color: var(--color-primary-element);\n --fc-event-border-color: var(--color-primary-element);\n --fc-event-text-color: var(--color-main-text);\n --fc-event-selected-overlay-color: var(--color-box-shadow);\n\n --fc-event-resizer-thickness: 8px;\n --fc-event-resizer-dot-total-width: 8px;\n --fc-event-resizer-dot-border-width: 1px;\n\n --fc-non-business-color: var(--color-background-dark);\n --fc-bg-event-color: var(--color-primary-element);\n --fc-bg-event-opacity: 0.3;\n --fc-highlight-color: rgba(188, 232, 241, 0.3); // TODO - use some color css var from us?\n --fc-today-bg-color: var(--color-main-background) !important;\n --fc-now-indicator-color: red;\n --fc-list-event-hover-bg-color: var(--color-background-hover) !important;\n font-family: var(--font-face) !important;\n}\n\n// ### FullCalendar Grid adjustments\n// Make the labels lighter\n.fc-timegrid-axis-frame,\n.fc-timegrid-slot-label,\n.fc-col-header-cell a {\n color: var(--color-text-lighter) !important;\n}\n\n// Remove dotted half-lines\n.fc .fc-timegrid-slot-minor {\n border-block-start-style: none !important;\n}\n\n// Center the date in month view\n.fc-daygrid-day-top {\n justify-content: center;\n}\n\n// Override Nextcloud styles which highlight table rows on hover\n.fc-state-highlight.fc-day-number,\n.fc tbody tr,\n.fc tbody tr:hover,\n.fc tbody tr:focus {\n background: inherit !important;\n}\n\n// Today highlighting\n.fc-day-today {\n &.fc-col-header-cell {\n a, span {\n padding: 2px 6px;\n font-weight: bold;\n background-color: var(--color-primary-element);\n color: var(--color-primary-element-text) !important;\n border-radius: var(--border-radius-small);\n }\n }\n\n .fc-event {\n box-shadow: 0px 0px 0px 1px var(--color-primary-element-light) !important;\n margin-top: 0px;\n }\n\n .fc-daygrid-day-top {\n .fc-daygrid-day-number {\n margin: var(--default-grid-baseline) 0 calc(var(--default-grid-baseline) + 1px);\n padding: 0 var(--default-grid-baseline);\n text-align: center;\n font-weight: bold !important;\n background: var(--color-primary-element);\n color: var(--color-primary-element-text);\n border-radius: var(--border-radius-small);\n }\n }\n}\n\n// Fix list table\n.fc-list-table td {\n white-space: normal;\n /* https://developer.mozilla.org/en-US/docs/Web/CSS/word-break */\n /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */\n word-break: break-word;\n}\n\n// Prevent events overlapping over day header\n.fc .fc-list-sticky .fc-list-day > * {\n z-index: 1;\n}\n\n// Padding to account for left navigation toggle\n.fc-list-table .fc-list-day-cushion {\n padding-inline-start: calc(var(--default-clickable-area) + var(--default-grid-baseline) * 2);\n}\n\n// highlight current day (exclude day view)\n.fc-timeGridWeek-view,\n.fc-dayGridMonth-view {\n .fc-col-header-cell.fc-day-today,\n .fc-daygrid-day.fc-day-today,\n .fc-timegrid-col.fc-day-today {\n background-color: var(--color-primary-element-light) !important;\n }\n}\n\n// emphasize current month in month view\n.fc-daygrid-day.fc-day.fc-day-other,\n.fc .fc-daygrid-day.fc-day-today.fc-day-other {\n background-color: var(--color-background-dark) !important;\n border: 1px solid var(--color-background-darker);\n .fc-daygrid-day-top {\n opacity: 0.8;\n }\n}\n\n// ### FullCalendar Event adjustments\n.fc-event {\n padding-inline-start: 3px;\n\n // Only show the left border, thick and full-opacity (dot events and list events are excluded)\n &:not(.fc-daygrid-dot-event):not(.fc-list-event) {\n border-block-start-width: 0 !important;\n border-block-end-width: 0 !important;\n border-inline-end-width: 0 !important;\n border-inline-start-width: calc(var(--default-grid-baseline) + var(--default-grid-basline) * 0.5) !important;\n border-inline-start-style: solid !important;\n }\n\n // Free (TRANSP:TRANSPARENT) events: hollow left strip — 1px accent | page-bg | 1px accent\n &.fc-event-nc-free {\n &:not(.fc-daygrid-dot-event):not(.fc-list-event) {\n &:not(.fc-timegrid-event) {\n position: relative;\n }\n // Hide the solid left border; the ::before pseudo-element takes its place\n border-inline-start-color: transparent !important;\n\n &::before {\n content: \'\';\n position: absolute;\n // Offset into the (transparent) border area so we start at the true left edge\n inset-inline-start: calc(-1 * var(--default-grid-baseline));\n top: 0;\n bottom: 0;\n width: var(--default-grid-baseline);\n background: var(--fc-page-bg-color);\n border-inline-start: 1px solid var(--nc-event-color, currentColor);\n border-inline-end: 1px solid var(--nc-event-color, currentColor);\n border-start-start-radius: inherit;\n border-end-start-radius: inherit;\n box-sizing: border-box;\n }\n }\n }\n\n &.fc-event-nc-task-completed,\n &.fc-event-nc-cancelled {\n .fc-event-title,\n .fc-list-event-title {\n text-decoration: line-through !important;\n }\n }\n\n\n // Participation-state events with no fill keep the thick left stripe plus a 1px frame.\n &.fc-event-nc-all-declined,\n &.fc-event-nc-needs-action,\n &.fc-event-nc-declined {\n &:not(.fc-daygrid-dot-event):not(.fc-list-event) {\n background-color: transparent !important;\n border-block-start-width: 1px !important;\n border-block-end-width: 1px !important;\n border-inline-end-width: 1px !important;\n border-inline-start-width: calc(var(--default-grid-baseline) + var(--default-grid-basline) * 0.5) !important;\n }\n }\n\n .fc-event-title {\n text-overflow: ellipsis;\n font-weight: 700;\n }\n\n // Reminder icon on events with alarms set\n .fc-event-nc-alarms {\n .icon-event-reminder {\n background-color: inherit;\n background-position: right;\n position: absolute;\n top: 0;\n inset-inline-end: 0;\n &--light {\n background-image: var(--icon-calendar-reminder-fffffe)\n }\n &--dark {\n background-image: var(--icon-calendar-reminder-000001)\n }\n }\n }\n\n // Checkboxes for Tasks\n .fc-event-title-container {\n display: flex;\n align-content: center;\n\n .fc-event-title-checkbox {\n margin: 4px 4px 0 0;\n line-height: 1;\n }\n }\n\n .fc-list-event-checkbox {\n margin: 2px 4px 0 -2px;\n line-height: 1;\n }\n\n .fc-daygrid-event-checkbox {\n margin: 2px 4px 0 4px;\n line-height: 1;\n }\n\n .fc-list-event-location span,\n .fc-list-event-description span {\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n -webkit-line-clamp: 3;\n -webkit-box-orient: vertical;\n white-space: pre-wrap;\n max-width: 25vw;\n }\n\n svg {\n margin-inline-end: 2px;\n }\n\n @media only screen and (max-width: 767px) {\n .fc-list-event-location,\n .fc-list-event-description {\n display: none;\n }\n }\n}\n\n.fc-list-empty {\n .fc-list-empty-cushion {\n display: none;\n }\n\n .empty-content {\n margin-top: 0 !important;\n }\n}\n\n.fc-timeGridWeek-view {\n .fc-daygrid-more-link {\n /* https://developer.mozilla.org/en-US/docs/Web/CSS/word-break */\n /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */\n word-break: break-all;\n white-space: normal;\n }\n\n .fc-event-main {\n flex-wrap: wrap;\n }\n}\n\n.fc-timegrid-col-events{\n margin: 0 !important;\n}\n\n.fc-v-event {\n &.fc-timegrid-event-short {\n min-height: 2em;\n }\n\n .fc-event-title {\n white-space: initial;\n }\n}\n\n// Fix Month view\n.fc-dayGridMonth-view {\n .fc-daygrid-more-link {\n /* https://developer.mozilla.org/en-US/docs/Web/CSS/word-break */\n /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */\n word-break: break-word;\n white-space: normal;\n }\n\n .fc-daygrid-day-frame {\n min-height: 150px !important;\n }\n}\n\n// Fix week button overlapping with the toggle\n.fc-col-header-cell {\n padding-top: 10px !important;\n\n &-cushion {\n text-overflow: ellipsis;\n overflow: clip;\n max-width: 100%;\n }\n}\n\n.fc-timegrid-axis-cushion {\n margin-top: 44px;\n}\n\n// Additional workaround for Firefox\n.fc-timegrid-axis.fc-scrollgrid-shrink {\n height: 65px;\n}\n\n.fc-timegrid-event-harness,\n.fc-timegrid-event {\n // previously was 1px for no apparent reason\n margin-bottom: 0;\n}\n\n// Leave some space for dragging\n.fc-timeGridDay-view, .fc-timeGridWeek-view {\n .fc-event {\n margin-inline-end: 1vw;\n }\n\n .fc-event-mirror {\n border: none !important;\n }\n\n}\n\n.fc-timeGridDay-view {\n .fc-event {\n margin-inline-end: 2vw;\n }\n}\n\n// High-contrast mode: events use plain page background so the coloured left\n// border is the sole colour indicator (no transparency, no stripe patterns).\n// Two triggers:\n// 1. OS/browser prefers-contrast: more media feature.\n// 2. Nextcloud in-app Accessibility theme, which writes\n// data-themes="light-highcontrast" (or dark-highcontrast) on <body>\n// without necessarily setting the OS media feature.\n@mixin _fc-high-contrast-events {\n .fc-event:not(.fc-daygrid-dot-event):not(.fc-list-event) {\n background-color: var(--fc-page-bg-color) !important;\n background-image: none !important;\n\n .fc-event-title,\n .fc-event-time {\n color: var(--color-main-text) !important;\n }\n }\n}\n\n@media (prefers-contrast: more) {\n @include _fc-high-contrast-events;\n}\n\n[data-theme-light-highcontrast],\n[data-theme-dark-highcontrast],\n[data-themes*="highcontrast"] {\n @include _fc-high-contrast-events;\n}\n\n',"/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n.toast-calendar-multiline {\n white-space: pre-wrap;\n}\n\n.app-navigation-spacer {\n list-style-type: none;\n}\n","/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n.import-modal {\n .modal-container {\n padding: 24px !important;\n min-width: 50%;\n overflow: visible !important;\n\n .import-modal__title,\n .import-modal__subtitle {\n text-align: center;\n }\n\n .import-modal__actions {\n display: flex;\n gap: 5px;\n }\n\n .import-modal-file-item {\n display: flex;\n margin-top: calc(var(--default-grid-baseline) * 2);\n margin-bottom: calc(var(--default-grid-baseline) * 2);\n\n &--header {\n font-weight: bold;\n }\n\n &__filename {\n flex: 2 1 0;\n }\n\n &__calendar-select {\n flex: 1 1 0;\n }\n \n &__calendar-disabled-hint {\n color: var(--color-text-maxcontrast);\n }\n }\n }\n}\n","/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n@media print {\n .app-navigation {\n display: none;\n }\n}\n","/*!\n * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n\n#emptycontent-container #emptycontent {\n color: #a9a9a9 !important;\n}\n\n.content.app-calendar.app-calendar-public-embedded {\n flex-direction: column;\n\n #embed-header {\n flex-wrap: wrap;\n gap: calc(var(--default-grid-baseline) * 2);\n width: 100%;\n padding: calc(var(--default-grid-baseline) * 2);\n box-sizing: border-box;\n background-color: var(--color-main-background);\n border-bottom: 1px solid var(--color-border);\n overflow: visible;\n z-index: 2000;\n display: flex;\n align-items: center;\n justify-content: space-between;\n\n .embed-header__date-section,\n .embed-header__share-section {\n display: flex;\n gap: 5px;\n }\n\n .view-button-section {\n .button {\n min-width: 75px;\n }\n }\n\n\n .datepicker-button-section,\n .today-button-section,\n .view-button-section {\n button {\n // Header has only one row so the built-in spacing is not needed\n margin: 0;\n }\n }\n }\n\n .app-content {\n // Expand to full height (need to overwrite this because a flex column layout is used here)\n flex-basis: auto;\n }\n}\n\n#body-public {\n input#initial-state-calendar-is_embed ~ header#header {\n display: none;\n }\n .app-calendar-public {\n & + footer {\n // Only show bottom rounded corners\n border-radius: 0 0 var(--border-radius-large) var(--border-radius-large);\n }\n\n .app-content {\n height: calc(100% - 65px) !important; // $footer-height is hardcoded to 65px in core/css/public.scss\n }\n }\n}\n","/*!\n * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors\n * SPDX-License-Identifier: AGPL-3.0-or-later\n */\n.property-text__input--linkify {\n flex-basis: min-content;\n}\n\n.linkify-links {\n border: 2px solid var(--color-border-maxcontrast);\n border-radius: var(--border-radius-large);\n cursor: text;\n width: 100% !important;\n box-sizing: border-box;\n padding: 12px;\n white-space: pre-line;\n overflow: auto;\n line-height: normal;\n /* https://developer.mozilla.org/en-US/docs/Web/CSS/word-break */\n /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */\n word-break: break-word;\n display: inline-block;\n vertical-align: top;\n max-height: 16em;\n max-height: calc(100vh - 500px);\n\n a.linkified {\n text-decoration: underline;\n\n // Prevent misalignment when a linkified line starts with a link, e.g. in the location field\n margin: 0;\n\n &::after {\n content: ' ↗';\n }\n }\n}\n"],sourceRoot:""}]),r.d(t,{},{default:a})},76314(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map(function(t){var r="",n=void 0!==t[5];return t[4]&&(r+="@supports (".concat(t[4],") {")),t[2]&&(r+="@media ".concat(t[2]," {")),n&&(r+="@layer".concat(t[5].length>0?" ".concat(t[5]):""," {")),r+=e(t),n&&(r+="}"),t[2]&&(r+="}"),t[4]&&(r+="}"),r}).join("")},t.i=function(e,r,n,i,o){"string"==typeof e&&(e=[[null,e,void 0]]);var a={};if(n)for(var s=0;s<this.length;s++){var c=this[s][0];null!=c&&(a[c]=!0)}for(var u=0;u<e.length;u++){var l=[].concat(e[u]);n&&a[l[0]]||(void 0!==o&&(void 0===l[5]||(l[1]="@layer".concat(l[5].length>0?" ".concat(l[5]):""," {").concat(l[1],"}")),l[5]=o),r&&(l[2]&&(l[1]="@media ".concat(l[2]," {").concat(l[1],"}")),l[2]=r),i&&(l[4]?(l[1]="@supports (".concat(l[4],") {").concat(l[1],"}"),l[4]=i):l[4]="".concat(i)),t.push(l))}},t}},71354(e){"use strict";e.exports=function(e){var t=e[1],r=e[3];if(!r)return t;if("function"==typeof btoa){var n=btoa(unescape(encodeURIComponent(JSON.stringify(r))));return[t].concat(["/*# ".concat("sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(n)," */")]).join("\n")}return[t].join("\n")}},70580(e){"use strict";var t=/["'&<>]/;e.exports=function(e){var r,n=""+e,i=t.exec(n);if(!i)return n;var o="",a=0,s=0;for(a=i.index;a<n.length;a++){switch(n.charCodeAt(a)){case 34:r=""";break;case 38:r="&";break;case 39:r="'";break;case 60:r="<";break;case 62:r=">";break;default:continue}s!==a&&(o+=n.substring(s,a)),s=a+1,o+=r}return s!==a?o+n.substring(s,a):o}},65606(e){var t,r,n,i=e.exports={};function o(){throw Error("setTimeout has not been defined")}function a(){throw Error("clearTimeout has not been defined")}try{t="function"==typeof setTimeout?setTimeout:o}catch(e){t=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}function s(e){if(t===setTimeout)return setTimeout(e,0);if((t===o||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(r){try{return t.call(null,e,0)}catch(r){return t.call(this,e,0)}}}var c=[],u=!1,l=-1;function f(){u&&n&&(u=!1,n.length?c=n.concat(c):l=-1,c.length&&d())}function d(){if(!u){var e=s(f);u=!0;for(var t=c.length;t;){for(n=c,c=[];++l<t;)n&&n[l].run();l=-1,t=c.length}n=null,u=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function h(){}i.nextTick=function(e){var t=Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];c.push(new p(e,t)),1!==c.length||u||s(d)},p.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=h,i.addListener=h,i.once=h,i.off=h,i.removeListener=h,i.removeAllListeners=h,i.emit=h,i.prependListener=h,i.prependOnceListener=h,i.listeners=function(e){return[]},i.binding=function(e){throw Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(e){throw Error("process.chdir is not supported")},i.umask=function(){return 0}},30074(e,t,r){var n=r(88008);n.__esModule&&(n=n.default),"string"==typeof n&&(n=[[e.id,n,""]]),n.locals&&(e.exports=n.locals),(0,r(15739).A)("56fa3d71",n,!0,{})},15739(e,t,r){"use strict";function n(e,t){for(var r=[],n={},i=0;i<t.length;i++){var o=t[i],a=o[0],s={id:e+":"+i,css:o[1],media:o[2],sourceMap:o[3]};n[a]?n[a].parts.push(s):r.push(n[a]={id:a,parts:[s]})}return r}r.d(t,{A:()=>A});var i,o="u">typeof document;if("u">typeof DEBUG&&DEBUG&&!o)throw Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var a={},s=o&&(document.head||document.getElementsByTagName("head")[0]),c=null,u=0,l=!1,f=function(){},d=null,p="data-vue-ssr-id",h="u">typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function A(e,t,r,i){l=r,d=i||{};var o=n(e,t);return v(o),function(t){for(var r=[],i=0;i<o.length;i++){var s=a[o[i].id];s.refs--,r.push(s)}t?v(o=n(e,t)):o=[];for(var i=0;i<r.length;i++){var s=r[i];if(0===s.refs){for(var c=0;c<s.parts.length;c++)s.parts[c]();delete a[s.id]}}}}function v(e){for(var t=0;t<e.length;t++){var r=e[t],n=a[r.id];if(n){n.refs++;for(var i=0;i<n.parts.length;i++)n.parts[i](r.parts[i]);for(;i<r.parts.length;i++)n.parts.push(g(r.parts[i]));n.parts.length>r.parts.length&&(n.parts.length=r.parts.length)}else{for(var o=[],i=0;i<r.parts.length;i++)o.push(g(r.parts[i]));a[r.id]={id:r.id,refs:1,parts:o}}}}function m(){var e=document.createElement("style");return e.type="text/css",s.appendChild(e),e}function g(e){var t,r,n=document.querySelector("style["+p+'~="'+e.id+'"]');if(n)if(l)return f;else n.parentNode.removeChild(n);if(h){var i=u++;t=b.bind(null,n=c||(c=m()),i,!1),r=b.bind(null,n,i,!0)}else t=_.bind(null,n=m()),r=function(){n.parentNode.removeChild(n)};return t(e),function(n){n?(n.css!==e.css||n.media!==e.media||n.sourceMap!==e.sourceMap)&&t(e=n):r()}}var y=(i=[],function(e,t){return i[e]=t,i.filter(Boolean).join("\n")});function b(e,t,r,n){var i=r?"":n.css;if(e.styleSheet)e.styleSheet.cssText=y(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function _(e,t){var r=t.css,n=t.media,i=t.sourceMap;if(n&&e.setAttribute("media",n),d.ssrId&&e.setAttribute(p,t.id),i&&(r+="\n/*# sourceURL="+i.sources[0]+" */",r+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}},37153(e,t,r){"use strict";var n=r(21777),i=r(53334),o=r(63814),a=r(95570);r(84315),r(30074),r.nc=btoa((0,n.do)()),r.p=(0,o.uM)("calendar","js/");let s=atob("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGlkPSJtZGktY2FsZW5kYXItYmxhbmsiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTE5LDE5SDVWOEgxOU0xNiwxVjNIOFYxSDZWM0g1QzMuODksMyAzLDMuODkgMyw1VjE5QTIsMiAwIDAsMCA1LDIxSDE5QTIsMiAwIDAsMCAyMSwxOVY1QzIxLDMuODkgMjAuMSwzIDE5LDNIMThWMSIgLz48L3N2Zz4=".split(",")[1]);(0,a.I)({id:"calendar-availability",displayName:()=>(0,i.Tl)("calendar","Show availability"),iconSvg:()=>s,enabled:e=>e.isUser,callback:async e=>{let{createApp:t}=await Promise.all([r.e("defaultVendors-node_modules_vue_runtime-core_dist_runtime-core_esm-bundler_js"),r.e("defaultVendors-node_modules_vue_runtime-dom_dist_runtime-dom_esm-bundler_js"),r.e("node_modules_vue_dist_vue_runtime_esm-bundler_js")]).then(r.bind(r,8756)),{default:n}=await Promise.all([r.e("defaultVendors-node_modules_vue_runtime-core_dist_runtime-core_esm-bundler_js"),r.e("defaultVendors-node_modules_p-queue_dist_index_js-node_modules_nextcloud_vue_dist_chunks_NcDa-5b7740"),r.e("defaultVendors-node_modules_nextcloud_vue_dist_chunks_NcTextField_vue_vue_type_script_setup_t-715f22"),r.e("defaultVendors-node_modules_nextcloud_vue_dist_chunks_NcDateTimePicker-CK4rhfEB_mjs"),r.e("defaultVendors-node_modules_nextcloud_vue_dist_assets_NcDateTimePickerNative-BP6eg8aU_css-nod-ea584e"),r.e("defaultVendors-node_modules_nextcloud_vue_dist_chunks_NcColorPicker-CGE4Kei4_mjs"),r.e("defaultVendors-node_modules_pinia_dist_pinia_mjs"),r.e("defaultVendors-node_modules_vue_runtime-dom_dist_runtime-dom_esm-bundler_js"),r.e("defaultVendors-node_modules_toastify-js_src_toastify_js-node_modules_vue-material-design-icon-dba052"),r.e("defaultVendors-node_modules_vue-material-design-icons_Check_vue-src_views_ContactsMenuAvailab-e01f8d")]).then(r.bind(r,88122)),{createPinia:o}=await Promise.all([r.e("defaultVendors-node_modules_vue_runtime-core_dist_runtime-core_esm-bundler_js"),r.e("defaultVendors-node_modules_pinia_dist_pinia_mjs")]).then(r.bind(r,10810)),{translatePlural:a}=await Promise.resolve().then(r.bind(r,53334)),s=o(),c=document.createElement("div");document.body.appendChild(c);let u=t(n,{userId:e.uid,userDisplayName:e.fullName,userEmail:e.emailAddresses[0]});u.config.globalProperties.$t=i.Tl,u.config.globalProperties.$n=a,u.config.globalProperties.$destroy=()=>{u.unmount(),c.remove()},u.mixin({methods:{t:i.Tl,n:a}}),u.use(s),u.mount(c)}})},79306(e,t,r){"use strict";var n=r(94901),i=r(16823),o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not a function")}},35548(e,t,r){"use strict";var n=r(33517),i=r(16823),o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not a constructor")}},24194(e,t,r){"use strict";var n=r(36955),i=TypeError;e.exports=function(e){if("DataView"===n(e))return e;throw new i("Argument is not a DataView")}},73506(e,t,r){"use strict";var n=r(13925),i=String,o=TypeError;e.exports=function(e){if(n(e))return e;throw new o("Can't set "+i(e)+" as a prototype")}},97080(e,t,r){"use strict";var n=r(94402).has;e.exports=function(e){return n(e),e}},63463(e){"use strict";var t=TypeError;e.exports=function(e){if("string"==typeof e)return e;throw new t("Argument is not a string")}},84328(e,t,r){"use strict";var n=r(44995),i=new n.WeakMap,o=n.set,a=n.remove;e.exports=function(e){return o(i,e,1),a(i,e),e}},76557(e,t,r){"use strict";var n=r(44995).has;e.exports=function(e){return n(e),e}},91021(e,t,r){"use strict";var n=r(97751),i=r(69565),o=r(79504),a=r(76080),s=r(28551),c=r(79306),u=r(64117),l=r(55966),f=r(78227),d=f("asyncDispose"),p=f("dispose"),h=o([].push),A=function(e,t){if("async-dispose"===t){var r=l(e,d);return void 0!==r||void 0===(r=l(e,p))?r:function(){var e=this;return new(n("Promise"))(function(t){i(r,e),t(void 0)})}}return l(e,p)},v=function(e,t,r){return arguments.length<3&&!u(e)&&(r=c(A(s(e),t))),void 0===r?function(){}:a(r,e)};e.exports=function(e,t,r,n){var i;if(arguments.length<4){if(u(t)&&"sync-dispose"===r)return;i=v(t,r)}else i=v(void 0,r,n);h(e.stack,i)}},6469(e,t,r){"use strict";var n=r(78227),i=r(2360),o=r(24913).f,a=n("unscopables"),s=Array.prototype;void 0===s[a]&&o(s,a,{configurable:!0,value:i(null)}),e.exports=function(e){s[a][e]=!0}},57829(e,t,r){"use strict";var n=r(68183).charAt;e.exports=function(e,t,r){return t+(r&&n(e,t).length||1)}},90679(e,t,r){"use strict";var n=r(1625),i=TypeError;e.exports=function(e,t){if(n(t,e))return e;throw new i("Incorrect invocation")}},83972(e,t,r){"use strict";var n=r(20034),i=String,o=TypeError;e.exports=function(e){if(void 0===e||n(e))return e;throw new o(i(e)+" is not an object or undefined")}},28551(e,t,r){"use strict";var n=r(20034),i=String,o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not an object")}},34154(e,t,r){"use strict";var n=r(36955),i=TypeError;e.exports=function(e){if("Uint8Array"===n(e))return e;throw new i("Argument is not an Uint8Array")}},77811(e){"use strict";e.exports="u">typeof ArrayBuffer&&"u">typeof DataView},67394(e,t,r){"use strict";var n=r(44576),i=r(46706),o=r(22195),a=n.ArrayBuffer,s=n.TypeError;e.exports=a&&i(a.prototype,"byteLength","get")||function(e){if("ArrayBuffer"!==o(e))throw new s("ArrayBuffer expected");return e.byteLength}},3238(e,t,r){"use strict";var n=r(44576),i=r(77811),o=r(67394),a=n.DataView;e.exports=function(e){if(!i||0!==o(e))return!1;try{return new a(e),!1}catch(e){return!0}}},93271(e,t,r){"use strict";e.exports=r(79039)(function(){if("function"==typeof ArrayBuffer){var e=new ArrayBuffer(8);Object.isExtensible(e)&&Object.defineProperty(e,"a",{value:8})}})},55169(e,t,r){"use strict";var n=r(3238),i=TypeError;e.exports=function(e){if(n(e))throw new i("ArrayBuffer is detached");return e}},95636(e,t,r){"use strict";var n=r(44576),i=r(79504),o=r(46706),a=r(57696),s=r(55169),c=r(67394),u=r(94483),l=r(1548),f=n.structuredClone,d=n.ArrayBuffer,p=n.DataView,h=Math.max,A=Math.min,v=d.prototype,m=p.prototype,g=i(v.slice),y=o(v,"resizable","get"),b=o(v,"maxByteLength","get"),_=i(m.getInt8),C=i(m.setInt8);e.exports=(l||u)&&function(e,t,r){var n,i=c(e),o=void 0===t?i:a(t),v=!y||!y(e);if(s(e),l&&(e=f(e,{transfer:[e]}),i===o&&(r||v)))return e;if(i>=o&&(!r||v))n=g(e,0,o);else{var m=r&&!v&&b?{maxByteLength:h(o,b(e))}:void 0;n=new d(o,m);for(var w=new p(e),x=new p(n),E=A(o,i),S=0;S<E;S++)C(x,S,_(w,S))}return l||u(e),n}},94644(e,t,r){"use strict";var n,i,o,a=r(77811),s=r(43724),c=r(44576),u=r(94901),l=r(20034),f=r(39297),d=r(36955),p=r(16823),h=r(66699),A=r(36840),v=r(62106),m=r(1625),g=r(65168),y=r(52967),b=r(78227),_=r(33392),C=r(91181),w=C.enforce,x=C.get,E=c.Int8Array,S=E&&E.prototype,k=c.Uint8ClampedArray,I=k&&k.prototype,T=E&&g(E),O=S&&g(S),D=Object.prototype,R=c.TypeError,N=b("toStringTag"),L=_("TYPED_ARRAY_TAG"),j="TypedArrayConstructor",M=a&&!!y&&"Opera"!==d(c.opera),P=!1,B={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},F={BigInt64Array:8,BigUint64Array:8},U=function(e){var t=g(e);if(l(t)){var r=x(t);return r&&f(r,j)?r[j]:U(t)}},G=function(e){if(!l(e))return!1;var t=d(e);return f(B,t)||f(F,t)};for(n in B)(o=(i=c[n])&&i.prototype)?w(o)[j]=i:M=!1;for(n in F)(o=(i=c[n])&&i.prototype)&&(w(o)[j]=i);if((!M||!u(T)||T===Function.prototype)&&(T=function(){throw new R("Incorrect invocation")},M))for(n in B)c[n]&&y(c[n],T);if((!M||!O||O===D)&&(O=T.prototype,M))for(n in B)c[n]&&y(c[n].prototype,O);if(M&&g(I)!==O&&y(I,O),s&&!f(O,N))for(n in P=!0,v(O,N,{configurable:!0,get:function(){return l(this)?this[L]:void 0}}),B)c[n]&&h(c[n].prototype,L,n);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:M,TYPED_ARRAY_TAG:P&&L,aTypedArray:function(e){if(G(e))return e;throw new R("Target is not a typed array")},aTypedArrayConstructor:function(e){if(u(e)&&(!y||m(T,e)))return e;throw new R(p(e)+" is not a typed array constructor")},exportTypedArrayMethod:function(e,t,r,n){if(s){if(r)for(var i in B){var o=c[i];if(o&&f(o.prototype,e))try{delete o.prototype[e]}catch(r){try{o.prototype[e]=t}catch(e){}}}(!O[e]||r)&&A(O,e,r?t:M&&S[e]||t,n)}},exportTypedArrayStaticMethod:function(e,t,r){var n,i;if(s){if(y){if(r){for(n in B)if((i=c[n])&&f(i,e))try{delete i[e]}catch(e){}}if(T[e]&&!r)return;try{return A(T,e,r?t:M&&T[e]||t)}catch(e){}}for(n in B)(i=c[n])&&(!i[e]||r)&&A(i,e,t)}},getTypedArrayConstructor:U,isView:function(e){if(!l(e))return!1;var t=d(e);return"DataView"===t||f(B,t)||f(F,t)},isTypedArray:G,TypedArray:T,TypedArrayPrototype:O}},66346(e,t,r){"use strict";var n=r(44576),i=r(79504),o=r(43724),a=r(77811),s=r(10350),c=r(66699),u=r(62106),l=r(56279),f=r(79039),d=r(90679),p=r(91291),h=r(57696),A=r(15617),v=r(88490),m=r(65168),g=r(52967),y=r(84373),b=r(67680),_=r(23167),C=r(77740),w=r(10687),x=r(91181),E=s.PROPER,S=s.CONFIGURABLE,k="ArrayBuffer",I="DataView",T="prototype",O="Wrong index",D=x.getterFor(k),R=x.getterFor(I),N=x.set,L=n[k],j=L,M=j&&j[T],P=n[I],B=P&&P[T],F=Object.prototype,U=n.Array,G=n.RangeError,z=i(y),$=i([].reverse),W=v.pack,H=v.unpack,V=function(e){return[255&e]},Y=function(e){return[255&e,e>>8&255]},q=function(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]},X=function(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]},K=function(e){return W(A(e),23,4)},J=function(e){return W(e,52,8)},Q=function(e,t,r){u(e[T],t,{configurable:!0,get:function(){return r(this)[t]}})},Z=function(e,t,r,n){var i=R(e),o=h(r);if(o+t>i.byteLength)throw new G(O);var a=i.bytes,s=o+i.byteOffset,c=b(a,s,s+t);return n?c:$(c)},ee=function(e,t,r,n,i,o){var a=R(e),s=h(r),c=n(+i),u=!!o;if(s+t>a.byteLength)throw new G(O);for(var l=a.bytes,f=s+a.byteOffset,d=0;d<t;d++)l[f+d]=c[u?d:t-d-1]};if(a){var et=E&&L.name!==k;!f(function(){L(1)})||!f(function(){new L(-1)})||f(function(){return new L,new L(1.5),new L(NaN),1!==L.length||et&&!S})?((j=function(e){return d(this,M),_(new L(h(e)),this,j)})[T]=M,M.constructor=j,C(j,L)):et&&S&&c(L,"name",k),g&&m(B)!==F&&g(B,F);var er=new P(new j(2)),en=i(B.setInt8);er.setInt8(0,0x80000000),er.setInt8(1,0x80000001),(er.getInt8(0)||!er.getInt8(1))&&l(B,{setInt8:function(e,t){en(this,e,t<<24>>24)},setUint8:function(e,t){en(this,e,t<<24>>24)}},{unsafe:!0})}else M=(j=function(e){d(this,M);var t=h(e);N(this,{type:k,bytes:z(U(t),0),byteLength:t}),o||(this.byteLength=t,this.detached=!1)})[T],B=(P=function(e,t,r){d(this,B),d(e,M);var n=D(e),i=n.byteLength,a=p(t);if(a<0||a>i)throw new G("Wrong offset");if(r=void 0===r?i-a:h(r),a+r>i)throw new G("Wrong length");N(this,{type:I,buffer:e,byteLength:r,byteOffset:a,bytes:n.bytes}),o||(this.buffer=e,this.byteLength=r,this.byteOffset=a)})[T],o&&(Q(j,"byteLength",D),Q(P,"buffer",R),Q(P,"byteLength",R),Q(P,"byteOffset",R)),l(B,{getInt8:function(e){return Z(this,1,e)[0]<<24>>24},getUint8:function(e){return Z(this,1,e)[0]},getInt16:function(e){var t=Z(this,2,e,arguments.length>1&&arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=Z(this,2,e,arguments.length>1&&arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return X(Z(this,4,e,arguments.length>1&&arguments[1]))},getUint32:function(e){return X(Z(this,4,e,arguments.length>1&&arguments[1]))>>>0},getFloat32:function(e){return H(Z(this,4,e,arguments.length>1&&arguments[1]),23)},getFloat64:function(e){return H(Z(this,8,e,arguments.length>1&&arguments[1]),52)},setInt8:function(e,t){ee(this,1,e,V,t)},setUint8:function(e,t){ee(this,1,e,V,t)},setInt16:function(e,t){ee(this,2,e,Y,t,arguments.length>2&&arguments[2])},setUint16:function(e,t){ee(this,2,e,Y,t,arguments.length>2&&arguments[2])},setInt32:function(e,t){ee(this,4,e,q,t,arguments.length>2&&arguments[2])},setUint32:function(e,t){ee(this,4,e,q,t,arguments.length>2&&arguments[2])},setFloat32:function(e,t){ee(this,4,e,K,t,arguments.length>2&&arguments[2])},setFloat64:function(e,t){ee(this,8,e,J,t,arguments.length>2&&arguments[2])}});w(j,k),w(P,I),e.exports={ArrayBuffer:j,DataView:P}},57029(e,t,r){"use strict";var n=r(48981),i=r(35610),o=r(26198),a=r(84606),s=Math.min;e.exports=[].copyWithin||function(e,t){var r=n(this),c=o(r),u=i(e,c),l=i(t,c),f=arguments.length>2?arguments[2]:void 0,d=s((void 0===f?c:i(f,c))-l,c-u),p=1;for(l<u&&u<l+d&&(p=-1,l+=d-1,u+=d-1);d-- >0;)l in r?r[u]=r[l]:a(r,u),u+=p,l+=p;return r}},84373(e,t,r){"use strict";var n=r(48981),i=r(35610),o=r(26198);e.exports=function(e){for(var t=n(this),r=o(t),a=arguments.length,s=i(a>1?arguments[1]:void 0,r),c=a>2?arguments[2]:void 0,u=void 0===c?r:i(c,r);u>s;)t[s++]=e;return t}},90235(e,t,r){"use strict";var n=r(59213).forEach;e.exports=r(34598)("forEach")?[].forEach:function(e){return n(this,e,arguments.length>1?arguments[1]:void 0)}},8045(e,t,r){"use strict";var n=r(76080),i=r(79504),o=r(33517),a=r(1886),s=r(70081),c=r(1767),u=r(50851),l=r(55966),f=r(97751),d=r(44124),p=r(78227),h=r(24074),A=r(36639).toArray,v=p("asyncIterator"),m=i(d("Array","values")),g=i(m([]).next),y=function(){return new b(this)},b=function(e){this.iterator=m(e)};b.prototype.next=function(){return g(this.iterator)},e.exports=function(e){var t=this,r=arguments.length,i=r>1?arguments[1]:void 0,d=r>2?arguments[2]:void 0;return new(f("Promise"))(function(r){void 0!==i&&(i=n(i,d));var f=l(e,v),p=f?void 0:u(e)||y,m=o(t)?new t:[];r(A(f?a(e,f):new h(c(s(e,p))),i,m))})}},35370(e,t,r){"use strict";var n=r(26198);e.exports=function(e,t,r){for(var i=0,o=arguments.length>2?r:n(t),a=new e(o);o>i;)a[i]=t[i++];return a}},75535(e,t,r){"use strict";var n=r(76080),i=r(69565),o=r(48981),a=r(96319),s=r(44209),c=r(33517),u=r(26198),l=r(97040),f=r(34527),d=r(70081),p=r(50851),h=r(9539),A=Array;e.exports=function(e){var t,r,v,m,g,y,b=c(this),_=arguments.length,C=_>1?arguments[1]:void 0,w=void 0!==C;w&&(C=n(C,_>2?arguments[2]:void 0));var x=o(e),E=p(x),S=0;if(E&&!(this===A&&s(E)))for(r=b?new this:[],g=(m=d(x,E)).next;!(v=i(g,m)).done;S++){y=w?a(m,C,[v.value,S],!0):v.value;try{l(r,S,y)}catch(e){h(m,"throw",e)}}else for(t=u(x),r=b?new this(t):A(t);t>S;S++)y=w?C(x[S],S):x[S],l(r,S,y);return f(r,S),r}},19617(e,t,r){"use strict";var n=r(25397),i=r(35610),o=r(26198),a=function(e){return function(t,r,a){var s,c=n(t),u=o(c);if(0===u)return!e&&-1;var l=i(a,u);if(e&&r!=r){for(;u>l;)if((s=c[l++])!=s)return!0}else for(;u>l;l++)if((e||l in c)&&c[l]===r)return e||l||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},43839(e,t,r){"use strict";var n=r(76080),i=r(47055),o=r(48981),a=r(26198),s=function(e){var t=1===e;return function(r,s,c){for(var u,l=o(r),f=i(l),d=a(f),p=n(s,c);d-- >0;)if(p(u=f[d],d,l))switch(e){case 0:return u;case 1:return d}return t?-1:void 0}};e.exports={findLast:s(0),findLastIndex:s(1)}},59213(e,t,r){"use strict";var n=r(76080),i=r(47055),o=r(48981),a=r(26198),s=r(1469),c=r(97040),u=function(e){var t=1===e,r=2===e,u=3===e,l=4===e,f=6===e,d=7===e,p=5===e||f;return function(h,A,v){for(var m,g,y=o(h),b=i(y),_=a(b),C=n(A,v),w=0,x=0,E=t?s(h,_):r||d?s(h,0):void 0;_>w;w++)if((p||w in b)&&(g=C(m=b[w],w,y),e))if(t)c(E,w,g);else if(g)switch(e){case 3:return!0;case 5:return m;case 6:return w;case 2:c(E,x++,m)}else switch(e){case 4:return!1;case 7:c(E,x++,m)}return f?-1:u||l?l:E}};e.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)}},8379(e,t,r){"use strict";var n=r(18745),i=r(25397),o=r(91291),a=r(26198),s=r(34598),c=Math.min,u=[].lastIndexOf,l=!!u&&1/[1].lastIndexOf(1,-0)<0,f=s("lastIndexOf");e.exports=l||!f?function(e){if(l)return n(u,this,arguments)||0;var t=i(this),r=a(t);if(0===r)return -1;var s=r-1;for(arguments.length>1&&(s=c(s,o(arguments[1]))),s<0&&(s=r+s);s>=0;s--)if(s in t&&t[s]===e)return s||0;return -1}:u},70597(e,t,r){"use strict";var n=r(79039),i=r(78227),o=r(39519),a=i("species");e.exports=function(e){return o>=51||!n(function(){var t=[];return(t.constructor={})[a]=function(){return{foo:1}},1!==t[e](Boolean).foo})}},34598(e,t,r){"use strict";var n=r(79039);e.exports=function(e,t){var r=[][e];return!!r&&n(function(){r.call(null,t||function(){return 1},1)})}},80926(e,t,r){"use strict";var n=r(79306),i=r(48981),o=r(47055),a=r(26198),s=TypeError,c="Reduce of empty array with no initial value",u=function(e){return function(t,r,u,l){var f=i(t),d=o(f),p=a(f);if(n(r),0===p&&u<2)throw new s(c);var h=e?p-1:0,A=e?-1:1;if(u<2)for(;;){if(h in d){l=d[h],h+=A;break}if(h+=A,e?h<0:p<=h)throw new s(c)}for(;e?h>=0:p>h;h+=A)h in d&&(l=r(l,d[h],h,f));return l}};e.exports={left:u(!1),right:u(!0)}},34527(e,t,r){"use strict";var n=r(43724),i=r(34376),o=TypeError,a=Object.getOwnPropertyDescriptor;e.exports=n&&!function(){if(void 0!==this)return!0;try{Object.defineProperty([],"length",{writable:!1}).length=1}catch(e){return e instanceof TypeError}}()?function(e,t){if(i(e)&&!a(e,"length").writable)throw new o("Cannot set read only .length");return e.length=t}:function(e,t){return e.length=t}},67680(e,t,r){"use strict";e.exports=r(79504)([].slice)},74488(e,t,r){"use strict";var n=r(67680),i=Math.floor,o=function(e,t){var r=e.length;if(r<8)for(var a,s,c=1;c<r;){for(s=c,a=e[c];s&&t(e[s-1],a)>0;)e[s]=e[--s];s!==c++&&(e[s]=a)}else for(var u=i(r/2),l=o(n(e,0,u),t),f=o(n(e,u),t),d=l.length,p=f.length,h=0,A=0;h<d||A<p;)e[h+A]=h<d&&A<p?0>=t(l[h],f[A])?l[h++]:f[A++]:h<d?l[h++]:f[A++];return e};e.exports=o},87433(e,t,r){"use strict";var n=r(34376),i=r(33517),o=r(20034),a=r(78227)("species"),s=Array;e.exports=function(e){var t;return n(e)&&(i(t=e.constructor)&&(t===s||n(t.prototype))?t=void 0:o(t)&&null===(t=t[a])&&(t=void 0)),void 0===t?s:t}},1469(e,t,r){"use strict";var n=r(87433);e.exports=function(e,t){return new(n(e))(0===t?0:t)}},24074(e,t,r){"use strict";var n=r(69565),i=r(28551),o=r(2360),a=r(55966),s=r(56279),c=r(91181),u=r(9539),l=r(97751),f=r(53982),d=r(62529),p=l("Promise"),h="AsyncFromSyncIterator",A=c.set,v=c.getterFor(h),m=function(e,t,r,n,i){var o=e.done;p.resolve(e.value).then(function(e){t(d(e,o))},function(e){if(!o&&i)try{u(n,"throw",e)}catch(t){e=t}r(e)})},g=function(e){e.type=h,A(this,e)};g.prototype=s(o(f),{next:function(){var e=v(this),t=arguments.length>0,r=t?arguments[0]:void 0;return new p(function(o,a){m(i(t?n(e.next,e.iterator,r):n(e.next,e.iterator)),o,a,e.iterator,!0)})},return:function(){var e=v(this).iterator,t=arguments.length>0,r=t?arguments[0]:void 0;return new p(function(o,s){var c=a(e,"return");if(void 0===c)return o(d(r,!0));m(i(t?n(c,e,r):n(c,e)),o,s,e)})},throw:function(){var e=v(this).iterator,t=arguments.length>0,r=t?arguments[0]:void 0;return new p(function(o,s){var c=a(e,"throw");if(void 0===c){try{u(e,"normal")}catch(e){return s(e)}return s(TypeError("The iterator does not provide a throw method"))}m(i(t?n(c,e,r):n(c,e)),o,s,e,!0)})}}),e.exports=g},20772(e,t,r){"use strict";var n=r(69565),i=r(28551),o=r(97751),a=r(55966);e.exports=function(e,t,r,s){try{var c=a(e,"return");if(c)return o("Promise").resolve(n(c,e)).then(function(e){try{t!==s&&i(e)}catch(e){s(e);return}t(r)},function(e){t===s?t(r):s(e)})}catch(e){return t===s?s(r):s(e)}t(r)}},36639(e,t,r){"use strict";var n=r(69565),i=r(79306),o=r(28551),a=r(20034),s=r(96837),c=r(97751),u=r(97040),l=r(34527),f=r(1767),d=r(20772),p=function(e){var t=0===e,r=1===e,p=2===e,h=3===e;return function(e,A,v){o(e);var m=void 0!==A;(m||!t)&&i(A);var g=f(e),y=c("Promise"),b=g.iterator,_=g.next,C=0;return new y(function(e,i){var c=function(e){d(b,i,e,i)},f=function(){try{try{s(C)}catch(e){return c(e)}y.resolve(o(n(_,b))).then(function(n){try{if(o(n).done)t?(l(v,C),e(v)):e(!h&&(p||void 0));else{var s=n.value;try{if(m){var g=C++,_=A(s,g),w=function(n){if(r)f();else if(p)n?f():d(b,e,!1,i);else if(t)try{u(v,g,n),f()}catch(e){c(e)}else n?d(b,e,h||s,i):f()};a(_)?y.resolve(_).then(w,c):w(_)}else u(v,C++,s),f()}catch(e){c(e)}}}catch(e){i(e)}},i)}catch(e){i(e)}};f()})}};e.exports={toArray:p(0),forEach:p(1),every:p(2),some:p(3),find:p(4)}},53982(e,t,r){"use strict";var n,i,o=r(44576),a=r(77629),s=r(94901),c=r(2360),u=r(65168),l=r(36840),f=r(78227),d=r(96395),p="USE_FUNCTION_CONSTRUCTOR",h=f("asyncIterator"),A=o.AsyncIterator,v=a.AsyncIteratorPrototype;if(v)n=v;else if(s(A))n=A.prototype;else if(a[p]||o[p])try{i=u(u(u(Function("return async function*(){}()")()))),u(i)===Object.prototype&&(n=i)}catch(e){}n?d&&(n=c(n)):n={},s(n[h])||l(n,h,function(){return this}),e.exports=n},92804(e){"use strict";var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",r=t+"+/",n=t+"-_",i=function(e){for(var t={},r=0;r<64;r++)t[e.charAt(r)]=r;return t};e.exports={i2c:r,c2i:i(r),i2cUrl:n,c2iUrl:i(n)}},96319(e,t,r){"use strict";var n=r(28551),i=r(9539);e.exports=function(e,t,r,o){try{return o?t(n(r)[0],r[1]):t(r)}catch(t){i(e,"throw",t)}}},84428(e,t,r){"use strict";var n=r(78227)("iterator"),i=!1;try{var o=0,a={next:function(){return{done:!!o++}},return:function(){i=!0}};a[n]=function(){return this},Array.from(a,function(){throw 2})}catch(e){}e.exports=function(e,t){try{if(!t&&!i)return!1}catch(e){return!1}var r=!1;try{var o={};o[n]=function(){return{next:function(){return{done:r=!0}}}},e(o)}catch(e){}return r}},22195(e,t,r){"use strict";var n=r(79504),i=n({}.toString),o=n("".slice);e.exports=function(e){return o(i(e),8,-1)}},36955(e,t,r){"use strict";var n=r(92140),i=r(94901),o=r(22195),a=r(78227)("toStringTag"),s=Object,c="Arguments"===o(function(){return arguments}()),u=function(e,t){try{return e[t]}catch(e){}};e.exports=n?o:function(e){var t,r,n;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=u(t=s(e),a))?r:c?o(t):"Object"===(n=o(t))&&i(t.callee)?"Arguments":n}},86938(e,t,r){"use strict";var n=r(2360),i=r(62106),o=r(56279),a=r(76080),s=r(90679),c=r(64117),u=r(72652),l=r(51088),f=r(62529),d=r(87633),p=r(43724),h=r(3451).fastKey,A=r(91181),v=A.set,m=A.getterFor;e.exports={getConstructor:function(e,t,r,l){var f=e(function(e,i){s(e,d),v(e,{type:t,index:n(null),first:null,last:null,size:0}),p||(e.size=0),c(i)||u(i,e[l],{that:e,AS_ENTRIES:r})}),d=f.prototype,A=m(t),g=function(e,t,r){var n,i,o=A(e),a=y(e,t);return a?a.value=r:(o.last=a={index:i=h(t,!0),key:t,value:r,previous:n=o.last,next:null,removed:!1},o.first||(o.first=a),n&&(n.next=a),p?o.size++:e.size++,"F"!==i&&(o.index[i]=a)),e},y=function(e,t){var r,n=A(e),i=h(t);if("F"!==i)return n.index[i];for(r=n.first;r;r=r.next)if(r.key===t)return r};return o(d,{clear:function(){for(var e=A(this),t=e.first;t;)t.removed=!0,t.previous&&(t.previous=t.previous.next=null),t=t.next;e.first=e.last=null,e.index=n(null),p?e.size=0:this.size=0},delete:function(e){var t=A(this),r=y(this,e);if(r){var n=r.next,i=r.previous;delete t.index[r.index],r.removed=!0,i&&(i.next=n),n&&(n.previous=i),t.first===r&&(t.first=n),t.last===r&&(t.last=i),p?t.size--:this.size--}return!!r},forEach:function(e){for(var t,r=A(this),n=a(e,arguments.length>1?arguments[1]:void 0);t=t?t.next:r.first;)for(n(t.value,t.key,this);t&&t.removed;)t=t.previous},has:function(e){return!!y(this,e)}}),o(d,r?{get:function(e){var t=y(this,e);return t&&t.value},set:function(e,t){return g(this,0===e?0:e,t)}}:{add:function(e){return g(this,e=0===e?0:e,e)}}),p&&i(d,"size",{configurable:!0,get:function(){return A(this).size}}),f},setStrong:function(e,t,r){var n=t+" Iterator",i=m(t),o=m(n);l(e,t,function(e,t){v(this,{type:n,target:e,state:i(e),kind:t,last:null})},function(){for(var e=o(this),t=e.kind,r=e.last;r&&r.removed;)r=r.previous;return e.target&&(e.last=r=r?r.next:e.state.first)?"keys"===t?f(r.key,!1):"values"===t?f(r.value,!1):f([r.key,r.value],!1):(e.target=null,f(void 0,!0))},r?"entries":"values",!r,!0),d(t)}}},91625(e,t,r){"use strict";var n=r(79504),i=r(56279),o=r(3451).getWeakData,a=r(90679),s=r(28551),c=r(64117),u=r(20034),l=r(72652),f=r(59213),d=r(39297),p=r(91181),h=p.set,A=p.getterFor,v=f.find,m=f.findIndex,g=n([].splice),y=0,b=function(e){return e.frozen||(e.frozen=new _)},_=function(){this.entries=[]},C=function(e,t){return v(e.entries,function(e){return e[0]===t})};_.prototype={get:function(e){var t=C(this,e);if(t)return t[1]},has:function(e){return!!C(this,e)},set:function(e,t){var r=C(this,e);r?r[1]=t:this.entries.push([e,t])},delete:function(e){var t=m(this.entries,function(t){return t[0]===e});return~t&&g(this.entries,t,1),!!~t}},e.exports={getConstructor:function(e,t,r,n){var f=e(function(e,i){a(e,p),h(e,{type:t,id:y++,frozen:null}),c(i)||l(i,e[n],{that:e,AS_ENTRIES:r})}),p=f.prototype,v=A(t),m=function(e,t,r){var n=v(e),i=o(s(t),!0);return!0===i?b(n).set(t,r):i[n.id]=r,e};return i(p,{delete:function(e){var t=v(this);if(!u(e))return!1;var r=o(e);return!0===r?b(t).delete(e):r&&d(r,t.id)&&delete r[t.id]},has:function(e){var t=v(this);if(!u(e))return!1;var r=o(e);return!0===r?b(t).has(e):r&&d(r,t.id)}}),i(p,r?{get:function(e){var t=v(this);if(u(e)){var r=o(e);if(!0===r)return b(t).get(e);if(r)return r[t.id]}},set:function(e,t){return m(this,e,t)}}:{add:function(e){return m(this,e,!0)}}),f}}},16468(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(79504),a=r(92796),s=r(36840),c=r(3451),u=r(72652),l=r(90679),f=r(94901),d=r(64117),p=r(20034),h=r(79039),A=r(84428),v=r(10687),m=r(23167);e.exports=function(e,t,r){var g=-1!==e.indexOf("Map"),y=-1!==e.indexOf("Weak"),b=g?"set":"add",_=i[e],C=_&&_.prototype,w=_,x={},E=function(e){var t=o(C[e]);s(C,e,"add"===e?function(e){return t(this,0===e?0:e),this}:"delete"===e?function(e){return(!y||!!p(e))&&t(this,0===e?0:e)}:"get"===e?function(e){return y&&!p(e)?void 0:t(this,0===e?0:e)}:"has"===e?function(e){return(!y||!!p(e))&&t(this,0===e?0:e)}:function(e,r){return t(this,0===e?0:e,r),this})};if(a(e,!f(_)||!(y||C.forEach&&!h(function(){new _().entries().next()}))))w=r.getConstructor(t,e,g,b),c.enable();else if(a(e,!0)){var S=new w,k=S[b](y?{}:-0,1)!==S,I=h(function(){S.has(1)}),T=A(function(e){new _(e)}),O=!y&&h(function(){for(var e=new _,t=5;t--;)e[b](t,t);return!e.has(-0)});T||((w=t(function(e,t){l(e,C);var r=m(new _,e,w);return d(t)||u(t,r[b],{that:r,AS_ENTRIES:g}),r})).prototype=C,C.constructor=w),(I||O)&&(E("delete"),E("has"),g&&E("get")),(O||k)&&E(b),y&&C.clear&&delete C.clear}return x[e]=w,n({global:!0,constructor:!0,forced:w!==_},x),v(w,e),y||r.setStrong(w,e,g),w}},77740(e,t,r){"use strict";var n=r(39297),i=r(35031),o=r(77347),a=r(24913);e.exports=function(e,t,r){for(var s=i(t),c=a.f,u=o.f,l=0;l<s.length;l++){var f=s[l];n(e,f)||r&&n(r,f)||c(e,f,u(t,f))}}},41436(e,t,r){"use strict";var n=r(78227)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(r){try{return t[n]=!1,"/./"[e](t)}catch(e){}}return!1}},12211(e,t,r){"use strict";e.exports=!r(79039)(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})},77240(e,t,r){"use strict";var n=r(79504),i=r(45369),o=r(655),a=/"/g,s=n("".replace);e.exports=function(e,t,r,n){var c=o(i(e)),u="<"+t;return""!==r&&(u+=" "+r+'="'+s(o(n),a,""")+'"'),u+">"+c+"</"+t+">"}},62529(e){"use strict";e.exports=function(e,t){return{value:e,done:t}}},66699(e,t,r){"use strict";var n=r(43724),i=r(24913),o=r(6980);e.exports=n?function(e,t,r){return i.f(e,t,o(1,r))}:function(e,t,r){return e[t]=r,e}},6980(e){"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},97040(e,t,r){"use strict";var n=r(43724),i=r(24913),o=r(6980);e.exports=function(e,t,r){n?i.f(e,t,o(0,r)):e[t]=r}},70380(e,t,r){"use strict";var n=r(79504),i=r(79039),o=r(60533).start,a=RangeError,s=isFinite,c=Math.abs,u=Date.prototype,l=u.toISOString,f=n(u.getTime),d=n(u.getUTCDate),p=n(u.getUTCFullYear),h=n(u.getUTCHours),A=n(u.getUTCMilliseconds),v=n(u.getUTCMinutes),m=n(u.getUTCMonth),g=n(u.getUTCSeconds);e.exports=i(function(){return"0385-07-25T07:06:39.999Z"!==l.call(new Date(-5e13-1))})||!i(function(){l.call(new Date(NaN))})?function(){if(!s(f(this)))throw new a("Invalid time value");var e=p(this),t=A(this),r=e<0?"-":e>9999?"+":"";return r+o(c(e),r?6:4,0)+"-"+o(m(this)+1,2,0)+"-"+o(d(this),2,0)+"T"+o(h(this),2,0)+":"+o(v(this),2,0)+":"+o(g(this),2,0)+"."+o(t,3,0)+"Z"}:l},53640(e,t,r){"use strict";var n=r(28551),i=r(84270),o=TypeError;e.exports=function(e){if(n(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw new o("Incorrect hint");return i(this,e)}},62106(e,t,r){"use strict";var n=r(50283),i=r(24913);e.exports=function(e,t,r){return r.get&&n(r.get,t,{getter:!0}),r.set&&n(r.set,t,{setter:!0}),i.f(e,t,r)}},36840(e,t,r){"use strict";var n=r(94901),i=r(24913),o=r(50283),a=r(39433);e.exports=function(e,t,r,s){s||(s={});var c=s.enumerable,u=void 0!==s.name?s.name:t;if(n(r)&&o(r,u,s),s.global)c?e[t]=r:a(t,r);else{try{s.unsafe?e[t]&&(c=!0):delete e[t]}catch(e){}c?e[t]=r:i.f(e,t,{value:r,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return e}},56279(e,t,r){"use strict";var n=r(36840);e.exports=function(e,t,r){for(var i in t)n(e,i,t[i],r);return e}},39433(e,t,r){"use strict";var n=r(44576),i=Object.defineProperty;e.exports=function(e,t){try{i(n,e,{value:t,configurable:!0,writable:!0})}catch(r){n[e]=t}return t}},84606(e,t,r){"use strict";var n=r(16823),i=TypeError;e.exports=function(e,t){if(!delete e[t])throw new i("Cannot delete property "+n(t)+" of "+n(e))}},43724(e,t,r){"use strict";e.exports=!r(79039)(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})},94483(e,t,r){"use strict";var n,i,o,a,s=r(44576),c=r(89429),u=r(1548),l=s.structuredClone,f=s.ArrayBuffer,d=s.MessageChannel,p=!1;if(u)p=function(e){l(e,{transfer:[e]})};else if(f)try{!d&&(n=c("worker_threads"))&&(d=n.MessageChannel),d&&(i=new d,o=new f(2),a=function(e){i.port1.postMessage(null,[e])},2===o.byteLength&&(a(o),0===o.byteLength&&(p=a)))}catch(e){}e.exports=p},26436(e,t,r){"use strict";var n=r(44576),i=r(20034),o=n.document,a=i(o)&&i(o.createElement);e.exports=function(e){return a?o.createElement(e):{}}},96837(e){"use strict";var t=TypeError;e.exports=function(e){if(e>0x1fffffffffffff)throw new t("Maximum allowed index exceeded");return e}},55002(e){"use strict";e.exports={IndexSizeError:{s:"INDEX_SIZE_ERR",c:1,m:1},DOMStringSizeError:{s:"DOMSTRING_SIZE_ERR",c:2,m:0},HierarchyRequestError:{s:"HIERARCHY_REQUEST_ERR",c:3,m:1},WrongDocumentError:{s:"WRONG_DOCUMENT_ERR",c:4,m:1},InvalidCharacterError:{s:"INVALID_CHARACTER_ERR",c:5,m:1},NoDataAllowedError:{s:"NO_DATA_ALLOWED_ERR",c:6,m:0},NoModificationAllowedError:{s:"NO_MODIFICATION_ALLOWED_ERR",c:7,m:1},NotFoundError:{s:"NOT_FOUND_ERR",c:8,m:1},NotSupportedError:{s:"NOT_SUPPORTED_ERR",c:9,m:1},InUseAttributeError:{s:"INUSE_ATTRIBUTE_ERR",c:10,m:1},InvalidStateError:{s:"INVALID_STATE_ERR",c:11,m:1},SyntaxError:{s:"SYNTAX_ERR",c:12,m:1},InvalidModificationError:{s:"INVALID_MODIFICATION_ERR",c:13,m:1},NamespaceError:{s:"NAMESPACE_ERR",c:14,m:1},InvalidAccessError:{s:"INVALID_ACCESS_ERR",c:15,m:1},ValidationError:{s:"VALIDATION_ERR",c:16,m:0},TypeMismatchError:{s:"TYPE_MISMATCH_ERR",c:17,m:1},SecurityError:{s:"SECURITY_ERR",c:18,m:1},NetworkError:{s:"NETWORK_ERR",c:19,m:1},AbortError:{s:"ABORT_ERR",c:20,m:1},URLMismatchError:{s:"URL_MISMATCH_ERR",c:21,m:1},QuotaExceededError:{s:"QUOTA_EXCEEDED_ERR",c:22,m:1},TimeoutError:{s:"TIMEOUT_ERR",c:23,m:1},InvalidNodeTypeError:{s:"INVALID_NODE_TYPE_ERR",c:24,m:1},DataCloneError:{s:"DATA_CLONE_ERR",c:25,m:1}}},67400(e){"use strict";e.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},79296(e,t,r){"use strict";var n=r(26436)("span").classList,i=n&&n.constructor&&n.constructor.prototype;e.exports=i===Object.prototype?void 0:i},88727(e){"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},13709(e,t,r){"use strict";var n=r(82839).match(/firefox\/(\d+)/i);e.exports=!!n&&+n[1]},13763(e,t,r){"use strict";var n=r(82839);e.exports=/MSIE|Trident/.test(n)},44265(e,t,r){"use strict";var n=r(82839);e.exports=/ipad|iphone|ipod/i.test(n)&&"u">typeof Pebble},89544(e,t,r){"use strict";var n=r(82839);e.exports=/ipad|iphone|ipod/i.test(n)&&/applewebkit/i.test(n)},60955(e,t,r){"use strict";e.exports="NODE"===r(84215)},7860(e,t,r){"use strict";var n=r(82839);e.exports=/web0s(?!.*chrome)/i.test(n)},82839(e,t,r){"use strict";var n=r(44576).navigator,i=n&&n.userAgent;e.exports=i?String(i):""},39519(e,t,r){"use strict";var n,i,o=r(44576),a=r(82839),s=o.process,c=o.Deno,u=s&&s.versions||c&&c.version,l=u&&u.v8;l&&(i=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!i&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(i=+n[1]),e.exports=i},3607(e,t,r){"use strict";var n=r(82839).match(/AppleWebKit\/(\d+)\./);e.exports=!!n&&+n[1]},84215(e,t,r){"use strict";var n=r(44576),i=r(82839),o=r(22195),a=function(e){return i.slice(0,e.length)===e};e.exports=a("Bun/")?"BUN":a("Cloudflare-Workers")?"CLOUDFLARE":a("Deno/")?"DENO":a("Node.js/")?"NODE":n.Bun&&"string"==typeof Bun.version?"BUN":n.Deno&&"object"==typeof Deno.version?"DENO":"process"===o(n.process)?"NODE":n.window&&n.document?"BROWSER":"REST"},38574(e,t,r){"use strict";var n=r(79504),i=Error,o=n("".replace),a=String(new i("zxcasd").stack),s=/\n\s*at [^:]*:[^\n]*/,c=s.test(a);e.exports=function(e,t){if(c&&"string"==typeof e&&!i.prepareStackTrace)for(;t--;)e=o(e,s,"");return e}},80747(e,t,r){"use strict";var n=r(66699),i=r(38574),o=r(24659),a=Error.captureStackTrace;e.exports=function(e,t,r,s){o&&(a?a(e,t):n(e,"stack",i(r,s)))}},24659(e,t,r){"use strict";var n=r(79039),i=r(6980);e.exports=!n(function(){var e=Error("a");return!("stack"in e)||(Object.defineProperty(e,"stack",i(1,7)),7!==e.stack)})},77536(e,t,r){"use strict";var n=r(43724),i=r(79039),o=r(28551),a=r(32603),s=Error.prototype.toString;e.exports=i(function(){if(n){var e=Object.create(Object.defineProperty({},"name",{get:function(){return this===e}}));if("true"!==s.call(e))return!0}return"2: 1"!==s.call({message:1,name:2})||"Error"!==s.call({})})?function(){var e=o(this),t=a(e.name,"Error"),r=a(e.message);return t?r?t+": "+r:t:r}:s},46518(e,t,r){"use strict";var n=r(44576),i=r(77347).f,o=r(66699),a=r(36840),s=r(39433),c=r(77740),u=r(92796);e.exports=function(e,t){var r,l,f,d,p,h=e.target,A=e.global,v=e.stat;if(r=A?n:v?n[h]||s(h,{}):n[h]&&n[h].prototype)for(l in t){if(d=t[l],f=e.dontCallGetSet?(p=i(r,l))&&p.value:r[l],!u(A?l:h+(v?".":"#")+l,e.forced)&&void 0!==f){if(typeof d==typeof f)continue;c(d,f)}(e.sham||f&&f.sham)&&o(d,"sham",!0),a(r,l,d,e)}}},79039(e){"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},89228(e,t,r){"use strict";r(27495);var n=r(69565),i=r(36840),o=r(57323),a=r(79039),s=r(78227),c=r(66699),u=s("species"),l=RegExp.prototype;e.exports=function(e,t,r,f){var d=s(e),p=!a(function(){var t={};return t[d]=function(){return 7},7!==""[e](t)}),h=p&&!a(function(){var t=!1,r=/a/;if("split"===e){var n={};n[u]=function(){return r},(r={constructor:n,flags:""})[d]=/./[d]}return r.exec=function(){return t=!0,null},r[d](""),!t});if(!p||!h||r){var A=/./[d],v=t(d,""[e],function(e,t,r,i,a){var s=t.exec;return s===o||s===l.exec?p&&!a?{done:!0,value:n(A,t,r,i)}:{done:!0,value:n(e,r,t,i)}:{done:!1}});i(String.prototype,e,v[0]),i(l,d,v[1])}f&&c(l[d],"sham",!0)}},70259(e,t,r){"use strict";var n=r(34376),i=r(26198),o=r(96837),a=r(76080),s=r(97040),c=function(e,t,r,u,l,f,d,p){for(var h,A,v=l,m=0,g=!!d&&a(d,p);m<u;)m in r&&(h=g?g(r[m],m,t):r[m],f>0&&n(h)?(A=i(h),v=c(e,t,h,A,v,f-1)-1):(o(v+1),s(e,v,h)),v++),m++;return v};e.exports=c},70363(e,t,r){"use strict";e.exports=!r(79039)(function(){return Object.isExtensible(Object.preventExtensions({}))})},18745(e,t,r){"use strict";var n=r(40616),i=Function.prototype,o=i.apply,a=i.call;e.exports="object"==typeof Reflect&&Reflect.apply||(n?a.bind(o):function(){return a.apply(o,arguments)})},76080(e,t,r){"use strict";var n=r(27476),i=r(79306),o=r(40616),a=n(n.bind);e.exports=function(e,t){return i(e),void 0===t?e:o?a(e,t):function(){return e.apply(t,arguments)}}},40616(e,t,r){"use strict";e.exports=!r(79039)(function(){var e=(function(){}).bind();return"function"!=typeof e||e.hasOwnProperty("prototype")})},30566(e,t,r){"use strict";var n=r(79504),i=r(79306),o=r(20034),a=r(39297),s=r(67680),c=r(40616),u=Function,l=n([].concat),f=n([].join),d={},p=function(e,t,r){if(!a(d,t)){for(var n=[],i=0;i<t;i++)n[i]="a["+i+"]";d[t]=u("C,a","return new C("+f(n,",")+")")}return d[t](e,r)};e.exports=c?u.bind:function(e){var t=i(this),r=t.prototype,n=s(arguments,1),a=function(){var r=l(n,s(arguments));return this instanceof a?p(t,r.length,r):t.apply(e,r)};return o(r)&&(a.prototype=r),a}},69565(e,t,r){"use strict";var n=r(40616),i=Function.prototype.call;e.exports=n?i.bind(i):function(){return i.apply(i,arguments)}},10350(e,t,r){"use strict";var n=r(43724),i=r(39297),o=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,s=i(o,"name"),c=s&&(!n||n&&a(o,"name").configurable);e.exports={EXISTS:s,PROPER:s&&"something"===(function(){}).name,CONFIGURABLE:c}},46706(e,t,r){"use strict";var n=r(79504),i=r(79306);e.exports=function(e,t,r){try{return n(i(Object.getOwnPropertyDescriptor(e,t)[r]))}catch(e){}}},27476(e,t,r){"use strict";var n=r(22195),i=r(79504);e.exports=function(e){if("Function"===n(e))return i(e)}},79504(e,t,r){"use strict";var n=r(40616),i=Function.prototype,o=i.call,a=n&&i.bind.bind(o,o);e.exports=n?a:function(e){return function(){return o.apply(e,arguments)}}},944(e){"use strict";var t=TypeError;e.exports=function(e){var r=e&&e.alphabet;if(void 0===r||"base64"===r||"base64url"===r)return r||"base64";throw new t("Incorrect `alphabet` option")}},1886(e,t,r){"use strict";var n=r(69565),i=r(24074),o=r(28551),a=r(70081),s=r(1767),c=r(55966),u=r(78227)("asyncIterator");e.exports=function(e,t){var r=arguments.length<2?c(e,u):t;return r?o(n(r,e)):new i(s(a(e)))}},89429(e,t,r){"use strict";var n=r(44576),i=r(60955);e.exports=function(e){if(i){try{return n.process.getBuiltinModule(e)}catch(e){}try{return Function('return require("'+e+'")')()}catch(e){}}}},44124(e,t,r){"use strict";var n=r(44576);e.exports=function(e,t){var r=n[e],i=r&&r.prototype;return i&&i[t]}},97751(e,t,r){"use strict";var n=r(44576),i=r(94901);e.exports=function(e,t){var r;return arguments.length<2?i(r=n[e])?r:void 0:n[e]&&n[e][t]}},1767(e){"use strict";e.exports=function(e){return{iterator:e,next:e.next,done:!1}}},48646(e,t,r){"use strict";var n=r(69565),i=r(28551),o=r(1767),a=r(50851);e.exports=function(e,t){t&&"string"==typeof e||i(e);var r=a(e);return o(i(void 0!==r?n(r,e):e))}},50851(e,t,r){"use strict";var n=r(36955),i=r(55966),o=r(64117),a=r(26269),s=r(78227)("iterator");e.exports=function(e){if(!o(e))return i(e,s)||i(e,"@@iterator")||a[n(e)]}},70081(e,t,r){"use strict";var n=r(69565),i=r(79306),o=r(28551),a=r(16823),s=r(50851),c=TypeError;e.exports=function(e,t){var r=arguments.length<2?s(e):t;if(i(r))return o(n(r,e));throw new c(a(e)+" is not iterable")}},55966(e,t,r){"use strict";var n=r(79306),i=r(64117);e.exports=function(e,t){var r=e[t];return i(r)?void 0:n(r)}},83789(e,t,r){"use strict";var n=r(79306),i=r(28551),o=r(69565),a=r(91291),s=r(1767),c="Invalid size",u=RangeError,l=TypeError,f=Math.max,d=function(e,t){this.set=e,this.size=f(t,0),this.has=n(e.has),this.keys=n(e.keys)};d.prototype={getIterator:function(){return s(i(o(this.keys,this.set)))},includes:function(e){return o(this.has,this.set,e)}},e.exports=function(e){i(e);var t=+e.size;if(t!=t)throw new l(c);var r=a(t);if(r<0)throw new u(c);return new d(e,r)}},2478(e,t,r){"use strict";var n=r(79504),i=r(48981),o=Math.floor,a=n("".charAt),s=n("".replace),c=n("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,r,n,f,d){var p=r+e.length,h=n.length,A=l;return void 0!==f&&(f=i(f),A=u),s(d,A,function(i,s){var u;switch(a(s,0)){case"$":return"$";case"&":return e;case"`":return c(t,0,r);case"'":return c(t,p);case"<":u=f[c(s,1,-1)];break;default:var l=+s;if(0===l)return i;if(l>h){var d=o(l/10);if(0===d)return i;if(d<=h)return void 0===n[d-1]?a(s,1):n[d-1]+a(s,1);return i}u=n[l-1]}return void 0===u?"":u})}},44576(e,t,r){"use strict";var n=function(e){return e&&e.Math===Math&&e};e.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},39297(e,t,r){"use strict";var n=r(79504),i=r(48981),o=n({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return o(i(e),t)}},30421(e){"use strict";e.exports={}},90757(e){"use strict";e.exports=function(e,t){try{1==arguments.length?console.error(e):console.error(e,t)}catch(e){}}},20397(e,t,r){"use strict";e.exports=r(97751)("document","documentElement")},35917(e,t,r){"use strict";var n=r(43724),i=r(79039),o=r(26436);e.exports=!n&&!i(function(){return 7!==Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a})},88490(e){"use strict";var t=Array,r=Math.abs,n=Math.pow,i=Math.floor,o=Math.log,a=Math.LN2;e.exports={pack:function(e,s,c){var u,l,f,d=t(c),p=8*c-s-1,h=(1<<p)-1,A=h>>1,v=23===s?n(2,-24)-n(2,-77):0,m=+(e<0||0===e&&1/e<0),g=0;for((e=r(e))!=e||e===1/0?(l=+(e!=e),u=h):(f=n(2,-(u=i(o(e)/a))),e*f<1&&(u--,f*=2),u+A>=1?e+=v/f:e+=v*n(2,1-A),e*f>=2&&(u++,f/=2),u+A>=h?(l=0,u=h):u+A>=1?(l=(e*f-1)*n(2,s),u+=A):(l=e*n(2,A-1)*n(2,s),u=0));s>=8;)d[g++]=255&l,l/=256,s-=8;for(u=u<<s|l,p+=s;p>0;)d[g++]=255&u,u/=256,p-=8;return d[g-1]|=128*m,d},unpack:function(e,t){var r,i=e.length,o=8*i-t-1,a=(1<<o)-1,s=a>>1,c=o-7,u=i-1,l=e[u--],f=127&l;for(l>>=7;c>0;)f=256*f+e[u--],c-=8;for(r=f&(1<<-c)-1,f>>=-c,c+=t;c>0;)r=256*r+e[u--],c-=8;if(0===f)f=1-s;else{if(f===a)return r?NaN:l?-1/0:1/0;r+=n(2,t),f-=s}return(l?-1:1)*r*n(2,f-t)}}},47055(e,t,r){"use strict";var n=r(79504),i=r(79039),o=r(22195),a=Object,s=n("".split);e.exports=i(function(){return!a("z").propertyIsEnumerable(0)})?function(e){return"String"===o(e)?s(e,""):a(e)}:a},23167(e,t,r){"use strict";var n=r(94901),i=r(20034),o=r(52967);e.exports=function(e,t,r){var a,s;return o&&n(a=t.constructor)&&a!==r&&i(s=a.prototype)&&s!==r.prototype&&o(e,s),e}},33706(e,t,r){"use strict";var n=r(79504),i=r(94901),o=r(77629),a=n(Function.toString);i(o.inspectSource)||(o.inspectSource=function(e){return a(e)}),e.exports=o.inspectSource},77584(e,t,r){"use strict";var n=r(20034),i=r(66699);e.exports=function(e,t){n(t)&&"cause"in t&&i(e,"cause",t.cause)}},3451(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(30421),a=r(20034),s=r(39297),c=r(24913).f,u=r(16099),l=r(10298),f=r(34124),d=r(33392),p=r(70363),h=!1,A=d("meta"),v=0,m=function(e){c(e,A,{value:{objectID:"O"+v++,weakData:{}}})},g=e.exports={enable:function(){g.enable=function(){},h=!0;var e=u.f,t=i([].splice),r={};r[A]=1,e(r).length&&(u.f=function(r){for(var n=e(r),i=0,o=n.length;i<o;i++)if(n[i]===A){t(n,i,1);break}return n},n({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:l.f}))},fastKey:function(e,t){if(!a(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!s(e,A)){if(!f(e))return"F";if(!t)return"E";m(e)}return e[A].objectID},getWeakData:function(e,t){if(!s(e,A)){if(!f(e))return!0;if(!t)return!1;m(e)}return e[A].weakData},onFreeze:function(e){return p&&h&&f(e)&&!s(e,A)&&m(e),e}};o[A]=!0},91181(e,t,r){"use strict";var n,i,o,a=r(58622),s=r(44576),c=r(20034),u=r(66699),l=r(39297),f=r(77629),d=r(66119),p=r(30421),h="Object already initialized",A=s.TypeError,v=s.WeakMap;if(a||f.state){var m=f.state||(f.state=new v);m.get=m.get,m.has=m.has,m.set=m.set,n=function(e,t){if(m.has(e))throw new A(h);return t.facade=e,m.set(e,t),t},i=function(e){return m.get(e)||{}},o=function(e){return m.has(e)}}else{var g=d("state");p[g]=!0,n=function(e,t){if(l(e,g))throw new A(h);return t.facade=e,u(e,g,t),t},i=function(e){return l(e,g)?e[g]:{}},o=function(e){return l(e,g)}}e.exports={set:n,get:i,has:o,enforce:function(e){return o(e)?i(e):n(e,{})},getterFor:function(e){return function(t){var r;if(!c(t)||(r=i(t)).type!==e)throw new A("Incompatible receiver, "+e+" required");return r}}}},44209(e,t,r){"use strict";var n=r(78227),i=r(26269),o=n("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(i.Array===e||a[o]===e)}},34376(e,t,r){"use strict";var n=r(22195);e.exports=Array.isArray||function(e){return"Array"===n(e)}},18727(e,t,r){"use strict";var n=r(36955);e.exports=function(e){var t=n(e);return"BigInt64Array"===t||"BigUint64Array"===t}},94901(e){"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},33517(e,t,r){"use strict";var n=r(79504),i=r(79039),o=r(94901),a=r(36955),s=r(97751),c=r(33706),u=function(){},l=s("Reflect","construct"),f=/^\s*(?:class|function)\b/,d=n(f.exec),p=!f.test(u),h=function(e){if(!o(e))return!1;try{return l(u,[],e),!0}catch(e){return!1}},A=function(e){if(!o(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return p||!!d(f,c(e))}catch(e){return!0}};A.sham=!0,e.exports=!l||i(function(){var e;return h(h.call)||!h(Object)||!h(function(){e=!0})||e})?A:h},16575(e,t,r){"use strict";var n=r(39297);e.exports=function(e){return void 0!==e&&(n(e,"value")||n(e,"writable"))}},92796(e,t,r){"use strict";var n=r(79039),i=r(94901),o=/#|\.prototype\./,a=function(e,t){var r=c[s(e)];return r===l||r!==u&&(i(t)?n(t):!!t)},s=a.normalize=function(e){return String(e).replace(o,".").toLowerCase()},c=a.data={},u=a.NATIVE="N",l=a.POLYFILL="P";e.exports=a},2087(e,t,r){"use strict";var n=r(20034),i=Math.floor;e.exports=Number.isInteger||function(e){return!n(e)&&isFinite(e)&&i(e)===e}},64117(e){"use strict";e.exports=function(e){return null==e}},20034(e,t,r){"use strict";var n=r(94901);e.exports=function(e){return"object"==typeof e?null!==e:n(e)}},13925(e,t,r){"use strict";var n=r(20034);e.exports=function(e){return n(e)||null===e}},96395(e){"use strict";e.exports=!1},65810(e,t,r){"use strict";var n=r(20034),i=r(91181).get;e.exports=function(e){if(!n(e))return!1;var t=i(e);return!!t&&"RawJSON"===t.type}},60788(e,t,r){"use strict";var n=r(20034),i=r(22195),o=r(78227)("match");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[o])?!!t:"RegExp"===i(e))}},10757(e,t,r){"use strict";var n=r(97751),i=r(94901),o=r(1625),a=r(7040),s=Object;e.exports=a?function(e){return"symbol"==typeof e}:function(e){var t=n("Symbol");return i(t)&&o(t.prototype,s(e))}},40507(e,t,r){"use strict";var n=r(69565);e.exports=function(e,t,r){for(var i,o,a=r?e:e.iterator,s=e.next;!(i=n(s,a)).done;)if(void 0!==(o=t(i.value)))return o}},72652(e,t,r){"use strict";var n=r(76080),i=r(69565),o=r(28551),a=r(16823),s=r(44209),c=r(26198),u=r(1625),l=r(70081),f=r(50851),d=r(9539),p=TypeError,h=function(e,t){this.stopped=e,this.result=t},A=h.prototype;e.exports=function(e,t,r){var v,m,g,y,b,_,C,w=r&&r.that,x=!!(r&&r.AS_ENTRIES),E=!!(r&&r.IS_RECORD),S=!!(r&&r.IS_ITERATOR),k=!!(r&&r.INTERRUPTED),I=n(t,w),T=function(e){var t=v;return v=void 0,t&&d(t,"normal"),new h(!0,e)},O=function(e){return x?(o(e),k?I(e[0],e[1],T):I(e[0],e[1])):k?I(e,T):I(e)};if(E)v=e.iterator;else if(S)v=e;else{if(!(m=f(e)))throw new p(a(e)+" is not iterable");if(s(m)){for(g=0,y=c(e);y>g;g++)if((b=O(e[g]))&&u(A,b))return b;return new h(!1)}v=l(e,m)}for(_=E?e.next:v.next;!(C=i(_,v)).done;){var D=C.value;try{b=O(D)}catch(e){if(v)d(v,"throw",e);else throw e}if("object"==typeof b&&b&&u(A,b))return b}return new h(!1)}},91385(e,t,r){"use strict";var n=r(9539);e.exports=function(e,t,r){for(var i=e.length-1;i>=0;i--)if(void 0!==e[i])try{r=n(e[i].iterator,t,r)}catch(e){t="throw",r=e}if("throw"===t)throw r;return r}},9539(e,t,r){"use strict";var n=r(69565),i=r(28551),o=r(55966);e.exports=function(e,t,r){var a,s;i(e);try{if(!(a=o(e,"return"))){if("throw"===t)throw r;return r}a=n(a,e)}catch(e){s=!0,a=e}if("throw"===t)throw r;if(s)throw a;return i(a),r}},33994(e,t,r){"use strict";var n=r(57657).IteratorPrototype,i=r(2360),o=r(6980),a=r(10687),s=r(26269),c=function(){return this};e.exports=function(e,t,r,u){var l=t+" Iterator";return e.prototype=i(n,{next:o(+!u,r)}),a(e,l,!1,!0),s[l]=c,e}},19462(e,t,r){"use strict";var n=r(69565),i=r(2360),o=r(66699),a=r(56279),s=r(78227),c=r(91181),u=r(55966),l=r(57657).IteratorPrototype,f=r(62529),d=r(9539),p=r(91385),h=s("toStringTag"),A="IteratorHelper",v="WrapForValidIterator",m="normal",g="throw",y=c.set,b=function(e){var t=c.getterFor(e?v:A);return a(i(l),{next:function(){var r=t(this);if(e)return r.nextHandler();if(r.done)return f(void 0,!0);try{var n=r.nextHandler();return r.returnHandlerResult?n:f(n,r.done)}catch(e){throw r.done=!0,e}},return:function(){var r=t(this),i=r.iterator,o=r.done;if(r.done=!0,e){var a=u(i,"return");return a?n(a,i):f(void 0,!0)}if(o)return f(void 0,!0);if(r.inner)try{d(r.inner.iterator,m)}catch(e){return d(i,g,e)}if(r.openIters)try{p(r.openIters,m)}catch(e){if(i)return d(i,g,e);throw e}return i&&d(i,m),f(void 0,!0)}})},_=b(!0),C=b(!1);o(C,h,"Iterator Helper"),e.exports=function(e,t,r){var n=function(n,i){i?(i.iterator=n.iterator,i.next=n.next):i=n,i.type=t?v:A,i.returnHandlerResult=!!r,i.nextHandler=e,i.counter=0,i.done=!1,y(this,i)};return n.prototype=t?_:C,n}},51088(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(96395),a=r(10350),s=r(94901),c=r(33994),u=r(65168),l=r(52967),f=r(10687),d=r(66699),p=r(36840),h=r(78227),A=r(26269),v=r(57657),m=a.PROPER,g=a.CONFIGURABLE,y=v.IteratorPrototype,b=v.BUGGY_SAFARI_ITERATORS,_=h("iterator"),C="keys",w="values",x="entries",E=function(){return this};e.exports=function(e,t,r,a,h,v,S){c(r,t,a);var k,I,T,O=function(e){if(e===h&&j)return j;if(!b&&e&&e in N)return N[e];switch(e){case C:case w:case x:return function(){return new r(this,e)}}return function(){return new r(this)}},D=t+" Iterator",R=!1,N=e.prototype,L=N[_]||N["@@iterator"]||h&&N[h],j=!b&&L||O(h),M="Array"===t&&N.entries||L;if(M&&(k=u(M.call(new e)))!==Object.prototype&&k.next&&(!o&&u(k)!==y&&(l?l(k,y):s(k[_])||p(k,_,E)),f(k,D,!0,!0),o&&(A[D]=E)),m&&h===w&&L&&L.name!==w&&(!o&&g?d(N,"name",w):(R=!0,j=function(){return i(L,this)})),h)if(I={values:O(w),keys:v?j:O(C),entries:O(x)},S)for(T in I)!b&&!R&&T in N||p(N,T,I[T]);else n({target:t,proto:!0,forced:b||R},I);return(!o||S)&&N[_]!==j&&p(N,_,j,{name:h}),A[t]=j,I}},30684(e){"use strict";e.exports=function(e,t){var r="function"==typeof Iterator&&Iterator.prototype[e];if(r)try{r.call({next:null},t).next()}catch(e){return!0}}},84549(e,t,r){"use strict";var n=r(44576);e.exports=function(e,t){var r=n.Iterator,i=r&&r.prototype,o=i&&i[e],a=!1;if(o)try{o.call({next:function(){return{done:!0}},return:function(){a=!0}},-1)}catch(e){e instanceof t||(a=!1)}if(!a)return o}},57657(e,t,r){"use strict";var n,i,o,a=r(79039),s=r(94901),c=r(20034),u=r(2360),l=r(65168),f=r(36840),d=r(78227),p=r(96395),h=d("iterator"),A=!1;[].keys&&("next"in(o=[].keys())?(i=l(l(o)))!==Object.prototype&&(n=i):A=!0),!c(n)||a(function(){var e={};return n[h].call(e)!==e})?n={}:p&&(n=u(n)),s(n[h])||f(n,h,function(){return this}),e.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:A}},26269(e){"use strict";e.exports={}},26198(e,t,r){"use strict";var n=r(18014);e.exports=function(e){return n(e.length)}},50283(e,t,r){"use strict";var n=r(79504),i=r(79039),o=r(94901),a=r(39297),s=r(43724),c=r(10350).CONFIGURABLE,u=r(33706),l=r(91181),f=l.enforce,d=l.get,p=String,h=Object.defineProperty,A=n("".slice),v=n("".replace),m=n([].join),g=s&&!i(function(){return 8!==h(function(){},"length",{value:8}).length}),y=String(String).split("String"),b=e.exports=function(e,t,r){"Symbol("===A(p(t),0,7)&&(t="["+v(p(t),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(t="get "+t),r&&r.setter&&(t="set "+t),(!a(e,"name")||c&&e.name!==t)&&(s?h(e,"name",{value:t,configurable:!0}):e.name=t),g&&r&&a(r,"arity")&&e.length!==r.arity&&h(e,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?s&&h(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(e){}var n=f(e);return a(n,"source")||(n.source=m(y,"string"==typeof t?t:"")),e};Function.prototype.toString=b(function(){return o(this)&&d(this).source||u(this)},"toString")},72248(e,t,r){"use strict";var n=r(79504),i=Map.prototype;e.exports={Map:Map,set:n(i.set),get:n(i.get),has:n(i.has),remove:n(i.delete),proto:i}},53250(e){"use strict";var t=Math.expm1,r=Math.exp;e.exports=!t||t(10)>22025.465794806718||22025.465794806718>t(10)||-2e-17!==t(-2e-17)?function(e){var t=+e;return 0===t?t:t>-1e-6&&t<1e-6?t+t*t/2:r(t)-1}:t},33164(e,t,r){"use strict";var n=r(77782),i=r(53602),o=Math.abs;e.exports=function(e,t,r,a){var s=+e,c=o(s),u=n(s);if(c<a)return u*i(c/a/t)*a*t;var l=(1+t/2220446049250313e-31)*c,f=l-(l-c);return f>r||f!=f?1/0*u:u*f}},15617(e,t,r){"use strict";var n=r(33164);e.exports=Math.fround||function(e){return n(e,11920928955078125e-23,34028234663852886e22,11754943508222875e-54)}},49340(e){"use strict";var t=Math.log,r=Math.LOG10E;e.exports=Math.log10||function(e){return t(e)*r}},7740(e){"use strict";var t=Math.log;e.exports=Math.log1p||function(e){var r=+e;return r>-1e-8&&r<1e-8?r-r*r/2:t(1+r)}},67787(e){"use strict";var t=Math.log,r=Math.LN2;e.exports=Math.log2||function(e){return t(e)/r}},53602(e){"use strict";e.exports=function(e){return e+0x10000000000000-0x10000000000000}},77782(e){"use strict";e.exports=Math.sign||function(e){var t=+e;return 0===t||t!=t?t:t<0?-1:1}},80741(e){"use strict";var t=Math.ceil,r=Math.floor;e.exports=Math.trunc||function(e){var n=+e;return(n>0?r:t)(n)}},91955(e,t,r){"use strict";var n,i,o,a,s,c=r(44576),u=r(93389),l=r(76080),f=r(59225).set,d=r(18265),p=r(89544),h=r(44265),A=r(7860),v=r(60955),m=c.MutationObserver||c.WebKitMutationObserver,g=c.document,y=c.process,b=c.Promise,_=u("queueMicrotask");if(!_){var C=new d,w=function(){var e,t;for(v&&(e=y.domain)&&e.exit();t=C.get();)try{t()}catch(e){throw C.head&&n(),e}e&&e.enter()};p||v||A||!m||!g?!h&&b&&b.resolve?((a=b.resolve(void 0)).constructor=b,s=l(a.then,a),n=function(){s(w)}):v?n=function(){y.nextTick(w)}:(f=l(f,c),n=function(){f(w)}):(i=!0,o=g.createTextNode(""),new m(w).observe(o,{characterData:!0}),n=function(){o.data=i=!i}),_=function(e){C.head||n(),C.add(e)}}e.exports=_},27819(e,t,r){"use strict";e.exports=!r(79039)(function(){var e="9007199254740993",t=JSON.rawJSON(e);return!JSON.isRawJSON(t)||JSON.stringify(t)!==e})},36043(e,t,r){"use strict";var n=r(79306),i=TypeError,o=function(e){var t,r;this.promise=new e(function(e,n){if(void 0!==t||void 0!==r)throw new i("Bad Promise constructor");t=e,r=n}),this.resolve=n(t),this.reject=n(r)};e.exports.f=function(e){return new o(e)}},32603(e,t,r){"use strict";var n=r(655);e.exports=function(e,t){return void 0===e?arguments.length<2?"":t:n(e)}},24149(e){"use strict";var t=RangeError;e.exports=function(e){if(e==e)return e;throw new t("NaN is not allowed")}},60511(e,t,r){"use strict";var n=r(60788),i=TypeError;e.exports=function(e){if(n(e))throw new i("The method doesn't accept regular expressions");return e}},50360(e,t,r){"use strict";var n=r(44576).isFinite;e.exports=Number.isFinite||function(e){return"number"==typeof e&&n(e)}},33904(e,t,r){"use strict";var n=r(44576),i=r(79039),o=r(79504),a=r(655),s=r(43802).trim,c=r(47452),u=o("".charAt),l=n.parseFloat,f=n.Symbol,d=f&&f.iterator;e.exports=1/l(c+"-0")!=-1/0||d&&!i(function(){l(Object(d))})?function(e){var t=s(a(e)),r=l(t);return 0===r&&"-"===u(t,0)?-0:r}:l},52703(e,t,r){"use strict";var n=r(44576),i=r(79039),o=r(79504),a=r(655),s=r(43802).trim,c=r(47452),u=n.parseInt,l=n.Symbol,f=l&&l.iterator,d=/^[+-]?0x/i,p=o(d.exec);e.exports=8!==u(c+"08")||22!==u(c+"0x16")||f&&!i(function(){u(Object(f))})?function(e,t){var r=s(a(e));return u(r,t>>>0||(p(d,r)?16:10))}:u},44213(e,t,r){"use strict";var n=r(43724),i=r(79504),o=r(69565),a=r(79039),s=r(71072),c=r(33717),u=r(48773),l=r(48981),f=r(47055),d=Object.assign,p=Object.defineProperty,h=i([].concat);e.exports=!d||a(function(){if(n&&1!==d({b:1},d(p({},"a",{enumerable:!0,get:function(){p(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},t={},r=Symbol("assign detection"),i="abcdefghijklmnopqrst";return e[r]=7,i.split("").forEach(function(e){t[e]=e}),7!==d({},e)[r]||s(d({},t)).join("")!==i})?function(e,t){for(var r=l(e),i=arguments.length,a=1,d=c.f,p=u.f;i>a;)for(var A,v=f(arguments[a++]),m=d?h(s(v),d(v)):s(v),g=m.length,y=0;g>y;)A=m[y++],(!n||o(p,v,A))&&(r[A]=v[A]);return r}:d},2360(e,t,r){"use strict";var n,i=r(28551),o=r(96801),a=r(88727),s=r(30421),c=r(20397),u=r(26436),l=r(66119),f="prototype",d="script",p=l("IE_PROTO"),h=function(){},A=function(e){return"<"+d+">"+e+"</"+d+">"},v=function(e){e.write(A("")),e.close();var t=e.parentWindow.Object;return e=null,t},m=function(){var e,t=u("iframe");return t.style.display="none",c.appendChild(t),t.src=String("java"+d+":"),(e=t.contentWindow.document).open(),e.write(A("document.F=Object")),e.close(),e.F},g=function(){try{n=new ActiveXObject("htmlfile")}catch(e){}g="u">typeof document?document.domain&&n?v(n):m():v(n);for(var e=a.length;e--;)delete g[f][a[e]];return g()};s[p]=!0,e.exports=Object.create||function(e,t){var r;return null!==e?(h[f]=i(e),r=new h,h[f]=null,r[p]=e):r=g(),void 0===t?r:o.f(r,t)}},96801(e,t,r){"use strict";var n=r(43724),i=r(48686),o=r(24913),a=r(28551),s=r(25397),c=r(71072);t.f=n&&!i?Object.defineProperties:function(e,t){a(e);for(var r,n=s(t),i=c(t),u=i.length,l=0;u>l;)o.f(e,r=i[l++],n[r]);return e}},24913(e,t,r){"use strict";var n=r(43724),i=r(35917),o=r(48686),a=r(28551),s=r(56969),c=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",d="configurable",p="writable";t.f=n?o?function(e,t,r){if(a(e),t=s(t),a(r),"function"==typeof e&&"prototype"===t&&"value"in r&&p in r&&!r[p]){var n=l(e,t);n&&n[p]&&(e[t]=r.value,r={configurable:d in r?r[d]:n[d],enumerable:f in r?r[f]:n[f],writable:!1})}return u(e,t,r)}:u:function(e,t,r){if(a(e),t=s(t),a(r),i)try{return u(e,t,r)}catch(e){}if("get"in r||"set"in r)throw new c("Accessors not supported");return"value"in r&&(e[t]=r.value),e}},77347(e,t,r){"use strict";var n=r(43724),i=r(69565),o=r(48773),a=r(6980),s=r(25397),c=r(56969),u=r(39297),l=r(35917),f=Object.getOwnPropertyDescriptor;t.f=n?f:function(e,t){if(e=s(e),t=c(t),l)try{return f(e,t)}catch(e){}if(u(e,t))return a(!i(o.f,e,t),e[t])}},10298(e,t,r){"use strict";var n=r(22195),i=r(25397),o=r(16099).f,a=r(67680),s="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(e){try{return o(e)}catch(e){return a(s)}};e.exports.f=function(e){return s&&"Window"===n(e)?c(e):o(i(e))}},16099(e,t,r){"use strict";var n=r(61828),i=r(88727).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return n(e,i)}},33717(e,t){"use strict";t.f=Object.getOwnPropertySymbols},65168(e,t,r){"use strict";var n=r(39297),i=r(94901),o=r(48981),a=r(66119),s=r(12211),c=a("IE_PROTO"),u=Object,l=u.prototype;e.exports=s?u.getPrototypeOf:function(e){var t=o(e);if(n(t,c))return t[c];var r=t.constructor;return i(r)&&t instanceof r?r.prototype:t instanceof u?l:null}},34124(e,t,r){"use strict";var n=r(79039),i=r(20034),o=r(22195),a=r(93271),s=Object.isExtensible;e.exports=n(function(){s(1)})||a?function(e){return!!i(e)&&(!a||"ArrayBuffer"!==o(e))&&(!s||s(e))}:s},1625(e,t,r){"use strict";e.exports=r(79504)({}.isPrototypeOf)},61828(e,t,r){"use strict";var n=r(79504),i=r(39297),o=r(25397),a=r(19617).indexOf,s=r(30421),c=n([].push);e.exports=function(e,t){var r,n=o(e),u=0,l=[];for(r in n)!i(s,r)&&i(n,r)&&c(l,r);for(;t.length>u;)i(n,r=t[u++])&&(~a(l,r)||c(l,r));return l}},71072(e,t,r){"use strict";var n=r(61828),i=r(88727);e.exports=Object.keys||function(e){return n(e,i)}},48773(e,t){"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor;t.f=n&&!r.call({1:2},1)?function(e){var t=n(this,e);return!!t&&t.enumerable}:r},42551(e,t,r){"use strict";var n=r(96395),i=r(44576),o=r(79039),a=r(3607);e.exports=n||!o(function(){if(!a||!(a<535)){var e=Math.random();__defineSetter__.call(null,e,function(){}),delete i[e]}})},52967(e,t,r){"use strict";var n=r(46706),i=r(20034),o=r(45369),a=r(73506);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,r={};try{(e=n(Object.prototype,"__proto__","set"))(r,[]),t=r instanceof Array}catch(e){}return function(r,n){return o(r),a(n),i(r)&&(t?e(r,n):r.__proto__=n),r}}():void 0)},32357(e,t,r){"use strict";var n=r(43724),i=r(79039),o=r(79504),a=r(65168),s=r(71072),c=r(25397),u=o(r(48773).f),l=o([].push),f=n&&i(function(){var e=Object.create(null);return e[2]=2,!u(e,2)}),d=function(e){return function(t){for(var r,i=c(t),o=s(i),d=f&&null===a(i),p=o.length,h=0,A=[];p>h;)r=o[h++],(!n||(d?r in i:u(i,r)))&&l(A,e?[r,i[r]]:i[r]);return A}};e.exports={entries:d(!0),values:d(!1)}},53179(e,t,r){"use strict";var n=r(92140),i=r(36955);e.exports=n?({}).toString:function(){return"[object "+i(this)+"]"}},84270(e,t,r){"use strict";var n=r(69565),i=r(94901),o=r(20034),a=TypeError;e.exports=function(e,t){var r,s;if("string"===t&&i(r=e.toString)&&!o(s=n(r,e))||i(r=e.valueOf)&&!o(s=n(r,e))||"string"!==t&&i(r=e.toString)&&!o(s=n(r,e)))return s;throw new a("Can't convert object to primitive value")}},35031(e,t,r){"use strict";var n=r(97751),i=r(79504),o=r(16099),a=r(33717),s=r(28551),c=i([].concat);e.exports=n("Reflect","ownKeys")||function(e){var t=o.f(s(e)),r=a.f;return r?c(t,r(e)):t}},616(e,t,r){"use strict";var n=r(79504),i=r(39297),o=SyntaxError,a=parseInt,s=String.fromCharCode,c=n("".charAt),u=n("".slice),l=n(/./.exec),f={'\\"':'"',"\\\\":"\\","\\/":"/","\\b":"\b","\\f":"\f","\\n":"\n","\\r":"\r","\\t":" "},d=/^[\da-f]{4}$/i,p=/^[\u0000-\u001F]$/;e.exports=function(e,t){for(var r=!0,n="";t<e.length;){var h=c(e,t);if("\\"===h){var A=u(e,t,t+2);if(i(f,A))n+=f[A],t+=2;else if("\\u"===A){var v=u(e,t+=2,t+4);if(!l(d,v))throw new o("Bad Unicode escape at: "+t);n+=s(a(v,16)),t+=4}else throw new o('Unknown escape sequence: "'+A+'"')}else if('"'===h){r=!1,t++;break}else{if(l(p,h))throw new o("Bad control character in string literal at: "+t);n+=h,t++}}if(r)throw new o("Unterminated string at: "+t);return{value:n,end:t}}},19167(e,t,r){"use strict";e.exports=r(44576)},1103(e){"use strict";e.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}},10916(e,t,r){"use strict";var n=r(44576),i=r(80550),o=r(94901),a=r(92796),s=r(33706),c=r(78227),u=r(84215),l=r(96395),f=r(39519),d=i&&i.prototype,p=c("species"),h=!1,A=o(n.PromiseRejectionEvent);e.exports={CONSTRUCTOR:a("Promise",function(){var e=s(i),t=e!==String(i);if(!t&&66===f||l&&!(d.catch&&d.finally))return!0;if(!f||f<51||!/native code/.test(e)){var r=new i(function(e){e(1)}),n=function(e){e(function(){},function(){})};if((r.constructor={})[p]=n,!(h=r.then(function(){})instanceof n))return!0}return!t&&("BROWSER"===u||"DENO"===u)&&!A}),REJECTION_EVENT:A,SUBCLASSING:h}},80550(e,t,r){"use strict";e.exports=r(44576).Promise},93438(e,t,r){"use strict";var n=r(28551),i=r(20034),o=r(36043);e.exports=function(e,t){if(n(e),i(t)&&t.constructor===e)return t;var r=o.f(e);return(0,r.resolve)(t),r.promise}},90537(e,t,r){"use strict";var n=r(80550),i=r(84428);e.exports=r(10916).CONSTRUCTOR||!i(function(e){n.all(e).then(void 0,function(){})})},11056(e,t,r){"use strict";var n=r(24913).f;e.exports=function(e,t,r){r in e||n(e,r,{configurable:!0,get:function(){return t[r]},set:function(e){t[r]=e}})}},18265(e){"use strict";var t=function(){this.head=null,this.tail=null};t.prototype={add:function(e){var t={item:e,next:null},r=this.tail;r?r.next=t:this.head=t,this.tail=t},get:function(){var e=this.head;if(e)return null===(this.head=e.next)&&(this.tail=null),e.item}},e.exports=t},56682(e,t,r){"use strict";var n=r(69565),i=r(28551),o=r(94901),a=r(22195),s=r(57323),c=TypeError;e.exports=function(e,t){var r=e.exec;if(o(r)){var u=n(r,e,t);return null!==u&&i(u),u}if("RegExp"===a(e))return n(s,e,t);throw new c("RegExp#exec called on incompatible receiver")}},57323(e,t,r){"use strict";var n,i,o=r(69565),a=r(79504),s=r(655),c=r(67979),u=r(58429),l=r(25745),f=r(2360),d=r(91181).get,p=r(83635),h=r(18814),A=l("native-string-replace",String.prototype.replace),v=RegExp.prototype.exec,m=v,g=a("".charAt),y=a("".indexOf),b=a("".replace),_=a("".slice),C=(i=/b*/g,o(v,n=/a/,"a"),o(v,i,"a"),0!==n.lastIndex||0!==i.lastIndex),w=u.BROKEN_CARET,x=void 0!==/()??/.exec("")[1],E=function(e,t){for(var r=e.groups=f(null),n=0;n<t.length;n++){var i=t[n];r[i[0]]=e[i[1]]}};(C||x||w||p||h)&&(m=function(e){var t,r,n,i=d(this),a=s(e),u=i.raw;if(u)return u.lastIndex=this.lastIndex,t=o(m,u,a),this.lastIndex=u.lastIndex,t&&i.groups&&E(t,i.groups),t;var l=i.groups,f=w&&this.sticky,p=o(c,this),h=this.source,S=0,k=a;if(f){-1===y(p=b(p,"y",""),"g")&&(p+="g"),k=_(a,this.lastIndex);var I=this.lastIndex>0&&g(a,this.lastIndex-1);this.lastIndex>0&&(!this.multiline||this.multiline&&"\n"!==I&&"\r"!==I&&"\u2028"!==I&&"\u2029"!==I)&&(h="(?: (?:"+h+"))",k=" "+k,S++),r=RegExp("^(?:"+h+")",p)}x&&(r=RegExp("^"+h+"$(?!\\s)",p)),C&&(n=this.lastIndex);var T=o(v,f?r:this,k);return f?T?(T.input=a,T[0]=_(T[0],S),T.index=this.lastIndex,this.lastIndex+=T[0].length):this.lastIndex=0:C&&T&&(this.lastIndex=this.global?T.index+T[0].length:n),x&&T&&T.length>1&&o(A,T[0],r,function(){for(var e=1;e<arguments.length-2;e++)void 0===arguments[e]&&(T[e]=void 0)}),T&&l&&E(T,l),T}),e.exports=m},65213(e,t,r){"use strict";var n=r(44576),i=r(79039),o=n.RegExp;e.exports={correct:!i(function(){var e=!0;try{o(".","d")}catch(t){e=!1}var t={},r="",n=e?"dgimsy":"gimsy",i=function(e,n){Object.defineProperty(t,e,{get:function(){return r+=n,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var s in e&&(a.hasIndices="d"),a)i(s,a[s]);return Object.getOwnPropertyDescriptor(o.prototype,"flags").get.call(t)!==n||r!==n})}},67979(e,t,r){"use strict";var n=r(28551);e.exports=function(){var e=n(this),t="";return e.hasIndices&&(t+="d"),e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.unicodeSets&&(t+="v"),e.sticky&&(t+="y"),t}},61034(e,t,r){"use strict";var n=r(69565),i=r(39297),o=r(1625),a=r(65213),s=r(67979),c=RegExp.prototype;e.exports=a.correct?function(e){return e.flags}:function(e){return!a.correct&&o(c,e)&&!i(e,"flags")?n(s,e):e.flags}},58429(e,t,r){"use strict";var n=r(79039),i=r(44576).RegExp,o=n(function(){var e=i("a","y");return e.lastIndex=2,null!==e.exec("abcd")}),a=o||n(function(){return!i("a","y").sticky});e.exports={BROKEN_CARET:o||n(function(){var e=i("^r","gy");return e.lastIndex=2,null!==e.exec("str")}),MISSED_STICKY:a,UNSUPPORTED_Y:o}},83635(e,t,r){"use strict";var n=r(79039),i=r(44576).RegExp;e.exports=n(function(){var e=i(".","s");return!(e.dotAll&&e.test("\n")&&"s"===e.flags)})},18814(e,t,r){"use strict";var n=r(79039),i=r(44576).RegExp;e.exports=n(function(){var e=i("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")})},45369(e,t,r){"use strict";var n=r(64117),i=TypeError;e.exports=function(e){if(n(e))throw new i("Can't call method on "+e);return e}},93389(e,t,r){"use strict";var n=r(44576),i=r(43724),o=Object.getOwnPropertyDescriptor;e.exports=function(e){if(!i)return n[e];var t=o(n,e);return t&&t.value}},3470(e){"use strict";e.exports=Object.is||function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}},79472(e,t,r){"use strict";var n,i=r(44576),o=r(18745),a=r(94901),s=r(84215),c=r(82839),u=r(67680),l=r(22812),f=i.Function,d=/MSIE .\./.test(c)||"BUN"===s&&((n=i.Bun.version.split(".")).length<3||"0"===n[0]&&(n[1]<3||"3"===n[1]&&"0"===n[2]));e.exports=function(e,t){var r=t?2:1;return d?function(n,i){var s=l(arguments.length,1)>r,c=a(n)?n:f(n),d=s?u(arguments,r):[],p=s?function(){o(c,this,d)}:c;return t?e(p,i):e(p)}:e}},89286(e,t,r){"use strict";var n=r(94402),i=r(38469),o=n.Set,a=n.add;e.exports=function(e){var t=new o;return i(e,function(e){a(t,e)}),t}},83440(e,t,r){"use strict";var n=r(97080),i=r(94402),o=r(89286),a=r(25170),s=r(83789),c=r(38469),u=r(40507),l=i.has,f=i.remove;e.exports=function(e){var t=n(this),r=s(e),i=o(t);return a(i)<=r.size?c(i,function(e){r.includes(e)&&f(i,e)}):u(r.getIterator(),function(e){l(i,e)&&f(i,e)}),i}},94402(e,t,r){"use strict";var n=r(79504),i=Set.prototype;e.exports={Set:Set,add:n(i.add),has:n(i.has),remove:n(i.delete),proto:i}},68750(e,t,r){"use strict";var n=r(97080),i=r(94402),o=r(25170),a=r(83789),s=r(38469),c=r(40507),u=i.Set,l=i.add,f=i.has;e.exports=function(e){var t=n(this),r=a(e),i=new u;return o(t)>r.size?c(r.getIterator(),function(e){f(t,e)&&l(i,e)}):s(t,function(e){r.includes(e)&&l(i,e)}),i}},64449(e,t,r){"use strict";var n=r(97080),i=r(94402).has,o=r(25170),a=r(83789),s=r(38469),c=r(40507),u=r(9539);e.exports=function(e){var t=n(this),r=a(e);if(o(t)<=r.size)return!1!==s(t,function(e){if(r.includes(e))return!1},!0);var l=r.getIterator();return!1!==c(l,function(e){if(i(t,e))return u(l.iterator,"normal",!1)})}},53838(e,t,r){"use strict";var n=r(97080),i=r(25170),o=r(38469),a=r(83789);e.exports=function(e){var t=n(this),r=a(e);return!(i(t)>r.size)&&!1!==o(t,function(e){if(!r.includes(e))return!1},!0)}},28527(e,t,r){"use strict";var n=r(97080),i=r(94402).has,o=r(25170),a=r(83789),s=r(40507),c=r(9539);e.exports=function(e){var t=n(this),r=a(e);if(o(t)<r.size)return!1;var u=r.getIterator();return!1!==s(u,function(e){if(!i(t,e))return c(u.iterator,"normal",!1)})}},38469(e,t,r){"use strict";var n=r(79504),i=r(40507),o=r(94402),a=o.Set,s=o.proto,c=n(s.forEach),u=n(s.keys),l=u(new a).next;e.exports=function(e,t,r){return r?i({iterator:u(e),next:l},t):c(e,t)}},84916(e,t,r){"use strict";var n=r(97751),i=function(e){return{size:e,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},o=function(e){return{size:e,has:function(){return!0},keys:function(){throw Error("e")}}};e.exports=function(e,t){var r=n("Set");try{new r()[e](i(0));try{return new r()[e](i(-1)),!1}catch(n){if(!t)return!0;try{return new r()[e](o(-1/0)),!1}catch(n){var a=new r([1,2]);return t(a[e](o(1/0)))}}}catch(e){return!1}}},39835(e){"use strict";e.exports=function(e){try{var t=new Set,r=t[e]({size:0,has:function(){return!0},keys:function(){return Object.defineProperty({},"next",{get:function(){return t.clear(),t.add(4),function(){return{done:!0}}}})}});return 1===r.size&&4===r.values().next().value}catch(e){return!1}}},25170(e,t,r){"use strict";e.exports=r(46706)(r(94402).proto,"size","get")||function(e){return e.size}},87633(e,t,r){"use strict";var n=r(97751),i=r(62106),o=r(78227),a=r(43724),s=o("species");e.exports=function(e){var t=n(e);a&&t&&!t[s]&&i(t,s,{configurable:!0,get:function(){return this}})}},83650(e,t,r){"use strict";var n=r(97080),i=r(94402),o=r(89286),a=r(83789),s=r(40507),c=i.add,u=i.has,l=i.remove;e.exports=function(e){var t=n(this),r=a(e).getIterator(),i=o(t);return s(r,function(e){u(t,e)?l(i,e):c(i,e)}),i}},10687(e,t,r){"use strict";var n=r(24913).f,i=r(39297),o=r(78227)("toStringTag");e.exports=function(e,t,r){e&&!r&&(e=e.prototype),e&&!i(e,o)&&n(e,o,{configurable:!0,value:t})}},44204(e,t,r){"use strict";var n=r(97080),i=r(94402).add,o=r(89286),a=r(83789),s=r(40507);e.exports=function(e){var t=n(this),r=a(e).getIterator(),c=o(t);return s(r,function(e){i(c,e)}),c}},66119(e,t,r){"use strict";var n=r(25745),i=r(33392),o=n("keys");e.exports=function(e){return o[e]||(o[e]=i(e))}},77629(e,t,r){"use strict";var n=r(96395),i=r(44576),o=r(39433),a="__core-js_shared__",s=e.exports=i[a]||o(a,{});(s.versions||(s.versions=[])).push({version:"3.49.0",mode:n?"pure":"global",copyright:"\xa9 2013–2025 Denis Pushkarev (zloirock.ru), 2025–2026 CoreJS Company (core-js.io). All rights reserved.",license:"https://github.com/zloirock/core-js/blob/v3.49.0/LICENSE",source:"https://github.com/zloirock/core-js"})},25745(e,t,r){"use strict";var n=r(77629);e.exports=function(e,t){return n[e]||(n[e]=t||{})}},2293(e,t,r){"use strict";var n=r(28551),i=r(35548),o=r(64117),a=r(78227)("species");e.exports=function(e,t){var r,s=n(e).constructor;return void 0===s||o(r=n(s)[a])?t:i(r)}},23061(e,t,r){"use strict";var n=r(79039);e.exports=function(e){return n(function(){var t=""[e]('"');return t!==t.toLowerCase()||t.split('"').length>3})}},68183(e,t,r){"use strict";var n=r(79504),i=r(91291),o=r(655),a=r(45369),s=n("".charAt),c=n("".charCodeAt),u=n("".slice),l=function(e){return function(t,r){var n,l,f=o(a(t)),d=i(r),p=f.length;return d<0||d>=p?e?"":void 0:(n=c(f,d))<55296||n>56319||d+1===p||(l=c(f,d+1))<56320||l>57343?e?s(f,d):n:e?u(f,d,d+2):(n-55296<<10)+(l-56320)+65536}};e.exports={codeAt:l(!1),charAt:l(!0)}},83063(e,t,r){"use strict";var n=r(82839);e.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},60533(e,t,r){"use strict";var n=r(79504),i=r(18014),o=r(655),a=r(72333),s=r(45369),c=n(a),u=n("".slice),l=Math.ceil,f=function(e){return function(t,r,n){var a,f,d=o(s(t)),p=i(r),h=d.length;if(p<=h)return d;var A=void 0===n?" ":o(n);return""===A?d:((f=c(A,l((a=p-h)/A.length))).length>a&&(f=u(f,0,a)),e?d+f:f+d)}};e.exports={start:f(!1),end:f(!0)}},3717(e,t,r){"use strict";var n=r(79504),i=/[^\0-\u007E]/,o=/[.\u3002\uFF0E\uFF61]/g,a="Overflow: input needs wider integers to process",s=RangeError,c=n(o.exec),u=Math.floor,l=String.fromCharCode,f=n("".charCodeAt),d=n([].join),p=n([].push),h=n("".replace),A=n("".split),v=n("".toLowerCase),m=function(e){for(var t=[],r=0,n=e.length;r<n;){var i=f(e,r++);if(i>=55296&&i<=56319&&r<n){var o=f(e,r++);(64512&o)==56320?p(t,((1023&i)<<10)+(1023&o)+65536):(p(t,i),r--)}else p(t,i)}return t},g=function(e){return e+22+75*(e<26)},y=function(e,t,r){var n=0;for(e=r?u(e/700):e>>1,e+=u(e/t);e>455;)e=u(e/35),n+=36;return u(n+36*e/(e+38))},b=function(e){var t,r,n=[],i=(e=m(e)).length,o=128,c=0,f=72;for(t=0;t<e.length;t++)(r=e[t])<128&&p(n,l(r));var h=n.length,A=h;for(h&&p(n,"-");A<i;){var v=0x7fffffff;for(t=0;t<e.length;t++)(r=e[t])>=o&&r<v&&(v=r);var b=A+1;if(v-o>u((0x7fffffff-c)/b))throw new s(a);for(c+=(v-o)*b,o=v,t=0;t<e.length;t++){if((r=e[t])<o&&++c>0x7fffffff)throw new s(a);if(r===o){for(var _=c,C=36;;){var w=C<=f?1:C>=f+26?26:C-f;if(_<w)break;var x=_-w,E=36-w;p(n,l(g(w+x%E))),_=u(x/E),C+=36}p(n,l(g(_))),f=y(c,b,A===h),c=0,A++}}c++,o++}return d(n,"")};e.exports=function(e){var t,r,n=[],a=A(h(v(e),o,"."),".");for(t=0;t<a.length;t++)p(n,c(i,r=a[t])?"xn--"+b(r):r);return d(n,".")}},72333(e,t,r){"use strict";var n=r(91291),i=r(655),o=r(45369),a=RangeError,s=Math.floor;e.exports=function(e){var t=i(o(this)),r="",c=n(e);if(c<0||c===1/0)throw new a("Wrong number of repetitions");for(;c>0;(c=s(c/2))&&(t+=t))c%2&&(r+=t);return r}},18866(e,t,r){"use strict";var n=r(43802).end;e.exports=r(60706)("trimEnd")?function(){return n(this)}:"".trimEnd},60706(e,t,r){"use strict";var n=r(10350).PROPER,i=r(79039),o=r(47452),a="\x85";e.exports=function(e){return i(function(){return!!o[e]()||a[e]()!==a||n&&o[e].name!==e})}},53487(e,t,r){"use strict";var n=r(43802).start;e.exports=r(60706)("trimStart")?function(){return n(this)}:"".trimStart},43802(e,t,r){"use strict";var n=r(79504),i=r(45369),o=r(655),a=r(47452),s=n("".replace),c=RegExp("^["+a+"]+"),u=RegExp("(^|[^"+a+"])["+a+"]+$"),l=function(e){return function(t){var r=o(i(t));return 1&e&&(r=s(r,c,"")),2&e&&(r=s(r,u,"$1")),r}};e.exports={start:l(1),end:l(2),trim:l(3)}},1548(e,t,r){"use strict";var n=r(44576),i=r(79039),o=r(39519),a=r(84215),s=n.structuredClone;e.exports=!!s&&!i(function(){if("DENO"===a&&o>92||"NODE"===a&&o>94||"BROWSER"===a&&o>97)return!1;var e=new ArrayBuffer(8),t=s(e,{transfer:[e]});return 0!==e.byteLength||8!==t.byteLength})},4495(e,t,r){"use strict";var n=r(39519),i=r(79039),o=r(44576).String;e.exports=!!Object.getOwnPropertySymbols&&!i(function(){var e=Symbol("symbol detection");return!o(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})},58242(e,t,r){"use strict";var n=r(69565),i=r(97751),o=r(78227),a=r(36840);e.exports=function(){var e=i("Symbol"),t=e&&e.prototype,r=t&&t.valueOf,s=o("toPrimitive");t&&!t[s]&&a(t,s,function(e){return n(r,this)},{arity:1})}},91296(e,t,r){"use strict";e.exports=r(4495)&&!!Symbol.for&&!!Symbol.keyFor},59225(e,t,r){"use strict";var n,i,o,a,s=r(44576),c=r(18745),u=r(76080),l=r(94901),f=r(39297),d=r(79039),p=r(20397),h=r(67680),A=r(26436),v=r(22812),m=r(89544),g=r(60955),y=s.setImmediate,b=s.clearImmediate,_=s.process,C=s.Dispatch,w=s.Function,x=s.MessageChannel,E=s.String,S=0,k={},I="onreadystatechange";d(function(){n=s.location});var T=function(e){if(f(k,e)){var t=k[e];delete k[e],t()}},O=function(e){return function(){T(e)}},D=function(e){T(e.data)},R=function(e){s.postMessage(E(e),n.protocol+"//"+n.host)};y&&b||(y=function(e){v(arguments.length,1);var t=l(e)?e:w(e),r=h(arguments,1);return k[++S]=function(){c(t,void 0,r)},i(S),S},b=function(e){delete k[e]},g?i=function(e){_.nextTick(O(e))}:C&&C.now?i=function(e){C.now(O(e))}:x&&!m?(a=(o=new x).port2,o.port1.onmessage=D,i=u(a.postMessage,a)):s.addEventListener&&l(s.postMessage)&&!s.importScripts&&n&&"file:"!==n.protocol&&!d(R)?(i=R,s.addEventListener("message",D,!1)):i=I in A("script")?function(e){p.appendChild(A("script"))[I]=function(){p.removeChild(this),T(e)}}:function(e){setTimeout(O(e),0)}),e.exports={set:y,clear:b}},31240(e,t,r){"use strict";e.exports=r(79504)(1.1.valueOf)},35610(e,t,r){"use strict";var n=r(91291),i=Math.max,o=Math.min;e.exports=function(e,t){var r=n(e);return r<0?i(r+t,0):o(r,t)}},75854(e,t,r){"use strict";var n=r(72777),i=TypeError;e.exports=function(e){var t=n(e,"number");if("number"==typeof t)throw new i("Can't convert number to bigint");return BigInt(t)}},57696(e,t,r){"use strict";var n=r(91291),i=r(18014),o=RangeError;e.exports=function(e){if(void 0===e)return 0;var t=n(e),r=i(t);if(t!==r)throw new o("Wrong length or index");return r}},25397(e,t,r){"use strict";var n=r(47055),i=r(45369);e.exports=function(e){return n(i(e))}},91291(e,t,r){"use strict";var n=r(80741);e.exports=function(e){var t=+e;return t!=t||0===t?0:n(t)}},18014(e,t,r){"use strict";var n=r(91291),i=Math.min;e.exports=function(e){var t=n(e);return t>0?i(t,0x1fffffffffffff):0}},48981(e,t,r){"use strict";var n=r(45369),i=Object;e.exports=function(e){return i(n(e))}},58229(e,t,r){"use strict";var n=r(99590),i=RangeError;e.exports=function(e,t){var r=n(e);if(r%t)throw new i("Wrong offset");return r}},99590(e,t,r){"use strict";var n=r(91291),i=RangeError;e.exports=function(e){var t=n(e);if(t<0)throw new i("The argument can't be less than 0");return t}},72777(e,t,r){"use strict";var n=r(69565),i=r(20034),o=r(10757),a=r(55966),s=r(84270),c=r(78227),u=TypeError,l=c("toPrimitive");e.exports=function(e,t){if(!i(e)||o(e))return e;var r,c=a(e,l);if(c){if(void 0===t&&(t="default"),!i(r=n(c,e,t))||o(r))return r;throw new u("Can't convert object to primitive value")}return void 0===t&&(t="number"),s(e,t)}},56969(e,t,r){"use strict";var n=r(72777),i=r(10757);e.exports=function(e){var t=n(e,"string");return i(t)?t:t+""}},92140(e,t,r){"use strict";var n=r(78227)("toStringTag"),i={};i[n]="z",e.exports="[object z]"===String(i)},655(e,t,r){"use strict";var n=r(36955),i=String;e.exports=function(e){if("Symbol"===n(e))throw TypeError("Cannot convert a Symbol value to a string");return i(e)}},58319(e){"use strict";var t=Math.floor;e.exports=function(e){var r=+e;if(r!=r||r<=0)return 0;if(r>=255)return 255;var n=t(r);return n+.5<r?n+1:r<n+.5||n%2==0?n:n+1}},16823(e){"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},15823(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(69565),a=r(43724),s=r(72805),c=r(94644),u=r(66346),l=r(90679),f=r(6980),d=r(66699),p=r(2087),h=r(57696),A=r(58229),v=r(58319),m=r(56969),g=r(39297),y=r(36955),b=r(20034),_=r(10757),C=r(2360),w=r(1625),x=r(52967),E=r(16099).f,S=r(43251),k=r(59213).forEach,I=r(87633),T=r(62106),O=r(24913),D=r(77347),R=r(35370),N=r(91181),L=r(23167),j=N.get,M=N.set,P=N.enforce,B=O.f,F=D.f,U=i.RangeError,G=u.ArrayBuffer,z=G.prototype,$=u.DataView,W=c.NATIVE_ARRAY_BUFFER_VIEWS,H=c.TYPED_ARRAY_TAG,V=c.TypedArray,Y=c.TypedArrayPrototype,q=c.isTypedArray,X="BYTES_PER_ELEMENT",K="Wrong length",J=function(e,t){T(e,t,{configurable:!0,get:function(){return j(this)[t]}})},Q=function(e){var t;return w(z,e)||"ArrayBuffer"===(t=y(e))||"SharedArrayBuffer"===t},Z=function(e,t){return q(e)&&!_(t)&&t in e&&p(+t)&&t>=0},ee=function(e,t){return Z(e,t=m(t))?f(2,e[t]):F(e,t)},et=function(e,t,r){return Z(e,t=m(t))&&b(r)&&g(r,"value")&&!g(r,"get")&&!g(r,"set")&&!r.configurable&&(!g(r,"writable")||r.writable)&&(!g(r,"enumerable")||r.enumerable)?(e[t]=r.value,e):B(e,t,r)};a?(W||(D.f=ee,O.f=et,J(Y,"buffer"),J(Y,"byteOffset"),J(Y,"byteLength"),J(Y,"length")),n({target:"Object",stat:!0,forced:!W},{getOwnPropertyDescriptor:ee,defineProperty:et}),e.exports=function(e,t,r){var a=e.match(/\d+/)[0]/8,c=e+(r?"Clamped":"")+"Array",u="get"+e,f="set"+e,p=i[c],m=p,g=m&&m.prototype,y={},_=function(e,t){var r=j(e);return r.view[u](t*a+r.byteOffset,!0)},w=function(e,t,n){var i=j(e);i.view[f](t*a+i.byteOffset,r?v(n):n,!0)},T=function(e,t){B(e,t,{get:function(){return _(this,t)},set:function(e){return w(this,t,e)},enumerable:!0})};W?s&&(m=t(function(e,t,r,n){return l(e,g),L(b(t)?Q(t)?void 0!==n?new p(t,A(r,a),n):void 0!==r?new p(t,A(r,a)):new p(t):q(t)?R(m,t):o(S,m,t):new p(h(t)),e,m)}),x&&x(m,V),k(E(p),function(e){e in m||d(m,e,p[e])}),m.prototype=g):(m=t(function(e,t,r,n){l(e,g);var i,s,c,u=0,f=0;if(b(t))if(Q(t)){i=t,f=A(r,a);var d=t.byteLength;if(void 0===n){if(d%a||(s=d-f)<0)throw new U(K)}else if((s=h(n)*a)+f>d)throw new U(K);c=s/a}else if(q(t))return R(m,t);else return o(S,m,t);else i=new G(s=(c=h(t))*a);for(M(e,{buffer:i,byteOffset:f,byteLength:s,length:c,view:new $(i)});u<c;)T(e,u++)}),x&&x(m,V),g=m.prototype=C(Y)),g.constructor!==m&&d(g,"constructor",m),P(g).TypedArrayConstructor=m,H&&d(g,H,c);var O=m!==p;y[c]=m,n({global:!0,constructor:!0,forced:O,sham:!W},y),X in m||d(m,X,a),X in g||d(g,X,a),I(c)}):e.exports=function(){}},72805(e,t,r){"use strict";var n=r(44576),i=r(79039),o=r(84428),a=r(94644).NATIVE_ARRAY_BUFFER_VIEWS,s=n.ArrayBuffer,c=n.Int8Array;e.exports=!a||!i(function(){c(1)})||!i(function(){new c(-1)})||!o(function(e){new c,new c(null),new c(1.5),new c(e)},!0)||i(function(){return 1!==new c(new s(2),1,void 0).length})},29948(e,t,r){"use strict";var n=r(35370),i=r(94644).getTypedArrayConstructor;e.exports=function(e,t){return n(i(e),t)}},43251(e,t,r){"use strict";var n=r(76080),i=r(69565),o=r(79306),a=r(35548),s=r(48981),c=r(26198),u=r(70081),l=r(50851),f=r(44209),d=r(18727),p=r(94644).aTypedArrayConstructor,h=r(75854);e.exports=function(e){var t,r,A,v,m,g,y,b,_=a(this),C=arguments.length,w=C>1?arguments[1]:void 0,x=void 0!==w;x&&o(w);var E=s(e),S=l(E);if(S&&!f(S))for(b=(y=u(E,S)).next,E=[];!(g=i(b,y)).done;)E.push(g.value);for(x&&C>2&&(w=n(w,arguments[2])),r=c(E),v=d(A=new(p(_))(r)),t=0;r>t;t++)m=x?w(E[t],t):E[t],A[t]=v?h(m):+m;return A}},33392(e,t,r){"use strict";var n=r(79504),i=0,o=Math.random(),a=n(1.1.toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+a(++i+o,36)}},59143(e,t,r){"use strict";var n=r(44576),i=r(79504),o=r(83972),a=r(63463),s=r(39297),c=r(92804),u=r(944),l=r(55169),f=c.c2i,d=c.c2iUrl,p=n.SyntaxError,h=n.TypeError,A=i("".charAt),v=function(e,t){for(var r=e.length;t<r;t++){var n=A(e,t);if(" "!==n&&" "!==n&&"\n"!==n&&"\f"!==n&&"\r"!==n)break}return t},m=function(e,t,r){var n=e.length;n<4&&(e+=2===n?"AA":"A");var i=(t[A(e,0)]<<18)+(t[A(e,1)]<<12)+(t[A(e,2)]<<6)+t[A(e,3)],o=[i>>16&255,i>>8&255,255&i];if(2===n){if(r&&0!==o[1])throw new p("Extra bits");return[o[0]]}if(3===n){if(r&&0!==o[2])throw new p("Extra bits");return[o[0],o[1]]}return o},g=function(e,t,r){for(var n=t.length,i=0;i<n;i++)e[r+i]=t[i];return r+n};e.exports=function(e,t,r,n){a(e),o(t);var i="base64"===u(t)?f:d,c=t?t.lastChunkHandling:void 0;if(void 0===c&&(c="loose"),"loose"!==c&&"strict"!==c&&"stop-before-partial"!==c)throw new h("Incorrect `lastChunkHandling` option");r&&l(r.buffer);var y=e.length,b=r||[],_=0,C=0,w="",x=0;if(n)for(;;){if((x=v(e,x))===y){if(w.length>0){if("stop-before-partial"===c)break;if("loose"===c){if(1===w.length)throw new p("Malformed padding: exactly one additional character");_=g(b,m(w,i,!1),_)}else throw new p("Missing padding")}C=y;break}var E=A(e,x);if(++x,"="===E){if(w.length<2)throw new p("Padding is too early");if(x=v(e,x),2===w.length){if(x===y){if("stop-before-partial"===c)break;throw new p("Malformed padding: only one =")}"="===A(e,x)&&(x=v(e,++x))}if(x<y)throw new p("Unexpected character after padding");_=g(b,m(w,i,"strict"===c),_),C=y;break}if(!s(i,E))throw new p("Unexpected character");var S=n-_;if(1===S&&2===w.length||2===S&&3===w.length||4===(w+=E).length&&(_=g(b,m(w,i,!1),_),w="",C=x,_===n))break}return{bytes:b,read:C,written:_}}},42303(e,t,r){"use strict";var n=r(44576),i=r(79504),o=n.Uint8Array,a=n.SyntaxError,s=Math.min,c=i("".match);e.exports=function(e,t){var r=e.length;if(r%2!=0)throw new a("String should be an even number of characters");for(var n=t?s(t.length,r/2):r/2,i=t||new o(n),u=c(e,/.{2}/g),l=0;l<n;l++){var f=+("0x"+u[l]+"0");if(f!=f)throw new a("String should only contain hex characters");i[l]=f>>4}return{bytes:i,read:l<<1}}},67416(e,t,r){"use strict";var n=r(79039),i=r(78227),o=r(43724),a=r(96395),s=i("iterator");e.exports=!n(function(){var e=new URL("b?a=1&b=2&c=3","https://a"),t=e.searchParams,r=new URLSearchParams("a=1&a=2&b=3"),n="";return e.pathname="c%20d",t.forEach(function(e,r){t.delete("b"),n+=r+e}),r.delete("a",2),r.delete("b",void 0),a&&(!e.toJSON||!r.has("a",1)||r.has("a",2)||!r.has("a",void 0)||r.has("b"))||!t.size&&(a||!o)||!t.sort||"https://a/c%20d?a=1&c=3"!==e.href||"3"!==t.get("c")||"a=1"!==String(new URLSearchParams("?a=1"))||!t[s]||"a"!==new URL("https://a@b").username||"b"!==new URLSearchParams(new URLSearchParams("a=b")).get("a")||"xn--e1aybc"!==new URL("https://тест").host||"#%D0%B1"!==new URL("https://a#б").hash||"a1c3"!==n||"x"!==new URL("https://x",void 0).host})},7040(e,t,r){"use strict";e.exports=r(4495)&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},48686(e,t,r){"use strict";var n=r(43724),i=r(79039);e.exports=n&&i(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype})},22812(e){"use strict";var t=TypeError;e.exports=function(e,r){if(e<r)throw new t("Not enough arguments");return e}},58622(e,t,r){"use strict";var n=r(44576),i=r(94901),o=n.WeakMap;e.exports=i(o)&&/native code/.test(String(o))},44995(e,t,r){"use strict";var n=r(79504),i=WeakMap.prototype;e.exports={WeakMap:WeakMap,set:n(i.set),get:n(i.get),has:n(i.has),remove:n(i.delete)}},70511(e,t,r){"use strict";var n=r(19167),i=r(39297),o=r(1951),a=r(24913).f;e.exports=function(e){var t=n.Symbol||(n.Symbol={});i(t,e)||a(t,e,{value:o.f(e)})}},1951(e,t,r){"use strict";t.f=r(78227)},78227(e,t,r){"use strict";var n=r(44576),i=r(25745),o=r(39297),a=r(33392),s=r(4495),c=r(7040),u=n.Symbol,l=i("wks"),f=c?u.for||u:u&&u.withoutSetter||a;e.exports=function(e){return o(l,e)||(l[e]=s&&o(u,e)?u[e]:f("Symbol."+e)),l[e]}},47452(e){"use strict";e.exports=" \n\v\f\r \xa0 \u2028\u2029\uFEFF"},14601(e,t,r){"use strict";var n=r(97751),i=r(39297),o=r(66699),a=r(1625),s=r(52967),c=r(77740),u=r(11056),l=r(23167),f=r(32603),d=r(77584),p=r(80747),h=r(43724),A=r(96395);e.exports=function(e,t,r,v){var m="stackTraceLimit",g=v?2:1,y=e.split("."),b=y[y.length-1],_=n.apply(null,y);if(_){var C=_.prototype;if(!A&&i(C,"cause")&&delete C.cause,!r)return _;var w=n("Error"),x=t(function(e,t){var r=f(v?t:e,void 0),n=v?new _(e):new _;return void 0!==r&&o(n,"message",r),p(n,x,n.stack,2),this&&a(C,this)&&l(n,this,x),arguments.length>g&&d(n,arguments[g]),n});if(x.prototype=C,"Error"!==b?s?s(x,w):c(x,w,{name:!0}):h&&m in _&&(u(x,_,m),u(x,_,"prepareStackTrace")),c(x,_),!A)try{C.name!==b&&o(C,"name",b),C.constructor=x}catch(e){}return x}}},4294(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(18745),a=r(79039),s=r(14601),c="AggregateError",u=i(c),l=!a(function(){return 1!==u([1]).errors[0]})&&a(function(){return 7!==u([1],c,{cause:7}).cause});n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:s(c,function(e){return function(t,r){return o(e,this,arguments)}},l,!0)})},17145(e,t,r){"use strict";var n=r(46518),i=r(1625),o=r(65168),a=r(52967),s=r(77740),c=r(2360),u=r(66699),l=r(6980),f=r(77584),d=r(80747),p=r(72652),h=r(32603),A=r(78227)("toStringTag"),v=Error,m=[].push,g=function(e,t){var r,n=i(y,this);a?r=a(new v,n?o(this):y):u(r=n?this:c(y),A,"Error"),void 0!==t&&u(r,"message",h(t)),d(r,g,r.stack,1),arguments.length>2&&f(r,arguments[2]);var s=[];return p(e,m,{that:s}),u(r,"errors",s),r};a?a(g,v):s(g,v,{name:!0});var y=g.prototype=c(v.prototype,{constructor:l(1,g),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:g})},30067(e,t,r){"use strict";r(17145)},54743(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(66346),a=r(87633),s="ArrayBuffer",c=o[s];n({global:!0,constructor:!0,forced:i[s]!==c},{ArrayBuffer:c}),a(s)},16573(e,t,r){"use strict";var n=r(43724),i=r(62106),o=r(3238),a=ArrayBuffer.prototype;!n||"detached"in a||i(a,"detached",{configurable:!0,get:function(){return o(this)}})},46761(e,t,r){"use strict";var n=r(46518),i=r(94644);n({target:"ArrayBuffer",stat:!0,forced:!i.NATIVE_ARRAY_BUFFER_VIEWS},{isView:i.isView})},11745(e,t,r){"use strict";var n=r(46518),i=r(27476),o=r(79039),a=r(66346),s=r(28551),c=r(35610),u=r(18014),l=a.ArrayBuffer,f=a.DataView,d=f.prototype,p=i(l.prototype.slice),h=i(d.getUint8),A=i(d.setUint8);n({target:"ArrayBuffer",proto:!0,unsafe:!0,forced:o(function(){return!new l(2).slice(1,void 0).byteLength})},{slice:function(e,t){if(p&&void 0===t)return p(s(this),e);for(var r=s(this).byteLength,n=c(e,r),i=c(void 0===t?r:t,r),o=new l(u(i-n)),a=new f(this),d=new f(o),v=0;n<i;)A(d,v++,h(a,n++));return o}})},77936(e,t,r){"use strict";var n=r(46518),i=r(95636);i&&n({target:"ArrayBuffer",proto:!0},{transferToFixedLength:function(){return i(this,arguments.length?arguments[0]:void 0,!1)}})},78100(e,t,r){"use strict";var n=r(46518),i=r(95636);i&&n({target:"ArrayBuffer",proto:!0},{transfer:function(){return i(this,arguments.length?arguments[0]:void 0,!0)}})},18107(e,t,r){"use strict";var n=r(46518),i=r(48981),o=r(26198),a=r(91291),s=r(6469);n({target:"Array",proto:!0},{at:function(e){var t=i(this),r=o(t),n=a(e),s=n>=0?n:r+n;return s<0||s>=r?void 0:t[s]}}),s("at")},28706(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(34376),a=r(20034),s=r(48981),c=r(26198),u=r(96837),l=r(97040),f=r(34527),d=r(1469),p=r(70597),h=r(78227),A=r(39519),v=h("isConcatSpreadable"),m=A>=51||!i(function(){var e=[];return e[v]=!1,e.concat()[0]!==e}),g=function(e){if(!a(e))return!1;var t=e[v];return void 0!==t?!!t:o(e)};n({target:"Array",proto:!0,arity:1,forced:!m||!p("concat")},{concat:function(e){var t,r,n,i,o,a=s(this),p=d(a,0),h=0;for(t=-1,n=arguments.length;t<n;t++)if(o=-1===t?a:arguments[t],g(o))for(u(h+(i=c(o))),r=0;r<i;r++,h++)r in o&&l(p,h,o[r]);else u(h+1),l(p,h++,o);return f(p,h),p}})},26835(e,t,r){"use strict";var n=r(46518),i=r(57029),o=r(6469);n({target:"Array",proto:!0},{copyWithin:i}),o("copyWithin")},88431(e,t,r){"use strict";var n=r(46518),i=r(59213).every;n({target:"Array",proto:!0,forced:!r(34598)("every")},{every:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},33771(e,t,r){"use strict";var n=r(46518),i=r(84373),o=r(6469);n({target:"Array",proto:!0},{fill:i}),o("fill")},2008(e,t,r){"use strict";var n=r(46518),i=r(59213).filter;n({target:"Array",proto:!0,forced:!r(70597)("filter")},{filter:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},48980(e,t,r){"use strict";var n=r(46518),i=r(59213).findIndex,o=r(6469),a="findIndex",s=!0;a in[]&&[,][a](function(){s=!1}),n({target:"Array",proto:!0,forced:s},{findIndex:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),o(a)},13451(e,t,r){"use strict";var n=r(46518),i=r(43839).findLastIndex,o=r(6469);n({target:"Array",proto:!0},{findLastIndex:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),o("findLastIndex")},10838(e,t,r){"use strict";var n=r(46518),i=r(43839).findLast,o=r(6469);n({target:"Array",proto:!0},{findLast:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),o("findLast")},50113(e,t,r){"use strict";var n=r(46518),i=r(59213).find,o=r(6469),a="find",s=!0;a in[]&&[,][a](function(){s=!1}),n({target:"Array",proto:!0,forced:s},{find:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),o(a)},78350(e,t,r){"use strict";var n=r(46518),i=r(70259),o=r(79306),a=r(48981),s=r(26198),c=r(1469);n({target:"Array",proto:!0},{flatMap:function(e){var t,r=a(this),n=s(r);return o(e),i(t=c(r,0),r,r,n,0,1,e,arguments.length>1?arguments[1]:void 0),t}})},46449(e,t,r){"use strict";var n=r(46518),i=r(70259),o=r(48981),a=r(26198),s=r(91291),c=r(1469);n({target:"Array",proto:!0},{flat:function(){var e=arguments.length?arguments[0]:void 0,t=o(this),r=a(t),n=void 0===e?1:s(e),u=c(t,0);return i(u,t,t,r,0,n),u}})},51629(e,t,r){"use strict";var n=r(46518),i=r(90235);n({target:"Array",proto:!0,forced:[].forEach!==i},{forEach:i})},52407(e,t,r){"use strict";var n=r(46518),i=r(8045),o=r(79039),a=Array.fromAsync;n({target:"Array",stat:!0,forced:!a||o(function(){var e=0;return a.call(function(){return e++,[]},{length:0}),1!==e})},{fromAsync:i})},23418(e,t,r){"use strict";var n=r(46518),i=r(75535);n({target:"Array",stat:!0,forced:!r(84428)(function(e){Array.from(e)})},{from:i})},74423(e,t,r){"use strict";var n=r(46518),i=r(19617).includes,o=r(79039),a=r(6469),s=o(function(){return![,].includes()}),c=o(function(){return[,1].includes(void 0,1)});n({target:"Array",proto:!0,forced:s||c},{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),a("includes")},25276(e,t,r){"use strict";var n=r(46518),i=r(27476),o=r(19617).indexOf,a=r(34598),s=i([].indexOf),c=!!s&&1/s([1],1,-0)<0;n({target:"Array",proto:!0,forced:c||!a("indexOf")},{indexOf:function(e){var t=arguments.length>1?arguments[1]:void 0;return c?s(this,e,t)||0:o(this,e,t)}})},64346(e,t,r){"use strict";r(46518)({target:"Array",stat:!0},{isArray:r(34376)})},23792(e,t,r){"use strict";var n=r(25397),i=r(6469),o=r(26269),a=r(91181),s=r(24913).f,c=r(51088),u=r(62529),l=r(96395),f=r(43724),d="Array Iterator",p=a.set,h=a.getterFor(d);e.exports=c(Array,"Array",function(e,t){p(this,{type:d,target:n(e),index:0,kind:t})},function(){var e=h(this),t=e.target,r=e.index++;if(!t||r>=t.length)return e.target=null,u(void 0,!0);switch(e.kind){case"keys":return u(r,!1);case"values":return u(t[r],!1)}return u([r,t[r]],!1)},"values");var A=o.Arguments=o.Array;if(i("keys"),i("values"),i("entries"),!l&&f&&"values"!==A.name)try{s(A,"name",{value:"values"})}catch(e){}},48598(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(47055),a=r(25397),s=r(34598),c=i([].join);n({target:"Array",proto:!0,forced:o!==Object||!s("join",",")},{join:function(e){return c(a(this),void 0===e?",":e)}})},8921(e,t,r){"use strict";var n=r(46518),i=r(8379);n({target:"Array",proto:!0,forced:i!==[].lastIndexOf},{lastIndexOf:i})},62062(e,t,r){"use strict";var n=r(46518),i=r(59213).map;n({target:"Array",proto:!0,forced:!r(70597)("map")},{map:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},31051(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(33517),a=r(97040),s=r(34527),c=Array;n({target:"Array",stat:!0,forced:i(function(){function e(){}return!(c.of.call(e)instanceof e)})},{of:function(){for(var e=0,t=arguments.length,r=new(o(this)?this:c)(t);t>e;)a(r,e,arguments[e++]);return s(r,t),r}})},44114(e,t,r){"use strict";var n=r(46518),i=r(48981),o=r(26198),a=r(34527),s=r(96837);n({target:"Array",proto:!0,arity:1,forced:r(79039)(function(){return 0x100000001!==[].push.call({length:0x100000000},1)})||!function(){try{Object.defineProperty([],"length",{writable:!1}).push()}catch(e){return e instanceof TypeError}}()},{push:function(e){var t=i(this),r=o(t),n=arguments.length;s(r+n);for(var c=0;c<n;c++)t[r]=arguments[c],r++;return a(t,r),r}})},18863(e,t,r){"use strict";var n=r(46518),i=r(80926).right,o=r(34598),a=r(39519);n({target:"Array",proto:!0,forced:!r(60955)&&a>79&&a<83||!o("reduceRight")},{reduceRight:function(e){return i(this,e,arguments.length,arguments.length>1?arguments[1]:void 0)}})},72712(e,t,r){"use strict";var n=r(46518),i=r(80926).left,o=r(34598),a=r(39519);n({target:"Array",proto:!0,forced:!r(60955)&&a>79&&a<83||!o("reduce")},{reduce:function(e){var t=arguments.length;return i(this,e,t,t>1?arguments[1]:void 0)}})},94490(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(34376),a=i([].reverse),s=[1,2];n({target:"Array",proto:!0,forced:String(s)===String(s.reverse())},{reverse:function(){return o(this)&&(this.length=this.length),a(this)}})},34782(e,t,r){"use strict";var n=r(46518),i=r(34376),o=r(33517),a=r(20034),s=r(35610),c=r(26198),u=r(25397),l=r(97040),f=r(34527),d=r(78227),p=r(70597),h=r(67680),A=p("slice"),v=d("species"),m=Array,g=Math.max;n({target:"Array",proto:!0,forced:!A},{slice:function(e,t){var r,n,d,p=u(this),A=c(p),y=s(e,A),b=s(void 0===t?A:t,A);if(i(p)&&(o(r=p.constructor)&&(r===m||i(r.prototype))?r=void 0:a(r)&&null===(r=r[v])&&(r=void 0),r===m||void 0===r))return h(p,y,b);for(n=new(void 0===r?m:r)(g(b-y,0)),d=0;y<b;y++,d++)y in p&&l(n,d,p[y]);return f(n,d),n}})},15086(e,t,r){"use strict";var n=r(46518),i=r(59213).some;n({target:"Array",proto:!0,forced:!r(34598)("some")},{some:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},26910(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(79306),a=r(48981),s=r(26198),c=r(84606),u=r(655),l=r(79039),f=r(74488),d=r(34598),p=r(13709),h=r(13763),A=r(39519),v=r(3607),m=[],g=i(m.sort),y=i(m.push),b=l(function(){m.sort(void 0)}),_=l(function(){m.sort(null)}),C=d("sort"),w=!l(function(){if(A)return A<70;if(!p||!(p>3)){if(h)return!0;if(v)return v<603;var e,t,r,n,i="";for(e=65;e<76;e++){switch(t=String.fromCharCode(e),e){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)m.push({k:t+n,v:r})}for(m.sort(function(e,t){return t.v-e.v}),n=0;n<m.length;n++)t=m[n].k.charAt(0),i.charAt(i.length-1)!==t&&(i+=t);return"DGBEFHACIJK"!==i}});n({target:"Array",proto:!0,forced:b||!_||!C||!w},{sort:function(e){void 0!==e&&o(e);var t,r,n=a(this);if(w)return void 0===e?g(n):g(n,e);var i=[],l=s(n);for(r=0;r<l;r++)r in n&&y(i,n[r]);for(f(i,function(t,r){if(void 0===r)return -1;if(void 0===t)return 1;if(void 0!==e)return+e(t,r)||0;var n=u(t),i=u(r);return n===i?0:n>i?1:-1}),t=s(i),r=0;r<t;)n[r]=i[r++];for(;r<l;)c(n,r++);return n}})},87478(e,t,r){"use strict";r(87633)("Array")},54554(e,t,r){"use strict";var n=r(46518),i=r(48981),o=r(35610),a=r(91291),s=r(26198),c=r(34527),u=r(96837),l=r(1469),f=r(97040),d=r(84606),p=r(70597)("splice"),h=Math.max,A=Math.min;n({target:"Array",proto:!0,forced:!p},{splice:function(e,t){var r,n,p,v,m,g,y=i(this),b=s(y),_=o(e,b),C=arguments.length;for(0===C?r=n=0:1===C?(r=0,n=b-_):(r=C-2,n=A(h(a(t),0),b-_)),u(b+r-n),p=l(y,n),v=0;v<n;v++)(m=_+v)in y&&f(p,v,y[m]);if(c(p,n),r<n){for(v=_;v<b-n;v++)m=v+n,g=v+r,m in y?y[g]=y[m]:d(y,g);for(v=b;v>b-n+r;v--)d(y,v-1)}else if(r>n)for(v=b-n;v>_;v--)m=v+n-1,g=v+r-1,m in y?y[g]=y[m]:d(y,g);for(v=0;v<r;v++)y[v+_]=arguments[v+2];return c(y,b-n+r),p}})},9678(e,t,r){"use strict";var n=r(46518),i=r(26198),o=r(25397),a=r(97040),s=r(6469),c=Array;n({target:"Array",proto:!0},{toReversed:function(){for(var e=o(this),t=i(e),r=new c(t),n=0;n<t;n++)a(r,n,e[t-n-1]);return r}}),s("toReversed")},57145(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(79306),a=r(25397),s=r(35370),c=r(44124),u=r(6469),l=Array,f=i(c("Array","sort"));n({target:"Array",proto:!0},{toSorted:function(e){return void 0!==e&&o(e),f(s(l,a(this)),e)}}),u("toSorted")},71658(e,t,r){"use strict";var n=r(46518),i=r(6469),o=r(96837),a=r(26198),s=r(35610),c=r(25397),u=r(91291),l=r(97040),f=Array,d=Math.max,p=Math.min;n({target:"Array",proto:!0},{toSpliced:function(e,t){var r,n,i,h,A=c(this),v=a(A),m=s(e,v),g=arguments.length,y=0;for(0===g?r=n=0:1===g?(r=0,n=v-m):(r=g-2,n=p(d(u(t),0),v-m)),h=f(i=o(v+r-n));y<m;y++)l(h,y,A[y]);for(;y<m+r;y++)l(h,y,arguments[y-m+2]);for(;y<i;y++)l(h,y,A[y+n-r]);return h}}),i("toSpliced")},30237(e,t,r){"use strict";r(6469)("flatMap")},93514(e,t,r){"use strict";r(6469)("flat")},13609(e,t,r){"use strict";var n=r(46518),i=r(48981),o=r(26198),a=r(34527),s=r(84606),c=r(96837);n({target:"Array",proto:!0,arity:1,forced:1!==[].unshift(0)||!function(){try{Object.defineProperty([],"length",{writable:!1}).unshift()}catch(e){return e instanceof TypeError}}()},{unshift:function(e){var t=i(this),r=o(t),n=arguments.length;if(n){c(r+n);for(var u=r;u--;){var l=u+n;u in t?t[l]=t[u]:s(t,l)}for(var f=0;f<n;f++)t[f]=arguments[f]}return a(t,r+n)}})},11558(e,t,r){"use strict";var n=r(46518),i=r(26198),o=r(91291),a=r(25397),s=r(97040),c=Array,u=RangeError;n({target:"Array",proto:!0,forced:function(){try{[].with({valueOf:function(){throw 4}},null)}catch(e){return 4!==e}}()},{with:function(e,t){var r=a(this),n=i(r),l=o(e),f=l<0?n+l:l;if(f>=n||f<0)throw new u("Incorrect index");for(var d=new c(n),p=0;p<n;p++)s(d,p,p===f?t:r[p]);return d}})},24793(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(97751),a=r(79306),s=r(90679),c=r(36840),u=r(56279),l=r(62106),f=r(78227),d=r(91181),p=r(91021),h=r(39519),A=o("Promise"),v=o("SuppressedError"),m=ReferenceError,g=f("asyncDispose"),y=f("toStringTag"),b="AsyncDisposableStack",_=d.set,C=d.getterFor(b),w="async-dispose",x="disposed",E=function(e){var t=C(e);if(t.state===x)throw new m(b+" already disposed");return t},S=function(){_(s(this,k),{type:b,state:"pending",stack:[]}),i||(this.disposed=!1)},k=S.prototype;u(k,{disposeAsync:function(){var e=this;return new A(function(t,r){var n,o=C(e);if(o.state===x)return t(void 0);o.state=x,i||(e.disposed=!0);var a=o.stack,s=a.length,c=!1,u=function(e){c?n=new v(e,n):(c=!0,n=e),l()},l=function(){if(s){var e=a[--s];a[s]=null;try{A.resolve(e()).then(l,u)}catch(e){u(e)}}else o.stack=null,c?r(n):t(void 0)};l()})},use:function(e){return p(E(this),e,w),e},adopt:function(e,t){var r=E(this);return a(t),p(r,void 0,w,function(){return t(e)}),e},defer:function(e){var t=E(this);a(e),p(t,void 0,w,e)},move:function(){var e=E(this),t=new S;return C(t).stack=e.stack,e.stack=[],e.state=x,i||(this.disposed=!0),t}}),i&&l(k,"disposed",{configurable:!0,get:function(){return C(this).state===x}}),c(k,g,k.disposeAsync,{name:"disposeAsync"}),c(k,y,b,{nonWritable:!0}),n({global:!0,constructor:!0,forced:h&&h<136},{AsyncDisposableStack:S})},50452(e,t,r){"use strict";var n=r(69565),i=r(36840),o=r(97751),a=r(55966),s=r(39297),c=r(78227),u=r(53982),l=c("asyncDispose"),f=o("Promise");s(u,l)||i(u,l,function(){var e=this;return new f(function(t,r){var i=a(e,"return");i?f.resolve(n(i,e)).then(function(){t(void 0)},r):t(void 0)})})},24359(e,t,r){"use strict";var n=r(46518),i=r(66346);n({global:!0,constructor:!0,forced:!r(77811)},{DataView:i.DataView})},10255(e,t,r){"use strict";var n=r(46518),i=r(79504),o=Math.pow,a=o(2,-24),s=function(e){var t=e>>>15,r=e>>>10&31,n=1023&e;return 31===r?0===n?0===t?1/0:-1/0:NaN:0===r?n*(0===t?a:-a):o(2,r-15)*(0===t?1+9765625e-10*n:-1-9765625e-10*n)},c=i(DataView.prototype.getUint16);n({target:"DataView",proto:!0},{getFloat16:function(e){return s(c(this,e,arguments.length>1&&arguments[1]))}})},38309(e,t,r){"use strict";r(24359)},3995(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(24194),a=r(57696),s=r(67787),c=r(53602),u=Math.floor,l=Math.pow,f=function(e){if(e!=e)return 32256;if(0===e)return(1/e==-1/0)<<15;var t=e<0;if(t&&(e=-e),e>=65520)return t<<15|31744;if(e<61005353927612305e-21)return t<<15|c(0x1000000*e);var r=u(s(e));if(-15===r)return t<<15|1024;var n=c((e*l(2,-r)-1)*1024);return 1024===n?t<<15|r+16<<10:t<<15|r+15<<10|n},d=i(DataView.prototype.setUint16);n({target:"DataView",proto:!0},{setFloat16:function(e,t){d(o(this),a(e),f(+t),arguments.length>2&&arguments[2])}})},61699(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(79039)(function(){return 120!==new Date(16e11).getYear()}),a=i(Date.prototype.getFullYear);n({target:"Date",proto:!0,forced:o},{getYear:function(){return a(this)-1900}})},59089(e,t,r){"use strict";var n=r(46518),i=r(79504),o=Date,a=i(o.prototype.getTime);n({target:"Date",stat:!0},{now:function(){return a(new o)}})},91191(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(91291),a=Date.prototype,s=i(a.getTime),c=i(a.setFullYear);n({target:"Date",proto:!0},{setYear:function(e){s(this);var t=+e;if(t!=t)return c(this,t);var r=o(t);return c(this,r>=0&&r<=99?r+1900:r)}})},93515(e,t,r){"use strict";r(46518)({target:"Date",proto:!0},{toGMTString:Date.prototype.toUTCString})},1688(e,t,r){"use strict";var n=r(46518),i=r(70380);n({target:"Date",proto:!0,forced:Date.prototype.toISOString!==i},{toISOString:i})},60739(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(48981),a=r(72777);n({target:"Date",proto:!0,arity:1,forced:i(function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})},{toJSON:function(e){var t=o(this),r=a(t,"number");return"number"!=typeof r||isFinite(r)?t.toISOString():null}})},89572(e,t,r){"use strict";var n=r(39297),i=r(36840),o=r(53640),a=r(78227)("toPrimitive"),s=Date.prototype;n(s,a)||i(s,a,o)},23288(e,t,r){"use strict";var n=r(79504),i=r(36840),o=Date.prototype,a="Invalid Date",s="toString",c=n(o[s]),u=n(o.getTime);String(new Date(NaN))!==a&&i(o,s,function(){var e=u(this);return e==e?c(this):a})},48922(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(97751),a=r(79306),s=r(90679),c=r(36840),u=r(56279),l=r(62106),f=r(78227),d=r(91181),p=r(91021),h=o("SuppressedError"),A=ReferenceError,v=f("dispose"),m=f("toStringTag"),g="DisposableStack",y=d.set,b=d.getterFor(g),_="sync-dispose",C="disposed",w=function(e){var t=b(e);if(t.state===C)throw new A(g+" already disposed");return t},x=function(){y(s(this,E),{type:g,state:"pending",stack:[]}),i||(this.disposed=!1)},E=x.prototype;u(E,{dispose:function(){var e,t=b(this);if(t.state!==C){t.state=C,i||(this.disposed=!0);for(var r=t.stack,n=r.length,o=!1;n;){var a=r[--n];r[n]=null;try{a()}catch(t){o?e=new h(t,e):(o=!0,e=t)}}if(t.stack=null,o)throw e}},use:function(e){return p(w(this),e,_),e},adopt:function(e,t){var r=w(this);return a(t),p(r,void 0,_,function(){t(e)}),e},defer:function(e){var t=w(this);a(e),p(t,void 0,_,e)},move:function(){var e=w(this),t=new x;return b(t).stack=e.stack,e.stack=[],e.state=C,i||(this.disposed=!0),t}}),i&&l(E,"disposed",{configurable:!0,get:function(){return b(this).state===C}}),c(E,v,E.dispose,{name:"dispose"}),c(E,m,g,{nonWritable:!0}),n({global:!0,constructor:!0},{DisposableStack:x})},16280(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(18745),a=r(14601),s="WebAssembly",c=i[s],u=7!==Error("e",{cause:7}).cause,l=function(e,t){var r={};r[e]=a(e,t,u),n({global:!0,constructor:!0,arity:1,forced:u},r)},f=function(e,t){if(c&&c[e]){var r={};r[e]=a(s+"."+e,t,u),n({target:s,stat:!0,constructor:!0,arity:1,forced:u},r)}};l("Error",function(e){return function(t){return o(e,this,arguments)}}),l("EvalError",function(e){return function(t){return o(e,this,arguments)}}),l("RangeError",function(e){return function(t){return o(e,this,arguments)}}),l("ReferenceError",function(e){return function(t){return o(e,this,arguments)}}),l("SyntaxError",function(e){return function(t){return o(e,this,arguments)}}),l("TypeError",function(e){return function(t){return o(e,this,arguments)}}),l("URIError",function(e){return function(t){return o(e,this,arguments)}}),f("CompileError",function(e){return function(t){return o(e,this,arguments)}}),f("LinkError",function(e){return function(t){return o(e,this,arguments)}}),f("RuntimeError",function(e){return function(t){return o(e,this,arguments)}})},83991(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(20034),a=r(36955),s=r(79039),c="Error",u="DOMException",l=Object.setPrototypeOf||({}).__proto__,f=i(u),d=Error,p=d.isError;n({target:"Error",stat:!0,sham:!0,forced:!p||!l||s(function(){return f&&!p(new f(u))||!p(new d(c,{cause:function(){}}))||p(i("Object","create")(d.prototype))})},{isError:function(e){if(!o(e))return!1;var t=a(e);return t===c||t===u}})},76918(e,t,r){"use strict";var n=r(36840),i=r(77536),o=Error.prototype;o.toString!==i&&n(o,"toString",i)},36456(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(655),a=i("".charAt),s=i("".charCodeAt),c=i(/./.exec),u=i(1.1.toString),l=i("".toUpperCase),f=/[\w*+\-./@]/,d=function(e,t){for(var r=u(e,16);r.length<t;)r="0"+r;return r};n({global:!0},{escape:function(e){for(var t,r,n=o(e),i="",u=n.length,p=0;p<u;)c(f,t=a(n,p++))?i+=t:(r=s(t,0))<256?i+="%"+l(d(r,2)):i+="%u"+l(d(r,4));return i}})},94170(e,t,r){"use strict";var n=r(46518),i=r(30566);n({target:"Function",proto:!0,forced:Function.bind!==i},{bind:i})},48957(e,t,r){"use strict";var n=r(94901),i=r(20034),o=r(24913),a=r(1625),s=r(78227),c=r(50283),u=s("hasInstance"),l=Function.prototype;u in l||o.f(l,u,{value:c(function(e){if(!n(this)||!i(e))return!1;var t=this.prototype;return i(t)?a(t,e):e instanceof this},u)})},62010(e,t,r){"use strict";var n=r(43724),i=r(10350).EXISTS,o=r(79504),a=r(62106),s=Function.prototype,c=o(s.toString),u=/function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/,l=o(u.exec);n&&!i&&a(s,"name",{configurable:!0,get:function(){try{return l(u,c(this))[1]}catch(e){return""}}})},55081(e,t,r){"use strict";var n=r(46518),i=r(44576);n({global:!0,forced:i.globalThis!==i},{globalThis:i})},21979(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(28551),s=r(50851),c=r(19462),u=r(96395),l=Array,f=c(function(){for(;;){var e=this.iterator;if(!e){var t=this.nextIterableIndex++,r=this.iterables;if(t>=r.length){this.done=!0;return}var n=r[t];this.iterables[t]=null,e=this.iterator=a(i(n.method,n.iterable)),this.next=e.next}var o=a(i(this.next,e));if(o.done){this.iterator=null,this.next=null;continue}return o.value}});n({target:"Iterator",stat:!0,forced:u},{concat:function(){for(var e=arguments.length,t=l(e),r=0;r<e;r++){var n=a(arguments[r]);t[r]={iterable:n,method:o(s(n))}}return new f({iterables:t,nextIterableIndex:0,iterator:null,next:null})}})},18111(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(90679),a=r(28551),s=r(94901),c=r(65168),u=r(62106),l=r(97040),f=r(79039),d=r(39297),p=r(78227),h=r(57657).IteratorPrototype,A=r(43724),v=r(96395),m="constructor",g="Iterator",y=p("toStringTag"),b=TypeError,_=i[g],C=v||!s(_)||_.prototype!==h||!f(function(){_({})}),w=function(){if(o(this,h),c(this)===h)throw new b("Abstract class Iterator not directly constructable")},x=function(e,t){A?u(h,e,{configurable:!0,get:function(){return t},set:function(t){if(a(this),this===h)throw new b("You can't redefine this property");d(this,e)?this[e]=t:l(this,e,t)}}):h[e]=t};d(h,y)||x(y,g),(C||!d(h,m)||h[m]===Object)&&x(m,w),w.prototype=h,n({global:!0,constructor:!0,forced:C},{Iterator:w})},76382(e,t,r){"use strict";var n=r(69565),i=r(36840),o=r(55966),a=r(39297),s=r(78227),c=r(57657).IteratorPrototype,u=s("dispose");a(c,u)||i(c,u,function(){var e=o(this,"return");e&&n(e,this)})},29314(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(28551),a=r(1767),s=r(24149),c=r(99590),u=r(9539),l=r(19462),f=r(30684),d=r(84549),p=r(96395),h=!p&&!f("drop",0),A=!p&&!h&&d("drop",RangeError),v=p||h||A,m=l(function(){for(var e,t,r=this.iterator,n=this.next;this.remaining;)if(this.remaining--,e=o(i(n,r)),this.done=!!e.done)return;if(e=o(i(n,r)),!(this.done=!!e.done))return e.value});n({target:"Iterator",proto:!0,real:!0,forced:v},{drop:function(e){var t;o(this);try{t=c(s(+e))}catch(e){u(this,"throw",e)}return A?i(A,this,t):new m(a(this),{remaining:t})}})},81148(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(72652),a=r(79306),s=r(28551),c=r(1767),u=r(9539),l=r(84549)("every",TypeError);n({target:"Iterator",proto:!0,real:!0,forced:l},{every:function(e){s(this);try{a(e)}catch(e){u(this,"throw",e)}if(l)return i(l,this,e);var t=c(this),r=0;return!o(t,function(t,n){if(!e(t,r++))return n()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},22489(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(28551),s=r(1767),c=r(19462),u=r(96319),l=r(96395),f=r(9539),d=r(30684),p=r(84549),h=!l&&!d("filter",function(){}),A=!l&&!h&&p("filter",TypeError),v=l||h||A,m=c(function(){for(var e,t,r=this.iterator,n=this.predicate,o=this.next;;){if(e=a(i(o,r)),this.done=!!e.done)return;if(u(r,n,[t=e.value,this.counter++],!0))return t}});n({target:"Iterator",proto:!0,real:!0,forced:v},{filter:function(e){a(this);try{o(e)}catch(e){f(this,"throw",e)}return A?i(A,this,e):new m(s(this),{predicate:e})}})},20116(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(72652),a=r(79306),s=r(28551),c=r(1767),u=r(9539),l=r(84549)("find",TypeError);n({target:"Iterator",proto:!0,real:!0,forced:l},{find:function(e){s(this);try{a(e)}catch(e){u(this,"throw",e)}if(l)return i(l,this,e);var t=c(this),r=0;return o(t,function(t,n){if(e(t,r++))return n(t)},{IS_RECORD:!0,INTERRUPTED:!0}).result}})},30531(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(28551),s=r(1767),c=r(48646),u=r(19462),l=r(9539),f=r(96395),d=r(30684),p=r(84549),h=!f&&!d("flatMap",function(){}),A=!f&&!h&&p("flatMap",TypeError),v=f||h||A||function(){try{var e=Iterator.prototype.flatMap.call(new Map([[4,5]]).entries(),function(e){return e});e.next(),e.return()}catch(e){return!0}}(),m=u(function(){for(var e,t,r=this.iterator,n=this.mapper;;){if(t=this.inner)try{if(!(e=a(i(t.next,t.iterator))).done)return e.value;this.inner=null}catch(e){l(r,"throw",e)}if(e=a(i(this.next,r)),this.done=!!e.done)return;try{this.inner=c(n(e.value,this.counter++),!1)}catch(e){l(r,"throw",e)}}});n({target:"Iterator",proto:!0,real:!0,forced:v},{flatMap:function(e){a(this);try{o(e)}catch(e){l(this,"throw",e)}return A?i(A,this,e):new m(s(this),{mapper:e,inner:null})}})},7588(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(72652),a=r(79306),s=r(28551),c=r(1767),u=r(9539),l=r(84549)("forEach",TypeError);n({target:"Iterator",proto:!0,real:!0,forced:l},{forEach:function(e){s(this);try{a(e)}catch(e){u(this,"throw",e)}if(l)return i(l,this,e);var t=c(this),r=0;o(t,function(t){e(t,r++)},{IS_RECORD:!0})}})},49603(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(48981),a=r(1625),s=r(57657).IteratorPrototype,c=r(19462),u=r(48646),l=r(96395)||function(){try{Iterator.from({return:null}).return()}catch(e){return!0}}(),f=c(function(){return i(this.next,this.iterator)},!0);n({target:"Iterator",stat:!0,forced:l},{from:function(e){var t=u("string"==typeof e?o(e):e,!0);return a(s,t.iterator)?t.iterator:new f(t)}})},61701(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(28551),s=r(1767),c=r(19462),u=r(96319),l=r(9539),f=r(30684),d=r(84549),p=r(96395),h=!p&&!f("map",function(){}),A=!p&&!h&&d("map",TypeError),v=p||h||A,m=c(function(){var e=this.iterator,t=a(i(this.next,e));if(!(this.done=!!t.done))return u(e,this.mapper,[t.value,this.counter++],!0)});n({target:"Iterator",proto:!0,real:!0,forced:v},{map:function(e){a(this);try{o(e)}catch(e){l(this,"throw",e)}return A?i(A,this,e):new m(s(this),{mapper:e})}})},18237(e,t,r){"use strict";var n=r(46518),i=r(72652),o=r(79306),a=r(28551),s=r(1767),c=r(9539),u=r(84549),l=r(18745),f=r(79039),d=TypeError,p=f(function(){[].keys().reduce(function(){},void 0)}),h=!p&&u("reduce",d);n({target:"Iterator",proto:!0,real:!0,forced:p||h},{reduce:function(e){a(this);try{o(e)}catch(e){c(this,"throw",e)}var t=arguments.length<2,r=t?void 0:arguments[1];if(h)return l(h,this,t?[e]:[e,r]);var n=s(this),u=0;if(i(n,function(n){t?(t=!1,r=n):r=e(r,n,u),u++},{IS_RECORD:!0}),t)throw new d("Reduce of empty iterator with no initial value");return r}})},13579(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(72652),a=r(79306),s=r(28551),c=r(1767),u=r(9539),l=r(84549)("some",TypeError);n({target:"Iterator",proto:!0,real:!0,forced:l},{some:function(e){s(this);try{a(e)}catch(e){u(this,"throw",e)}if(l)return i(l,this,e);var t=c(this),r=0;return o(t,function(t,n){if(e(t,r++))return n()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},54972(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(28551),a=r(1767),s=r(24149),c=r(99590),u=r(19462),l=r(9539),f=r(30684),d=r(84549),p=r(96395),h=!p&&!f("take",1),A=!p&&!h&&d("take",RangeError),v=p||h||A,m=u(function(){var e=this.iterator;if(!this.remaining--)return this.done=!0,l(e,"normal",void 0);var t=o(i(this.next,e));if(!(this.done=!!t.done))return t.value});n({target:"Iterator",proto:!0,real:!0,forced:v},{take:function(e){var t;o(this);try{t=c(s(+e))}catch(e){l(this,"throw",e)}return A?i(A,this,t):new m(a(this),{remaining:t})}})},61806(e,t,r){"use strict";var n=r(46518),i=r(28551),o=r(97040),a=r(72652),s=r(1767);n({target:"Iterator",proto:!0,real:!0},{toArray:function(){var e=[],t=0;return a(s(i(this)),function(r){o(e,t++,r)},{IS_RECORD:!0}),e}})},45595(e,t,r){"use strict";r(46518)({target:"JSON",stat:!0,forced:!r(27819)},{isRawJSON:r(65810)})},69112(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(44576),a=r(97751),s=r(79504),c=r(69565),u=r(94901),l=r(20034),f=r(34376),d=r(39297),p=r(655),h=r(26198),A=r(97040),v=r(79039),m=r(616),g=r(4495),y=o.JSON,b=o.Number,_=o.SyntaxError,C=y&&y.parse,w=a("Object","keys"),x=Object.getOwnPropertyDescriptor,E=s("".charAt),S=s("".slice),k=s(/./.exec),I=s([].push),T=/^\d$/,O=/^[1-9]$/,D=/^[\d-]$/,R=/^[\t\n\r ]$/,N=function(e,t){var r=new P(e=p(e),0,""),n=r.parse(),i=n.value,o=r.skip(R,n.end);if(o<e.length)throw new _('Unexpected extra character: "'+E(e,o)+'" after the parsed data at: '+o);return u(t)?L({"":i},"",t,n):i},L=function(e,t,r,n){var i,o,a,s,u,p=e[t],A=n&&p===n.value,v=A&&"string"==typeof n.source?{source:n.source}:{};if(l(p)){var m=f(p),g=A?n.nodes:m?[]:{};if(m)for(i=g.length,a=h(p),s=0;s<a;s++)j(p,s,L(p,""+s,r,s<i?g[s]:void 0));else for(a=h(o=w(p)),s=0;s<a;s++)j(p,u=o[s],L(p,u,r,d(g,u)?g[u]:void 0))}return c(r,e,t,p,v)},j=function(e,t,r){if(i){var n=x(e,t);if(n&&!n.configurable)return}void 0===r?delete e[t]:A(e,t,r)},M=function(e,t,r,n){this.value=e,this.end=t,this.source=r,this.nodes=n},P=function(e,t){this.source=e,this.index=t};P.prototype={fork:function(e){return new P(this.source,e)},parse:function(){var e=this.source,t=this.skip(R,this.index),r=this.fork(t),n=E(e,t);if(k(D,n))return r.number();switch(n){case"{":return r.object();case"[":return r.array();case'"':return r.string();case"t":return r.keyword(!0);case"f":return r.keyword(!1);case"n":return r.keyword(null)}throw new _('Unexpected character: "'+n+'" at: '+t)},node:function(e,t,r,n,i){return new M(t,n,e?null:S(this.source,r,n),i)},object:function(){for(var e=this.source,t=this.index+1,r=!1,n={},i={},o=!1;t<e.length;){if("}"===E(e,t=this.until(['"',"}"],t))&&!r){t++,o=!0;break}var a=this.fork(t).string(),s=a.value;t=a.end,t=this.until([":"],t)+1,t=this.skip(R,t),A(i,s,a=this.fork(t).parse()),A(n,s,a.value);var c=E(e,t=this.until([",","}"],a.end));if(","===c)r=!0,t++;else if("}"===c){t++,o=!0;break}}if(!o)throw new _("Unterminated object at: "+t);return this.node(1,n,this.index,t,i)},array:function(){for(var e=this.source,t=this.index+1,r=!1,n=[],i=[],o=!1;t<e.length;){if("]"===E(e,t=this.skip(R,t))&&!r){t++,o=!0;break}var a=this.fork(t).parse();if(I(i,a),I(n,a.value),","===E(e,t=this.until([",","]"],a.end)))r=!0,t++;else if("]"===E(e,t)){t++,o=!0;break}}if(!o)throw new _("Unterminated array at: "+t);return this.node(1,n,this.index,t,i)},string:function(){var e=this.index,t=m(this.source,this.index+1);return this.node(0,t.value,e,t.end)},number:function(){var e=this.source,t=this.index,r=t;if("-"===E(e,r)&&r++,"0"===E(e,r))r++;else if(k(O,E(e,r)))r=this.skip(T,r+1);else throw new _("Failed to parse number at: "+r);if("."===E(e,r)){var n=r+1;if(r=this.skip(T,n),n===r)throw new _("Failed to parse number's fraction at: "+r)}if(("e"===E(e,r)||"E"===E(e,r))&&(("+"===E(e,++r)||"-"===E(e,r))&&r++,r===(r=this.skip(T,r))))throw new _("Failed to parse number's exponent value at: "+r);return this.node(0,b(S(e,t,r)),t,r)},keyword:function(e){var t=""+e,r=this.index,n=r+t.length;if(S(this.source,r,n)!==t)throw new _("Failed to parse value at: "+r);return this.node(0,e,r,n)},skip:function(e,t){for(var r=this.source;t<r.length&&k(e,E(r,t));t++);return t},until:function(e,t){t=this.skip(R,t);for(var r=E(this.source,t),n=0;n<e.length;n++)if(e[n]===r)return t;throw new _('Unexpected character: "'+r+'" at: '+t)}};var B=v(function(){var e,t="9007199254740993";return C(t,function(t,r,n){e=n.source}),e!==t}),F=g&&!v(function(){return 1/C("-0 ")!=-1/0});n({target:"JSON",stat:!0,forced:B},{parse:function(e,t){return F&&!u(t)?C(e):N(e,t)}})},20344(e,t,r){"use strict";var n=r(46518),i=r(70363),o=r(27819),a=r(97751),s=r(79504),c=r(655),u=r(97040),l=r(91181).set,f=SyntaxError,d=a("JSON","parse"),p=a("Object","create"),h=a("Object","freeze"),A=s("".charAt),v="Unacceptable as raw JSON",m=function(e){return" "===e||" "===e||"\n"===e||"\r"===e};n({target:"JSON",stat:!0,forced:!o},{rawJSON:function(e){var t=c(e);if(""===t||m(A(t,0))||m(A(t,t.length-1)))throw new f(v);var r=d(t);if("object"==typeof r&&null!==r)throw new f(v);var n=p(null);return l(n,{type:"RawJSON"}),u(n,"rawJSON",t),i?h(n):n}})},33110(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(18745),a=r(69565),s=r(79504),c=r(79039),u=r(34376),l=r(94901),f=r(65810),d=r(10757),p=r(22195),h=r(655),A=r(67680),v=r(616),m=r(33392),g=r(4495),y=r(27819),b=String,_=i("JSON","stringify"),C=s(/./.exec),w=s("".charAt),x=s("".charCodeAt),E=s("".replace),S=s("".slice),k=s([].push),I=s(1.1.toString),T=/[\uD800-\uDFFF]/g,O=/^[\uD800-\uDBFF]$/,D=/^[\uDC00-\uDFFF]$/,R=m(),N=R.length,L=!g||c(function(){var e=i("Symbol")("stringify detection");return"[null]"!==_([e])||"{}"!==_({a:e})||"{}"!==_(Object(e))}),j=c(function(){return'"\\udf06\\ud834"'!==_("\uDF06\uD834")||'"\\udead"'!==_("\uDEAD")}),M=L?function(e,t){var r=A(arguments),n=B(t);if(!(!l(n)&&(void 0===e||d(e))))return r[1]=function(e,t){if(l(n)&&(t=a(n,this,b(e),t)),!d(t))return t},o(_,null,r)}:_,P=function(e,t,r){var n=w(r,t-1),i=w(r,t+1);return C(O,e)&&!C(D,i)||C(D,e)&&!C(O,n)?"\\u"+I(x(e,0),16):e},B=function(e){if(l(e))return e;if(u(e)){for(var t=e.length,r=[],n=0;n<t;n++){var i=e[n];"string"==typeof i?k(r,i):("number"==typeof i||"Number"===p(i)||"String"===p(i))&&k(r,h(i))}var o=r.length,a=!0;return function(e,t){if(a)return a=!1,t;if(u(this))return t;for(var n=0;n<o;n++)if(r[n]===e)return t}}};_&&n({target:"JSON",stat:!0,arity:3,forced:L||j||!y},{stringify:function(e,t,r){var n=B(t),i=[],o=M(e,function(e,t){var r=l(n)?a(n,this,b(e),t):t;return!y&&f(r)?R+(k(i,r.rawJSON)-1):r},r);if("string"!=typeof o||(j&&(o=E(o,T,P)),y))return o;for(var s="",c=o.length,u=0;u<c;u++){var d=w(o,u);if('"'===d){var p=v(o,++u).end-1,h=S(o,u,p);s+=S(h,0,N)===R?i[S(h,N)]:'"'+h+'"',u=p}else s+=d}return s}})},4731(e,t,r){"use strict";var n=r(44576);r(10687)(n.JSON,"JSON",!0)},48523(e,t,r){"use strict";r(16468)("Map",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},r(86938))},92731(e,t,r){"use strict";var n=r(46518),i=r(79306),o=r(72248),a=r(96395),s=o.get,c=o.has,u=o.set;n({target:"Map",proto:!0,real:!0,forced:a},{getOrInsertComputed:function(e,t){var r=c(this,e);if(i(t),r)return s(this,e);0===e&&1/e==-1/0&&(e=0);var n=t(e);return u(this,e,n),n}})},45367(e,t,r){"use strict";var n=r(46518),i=r(72248),o=r(96395),a=i.get,s=i.has,c=i.set;n({target:"Map",proto:!0,real:!0,forced:o},{getOrInsert:function(e,t){return s(this,e)?a(this,e):(c(this,e,t),t)}})},47072(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(79306),a=r(45369),s=r(72652),c=r(72248),u=r(96395),l=r(79039),f=c.Map,d=c.has,p=c.get,h=c.set,A=i([].push),v=u||l(function(){return 1!==f.groupBy("ab",function(e){return e}).get("a").length});n({target:"Map",stat:!0,forced:u||v},{groupBy:function(e,t){a(e),o(t);var r=new f,n=0;return s(e,function(e){var i=t(e,n++);d(r,i)?A(p(r,i),e):h(r,i,[e])}),r}})},36033(e,t,r){"use strict";r(48523)},93153(e,t,r){"use strict";var n=r(46518),i=r(7740),o=Math.acosh,a=Math.log,s=Math.sqrt,c=Math.LN2;n({target:"Math",stat:!0,forced:!o||710!==Math.floor(o(Number.MAX_VALUE))||o(1/0)!==1/0},{acosh:function(e){var t=+e;return t<1?NaN:t>94906265.62425156?a(t)+c:i(t-1+s(t-1)*s(t+1))}})},82326(e,t,r){"use strict";var n=r(46518),i=Math.asinh,o=Math.log,a=Math.sqrt,s=Math.LN2;n({target:"Math",stat:!0,forced:!(i&&1/i(0)>0)},{asinh:function e(t){var r=+t;return isFinite(r)&&0!==r?r<0?-e(-r):r>94906265.62425156?o(r)+s:o(r+a(r*r+1)):r}})},36389(e,t,r){"use strict";var n=r(46518),i=r(7740),o=Math.atanh;n({target:"Math",stat:!0,forced:!(o&&1/o(-0)<0)},{atanh:function(e){var t=+e;return 0===t?t:i(2*t/(1-t))/2}})},64444(e,t,r){"use strict";var n=r(46518),i=r(77782),o=Math.abs,a=Math.pow;n({target:"Math",stat:!0},{cbrt:function(e){var t=+e;return i(t)*a(o(t),1/3)}})},8085(e,t,r){"use strict";var n=r(46518),i=Math.floor,o=Math.log,a=Math.LOG2E;n({target:"Math",stat:!0},{clz32:function(e){var t=e>>>0;return t?31-i(o(t+.5)*a):32}})},77762(e,t,r){"use strict";var n=r(46518),i=r(53250),o=Math.cosh,a=Math.abs,s=Math.E;n({target:"Math",stat:!0,forced:!o||o(710)===1/0},{cosh:function(e){var t=i(a(e)-1)+1;return s/2*(t+1/(t*s*s))}})},65070(e,t,r){"use strict";var n=r(46518),i=r(53250);n({target:"Math",stat:!0,forced:i!==Math.expm1},{expm1:i})},4360(e,t,r){"use strict";var n=r(46518),i=r(33164);n({target:"Math",stat:!0},{f16round:function(e){return i(e,9765625e-10,65504,6103515625e-14)}})},60605(e,t,r){"use strict";r(46518)({target:"Math",stat:!0},{fround:r(15617)})},39469(e,t,r){"use strict";var n=r(46518),i=Math.hypot,o=Math.abs,a=Math.sqrt;n({target:"Math",stat:!0,arity:2,forced:!!i&&i(1/0,NaN)!==1/0},{hypot:function(e,t){for(var r,n,i=0,s=0,c=arguments.length,u=0;s<c;)r=o(arguments[s++]),u<r?(i=i*(n=u/r)*n+1,u=r):r>0?i+=(n=r/u)*n:i+=r;return u===1/0?1/0:u*a(i)}})},72152(e,t,r){"use strict";var n=r(46518),i=r(79039),o=Math.imul;n({target:"Math",stat:!0,forced:i(function(){return -5!==o(0xffffffff,5)||2!==o.length})},{imul:function(e,t){var r=+e,n=+t,i=65535&r,o=65535&n;return 0|i*o+((65535&r>>>16)*o+i*(65535&n>>>16)<<16>>>0)}})},75376(e,t,r){"use strict";r(46518)({target:"Math",stat:!0},{log10:r(49340)})},56624(e,t,r){"use strict";r(46518)({target:"Math",stat:!0},{log1p:r(7740)})},11367(e,t,r){"use strict";r(46518)({target:"Math",stat:!0},{log2:r(67787)})},5914(e,t,r){"use strict";r(46518)({target:"Math",stat:!0},{sign:r(77782)})},78553(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(53250),a=Math.abs,s=Math.exp,c=Math.E;n({target:"Math",stat:!0,forced:i(function(){return -2e-17!==Math.sinh(-2e-17)})},{sinh:function(e){var t=+e;return 1>a(t)?(o(t)-o(-t))/2:(s(t-1)-s(-t-1))*(c/2)}})},23068(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(72652),a=RangeError,s=TypeError,c=1/0,u=NaN,l=Math.abs,f=Math.pow,d=i([].push),p=f(2,1023),h=f(2,53)-1,A=Number.MAX_VALUE,v=f(2,971),m={},g={},y={},b={},_={},C=function(e,t){var r=e+t;return{hi:r,lo:t-(r-e)}};n({target:"Math",stat:!0},{sumPrecise:function(e){var t,r,n,i,f,w,x=[],E=0,S=b;switch(o(e,function(e){if(++E>h)throw new a("Maximum allowed index exceeded");if("number"!=typeof e)throw new s("Value is not a number");S!==m&&(e!=e?S=m:e===c?S=S===g?m:y:e===-c?S=S===y?m:g:(0!==e||1/e===c)&&(S===b||S===_)&&(S=_,d(x,e)))}),S){case m:return u;case g:return-c;case y:return c;case b:return -0}for(var k=[],I=0,T=0;T<x.length;T++){t=x[T];for(var O=0,D=0;D<k.length;D++){if(r=k[D],l(t)<l(r)&&(w=t,t=r,r=w),i=(n=C(t,r)).hi,f=n.lo,l(i)===c){var R=i===c?1:-1;I+=R,l(t=t-R*p-R*p)<l(r)&&(w=t,t=r,r=w),i=(n=C(t,r)).hi,f=n.lo}0!==f&&(k[O++]=f),t=i}k.length=O,0!==t&&d(k,t)}var N=k.length-1;if(i=0,f=0,0!==I){var L=N>=0?k[N]:0;if(N--,l(I)>1||I>0&&L>0||I<0&&L<0)return I>0?c:-c;if(i=(n=C(I*p,L/2)).hi,f=2*n.lo,l(2*i)===c)return i>0?i===p&&f===-(v/2)&&N>=0&&k[N]<0?A:c:i===-p&&f===v/2&&N>=0&&k[N]>0?-A:-c;0!==f&&(k[++N]=f,f=0),i*=2}for(;N>=0&&(i=(n=C(i,k[N--])).hi,0===(f=n.lo)););return N>=0&&(f<0&&k[N]<0||f>0&&k[N]>0)&&(t=i+(r=2*f),r===t-i&&(i=t)),i}})},98690(e,t,r){"use strict";var n=r(46518),i=r(53250),o=Math.exp;n({target:"Math",stat:!0},{tanh:function(e){var t=+e,r=i(t),n=i(-t);return r===1/0?1:n===1/0?-1:(r-n)/(o(t)+o(-t))}})},60479(e,t,r){"use strict";r(10687)(Math,"Math",!0)},70761(e,t,r){"use strict";r(46518)({target:"Math",stat:!0},{trunc:r(80741)})},2892(e,t,r){"use strict";var n=r(46518),i=r(96395),o=r(43724),a=r(44576),s=r(19167),c=r(79504),u=r(92796),l=r(39297),f=r(23167),d=r(1625),p=r(10757),h=r(72777),A=r(79039),v=r(16099).f,m=r(77347).f,g=r(24913).f,y=r(31240),b=r(43802).trim,_="Number",C=a[_],w=s[_],x=C.prototype,E=a.TypeError,S=c("".slice),k=c("".charCodeAt),I=function(e){var t=h(e,"number");return"bigint"==typeof t?t:T(t)},T=function(e){var t,r,n,i,o,a,s,c,u=h(e,"number");if(p(u))throw new E("Cannot convert a Symbol value to a number");if("string"==typeof u&&u.length>2){if(43===(t=k(u=b(u),0))||45===t){if(88===(r=k(u,2))||120===r)return NaN}else if(48===t){switch(k(u,1)){case 66:case 98:n=2,i=49;break;case 79:case 111:n=8,i=55;break;default:return+u}for(a=(o=S(u,2)).length,s=0;s<a;s++)if((c=k(o,s))<48||c>i)return NaN;return parseInt(o,n)}}return+u},O=u(_,!C(" 0o1")||!C("0b1")||C("+0x1")),D=function(e){var t,r=arguments.length<1?0:C(I(e));return(t=this,d(x,t)&&A(function(){y(t)}))?f(Object(r),this,D):r};D.prototype=x,O&&!i&&(x.constructor=D),n({global:!0,constructor:!0,wrap:!0,forced:O},{Number:D});var R=function(e,t){for(var r,n=o?v(t):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),i=0;n.length>i;i++)l(t,r=n[i])&&!l(e,r)&&g(e,r,m(t,r))};i&&w&&R(s[_],w),(O||i)&&R(s[_],C)},45374(e,t,r){"use strict";r(46518)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{EPSILON:2220446049250313e-31})},25428(e,t,r){"use strict";r(46518)({target:"Number",stat:!0},{isFinite:r(50360)})},32637(e,t,r){"use strict";r(46518)({target:"Number",stat:!0},{isInteger:r(2087)})},40150(e,t,r){"use strict";r(46518)({target:"Number",stat:!0},{isNaN:function(e){return e!=e}})},59149(e,t,r){"use strict";var n=r(46518),i=r(2087),o=Math.abs;n({target:"Number",stat:!0},{isSafeInteger:function(e){return i(e)&&0x1fffffffffffff>=o(e)}})},64601(e,t,r){"use strict";r(46518)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MAX_SAFE_INTEGER:0x1fffffffffffff})},44435(e,t,r){"use strict";r(46518)({target:"Number",stat:!0,nonConfigurable:!0,nonWritable:!0},{MIN_SAFE_INTEGER:-0x1fffffffffffff})},87220(e,t,r){"use strict";var n=r(46518),i=r(33904);n({target:"Number",stat:!0,forced:Number.parseFloat!==i},{parseFloat:i})},25843(e,t,r){"use strict";var n=r(46518),i=r(52703);n({target:"Number",stat:!0,forced:Number.parseInt!==i},{parseInt:i})},62337(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(91291),a=r(31240),s=r(72333),c=r(49340),u=r(79039),l=RangeError,f=String,d=isFinite,p=Math.abs,h=Math.floor,A=Math.pow,v=Math.round,m=i(1.1.toExponential),g=i(s),y=i("".slice),b=A(10,308),_="-6.9000e-11"===m(-69e-12,4)&&"1.25e+0"===m(1.255,2)&&"1.235e+4"===m(12345,3)&&"3e+1"===m(25,0);n({target:"Number",proto:!0,forced:!_||!(u(function(){m(1,1/0)})&&u(function(){m(1,-1/0)}))||!!u(function(){m(1/0,1/0),m(NaN,1/0)})},{toExponential:function(e){var t,r,n,i,s,u,C=a(this);if(void 0===e)return m(C);var w=o(e);if(!d(C))return String(C);if(w<0||w>20)throw new l("Incorrect fraction digits");if(_)return m(C,w);var x="";return C<0&&(x="-",C=-C),0===C?(r=0,t=g("0",w+1)):(s=v(u=w-(r=h(c(C)))>=308?C*b*A(10,w-r-308):C/A(10,r-w)),u-s>=.5&&(s+=1),s>=A(10,w+1)&&(s/=10,r+=1),t=f(s)),0!==w&&(t=y(t,0,1)+"."+y(t,1)),0===r?(n="+",i="0"):(n=r>0?"+":"-",i=f(p(r))),x+(t+="e"+n+i)}})},9868(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(91291),a=r(31240),s=r(72333),c=r(79039),u=RangeError,l=String,f=Math.floor,d=i(s),p=i("".slice),h=i(1.1.toFixed),A=function(e,t,r){return 0===t?r:t%2==1?A(e,t-1,r*e):A(e*e,t/2,r)},v=function(e){for(var t=0,r=e;r>=4096;)t+=12,r/=4096;for(;r>=2;)t+=1,r/=2;return t},m=function(e,t,r){for(var n=-1,i=r;++n<6;)i+=t*e[n],e[n]=i%1e7,i=f(i/1e7)},g=function(e,t){for(var r=6,n=0;--r>=0;)n+=e[r],e[r]=f(n/t),n=n%t*1e7},y=function(e){for(var t=6,r="";--t>=0;)if(""!==r||0===t||0!==e[t]){var n=l(e[t]);r=""===r?n:r+d("0",7-n.length)+n}return r};n({target:"Number",proto:!0,forced:c(function(){return"0.000"!==h(8e-5,3)||"1"!==h(.9,0)||"1.25"!==h(1.255,2)||"1000000000000000128"!==h(0xde0b6b3a7640080,0)})||!c(function(){h({})})},{toFixed:function(e){var t,r,n,i,s=a(this),c=o(e),f=[0,0,0,0,0,0],h="",b="0";if(c<0||c>20)throw new u("Incorrect fraction digits");if(s!=s)return"NaN";if(s<=-1e21||s>=1e21)return l(s);if(s<0&&(h="-",s=-s),s>1e-21)if(r=((t=v(s*A(2,69,1))-69)<0?s*A(2,-t,1):s/A(2,t,1))*0x10000000000000,(t=52-t)>0){for(m(f,0,r),n=c;n>=7;)m(f,1e7,0),n-=7;for(m(f,A(10,n,1),0),n=t-1;n>=23;)g(f,8388608),n-=23;g(f,1<<n),m(f,1,1),g(f,2),b=y(f)}else m(f,0,r),m(f,1<<-t,0),b=y(f)+d("0",c);return c>0?h+((i=b.length)<=c?"0."+d("0",c-i)+b:p(b,0,i-c)+"."+p(b,i-c)):h+b}})},80630(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(79039),a=r(31240),s=i(1.1.toPrecision);n({target:"Number",proto:!0,forced:o(function(){return"1"!==s(1,void 0)})||!o(function(){s({})})},{toPrecision:function(e){return void 0===e?s(a(this)):s(a(this),e)}})},69085(e,t,r){"use strict";var n=r(46518),i=r(44213);n({target:"Object",stat:!0,arity:2,forced:Object.assign!==i},{assign:i})},59904(e,t,r){"use strict";r(46518)({target:"Object",stat:!0,sham:!r(43724)},{create:r(2360)})},17427(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(42551),a=r(79306),s=r(48981),c=r(24913);i&&n({target:"Object",proto:!0,forced:o},{__defineGetter__:function(e,t){c.f(s(this),e,{get:a(t),enumerable:!0,configurable:!0})}})},67945(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(96801).f;n({target:"Object",stat:!0,forced:Object.defineProperties!==o,sham:!i},{defineProperties:o})},84185(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(24913).f;n({target:"Object",stat:!0,forced:Object.defineProperty!==o,sham:!i},{defineProperty:o})},87607(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(42551),a=r(79306),s=r(48981),c=r(24913);i&&n({target:"Object",proto:!0,forced:o},{__defineSetter__:function(e,t){c.f(s(this),e,{set:a(t),enumerable:!0,configurable:!0})}})},5506(e,t,r){"use strict";var n=r(46518),i=r(32357).entries;n({target:"Object",stat:!0},{entries:function(e){return i(e)}})},52811(e,t,r){"use strict";var n=r(46518),i=r(70363),o=r(79039),a=r(20034),s=r(3451).onFreeze,c=Object.freeze;n({target:"Object",stat:!0,forced:o(function(){c(1)}),sham:!i},{freeze:function(e){return c&&a(e)?c(s(e)):e}})},53921(e,t,r){"use strict";var n=r(46518),i=r(72652),o=r(97040);n({target:"Object",stat:!0},{fromEntries:function(e){var t={};return i(e,function(e,r){o(t,e,r)},{AS_ENTRIES:!0}),t}})},83851(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(25397),a=r(77347).f,s=r(43724);n({target:"Object",stat:!0,forced:!s||i(function(){a(1)}),sham:!s},{getOwnPropertyDescriptor:function(e,t){return a(o(e),t)}})},81278(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(35031),a=r(25397),s=r(77347),c=r(97040);n({target:"Object",stat:!0,sham:!i},{getOwnPropertyDescriptors:function(e){for(var t,r,n=a(e),i=s.f,u=o(n),l={},f=0;u.length>f;)void 0!==(r=i(n,t=u[f++]))&&c(l,t,r);return l}})},1480(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(10298).f;n({target:"Object",stat:!0,forced:i(function(){return!Object.getOwnPropertyNames(1)})},{getOwnPropertyNames:o})},49773(e,t,r){"use strict";var n=r(46518),i=r(4495),o=r(79039),a=r(33717),s=r(48981);n({target:"Object",stat:!0,forced:!i||o(function(){a.f(1)})},{getOwnPropertySymbols:function(e){var t=a.f;return t?t(s(e)):[]}})},40875(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(48981),a=r(65168),s=r(12211);n({target:"Object",stat:!0,forced:i(function(){a(1)}),sham:!s},{getPrototypeOf:function(e){return a(o(e))}})},77691(e,t,r){"use strict";var n=r(46518),i=r(97040),o=r(97751),a=r(79504),s=r(79306),c=r(45369),u=r(56969),l=r(72652),f=r(79039),d=Object.groupBy,p=o("Object","create"),h=a([].push);n({target:"Object",stat:!0,forced:!d||f(function(){return 1!==d("ab",function(e){return e}).a.length})},{groupBy:function(e,t){c(e),s(t);var r=p(null),n=0;return l(e,function(e){var o=u(t(e,n++));o in r?h(r[o],e):i(r,o,[e])}),r}})},78347(e,t,r){"use strict";r(46518)({target:"Object",stat:!0},{hasOwn:r(39297)})},94052(e,t,r){"use strict";var n=r(46518),i=r(34124);n({target:"Object",stat:!0,forced:Object.isExtensible!==i},{isExtensible:i})},94003(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(20034),a=r(22195),s=r(93271),c=Object.isFrozen;n({target:"Object",stat:!0,forced:s||i(function(){c(1)})},{isFrozen:function(e){return!o(e)||!!s&&"ArrayBuffer"===a(e)||!!c&&c(e)}})},221(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(20034),a=r(22195),s=r(93271),c=Object.isSealed;n({target:"Object",stat:!0,forced:s||i(function(){c(1)})},{isSealed:function(e){return!o(e)||!!s&&"ArrayBuffer"===a(e)||!!c&&c(e)}})},29908(e,t,r){"use strict";r(46518)({target:"Object",stat:!0},{is:r(3470)})},79432(e,t,r){"use strict";var n=r(46518),i=r(48981),o=r(71072);n({target:"Object",stat:!0,forced:r(79039)(function(){o(1)})},{keys:function(e){return o(i(e))}})},9220(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(42551),a=r(48981),s=r(56969),c=r(65168),u=r(77347).f;i&&n({target:"Object",proto:!0,forced:o},{__lookupGetter__:function(e){var t,r=a(this),n=s(e);do if(t=u(r,n))return t.get;while(r=c(r))}})},7904(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(42551),a=r(48981),s=r(56969),c=r(65168),u=r(77347).f;i&&n({target:"Object",proto:!0,forced:o},{__lookupSetter__:function(e){var t,r=a(this),n=s(e);do if(t=u(r,n))return t.set;while(r=c(r))}})},16348(e,t,r){"use strict";var n=r(46518),i=r(20034),o=r(3451).onFreeze,a=r(70363),s=r(79039),c=Object.preventExtensions;n({target:"Object",stat:!0,forced:s(function(){c(1)}),sham:!a},{preventExtensions:function(e){return c&&i(e)?c(o(e)):e}})},63548(e,t,r){"use strict";var n=r(43724),i=r(62106),o=r(20034),a=r(13925),s=r(48981),c=r(45369),u=Object.getPrototypeOf,l=Object.setPrototypeOf,f=Object.prototype,d="__proto__";if(n&&u&&l&&!(d in f))try{i(f,d,{configurable:!0,get:function(){return u(s(this))},set:function(e){var t=c(this);a(e)&&o(t)&&l(t,e)}})}catch(e){}},93941(e,t,r){"use strict";var n=r(46518),i=r(20034),o=r(3451).onFreeze,a=r(70363),s=r(79039),c=Object.seal;n({target:"Object",stat:!0,forced:s(function(){c(1)}),sham:!a},{seal:function(e){return c&&i(e)?c(o(e)):e}})},10287(e,t,r){"use strict";r(46518)({target:"Object",stat:!0},{setPrototypeOf:r(52967)})},26099(e,t,r){"use strict";var n=r(92140),i=r(36840),o=r(53179);n||i(Object.prototype,"toString",o,{unsafe:!0})},16034(e,t,r){"use strict";var n=r(46518),i=r(32357).values;n({target:"Object",stat:!0},{values:function(e){return i(e)}})},78459(e,t,r){"use strict";var n=r(46518),i=r(33904);n({global:!0,forced:parseFloat!==i},{parseFloat:i})},58940(e,t,r){"use strict";var n=r(46518),i=r(52703);n({global:!0,forced:parseInt!==i},{parseInt:i})},96167(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(36043),s=r(1103),c=r(72652);n({target:"Promise",stat:!0,forced:r(90537)},{allSettled:function(e){var t=this,r=a.f(t),n=r.resolve,u=r.reject,l=s(function(){var r=o(t.resolve),a=[],s=0,u=1;c(e,function(e){var o=s++,c=!1;u++,i(r,t,e).then(function(e){!c&&(c=!0,a[o]={status:"fulfilled",value:e},--u||n(a))},function(e){!c&&(c=!0,a[o]={status:"rejected",reason:e},--u||n(a))})}),--u||n(a)});return l.error&&u(l.value),r.promise}})},16499(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(36043),s=r(1103),c=r(72652);n({target:"Promise",stat:!0,forced:r(90537)},{all:function(e){var t=this,r=a.f(t),n=r.resolve,u=r.reject,l=s(function(){var r=o(t.resolve),a=[],s=0,l=1;c(e,function(e){var o=s++,c=!1;l++,i(r,t,e).then(function(e){!c&&(c=!0,a[o]=e,--l||n(a))},u)}),--l||n(a)});return l.error&&u(l.value),r.promise}})},93518(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(97751),s=r(36043),c=r(1103),u=r(72652),l=r(90537),f="No one promise resolved";n({target:"Promise",stat:!0,forced:l},{any:function(e){var t=this,r=a("AggregateError"),n=s.f(t),l=n.resolve,d=n.reject,p=c(function(){var n=o(t.resolve),a=[],s=0,c=1,p=!1;u(e,function(e){var o=s++,u=!1;c++,i(n,t,e).then(function(e){u||p||(p=!0,l(e))},function(e){!u&&!p&&(u=!0,a[o]=e,--c||d(new r(a,f)))})}),--c||d(new r(a,f))});return p.error&&d(p.value),n.promise}})},82003(e,t,r){"use strict";var n=r(46518),i=r(96395),o=r(10916).CONSTRUCTOR,a=r(80550),s=r(97751),c=r(94901),u=r(36840),l=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:o,real:!0},{catch:function(e){return this.then(void 0,e)}}),!i&&c(a)){var f=s("Promise").prototype.catch;l.catch!==f&&u(l,"catch",f,{unsafe:!0})}},10436(e,t,r){"use strict";var n,i,o,a,s=r(46518),c=r(96395),u=r(60955),l=r(44576),f=r(19167),d=r(69565),p=r(36840),h=r(52967),A=r(10687),v=r(87633),m=r(79306),g=r(94901),y=r(20034),b=r(90679),_=r(2293),C=r(59225).set,w=r(91955),x=r(90757),E=r(1103),S=r(18265),k=r(91181),I=r(80550),T=r(10916),O=r(36043),D="Promise",R=T.CONSTRUCTOR,N=T.REJECTION_EVENT,L=T.SUBCLASSING,j=k.getterFor(D),M=k.set,P=I&&I.prototype,B=I,F=P,U=l.TypeError,G=l.document,z=l.process,$=O.f,W=$,H=!!(G&&G.createEvent&&l.dispatchEvent),V="unhandledrejection",Y=function(e){var t;return!!(y(e)&&g(t=e.then))&&t},q=function(e,t){var r,n,i,o=t.value,a=1===t.state,s=a?e.ok:e.fail,c=e.resolve,u=e.reject,l=e.domain;try{s?(a||(2===t.rejection&&Z(t),t.rejection=1),!0===s?r=o:(l&&l.enter(),r=s(o),l&&(l.exit(),i=!0)),r===e.promise?u(new U("Promise-chain cycle")):(n=Y(r))?d(n,r,c,u):c(r)):u(o)}catch(e){l&&!i&&l.exit(),u(e)}},X=function(e,t){e.notified||(e.notified=!0,w(function(){for(var r,n=e.reactions;r=n.get();)q(r,e);e.notified=!1,t&&!e.rejection&&J(e)}))},K=function(e,t,r){var n,i;H?((n=G.createEvent("Event")).promise=t,n.reason=r,n.initEvent(e,!1,!0),l.dispatchEvent(n)):n={promise:t,reason:r},!N&&(i=l["on"+e])?i(n):e===V&&x("Unhandled promise rejection",r)},J=function(e){d(C,l,function(){var t,r=e.facade,n=e.value;if(Q(e)&&(t=E(function(){u?z.emit("unhandledRejection",n,r):K(V,r,n)}),e.rejection=u||Q(e)?2:1,t.error))throw t.value})},Q=function(e){return 1!==e.rejection&&!e.parent},Z=function(e){d(C,l,function(){var t=e.facade;u?z.emit("rejectionHandled",t):K("rejectionhandled",t,e.value)})},ee=function(e,t,r){return function(n){e(t,n,r)}},et=function(e,t,r){e.done||(e.done=!0,r&&(e=r),e.value=t,e.state=2,X(e,!0))},er=function(e,t,r){if(!e.done){e.done=!0,r&&(e=r);try{if(e.facade===t)throw new U("Promise can't be resolved itself");var n=Y(t);n?w(function(){var r={done:!1};try{d(n,t,ee(er,r,e),ee(et,r,e))}catch(t){et(r,t,e)}}):(e.value=t,e.state=1,X(e,!1))}catch(t){et({done:!1},t,e)}}};if(R&&(F=(B=function(e){b(this,F),m(e),d(n,this);var t=j(this);try{e(ee(er,t),ee(et,t))}catch(e){et(t,e)}}).prototype,(n=function(e){M(this,{type:D,done:!1,notified:!1,parent:!1,reactions:new S,rejection:!1,state:0,value:null})}).prototype=p(F,"then",function(e,t){var r=j(this),n=$(_(this,B));return r.parent=!0,n.ok=!g(e)||e,n.fail=g(t)&&t,n.domain=u?z.domain:void 0,0===r.state?r.reactions.add(n):w(function(){q(n,r)}),n.promise}),i=function(){var e=new n,t=j(e);this.promise=e,this.resolve=ee(er,t),this.reject=ee(et,t)},O.f=$=function(e){return e===B||e===o?new i(e):W(e)},!c&&g(I)&&P!==Object.prototype)){a=P.then,L||p(P,"then",function(e,t){var r=this;return new B(function(e,t){d(a,r,e,t)}).then(e,t)},{unsafe:!0});try{delete P.constructor}catch(e){}h&&h(P,F)}s({global:!0,constructor:!0,wrap:!0,forced:R},{Promise:B}),o=f.Promise,A(B,D,!1,!0),v(D)},9391(e,t,r){"use strict";var n=r(46518),i=r(96395),o=r(80550),a=r(79039),s=r(97751),c=r(94901),u=r(2293),l=r(93438),f=r(36840),d=o&&o.prototype;if(n({target:"Promise",proto:!0,real:!0,forced:!!o&&a(function(){d.finally.call({then:function(){}},function(){})})},{finally:function(e){var t=u(this,s("Promise")),r=c(e);return this.then(r?function(r){return l(t,e()).then(function(){return r})}:e,r?function(r){return l(t,e()).then(function(){throw r})}:e)}}),!i&&c(o)){var p=s("Promise").prototype.finally;d.finally!==p&&f(d,"finally",p,{unsafe:!0})}},3362(e,t,r){"use strict";r(10436),r(16499),r(82003),r(7743),r(51481),r(40280)},7743(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79306),a=r(36043),s=r(1103),c=r(72652);n({target:"Promise",stat:!0,forced:r(90537)},{race:function(e){var t=this,r=a.f(t),n=r.reject,u=s(function(){var a=o(t.resolve);c(e,function(e){i(a,t,e).then(r.resolve,n)})});return u.error&&n(u.value),r.promise}})},51481(e,t,r){"use strict";var n=r(46518),i=r(36043);n({target:"Promise",stat:!0,forced:r(10916).CONSTRUCTOR},{reject:function(e){var t=i.f(this);return(0,t.reject)(e),t.promise}})},40280(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(96395),a=r(80550),s=r(10916).CONSTRUCTOR,c=r(93438),u=i("Promise"),l=o&&!s;n({target:"Promise",stat:!0,forced:o||s},{resolve:function(e){return c(l&&this===u?a:this,e)}})},31689(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(18745),a=r(67680),s=r(36043),c=r(79306),u=r(1103),l=i.Promise,f=!1;n({target:"Promise",stat:!0,forced:!l||!l.try||u(function(){l.try(function(e){f=8===e},8)}).error||!f},{try:function(e){var t=arguments.length>1?a(arguments,1):[],r=s.f(this),n=u(function(){return o(c(e),void 0,t)});return(n.error?r.reject:r.resolve)(n.value),r.promise}})},14628(e,t,r){"use strict";var n=r(46518),i=r(36043);n({target:"Promise",stat:!0},{withResolvers:function(){var e=i.f(this);return{promise:e.promise,resolve:e.resolve,reject:e.reject}}})},39796(e,t,r){"use strict";var n=r(46518),i=r(18745),o=r(79306),a=r(28551);n({target:"Reflect",stat:!0,forced:!r(79039)(function(){Reflect.apply(function(){})})},{apply:function(e,t,r){return i(o(e),t,a(r))}})},60825(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(18745),a=r(30566),s=r(35548),c=r(28551),u=r(20034),l=r(2360),f=r(79039),d=i("Reflect","construct"),p=Object.prototype,h=[].push,A=f(function(){function e(){}return!(d(function(){},[],e)instanceof e)}),v=!f(function(){d(function(){})}),m=A||v;n({target:"Reflect",stat:!0,forced:m,sham:m},{construct:function(e,t){s(e);var r=arguments.length<3?e:s(arguments[2]);if(c(t),v&&!A)return d(e,t,r);if(e===r){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])}var n=[null];return o(h,n,t),new(o(a,e,n))}var i=r.prototype,f=l(u(i)?i:p),m=o(e,f,t);return u(m)?m:f}})},87411(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(28551),a=r(56969),s=r(24913),c=r(94901),u=r(79039),l=TypeError;n({target:"Reflect",stat:!0,forced:u(function(){Reflect.defineProperty(s.f({},1,{value:1}),1,{value:2})}),sham:!i},{defineProperty:function(e,t,r){o(e);var n,i,u=a(t);if(o(r),("get"in r||"set"in r)&&("get"in r&&!c(n=r.get)&&void 0!==n||"set"in r&&!c(i=r.set)&&void 0!==i||"value"in r||"writable"in r))throw new l("Invalid property descriptor");try{return s.f(e,u,r),!0}catch(e){return!1}}})},21211(e,t,r){"use strict";var n=r(46518),i=r(28551),o=r(77347).f,a=r(56969);n({target:"Reflect",stat:!0},{deleteProperty:function(e,t){i(e);var r=a(t),n=o(e,r);return(!n||!!n.configurable)&&delete e[r]}})},9065(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(28551),a=r(77347);n({target:"Reflect",stat:!0,sham:!i},{getOwnPropertyDescriptor:function(e,t){return a.f(o(e),t)}})},86565(e,t,r){"use strict";var n=r(46518),i=r(28551),o=r(65168);n({target:"Reflect",stat:!0,sham:!r(12211)},{getPrototypeOf:function(e){return o(i(e))}})},40888(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(20034),a=r(28551),s=r(16575),c=r(77347),u=r(65168),l=r(56969),f=function(e,t,r){if(a(e)===r)return e[t];var n=c.f(e,t);if(n)return s(n)?n.value:void 0===n.get?void 0:i(n.get,r);var l=u(e);if(o(l))return f(l,t,r)};n({target:"Reflect",stat:!0},{get:function(e,t){return f(a(e),l(t),arguments.length<3?e:arguments[2])}})},32812(e,t,r){"use strict";r(46518)({target:"Reflect",stat:!0},{has:function(e,t){return t in e}})},84634(e,t,r){"use strict";var n=r(46518),i=r(28551),o=r(34124);n({target:"Reflect",stat:!0},{isExtensible:function(e){return i(e),o(e)}})},71137(e,t,r){"use strict";r(46518)({target:"Reflect",stat:!0},{ownKeys:r(35031)})},30985(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(28551);n({target:"Reflect",stat:!0,sham:!r(70363)},{preventExtensions:function(e){o(e);try{var t=i("Object","preventExtensions");return t&&t(e),!0}catch(e){return!1}}})},34873(e,t,r){"use strict";var n=r(46518),i=r(28551),o=r(73506),a=r(52967);a&&n({target:"Reflect",stat:!0},{setPrototypeOf:function(e,t){i(e),o(t);try{return a(e,t),!0}catch(e){return!1}}})},34268(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(28551),a=r(20034),s=r(16575),c=r(79039),u=r(24913),l=r(77347),f=r(65168),d=r(6980),p=r(56969),h=function(e,t,r,n){var c,p,A,v=l.f(o(e),t);if(!v){if(a(p=f(e)))return h(p,t,r,n);v=d(0)}if(s(v)){if(!1===v.writable||!a(n))return!1;if(c=l.f(n,t)){if(!s(c)||!1===c.writable)return!1;u.f(n,t,{value:r})}else try{u.f(n,t,d(0,r))}catch(e){return!1}}else{if(void 0===(A=v.set))return!1;i(A,n,r)}return!0};n({target:"Reflect",stat:!0,forced:c(function(){var e=function(){},t=u.f(new e,"a",{configurable:!0});return!1!==Reflect.set(e.prototype,"a",1,t)})},{set:function(e,t,r){return h(o(e),p(t),r,arguments.length<4?e:arguments[3])}})},15472(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(10687);n({global:!0},{Reflect:{}}),o(i.Reflect,"Reflect",!0)},84864(e,t,r){"use strict";var n=r(43724),i=r(44576),o=r(79504),a=r(92796),s=r(23167),c=r(66699),u=r(2360),l=r(16099).f,f=r(1625),d=r(60788),p=r(655),h=r(61034),A=r(58429),v=r(11056),m=r(36840),g=r(79039),y=r(39297),b=r(91181).enforce,_=r(87633),C=r(78227),w=r(83635),x=r(18814),E=C("match"),S=i.RegExp,k=S.prototype,I=i.SyntaxError,T=o(k.exec),O=o("".charAt),D=o("".replace),R=o("".indexOf),N=o("".slice),L=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,j=/a/g,M=/a/g,P=new S(j)!==j,B=A.MISSED_STICKY,F=A.UNSUPPORTED_Y,U=n&&(!P||B||w||x||g(function(){return M[E]=!1,S(j)!==j||S(M)===M||"/a/i"!==String(S(j,"i"))})),G=function(e){for(var t,r=e.length,n=0,i="",o=!1;n<r;n++){if("\\"===(t=O(e,n))){i+=t+O(e,++n);continue}o||"."!==t?("["===t?o=!0:"]"===t&&(o=!1),i+=t):i+="[\\s\\S]"}return i},z=function(e){for(var t,r=e.length,n=0,i="",o=[],a=u(null),s=!1,c=!1,l=0,f="";n<r;n++){if("\\"===(t=O(e,n))){if(t+=O(e,++n),!c&&"\\"===O(t,1)){i+="\\x5c";continue}}else if("]"===t)s=!1;else if(!s)switch(!0){case"["===t:s=!0;break;case"("===t:i+=t,T(L,N(e,n+1))?(n+=2,c=!0,l++):"?"!==O(e,n+1)&&l++;continue;case">"===t&&c:if(""===f||y(a,f))throw new I("Invalid capture group name");a[f]=!0,o[o.length]=[f,l],c=!1,f="";continue}c?f+=t:i+=t}for(var d=0;d<o.length;d++)for(var p="\\k<"+o[d][0]+">",h="\\"+o[d][1];R(i,p)>-1;)i=D(i,p,h);return[i,o]};if(a("RegExp",U)){for(var $=function(e,t){var r,n,i,o,a,u,l=f(k,this),A=d(e),v=void 0===t,m=[],g=e;if(!l&&A&&v&&e.constructor===$)return e;if((A||f(k,e))&&(e=e.source,v&&(t=h(g))),e=void 0===e?"":p(e),t=void 0===t?"":p(t),g=e,w&&"dotAll"in j&&(n=!!t&&R(t,"s")>-1)&&(t=D(t,/s/g,"")),r=t,B&&"sticky"in j&&(i=!!t&&R(t,"y")>-1)&&F&&(t=D(t,/y/g,"")),x&&(e=(o=z(e))[0],m=o[1]),a=s(S(e,t),l?this:k,$),(n||i||m.length)&&(u=b(a),n&&(u.dotAll=!0,u.raw=$(G(e),r)),i&&(u.sticky=!0),m.length&&(u.groups=m)),e!==g)try{c(a,"source",""===g?"(?:)":g)}catch(e){}return a},W=l(S),H=0;W.length>H;)v($,S,W[H++]);k.constructor=$,$.prototype=k,m(i,"RegExp",$,{constructor:!0})}_("RegExp")},57465(e,t,r){"use strict";var n=r(43724),i=r(83635),o=r(22195),a=r(62106),s=r(91181).get,c=RegExp.prototype,u=TypeError;n&&i&&a(c,"dotAll",{configurable:!0,get:function(){if(this!==c){if("RegExp"===o(this))return!!s(this).dotAll;throw new u("Incompatible receiver, RegExp required")}}})},96069(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(63463),a=r(39297),s=r(60533).start,c=r(47452),u=Array,l=RegExp.escape,f=i("".charAt),d=i("".charCodeAt),p=i(1.1.toString),h=i([].join),A=/^[0-9a-z]/i,v=/^[$()*+./?[\\\]^{|}]/,m=RegExp("^[!\"#%&',\\-:;<=>@`~"+c+"]"),g=i(A.exec),y={" ":"t","\n":"n","\v":"v","\f":"f","\r":"r"},b=function(e){var t=p(d(e,0),16);return t.length<3?"\\x"+s(t,2,"0"):"\\u"+s(t,4,"0")};n({target:"RegExp",stat:!0,forced:!l||"\\x61b"!==l("ab")},{escape:function(e){o(e);for(var t=e.length,r=u(t),n=0;n<t;n++){var i=f(e,n);if(0===n&&g(A,i))r[n]=b(i);else if(a(y,i))r[n]="\\"+y[i];else if(g(v,i))r[n]="\\"+i;else if(g(m,i))r[n]=b(i);else{var s=d(i,0);(63488&s)!=55296?r[n]=i:s>=56320||n+1>=t||(64512&d(e,n+1))!=56320?r[n]=b(i):(r[n]=i,r[++n]=f(e,n))}}return h(r,"")}})},27495(e,t,r){"use strict";var n=r(46518),i=r(57323);n({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},69479(e,t,r){"use strict";var n=r(43724),i=r(62106),o=r(65213),a=r(67979);n&&!o.correct&&(i(RegExp.prototype,"flags",{configurable:!0,get:a}),o.correct=!0)},87745(e,t,r){"use strict";var n=r(43724),i=r(58429).MISSED_STICKY,o=r(22195),a=r(62106),s=r(91181).get,c=RegExp.prototype,u=TypeError;n&&i&&a(c,"sticky",{configurable:!0,get:function(){if(this!==c){if("RegExp"===o(this))return!!s(this).sticky;throw new u("Incompatible receiver, RegExp required")}}})},90906(e,t,r){"use strict";r(27495);var n,i,o=r(46518),a=r(69565),s=r(94901),c=r(28551),u=r(655),l=(n=!1,(i=/[ac]/).exec=function(){return n=!0,/./.exec.apply(this,arguments)},!0===i.test("abc")&&n),f=/./.test;o({target:"RegExp",proto:!0,forced:!l},{test:function(e){var t=c(this),r=u(e),n=t.exec;if(!s(n))return a(f,t,r);var i=a(n,t,r);return null!==i&&(c(i),!0)}})},38781(e,t,r){"use strict";var n=r(10350).PROPER,i=r(36840),o=r(28551),a=r(655),s=r(79039),c=r(61034),u="toString",l=RegExp.prototype,f=l[u],d=s(function(){return"/a/b"!==f.call({source:"a",flags:"b"})}),p=n&&f.name!==u;(d||p)&&i(l,u,function(){var e=o(this);return"/"+a(e.source)+"/"+a(c(e))},{unsafe:!0})},92405(e,t,r){"use strict";r(16468)("Set",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},r(86938))},17642(e,t,r){"use strict";var n=r(46518),i=r(83440),o=r(79039);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("difference",function(e){return 0===e.size})||o(function(){var e=new Set([1,2,3,4]);return 3!==e.difference({size:1,has:function(){return!0},keys:function(){var t=0;return{next:function(){var r=t++>1;return e.has(1)&&e.clear(),{done:r,value:2}}}}}).size})},{difference:i})},58004(e,t,r){"use strict";var n=r(46518),i=r(79039),o=r(68750);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("intersection",function(e){return 2===e.size&&e.has(1)&&e.has(2)})||i(function(){return"3,2"!==String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))})},{intersection:o})},33853(e,t,r){"use strict";var n=r(46518),i=r(64449);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("isDisjointFrom",function(e){return!e})},{isDisjointFrom:i})},45876(e,t,r){"use strict";var n=r(46518),i=r(53838);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("isSubsetOf",function(e){return e})},{isSubsetOf:i})},32475(e,t,r){"use strict";var n=r(46518),i=r(28527);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("isSupersetOf",function(e){return!e})},{isSupersetOf:i})},31415(e,t,r){"use strict";r(92405)},15024(e,t,r){"use strict";var n=r(46518),i=r(83650),o=r(39835);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("symmetricDifference")||!o("symmetricDifference")},{symmetricDifference:i})},31698(e,t,r){"use strict";var n=r(46518),i=r(44204),o=r(39835);n({target:"Set",proto:!0,real:!0,forced:!r(84916)("union")||!o("union")},{union:i})},89907(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("anchor")},{anchor:function(e){return i(this,"a","name",e)}})},67357(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(45369),a=r(91291),s=r(655),c=r(79039),u=i("".charAt);n({target:"String",proto:!0,forced:c(function(){return"\uD842"!=="\uD842\uDFB7".at(-2)})},{at:function(e){var t=s(o(this)),r=t.length,n=a(e),i=n>=0?n:r+n;return i<0||i>=r?void 0:u(t,i)}})},11898(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("big")},{big:function(){return i(this,"big","","")}})},35490(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("blink")},{blink:function(){return i(this,"blink","","")}})},5745(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("bold")},{bold:function(){return i(this,"b","","")}})},23860(e,t,r){"use strict";var n=r(46518),i=r(68183).codeAt;n({target:"String",proto:!0},{codePointAt:function(e){return i(this,e)}})},99449(e,t,r){"use strict";var n,i=r(46518),o=r(27476),a=r(77347).f,s=r(18014),c=r(655),u=r(60511),l=r(45369),f=r(41436),d=r(96395),p=o("".slice),h=Math.min,A=f("endsWith");i({target:"String",proto:!0,forced:!(!d&&!A&&(n=a(String.prototype,"endsWith"))&&!n.writable)&&!A},{endsWith:function(e){var t=c(l(this));u(e);var r=c(e),n=arguments.length>1?arguments[1]:void 0,i=t.length,o=void 0===n?i:h(s(n),i);return p(t,o-r.length,o)===r}})},94298(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("fixed")},{fixed:function(){return i(this,"tt","","")}})},60268(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("fontcolor")},{fontcolor:function(e){return i(this,"font","color",e)}})},69546(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("fontsize")},{fontsize:function(e){return i(this,"font","size",e)}})},27337(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(35610),a=RangeError,s=String.fromCharCode,c=String.fromCodePoint,u=i([].join);n({target:"String",stat:!0,arity:1,forced:!!c&&1!==c.length},{fromCodePoint:function(e){for(var t,r=[],n=arguments.length,i=0;n>i;){if(t=+arguments[i],o(t,1114111)!==t)throw new a(t+" is not a valid code point");r[i++]=t<65536?s(t):s(((t-=65536)>>10)+55296,t%1024+56320)}return u(r,"")}})},21699(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(60511),a=r(45369),s=r(655),c=r(41436),u=i("".indexOf);n({target:"String",proto:!0,forced:!c("includes")},{includes:function(e){return!!~u(s(a(this)),s(o(e)),arguments.length>1?arguments[1]:void 0)}})},42043(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(45369),a=r(655),s=i("".charCodeAt);n({target:"String",proto:!0},{isWellFormed:function(){for(var e=a(o(this)),t=e.length,r=0;r<t;r++){var n=s(e,r);if((63488&n)==55296&&(n>=56320||++r>=t||(64512&s(e,r))!=56320))return!1}return!0}})},20781(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("italics")},{italics:function(){return i(this,"i","","")}})},47764(e,t,r){"use strict";var n=r(68183).charAt,i=r(655),o=r(91181),a=r(51088),s=r(62529),c="String Iterator",u=o.set,l=o.getterFor(c);a(String,"String",function(e){u(this,{type:c,string:i(e),index:0})},function(){var e,t=l(this),r=t.string,i=t.index;return i>=r.length?s(void 0,!0):(e=n(r,i),t.index+=e.length,s(e,!1))})},50778(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("link")},{link:function(e){return i(this,"a","href",e)}})},28543(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(27476),a=r(33994),s=r(62529),c=r(45369),u=r(18014),l=r(655),f=r(28551),d=r(20034),p=r(22195),h=r(60788),A=r(61034),v=r(55966),m=r(36840),g=r(79039),y=r(78227),b=r(2293),_=r(57829),C=r(56682),w=r(91181),x=r(96395),E=y("matchAll"),S="RegExp String",k=S+" Iterator",I=w.set,T=w.getterFor(k),O=RegExp.prototype,D=TypeError,R=o("".indexOf),N=o("".matchAll),L=!!N&&!g(function(){N("a",/./)}),j=a(function(e,t,r,n){I(this,{type:k,regexp:e,string:t,global:r,unicode:n,done:!1})},S,function(){var e=T(this);if(e.done)return s(void 0,!0);var t=e.regexp,r=e.string,n=C(t,r);return null===n?(e.done=!0,s(void 0,!0)):(e.global?""===l(n[0])&&(t.lastIndex=_(r,u(t.lastIndex),e.unicode)):e.done=!0,s(n,!1))}),M=function(e){var t,r,n,i=f(this),o=l(e),a=b(i,RegExp),s=l(A(i));return t=new a(a===RegExp?i.source:i,s),r=!!~R(s,"g"),n=!!~R(s,"u")||!!~R(s,"v"),t.lastIndex=u(i.lastIndex),new j(t,o,r,n)};n({target:"String",proto:!0,forced:L},{matchAll:function(e){var t,r,n,o=c(this);if(d(e)){if(h(e)&&!~R(l(c(A(e))),"g"))throw new D("`.matchAll` does not allow non-global regexes");if(L)return N(o,e);if(void 0===(r=v(e,E))&&x&&"RegExp"===p(e)&&(r=M),r)return i(r,e,o)}else if(L)return N(o,e);return t=l(o),n=RegExp(e,"g"),x?i(M,n,t):n[E](t)}}),x||E in O||m(O,E,M)},71761(e,t,r){"use strict";var n=r(69565),i=r(79504),o=r(89228),a=r(28551),s=r(20034),c=r(18014),u=r(655),l=r(45369),f=r(55966),d=r(57829),p=r(61034),h=r(56682),A=i("".indexOf);o("match",function(e,t,r){return[function(t){var r=l(this),i=s(t)?f(t,e):void 0;return i?n(i,t,r):new RegExp(t)[e](u(r))},function(e){var n,i=a(this),o=u(e),s=r(t,i,o);if(s.done)return s.value;var l=u(p(i));if(!~A(l,"g"))return h(i,o);var f=!!~A(l,"u")||!!~A(l,"v");i.lastIndex=0;for(var v=[],m=0;null!==(n=h(i,o));){var g=u(n[0]);v[m]=g,""===g&&(i.lastIndex=d(o,c(i.lastIndex),f)),m++}return 0===m?null:v}]})},35701(e,t,r){"use strict";var n=r(46518),i=r(60533).end;n({target:"String",proto:!0,forced:r(83063)},{padEnd:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},68156(e,t,r){"use strict";var n=r(46518),i=r(60533).start;n({target:"String",proto:!0,forced:r(83063)},{padStart:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}})},85906(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(25397),a=r(48981),s=r(655),c=r(26198),u=i([].push),l=i([].join);n({target:"String",stat:!0},{raw:function(e){var t=o(a(e).raw),r=c(t);if(!r)return"";for(var n=arguments.length,i=[],f=0;;){if(u(i,s(t[f++])),f===r)return l(i,"");f<n&&u(i,s(arguments[f]))}}})},42781(e,t,r){"use strict";r(46518)({target:"String",proto:!0},{repeat:r(72333)})},79978(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79504),a=r(45369),s=r(94901),c=r(20034),u=r(60788),l=r(655),f=r(55966),d=r(61034),p=r(2478),h=r(78227),A=r(96395),v=h("replace"),m=TypeError,g=o("".indexOf),y=o("".replace),b=o("".slice),_=Math.max;n({target:"String",proto:!0},{replaceAll:function(e,t){var r,n,o,h,C,w,x,E,S,k=a(this),I=0,T="";if(c(e)){if((r=u(e))&&!~g(l(a(d(e))),"g"))throw new m("`.replaceAll` does not allow non-global regexes");if(n=f(e,v))return i(n,e,k,t);if(A&&r)return y(l(k),e,t)}for(o=l(k),h=l(e),(C=s(t))||(t=l(t)),x=_(1,w=h.length),E=g(o,h);-1!==E;)S=C?l(t(h,E,o)):p(h,o,E,[],void 0,t),T+=b(o,I,E)+S,I=E+w,E=E+x>o.length?-1:g(o,h,E+x);return I<o.length&&(T+=b(o,I)),T}})},25440(e,t,r){"use strict";var n=r(18745),i=r(69565),o=r(79504),a=r(89228),s=r(79039),c=r(28551),u=r(94901),l=r(20034),f=r(91291),d=r(18014),p=r(655),h=r(45369),A=r(57829),v=r(55966),m=r(2478),g=r(61034),y=r(56682),b=r(78227)("replace"),_=Math.max,C=Math.min,w=o([].concat),x=o([].push),E=o("".indexOf),S=o("".slice),k="$0"==="a".replace(/./,"$0"),I=!!/./[b]&&""===/./[b]("a","$0");a("replace",function(e,t,r){var o=I?"$":"$0";return[function(e,r){var n=h(this),o=l(e)?v(e,b):void 0;return o?i(o,e,n,r):i(t,p(n),e,r)},function(e,i){var a=c(this),s=p(e),l=u(i);l||(i=p(i));var h=p(g(a));if("string"==typeof i&&!~E(i,o)&&!~E(i,"$<")&&!~E(h,"y")){var v=r(t,a,s,i);if(v.done)return v.value}var b=!!~E(h,"g");b&&(R=!!~E(h,"u")||!!~E(h,"v"),a.lastIndex=0);for(var k=[];null!==(L=y(a,s))&&(x(k,L),b);){;""===p(L[0])&&(a.lastIndex=A(s,d(a.lastIndex),R))}for(var I="",T=0,O=0;O<k.length;O++){for(var D,R,N,L=k[O],j=p(L[0]),M=_(C(f(L.index),s.length),0),P=[],B=1;B<L.length;B++)x(P,void 0===(D=L[B])?D:String(D));var F=L.groups;if(l){var U=w([j],P,M,s);void 0!==F&&x(U,F),N=p(n(i,void 0,U))}else N=m(j,s,M,P,F,i);M>=T&&(I+=S(s,T,M)+N,T=M+j.length)}return I+S(s,T)}]},!!s(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")})||!k||I)},5746(e,t,r){"use strict";var n=r(69565),i=r(89228),o=r(28551),a=r(20034),s=r(45369),c=r(3470),u=r(655),l=r(55966),f=r(56682);i("search",function(e,t,r){return[function(t){var r=s(this),i=a(t)?l(t,e):void 0;return i?n(i,t,r):new RegExp(t)[e](u(r))},function(e){var n=o(this),i=u(e),a=r(t,n,i);if(a.done)return a.value;var s=n.lastIndex;c(s,0)||(n.lastIndex=0);var l=f(n,i);return c(n.lastIndex,s)||(n.lastIndex=s),null===l?-1:l.index}]})},89195(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("small")},{small:function(){return i(this,"small","","")}})},90744(e,t,r){"use strict";var n=r(69565),i=r(79504),o=r(89228),a=r(28551),s=r(20034),c=r(45369),u=r(2293),l=r(57829),f=r(18014),d=r(655),p=r(55966),h=r(61034),A=r(56682),v=r(58429),m=r(79039),g=v.UNSUPPORTED_Y,y=Math.min,b=i([].push),_=i("".slice),C=i("".indexOf),w=!m(function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var r="ab".split(e);return 2!==r.length||"a"!==r[0]||"b"!==r[1]}),x="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length;o("split",function(e,t,r){var i="0".split(void 0,0).length?function(e,r){return void 0===e&&0===r?[]:n(t,this,e,r)}:t;return[function(t,r){var o=c(this),a=s(t)?p(t,e):void 0;return a?n(a,t,o,r):n(i,d(o),t,r)},function(e,n){var o=a(this),s=d(e);if(!x){var c=r(i,o,s,n,i!==t);if(c.done)return c.value}var p=u(o,RegExp),v=d(h(o)),m=!!~C(v,"u")||!!~C(v,"v");g?~C(v,"g")||(v+="g"):~C(v,"y")||(v+="y");var w=new p(g?"^(?:"+o.source+")":o,v),E=void 0===n?0xffffffff:n>>>0;if(0===E)return[];if(0===s.length)return null===A(w,s)?[s]:[];for(var S=0,k=0,I=[];k<s.length;){w.lastIndex=g?0:k;var T,O=A(w,g?_(s,k):s);if(null===O||(T=y(f(w.lastIndex+(g?k:0)),s.length))===S)k=l(s,k,m);else{if(b(I,_(s,S,k)),I.length===E)return I;for(var D=1;D<=O.length-1;D++)if(b(I,O[D]),I.length===E)return I;k=S=T}}return b(I,_(s,S)),I}]},x||!w,g)},11392(e,t,r){"use strict";var n,i=r(46518),o=r(27476),a=r(77347).f,s=r(18014),c=r(655),u=r(60511),l=r(45369),f=r(41436),d=r(96395),p=o("".slice),h=Math.min,A=f("startsWith");i({target:"String",proto:!0,forced:!(!d&&!A&&(n=a(String.prototype,"startsWith"))&&!n.writable)&&!A},{startsWith:function(e){var t=c(l(this));u(e);var r=c(e),n=s(h(arguments.length>1?arguments[1]:void 0,t.length));return p(t,n,n+r.length)===r}})},46276(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("strike")},{strike:function(){return i(this,"strike","","")}})},48718(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("sub")},{sub:function(){return i(this,"sub","","")}})},50375(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(45369),a=r(91291),s=r(655),c=i("".slice),u=Math.max,l=Math.min;n({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(e,t){var r=s(o(this)),n=r.length,i=a(e),f=i<0?u(n+i,0):l(i,n),d=void 0===t?n:a(t);if(d<=0)return"";var p=l(f+d,n);return f>=p?"":c(r,f,p)}})},16308(e,t,r){"use strict";var n=r(46518),i=r(77240);n({target:"String",proto:!0,forced:r(23061)("sup")},{sup:function(){return i(this,"sup","","")}})},67438(e,t,r){"use strict";var n=r(46518),i=r(69565),o=r(79504),a=r(45369),s=r(655),c=r(79039),u=Array,l=o("".charAt),f=o("".charCodeAt),d=o([].join),p="".toWellFormed,h=p&&c(function(){return"1"!==i(p,1)});n({target:"String",proto:!0,forced:h},{toWellFormed:function(){var e=s(a(this));if(h)return i(p,e);for(var t=e.length,r=u(t),n=0;n<t;n++){var o=f(e,n);(63488&o)!=55296?r[n]=l(e,n):o>=56320||n+1>=t||(64512&f(e,n+1))!=56320?r[n]="�":(r[n]=l(e,n),r[++n]=l(e,n))}return d(r,"")}})},39202(e,t,r){"use strict";r(33313);var n=r(46518),i=r(18866);n({target:"String",proto:!0,name:"trimEnd",forced:"".trimEnd!==i},{trimEnd:i})},58934(e,t,r){"use strict";var n=r(46518),i=r(53487);n({target:"String",proto:!0,name:"trimStart",forced:void 0!==i},{trimLeft:i})},33313(e,t,r){"use strict";var n=r(46518),i=r(18866);n({target:"String",proto:!0,name:"trimEnd",forced:void 0!==i},{trimRight:i})},43359(e,t,r){"use strict";r(58934);var n=r(46518),i=r(53487);n({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==i},{trimStart:i})},42762(e,t,r){"use strict";var n=r(46518),i=r(43802).trim;n({target:"String",proto:!0,forced:r(60706)("trim")},{trim:function(){return i(this)}})},88940(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(1625),a=r(65168),s=r(52967),c=r(77740),u=r(2360),l=r(66699),f=r(6980),d=r(80747),p=r(32603),h=r(78227),A=r(79039),v=r(96395),m=i.SuppressedError,g=h("toStringTag"),y=Error,b=!!m&&3!==m.length,_=!!m&&A(function(){return 4===new m(1,2,3,{cause:4}).cause}),C=b||_,w=function(e,t,r){var n,i=o(x,this);return s?n=C&&(!i||a(this)===x)?new m:s(new y,i?a(this):x):l(n=i?this:u(x),g,"Error"),void 0!==r&&l(n,"message",p(r)),d(n,w,n.stack,1),l(n,"error",e),l(n,"suppressed",t),n};s?s(w,y):c(w,y,{name:!0});var x=w.prototype=C?m.prototype:u(y.prototype,{constructor:f(1,w),message:f(1,""),name:f(1,"SuppressedError")});C&&!v&&(x.constructor=w),n({global:!0,constructor:!0,arity:3,forced:C},{SuppressedError:w})},34113(e,t,r){"use strict";var n=r(44576),i=r(70511),o=r(24913).f,a=r(77347).f,s=n.Symbol;if(i("asyncDispose"),s){var c=a(s,"asyncDispose");c.enumerable&&c.configurable&&c.writable&&o(s,"asyncDispose",{value:c.value,enumerable:!1,configurable:!1,writable:!1})}},66412(e,t,r){"use strict";r(70511)("asyncIterator")},6761(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(69565),a=r(79504),s=r(96395),c=r(43724),u=r(4495),l=r(79039),f=r(39297),d=r(1625),p=r(28551),h=r(25397),A=r(56969),v=r(655),m=r(6980),g=r(2360),y=r(71072),b=r(16099),_=r(10298),C=r(33717),w=r(77347),x=r(24913),E=r(96801),S=r(48773),k=r(36840),I=r(62106),T=r(25745),O=r(66119),D=r(30421),R=r(33392),N=r(78227),L=r(1951),j=r(70511),M=r(58242),P=r(10687),B=r(91181),F=r(59213).forEach,U=O("hidden"),G="Symbol",z="prototype",$=B.set,W=B.getterFor(G),H=Object[z],V=i.Symbol,Y=V&&V[z],q=i.RangeError,X=i.TypeError,K=i.QObject,J=w.f,Q=x.f,Z=_.f,ee=S.f,et=a([].push),er=T("symbols"),en=T("op-symbols"),ei=T("wks"),eo=!K||!K[z]||!K[z].findChild,ea=function(e,t,r){var n=J(H,t);return n&&delete H[t],Q(e,t,r),n&&e!==H&&Q(H,t,n),e},es=c&&l(function(){return 7!==g(Q({},"a",{get:function(){return Q(this,"a",{value:7}).a}})).a})?ea:Q,ec=function(e,t){var r=er[e]=g(Y);return $(r,{type:G,tag:e,description:t}),c||(r.description=t),r},eu=function(e,t,r){e===H&&eu(en,t,r),p(e);var n=A(t);return(p(r),f(er,n))?(("enumerable"in r?!r.enumerable:!f(e,n)||f(e,U)&&e[U][n])?(f(e,U)||Q(e,U,m(1,g(null))),e[U][n]=!0):(f(e,U)&&e[U][n]&&(e[U][n]=!1),r=g(r,{enumerable:m(0,!1)})),es(e,n,r)):Q(e,n,r)},el=function(e,t){p(e);var r=h(t);return F(y(r).concat(eh(r)),function(t){(!c||o(ef,r,t))&&eu(e,t,r[t])}),e},ef=function(e){var t=A(e),r=o(ee,this,t);return(!(this===H&&f(er,t))||!!f(en,t))&&(!(r||!f(this,t)||!f(er,t)||f(this,U)&&this[U][t])||r)},ed=function(e,t){var r=h(e),n=A(t);if(!(r===H&&f(er,n))||f(en,n)){var i=J(r,n);return i&&f(er,n)&&!(f(r,U)&&r[U][n])&&(i.enumerable=!0),i}},ep=function(e){var t=Z(h(e)),r=[];return F(t,function(e){f(er,e)||f(D,e)||et(r,e)}),r},eh=function(e){var t=e===H,r=Z(t?en:h(e)),n=[];return F(r,function(e){f(er,e)&&(!t||f(H,e))&&et(n,er[e])}),n};!u&&(k(Y=(V=function(){if(d(Y,this))throw new X("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?v(arguments[0]):void 0,t=R(e),r=function(e){var n=void 0===this?i:this;n===H&&o(r,en,e),f(n,U)&&f(n[U],t)&&(n[U][t]=!1);var a=m(1,e);try{es(n,t,a)}catch(e){if(!(e instanceof q))throw e;ea(n,t,a)}};return c&&eo&&es(H,t,{configurable:!0,set:r}),ec(t,e)})[z],"toString",function(){return W(this).tag}),k(V,"withoutSetter",function(e){return ec(R(e),e)}),S.f=ef,x.f=eu,E.f=el,w.f=ed,b.f=_.f=ep,C.f=eh,L.f=function(e){return ec(N(e),e)},c&&(I(Y,"description",{configurable:!0,get:function(){return W(this).description}}),s||k(H,"propertyIsEnumerable",ef,{unsafe:!0}))),n({global:!0,constructor:!0,wrap:!0,forced:!u,sham:!u},{Symbol:V}),F(y(ei),function(e){j(e)}),n({target:G,stat:!0,forced:!u},{useSetter:function(){eo=!0},useSimple:function(){eo=!1}}),n({target:"Object",stat:!0,forced:!u,sham:!c},{create:function(e,t){return void 0===t?g(e):el(g(e),t)},defineProperty:eu,defineProperties:el,getOwnPropertyDescriptor:ed}),n({target:"Object",stat:!0,forced:!u},{getOwnPropertyNames:ep}),M(),P(V,G),D[U]=!0},89463(e,t,r){"use strict";var n=r(46518),i=r(43724),o=r(44576),a=r(69565),s=r(79504),c=r(39297),u=r(94901),l=r(1625),f=r(655),d=r(62106),p=r(77740),h=o.Symbol,A=h&&h.prototype;if(i&&u(h)&&(!("description"in A)||void 0!==h().description)){var v={},m=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:f(arguments[0]),t=l(A,this)?new h(e):void 0===e?h():h(e);return""===e&&(v[t]=!0),t};p(m,h);var g=m.for;m.for=({for:function(e){var t=f(e),r=a(g,this,t);return""===t&&(v[r]=!0),r}}).for,m.prototype=A,A.constructor=m;var y="Symbol(description detection)"===String(h("description detection")),b=s(A.valueOf),_=s(A.toString),C=/^Symbol\((.*)\)[^)]+$/,w=s("".replace),x=s("".slice);d(A,"description",{configurable:!0,get:function(){var e=b(this);if(c(v,e))return"";var t=_(e),r=y?x(t,7,-1):w(t,C,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:m})}},97324(e,t,r){"use strict";var n=r(44576),i=r(70511),o=r(24913).f,a=r(77347).f,s=n.Symbol;if(i("dispose"),s){var c=a(s,"dispose");c.enumerable&&c.configurable&&c.writable&&o(s,"dispose",{value:c.value,enumerable:!1,configurable:!1,writable:!1})}},81510(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(39297),a=r(655),s=r(25745),c=r(91296),u=s("string-to-symbol-registry"),l=s("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!c},{for:function(e){var t=a(e);if(o(u,t))return u[t];var r=i("Symbol")(t);return u[t]=r,l[r]=t,r}})},60193(e,t,r){"use strict";r(70511)("hasInstance")},92168(e,t,r){"use strict";r(70511)("isConcatSpreadable")},2259(e,t,r){"use strict";r(70511)("iterator")},52675(e,t,r){"use strict";r(6761),r(81510),r(97812),r(33110),r(49773)},97812(e,t,r){"use strict";var n=r(46518),i=r(39297),o=r(10757),a=r(16823),s=r(25745),c=r(91296),u=s("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!c},{keyFor:function(e){if(!o(e))throw TypeError(a(e)+" is not a symbol");if(i(u,e))return u[e]}})},83142(e,t,r){"use strict";r(70511)("matchAll")},86964(e,t,r){"use strict";r(70511)("match")},83237(e,t,r){"use strict";r(70511)("replace")},61833(e,t,r){"use strict";r(70511)("search")},67947(e,t,r){"use strict";r(70511)("species")},31073(e,t,r){"use strict";r(70511)("split")},45700(e,t,r){"use strict";var n=r(70511),i=r(58242);n("toPrimitive"),i()},78125(e,t,r){"use strict";var n=r(97751),i=r(70511),o=r(10687);i("toStringTag"),o(n("Symbol"),"Symbol")},20326(e,t,r){"use strict";r(70511)("unscopables")},48140(e,t,r){"use strict";var n=r(94644),i=r(26198),o=r(91291),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("at",function(e){var t=a(this),r=i(t),n=o(e),s=n>=0?n:r+n;return s<0||s>=r?void 0:t[s]})},81630(e,t,r){"use strict";var n=r(79504),i=r(94644),o=n(r(57029)),a=i.aTypedArray;(0,i.exportTypedArrayMethod)("copyWithin",function(e,t){return o(a(this),e,t,arguments.length>2?arguments[2]:void 0)})},72170(e,t,r){"use strict";var n=r(94644),i=r(59213).every,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("every",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},75044(e,t,r){"use strict";var n=r(94644),i=r(84373),o=r(75854),a=r(36955),s=r(69565),c=r(79504),u=r(79039),l=n.aTypedArray,f=n.exportTypedArrayMethod,d=c("".slice);f("fill",function(e){var t=arguments.length;return l(this),s(i,this,"Big"===d(a(this),0,3)?o(e):+e,t>1?arguments[1]:void 0,t>2?arguments[2]:void 0)},u(function(){var e=0;return new Int8Array(2).fill({valueOf:function(){return e++}}),1!==e}))},69539(e,t,r){"use strict";var n=r(94644),i=r(59213).filter,o=r(29948),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("filter",function(e){var t=i(a(this),e,arguments.length>1?arguments[1]:void 0);return o(this,t)})},89955(e,t,r){"use strict";var n=r(94644),i=r(59213).findIndex,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("findIndex",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},91134(e,t,r){"use strict";var n=r(94644),i=r(43839).findLastIndex,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLastIndex",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},21903(e,t,r){"use strict";var n=r(94644),i=r(43839).findLast,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("findLast",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},9313(e,t,r){"use strict";var n=r(94644),i=r(59213).find,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("find",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},34594(e,t,r){"use strict";r(15823)("Float32",function(e){return function(t,r,n){return e(this,t,r,n)}})},29833(e,t,r){"use strict";r(15823)("Float64",function(e){return function(t,r,n){return e(this,t,r,n)}})},33206(e,t,r){"use strict";var n=r(94644),i=r(59213).forEach,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("forEach",function(e){i(o(this),e,arguments.length>1?arguments[1]:void 0)})},48345(e,t,r){"use strict";var n=r(72805);(0,r(94644).exportTypedArrayStaticMethod)("from",r(43251),n)},44496(e,t,r){"use strict";var n=r(94644),i=r(19617).includes,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("includes",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},66651(e,t,r){"use strict";var n=r(94644),i=r(19617).indexOf,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("indexOf",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},72107(e,t,r){"use strict";r(15823)("Int16",function(e){return function(t,r,n){return e(this,t,r,n)}})},95477(e,t,r){"use strict";r(15823)("Int32",function(e){return function(t,r,n){return e(this,t,r,n)}})},46594(e,t,r){"use strict";r(15823)("Int8",function(e){return function(t,r,n){return e(this,t,r,n)}})},12887(e,t,r){"use strict";var n=r(44576),i=r(79039),o=r(79504),a=r(94644),s=r(23792),c=r(78227)("iterator"),u=n.Uint8Array,l=o(s.values),f=o(s.keys),d=o(s.entries),p=a.aTypedArray,h=a.exportTypedArrayMethod,A=u&&u.prototype,v=!i(function(){A[c].call([1])}),m=!!A&&A.values&&A[c]===A.values&&"values"===A.values.name,g=function(){return l(p(this))};h("entries",function(){return d(p(this))},v),h("keys",function(){return f(p(this))},v),h("values",g,v||!m,{name:"values"}),h(c,g,v||!m,{name:"values"})},19369(e,t,r){"use strict";var n=r(94644),i=r(79504),o=n.aTypedArray,a=n.exportTypedArrayMethod,s=i([].join);a("join",function(e){return s(o(this),e)})},66812(e,t,r){"use strict";var n=r(94644),i=r(18745),o=r(8379),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("lastIndexOf",function(e){var t=arguments.length;return i(o,a(this),t>1?[e,arguments[1]]:[e])})},8995(e,t,r){"use strict";var n=r(94644),i=r(59213).map,o=r(29948),a=n.aTypedArray;(0,n.exportTypedArrayMethod)("map",function(e){var t=i(a(this),e,arguments.length>1?arguments[1]:void 0);return o(this,t)})},52568(e,t,r){"use strict";var n=r(94644),i=r(72805),o=n.aTypedArrayConstructor;(0,n.exportTypedArrayStaticMethod)("of",function(){for(var e=0,t=arguments.length,r=new(o(this))(t);t>e;)r[e]=arguments[e++];return r},i)},36072(e,t,r){"use strict";var n=r(94644),i=r(80926).right,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduceRight",function(e){var t=arguments.length;return i(o(this),e,t,t>1?arguments[1]:void 0)})},31575(e,t,r){"use strict";var n=r(94644),i=r(80926).left,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("reduce",function(e){var t=arguments.length;return i(o(this),e,t,t>1?arguments[1]:void 0)})},88747(e,t,r){"use strict";var n=r(94644),i=n.aTypedArray,o=n.exportTypedArrayMethod,a=Math.floor;o("reverse",function(){for(var e,t=i(this).length,r=a(t/2),n=0;n<r;)e=this[n],this[n++]=this[--t],this[t]=e;return this})},28845(e,t,r){"use strict";var n=r(44576),i=r(69565),o=r(94644),a=r(26198),s=r(58229),c=r(48981),u=r(79039),l=n.RangeError,f=n.Int8Array,d=f&&f.prototype,p=d&&d.set,h=o.aTypedArray,A=o.exportTypedArrayMethod,v=!u(function(){var e=new Uint8ClampedArray(2);return i(p,e,{length:1,0:3},1),3!==e[1]}),m=v&&o.NATIVE_ARRAY_BUFFER_VIEWS&&u(function(){var e=new f(2);return e.set(1),e.set("2",1),0!==e[0]||2!==e[1]});A("set",function(e){h(this);var t=s(arguments.length>1?arguments[1]:void 0,1),r=c(e);if(v)return i(p,this,r,t);var n=this.length,o=a(r),u=0;if(o+t>n)throw new l("Wrong length");for(;u<o;)this[t+u]=r[u++]},!v||m)},29423(e,t,r){"use strict";var n=r(94644),i=r(79039),o=r(67680),a=n.aTypedArray,s=n.getTypedArrayConstructor;(0,n.exportTypedArrayMethod)("slice",function(e,t){for(var r=o(a(this),e,t),n=s(this),i=0,c=r.length,u=new n(c);c>i;)u[i]=r[i++];return u},i(function(){new Int8Array(1).slice()}))},57301(e,t,r){"use strict";var n=r(94644),i=r(59213).some,o=n.aTypedArray;(0,n.exportTypedArrayMethod)("some",function(e){return i(o(this),e,arguments.length>1?arguments[1]:void 0)})},373(e,t,r){"use strict";var n=r(44576),i=r(27476),o=r(79039),a=r(79306),s=r(74488),c=r(94644),u=r(13709),l=r(13763),f=r(39519),d=r(3607),p=c.aTypedArray,h=c.exportTypedArrayMethod,A=n.Uint16Array,v=A&&i(A.prototype.sort),m=!!v&&!(o(function(){v(new A(2),null)})&&o(function(){v(new A(2),{})})),g=!!v&&!o(function(){if(f)return f<74;if(u)return u<67;if(l)return!0;if(d)return d<602;var e,t,r=new A(516),n=Array(516);for(e=0;e<516;e++)t=e%4,r[e]=515-e,n[e]=e-2*t+3;for(v(r,function(e,t){return(e/4|0)-(t/4|0)}),e=0;e<516;e++)if(r[e]!==n[e])return!0});h("sort",function(e){return(void 0!==e&&a(e),g)?v(this,e):s(p(this),function(t,r){return void 0!==e?+e(t,r)||0:r!=r?t!=t?0:-1:t!=t?1:0===t&&0===r?1/t>0?1/r>0?0:1:1/r>0?-1:0:t>r?1:t<r?-1:0})},!g||m)},86614(e,t,r){"use strict";var n=r(94644),i=r(18014),o=r(35610),a=n.aTypedArray,s=n.getTypedArrayConstructor;(0,n.exportTypedArrayMethod)("subarray",function(e,t){var r=a(this),n=r.length,c=o(e,n);return new(s(r))(r.buffer,r.byteOffset+c*r.BYTES_PER_ELEMENT,i((void 0===t?n:o(t,n))-c))})},41405(e,t,r){"use strict";var n=r(44576),i=r(18745),o=r(94644),a=r(79039),s=r(67680),c=n.Int8Array,u=o.aTypedArray,l=o.exportTypedArrayMethod,f=[].toLocaleString,d=!!c&&a(function(){f.call(new c(1))});l("toLocaleString",function(){return i(f,d?s(u(this)):u(this),s(arguments))},a(function(){return[1,2].toLocaleString()!==new c([1,2]).toLocaleString()})||!a(function(){c.prototype.toLocaleString.call([1,2])}))},37467(e,t,r){"use strict";var n=r(26198),i=r(94644),o=i.aTypedArray,a=i.exportTypedArrayMethod,s=i.getTypedArrayConstructor;a("toReversed",function(){for(var e=o(this),t=n(e),r=new(s(e))(t),i=0;i<t;i++)r[i]=e[t-i-1];return r})},44732(e,t,r){"use strict";var n=r(94644),i=r(79504),o=r(79306),a=r(35370),s=n.aTypedArray,c=n.getTypedArrayConstructor,u=n.exportTypedArrayMethod,l=i(n.TypedArrayPrototype.sort);u("toSorted",function(e){void 0!==e&&o(e);var t=s(this);return l(a(c(t),t),e)})},33684(e,t,r){"use strict";var n=r(94644).exportTypedArrayMethod,i=r(79039),o=r(44576),a=r(79504),s=o.Uint8Array,c=s&&s.prototype||{},u=[].toString,l=a([].join);i(function(){u.call({})})&&(u=function(){return l(this)});var f=c.toString!==u;n("toString",u,f)},3690(e,t,r){"use strict";r(15823)("Uint16",function(e){return function(t,r,n){return e(this,t,r,n)}})},61740(e,t,r){"use strict";r(15823)("Uint32",function(e){return function(t,r,n){return e(this,t,r,n)}})},21489(e,t,r){"use strict";r(15823)("Uint8",function(e){return function(t,r,n){return e(this,t,r,n)}})},22134(e,t,r){"use strict";r(15823)("Uint8",function(e){return function(t,r,n){return e(this,t,r,n)}},!0)},79577(e,t,r){"use strict";var n=r(94644),i=r(18727),o=r(26198),a=r(91291),s=r(75854),c=n.aTypedArray,u=n.getTypedArrayConstructor,l=n.exportTypedArrayMethod,f=RangeError,d=function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(e){return 8===e}}(),p=d&&function(){try{new Int8Array(1).with(-.5,1)}catch(e){return!0}}();l("with",{with:function(e,t){var r=c(this),n=o(r),l=a(e),d=l<0?n+l:l,p=i(r)?s(t):+t;if(d>=n||d<0)throw new f("Incorrect index");for(var h=new(u(r))(n),A=0;A<n;A++)h[A]=A===d?p:r[A];return h}}.with,!d||p)},45213(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(35370),a=r(59143),s=i.Uint8Array,c=!s||!s.fromBase64||!function(){try{s.fromBase64("a");return}catch(e){}try{s.fromBase64("",null)}catch(e){return!0}}();s&&n({target:"Uint8Array",stat:!0,forced:c},{fromBase64:function(e){var t=a(e,arguments.length>1?arguments[1]:void 0,null,0x1fffffffffffff);return o(s,t.bytes)}})},91925(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(63463),a=r(42303);i.Uint8Array&&n({target:"Uint8Array",stat:!0},{fromHex:function(e){return a(o(e)).bytes}})},16632(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(59143),a=r(34154),s=i.Uint8Array,c=!s||!s.prototype.setFromBase64||!function(){var e=new s([255,255,255,255,255]);try{e.setFromBase64("",null);return}catch(e){}try{e.setFromBase64("a");return}catch(e){}try{e.setFromBase64("MjYyZg===")}catch(t){return 50===e[0]&&54===e[1]&&50===e[2]&&255===e[3]&&255===e[4]}}();s&&n({target:"Uint8Array",proto:!0,forced:c},{setFromBase64:function(e){a(this);var t=o(e,arguments.length>1?arguments[1]:void 0,this,this.length);return{read:t.read,written:t.written}}})},34226(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(63463),a=r(34154),s=r(55169),c=r(42303);i.Uint8Array&&n({target:"Uint8Array",proto:!0,forced:function(){try{var e=new ArrayBuffer(16,{maxByteLength:1024});new Uint8Array(e).setFromHex("cafed00d")}catch(e){return!0}}()},{setFromHex:function(e){a(this),o(e),s(this.buffer);var t=c(e,this).read;return{read:t,written:t/2}}})},9486(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(79504),a=r(83972),s=r(34154),c=r(55169),u=r(92804),l=r(944),f=u.i2c,d=u.i2cUrl,p=o("".charAt),h=i.Uint8Array,A=!h||!h.prototype.toBase64||!function(){try{new h().toBase64(null)}catch(e){return!0}}();h&&n({target:"Uint8Array",proto:!0,forced:A},{toBase64:function(){var e,t=s(this),r=arguments.length?a(arguments[0]):void 0,n="base64"===l(r)?f:d,i=!!r&&!!r.omitPadding;c(this.buffer);for(var o="",u=0,h=t.length,A=function(t){return p(n,e>>6*t&63)};u+2<h;u+=3)e=(t[u]<<16)+(t[u+1]<<8)+t[u+2],o+=A(3)+A(2)+A(1)+A(0);return u+2===h?(e=(t[u]<<16)+(t[u+1]<<8),o+=A(3)+A(2)+A(1)+(i?"":"=")):u+1===h&&(e=t[u]<<16,o+=A(3)+A(2)+(i?"":"==")),o}})},20456(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(79504),a=r(34154),s=r(55169),c=o(1.1.toString),u=o([].join),l=Array,f=i.Uint8Array,d=!f||!f.prototype.toHex||!function(){try{var e=new f([255,255,255,255,255,255,255,255]);return"ffffffffffffffff"===e.toHex()}catch(e){return!1}}();f&&n({target:"Uint8Array",proto:!0,forced:d},{toHex:function(){a(this),s(this.buffer);for(var e=l(this.length),t=0,r=this.length;t<r;t++){var n=c(this[t],16);e[t]=1===n.length?"0"+n:n}return u(e,"")}})},88267(e,t,r){"use strict";var n=r(46518),i=r(79504),o=r(655),a=String.fromCharCode,s=i("".charAt),c=i(/./.exec),u=i("".slice),l=/^[\da-f]{2}$/i,f=/^[\da-f]{4}$/i;n({global:!0},{unescape:function(e){for(var t,r,n=o(e),i="",d=n.length,p=0;p<d;){if("%"===(t=s(n,p++))){if("u"===s(n,p)){if(c(f,r=u(n,p+1,p+5))){i+=a(parseInt(r,16)),p+=5;continue}}else if(c(l,r=u(n,p,p+2))){i+=a(parseInt(r,16)),p+=2;continue}}i+=t}return i}})},65746(e,t,r){"use strict";var n,i=r(70363),o=r(44576),a=r(79504),s=r(56279),c=r(3451),u=r(16468),l=r(91625),f=r(20034),d=r(91181).enforce,p=r(79039),h=r(58622),A=Object,v=Array.isArray,m=A.isExtensible,g=A.isFrozen,y=A.isSealed,b=A.freeze,_=A.seal,C=!o.ActiveXObject&&"ActiveXObject"in o,w=function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},x=u("WeakMap",w,l),E=x.prototype,S=a(E.set);if(h)if(C){n=l.getConstructor(w,"WeakMap",!0),c.enable();var k=a(E.delete),I=a(E.has),T=a(E.get);s(E,{delete:function(e){if(f(e)&&!m(e)){var t=d(this);return t.frozen||(t.frozen=new n),k(this,e)||t.frozen.delete(e)}return k(this,e)},has:function(e){if(f(e)&&!m(e)){var t=d(this);return t.frozen||(t.frozen=new n),I(this,e)||t.frozen.has(e)}return I(this,e)},get:function(e){if(f(e)&&!m(e)){var t=d(this);return t.frozen||(t.frozen=new n),I(this,e)?T(this,e):t.frozen.get(e)}return T(this,e)},set:function(e,t){if(f(e)&&!m(e)){var r=d(this);r.frozen||(r.frozen=new n),I(this,e)?S(this,e,t):r.frozen.set(e,t)}else S(this,e,t);return this}})}else i&&p(function(){var e=b([]);return S(new x,e,1),!g(e)})&&s(E,{set:function(e,t){var r;return v(e)&&(g(e)?r=b:y(e)&&(r=_)),S(this,e,t),r&&r(e),this}})},29452(e,t,r){"use strict";var n=r(46518),i=r(79306),o=r(76557),a=r(84328),s=r(44995),c=r(96395),u=s.get,l=s.has,f=s.set;n({target:"WeakMap",proto:!0,real:!0,forced:c||!function(){try{WeakMap.prototype.getOrInsertComputed&&new WeakMap().getOrInsertComputed(1,function(){throw 1})}catch(e){return e instanceof TypeError}}()},{getOrInsertComputed:function(e,t){if(c||o(this),a(e),i(t),l(this,e))return u(this,e);var r=t(e);return f(this,e,r),r}})},88454(e,t,r){"use strict";var n=r(46518),i=r(44995),o=r(96395),a=i.get,s=i.has,c=i.set;n({target:"WeakMap",proto:!0,real:!0,forced:o},{getOrInsert:function(e,t){return s(this,e)?a(this,e):(c(this,e,t),t)}})},73772(e,t,r){"use strict";r(65746)},5240(e,t,r){"use strict";r(16468)("WeakSet",function(e){return function(){return e(this,arguments.length?arguments[0]:void 0)}},r(91625))},30958(e,t,r){"use strict";r(5240)},2945(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(97751),a=r(79504),s=r(69565),c=r(79039),u=r(655),l=r(22812),f=r(92804).c2i,d=/[^\d+/a-z]/i,p=/[\t\n\f\r ]+/g,h=/[=]{1,2}$/,A=o("atob"),v=Array,m=String.fromCharCode,g=a("".charAt),y=a("".replace),b=a([].join),_=a(d.exec),C=!!A&&!c(function(){return"hi"!==A("aGk=")}),w=C&&c(function(){return""!==A(" ")}),x=C&&!c(function(){A("a")}),E=C&&!c(function(){A()}),S=C&&1!==A.length;n({global:!0,bind:!0,enumerable:!0,forced:!C||w||x||E||S},{atob:function(e){if(l(arguments.length,1),C&&!w&&!x)return s(A,i,e);var t,r,n,a=y(u(e),p,""),c=0,E=0;3&a.length||(a=y(a,h,""));var S=3&(t=a.length);if(1===S||_(d,a))throw new(o("DOMException"))("The string is not correctly encoded","InvalidCharacterError");for(var k=new v((t>>2)*3+(S?S-1:0)),I=0;c<t;)r=g(a,c++),n=3&E?(n<<6)+f[r]:f[r],3&E++&&(k[I++]=m(255&n>>(-2*E&6)));return b(k,"")}})},42207(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(97751),a=r(79504),s=r(69565),c=r(79039),u=r(655),l=r(22812),f=r(92804).i2c,d=o("btoa"),p=Array,h=a([].join),A=a("".charAt),v=a("".charCodeAt),m=!!d&&!c(function(){return"aGk="!==d("hi")}),g=m&&!c(function(){d()}),y=m&&c(function(){return"bnVsbA=="!==d(null)}),b=m&&1!==d.length;n({global:!0,bind:!0,enumerable:!0,forced:!m||g||y||b},{btoa:function(e){if(l(arguments.length,1),m)return s(d,i,u(e));for(var t,r,n=u(e),a=new p((n.length+2)/3<<2),c=0,g=0,y=f;A(n,g)||(y="=",g%1);){if((r=v(n,g+=3/4))>255)throw new(o("DOMException"))("The string contains characters outside of the Latin1 range","InvalidCharacterError");t=t<<8|r,a[c++]=A(y,63&t>>8-g%1*8)}return h(a,"")}})},86368(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(59225).clear;n({global:!0,bind:!0,enumerable:!0,forced:i.clearImmediate!==o},{clearImmediate:o})},23500(e,t,r){"use strict";var n=r(44576),i=r(67400),o=r(79296),a=r(90235),s=r(66699),c=function(e){if(e&&e.forEach!==a)try{s(e,"forEach",a)}catch(t){e.forEach=a}};for(var u in i)i[u]&&c(n[u]&&n[u].prototype);c(o)},62953(e,t,r){"use strict";var n=r(44576),i=r(67400),o=r(79296),a=r(23792),s=r(66699),c=r(10687),u=r(78227)("iterator"),l=a.values,f=function(e,t){if(e){if(e[u]!==l)try{s(e,u,l)}catch(t){e[u]=l}if(c(e,t,!0),i[t]){for(var r in a)if(e[r]!==a[r])try{s(e,r,a[r])}catch(t){e[r]=a[r]}}}};for(var d in i)f(n[d]&&n[d].prototype,d);f(o,"DOMTokenList")},55815(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(89429),a=r(79039),s=r(2360),c=r(6980),u=r(24913).f,l=r(36840),f=r(62106),d=r(39297),p=r(90679),h=r(28551),A=r(77536),v=r(32603),m=r(55002),g=r(38574),y=r(91181),b=r(43724),_=r(96395),C="DOMException",w="DATA_CLONE_ERR",x=i("Error"),E=i(C)||function(){try{new(i("MessageChannel")||o("worker_threads").MessageChannel)().port1.postMessage(new WeakMap)}catch(e){if(e.name===w&&25===e.code)return e.constructor}}(),S=E&&E.prototype,k=x.prototype,I=y.set,T=y.getterFor(C),O="stack"in new x(C),D=function(e){return d(m,e)&&m[e].m?m[e].c:0},R=function(){p(this,N);var e=arguments.length,t=v(e<1?void 0:arguments[0]),r=v(e<2?void 0:arguments[1],"Error"),n=D(r);if(I(this,{type:C,name:r,message:t,code:n}),b||(this.name=r,this.message=t,this.code=n),O){var i=new x(t);i.name=C,u(this,"stack",c(1,g(i.stack,1)))}},N=R.prototype=s(k),L=function(e){return{enumerable:!0,configurable:!0,get:e}},j=function(e){return L(function(){return T(this)[e]})};b&&(f(N,"code",j("code")),f(N,"message",j("message")),f(N,"name",j("name"))),u(N,"constructor",c(1,R));var M=a(function(){return!(new E instanceof x)}),P=M||a(function(){return k.toString!==A||"2: 1"!==String(new E(1,2))}),B=M||a(function(){return 25!==new E(1,"DataCloneError").code}),F=M||25!==E[w]||25!==S[w],U=_?P||B||F:M;n({global:!0,constructor:!0,forced:U},{DOMException:U?R:E});var G=i(C),z=G.prototype;for(var $ in P&&(_||E===G)&&l(z,"toString",A),B&&b&&E===G&&f(z,"code",L(function(){return D(h(this).name)})),m)if(d(m,$)){var W=m[$],H=W.s,V=c(6,W.c);d(G,H)||u(G,H,V),d(z,H)||u(z,H,V)}},64979(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(97751),a=r(6980),s=r(24913).f,c=r(39297),u=r(90679),l=r(23167),f=r(32603),d=r(55002),p=r(38574),h=r(43724),A=r(96395),v="DOMException",m=o("Error"),g=o(v),y=function(){u(this,b);var e=arguments.length,t=f(e<1?void 0:arguments[0]),r=f(e<2?void 0:arguments[1],"Error"),n=new g(t,r),i=new m(t);return i.name=v,s(n,"stack",a(1,p(i.stack,1))),l(n,this,y),n},b=y.prototype=g.prototype,_="stack"in new m(v),C="stack"in new g(1,2),w=g&&h&&Object.getOwnPropertyDescriptor(i,v),x=!!w&&!(w.writable&&w.configurable),E=_&&!x&&!C;n({global:!0,constructor:!0,forced:A||E},{DOMException:E?y:g});var S=o(v),k=S.prototype;if(k.constructor!==S){for(var I in A||s(k,"constructor",a(1,S)),d)if(c(d,I)){var T=d[I],O=T.s;c(S,O)||s(S,O,a(6,T.c))}}},79739(e,t,r){"use strict";var n=r(97751),i=r(10687),o="DOMException";i(n(o),o)},59848(e,t,r){"use strict";r(86368),r(29309)},122(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(91955),a=r(79306),s=r(22812),c=r(79039),u=r(43724);n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:c(function(){return u&&1!==Object.getOwnPropertyDescriptor(i,"queueMicrotask").value.length})},{queueMicrotask:function(e){s(arguments.length,1),o(a(e))}})},13611(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(62106),a=r(43724),s=TypeError,c=Object.defineProperty,u=i.self!==i;try{if(a){var l=Object.getOwnPropertyDescriptor(i,"self");!u&&l&&l.get&&l.enumerable||o(i,"self",{get:function(){return i},set:function(e){if(this!==i)throw new s("Illegal invocation");c(i,"self",{value:e,writable:!0,configurable:!0,enumerable:!0})},configurable:!0,enumerable:!0})}else n({global:!0,simple:!0,forced:u},{self:i})}catch(e){}},29309(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(59225).set,a=r(79472),s=i.setImmediate?a(o,!1):o;n({global:!0,bind:!0,enumerable:!0,forced:i.setImmediate!==s},{setImmediate:s})},15575(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(79472)(i.setInterval,!0);n({global:!0,bind:!0,forced:i.setInterval!==o},{setInterval:o})},24599(e,t,r){"use strict";var n=r(46518),i=r(44576),o=r(79472)(i.setTimeout,!0);n({global:!0,bind:!0,forced:i.setTimeout!==o},{setTimeout:o})},71678(e,t,r){"use strict";var n=r(96395),i=r(46518),o=r(44576),a=r(97751),s=r(79504),c=r(79039),u=r(33392),l=r(94901),f=r(33517),d=r(64117),p=r(20034),h=r(10757),A=r(72652),v=r(28551),m=r(36955),g=r(39297),y=r(97040),b=r(66699),_=r(26198),C=r(22812),w=r(61034),x=r(72248),E=r(94402),S=r(38469),k=r(94483),I=r(24659),T=r(1548),O=o.Object,D=o.Array,R=o.Date,N=o.Error,L=o.TypeError,j=o.PerformanceMark,M=a("DOMException"),P=x.Map,B=x.has,F=x.get,U=x.set,G=E.Set,z=E.add,$=E.has,W=a("Object","keys"),H=s([].push),V=s((!0).valueOf),Y=s(1.1.valueOf),q=s("".valueOf),X=s(R.prototype.getTime),K=u("structuredClone"),J="DataCloneError",Q="Transferring",Z=function(e){return!c(function(){var t=new o.Set([7]),r=e(t),n=e(O(7));return r===t||!r.has(7)||!p(n)||7!=+n})&&e},ee=function(e,t){return!c(function(){var r=new t,n=e({a:r,b:r});return!(n&&n.a===n.b&&n.a instanceof t&&n.a.stack===r.stack)})},et=o.structuredClone,er=n||!ee(et,N)||!ee(et,M)||!!c(function(){var e=et(new o.AggregateError([1],K,{cause:3}));return"AggregateError"!==e.name||1!==e.errors[0]||e.message!==K||3!==e.cause}),en=!et&&Z(function(e){return new j(K,{detail:e}).detail}),ei=Z(et)||en,eo=function(e){throw new M("Uncloneable type: "+e,J)},ea=function(e,t){throw new M((t||"Cloning")+" of "+e+" cannot be properly polyfilled in this engine",J)},es=function(e,t){return ei||ea(t),ei(e)},ec=function(){var e;try{e=new o.DataTransfer}catch(t){try{e=new o.ClipboardEvent("").clipboardData}catch(e){}}return e&&e.items&&e.files?e:null},eu=function(e,t,r){if(B(t,e))return F(t,e);if("SharedArrayBuffer"===(r||m(e)))n=ei?ei(e):e;else{var n,i,a,s,c,u,f=o.DataView;f||l(e.slice)||ea("ArrayBuffer");try{if(l(e.slice)&&!e.resizable)n=e.slice(0);else for(i=e.byteLength,a=("maxByteLength"in e)?{maxByteLength:e.maxByteLength}:void 0,n=new ArrayBuffer(i,a),s=new f(e),c=new f(n),u=0;u<i;u++)c.setUint8(u,s.getUint8(u))}catch(e){throw new M("ArrayBuffer is detached",J)}}return U(t,e,n),n},el=function(e,t,r,n,i){var a=o[t];return p(a)||ea(t),new a(eu(e.buffer,i),r,n)},ef=function(e,t){if(h(e)&&eo("Symbol"),!p(e))return e;if(t){if(B(t,e))return F(t,e)}else t=new P;var r,n,i,s,c,u,f,d,A=m(e);switch(A){case"Array":i=D(_(e));break;case"Object":i={};break;case"Map":i=new P;break;case"Set":i=new G;break;case"RegExp":i=new RegExp(e.source,w(e));break;case"Error":switch(n=e.name){case"AggregateError":i=new(a(n))([]);break;case"EvalError":case"RangeError":case"ReferenceError":case"SuppressedError":case"SyntaxError":case"TypeError":case"URIError":i=new(a(n));break;case"CompileError":case"LinkError":case"RuntimeError":i=new(a("WebAssembly",n));break;default:i=new N}break;case"DOMException":i=new M(e.message,e.name);break;case"ArrayBuffer":case"SharedArrayBuffer":i=eu(e,t,A);break;case"DataView":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float16Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":u="DataView"===A?e.byteLength:e.length,i=el(e,A,e.byteOffset,u,t);break;case"DOMQuad":try{i=new DOMQuad(ef(e.p1,t),ef(e.p2,t),ef(e.p3,t),ef(e.p4,t))}catch(t){i=es(e,A)}break;case"File":if(ei)try{i=ei(e),m(i)!==A&&(i=void 0)}catch(e){}if(!i)try{i=new File([e],e.name,e)}catch(e){}i||ea(A);break;case"FileList":if(s=ec()){for(c=0,u=_(e);c<u;c++)s.items.add(ef(e[c],t));i=s.files}else i=es(e,A);break;case"ImageData":try{i=new ImageData(ef(e.data,t),e.width,e.height,{colorSpace:e.colorSpace})}catch(t){i=es(e,A)}break;default:if(ei)i=ei(e);else switch(A){case"BigInt":i=O(e.valueOf());break;case"Boolean":i=O(V(e));break;case"Number":i=O(Y(e));break;case"String":i=O(q(e));break;case"Date":i=new R(X(e));break;case"Blob":try{i=e.slice(0,e.size,e.type)}catch(e){ea(A)}break;case"DOMPoint":case"DOMPointReadOnly":r=o[A];try{i=r.fromPoint?r.fromPoint(e):new r(e.x,e.y,e.z,e.w)}catch(e){ea(A)}break;case"DOMRect":case"DOMRectReadOnly":r=o[A];try{i=r.fromRect?r.fromRect(e):new r(e.x,e.y,e.width,e.height)}catch(e){ea(A)}break;case"DOMMatrix":case"DOMMatrixReadOnly":r=o[A];try{i=r.fromMatrix?r.fromMatrix(e):new r(e)}catch(e){ea(A)}break;case"AudioData":case"VideoFrame":l(e.clone)||ea(A);try{i=e.clone()}catch(e){eo(A)}break;case"CropTarget":case"CryptoKey":case"FileSystemDirectoryHandle":case"FileSystemFileHandle":case"FileSystemHandle":case"GPUCompilationInfo":case"GPUCompilationMessage":case"ImageBitmap":case"RTCCertificate":case"WebAssembly.Module":ea(A);default:eo(A)}}switch(U(t,e,i),A){case"Array":case"Object":for(c=0,u=_(f=W(e));c<u;c++)d=f[c],y(i,d,ef(e[d],t));break;case"Map":e.forEach(function(e,r){U(i,ef(r,t),ef(e,t))});break;case"Set":e.forEach(function(e){z(i,ef(e,t))});break;case"Error":b(i,"message",ef(e.message,t)),g(e,"cause")&&b(i,"cause",ef(e.cause,t)),"AggregateError"===n?i.errors=ef(e.errors,t):"SuppressedError"===n&&(i.error=ef(e.error,t),i.suppressed=ef(e.suppressed,t));case"DOMException":I&&b(i,"stack",ef(e.stack,t))}return i},ed=function(e,t){if(!p(e))throw new L("Transfer option cannot be converted to a sequence");var r,n,i,a,s,c=[];A(e,function(e){H(c,v(e))});for(var u=0,d=_(c),h=new G;u<d;){if(n=m(r=c[u++]),a=void 0,"ArrayBuffer"===n?$(h,r):B(t,r))throw new M("Duplicate transferable",J);if("ArrayBuffer"===n){z(h,r);continue}if(T)a=et(r,{transfer:[r]});else switch(n){case"ImageBitmap":f(i=o.OffscreenCanvas)||ea(n,Q);try{(s=new i(r.width,r.height)).getContext("bitmaprenderer").transferFromImageBitmap(r),a=s.transferToImageBitmap()}catch(e){}break;case"AudioData":case"VideoFrame":l(r.clone)&&l(r.close)||ea(n,Q);try{a=r.clone(),r.close()}catch(e){}break;case"MediaSourceHandle":case"MessagePort":case"MIDIAccess":case"OffscreenCanvas":case"ReadableStream":case"RTCDataChannel":case"TransformStream":case"WebTransportReceiveStream":case"WebTransportSendStream":case"WritableStream":ea(n,Q)}if(void 0===a)throw new M("This object cannot be transferred: "+n,J);U(t,r,a)}return h},ep=function(e){S(e,function(e){T?et(e,{transfer:[e]}):l(e.transfer)?e.transfer():k?k(e):ea("ArrayBuffer",Q)})};i({global:!0,enumerable:!0,sham:!T,forced:er},{structuredClone:function(e){var t,r,n=C(arguments.length,1)>1&&!d(arguments[1])?v(arguments[1]):void 0,i=n?n.transfer:void 0;void 0!==i&&(r=ed(i,t=new P));var o=ef(e,t);return r&&ep(r),o}})},76031(e,t,r){"use strict";r(15575),r(24599)},98406(e,t,r){"use strict";r(23792),r(27337);var n=r(46518),i=r(44576),o=r(93389),a=r(97751),s=r(69565),c=r(79504),u=r(43724),l=r(67416),f=r(36840),d=r(62106),p=r(56279),h=r(10687),A=r(33994),v=r(91181),m=r(90679),g=r(94901),y=r(39297),b=r(76080),_=r(36955),C=r(28551),w=r(20034),x=r(655),E=r(2360),S=r(6980),k=r(70081),I=r(50851),T=r(62529),O=r(22812),D=r(78227),R=r(74488),N=D("iterator"),L="URLSearchParams",j=L+"Iterator",M=v.set,P=v.getterFor(L),B=v.getterFor(j),F=o("fetch"),U=o("Request"),G=o("Headers"),z=U&&U.prototype,$=G&&G.prototype,W=i.TypeError,H=i.encodeURIComponent,V=String.fromCharCode,Y=a("String","fromCodePoint"),q=parseInt,X=c("".charAt),K=c([].join),J=c([].push),Q=c("".replace),Z=c([].shift),ee=c([].splice),et=c("".split),er=c("".slice),en=c(/./.exec),ei=/\+/g,eo=/^[0-9a-f]+$/i,ea=function(e,t){var r=er(e,t,t+2);return en(eo,r)?q(r,16):NaN},es=function(e){for(var t=0,r=128;r>0&&(e&r)!=0;r>>=1)t++;return t},ec=function(e){var t=null,r=e.length;switch(r){case 1:t=e[0];break;case 2:t=(31&e[0])<<6|63&e[1];break;case 3:t=(15&e[0])<<12|(63&e[1])<<6|63&e[2];break;case 4:t=(7&e[0])<<18|(63&e[1])<<12|(63&e[2])<<6|63&e[3]}return null===t||t>1114111||t>=55296&&t<=57343||t<(r>3?65536:r>2?2048:128*(r>1))?null:t},eu=function(e){for(var t=(e=Q(e,ei," ")).length,r="",n=0;n<t;){var i=X(e,n);if("%"===i){if("%"===X(e,n+1)||n+3>t){r+="%",n++;continue}var o=ea(e,n+1);if(o!=o){r+=i,n++;continue}n+=2;var a=es(o);if(0===a)i=V(o);else{if(1===a||a>4){r+="�",n++;continue}for(var s=[o],c=1;c<a&&!(++n+3>t)&&"%"===X(e,n);){var u=ea(e,n+1);if(u!=u||u>191||u<128||1===c&&(224===o&&u<160||237===o&&u>159||240===o&&u<144||244===o&&u>143))break;J(s,u),n+=2,c++}if(s.length!==a){r+="�";continue}var l=ec(s);if(null===l){for(var f=0;f<a;f++)r+="�";n++;continue}i=Y(l)}}r+=i,n++}return r},el=/[!'()~]|%20/g,ef={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+"},ed=function(e){return ef[e]},ep=function(e){return Q(H(e),el,ed)},eh=A(function(e,t){M(this,{type:j,target:P(e).entries,index:0,kind:t})},L,function(){var e=B(this),t=e.target,r=e.index++;if(!t||r>=t.length)return e.target=null,T(void 0,!0);var n=t[r];switch(e.kind){case"keys":return T(n.key,!1);case"values":return T(n.value,!1)}return T([n.key,n.value],!1)},!0),eA=function(e){this.entries=[],this.url=null,void 0!==e&&(w(e)?this.parseObject(e):this.parseQuery("string"==typeof e?"?"===X(e,0)?er(e,1):e:x(e)))};eA.prototype={type:L,bindURL:function(e){this.url=e,this.update()},parseObject:function(e){var t,r,n,i,o,a,c,u=this.entries,l=I(e);if(l)for(r=(t=k(e,l)).next;!(n=s(r,t)).done;){if((a=s(o=(i=k(C(n.value))).next,i)).done||(c=s(o,i)).done||!s(o,i).done)throw new W("Expected sequence with length 2");J(u,{key:x(a.value),value:x(c.value)})}else for(var f in e)y(e,f)&&J(u,{key:f,value:x(e[f])})},parseQuery:function(e){if(e)for(var t,r,n=this.entries,i=et(e,"&"),o=0;o<i.length;)(t=i[o++]).length&&J(n,{key:eu(Z(r=et(t,"="))),value:eu(K(r,"="))})},serialize:function(){for(var e,t=this.entries,r=[],n=0;n<t.length;)J(r,ep((e=t[n++]).key)+"="+ep(e.value));return K(r,"&")},update:function(){this.entries.length=0,this.parseQuery(this.url.query)},updateURL:function(){this.url&&this.url.update()}};var ev=function(){m(this,em);var e=arguments.length>0?arguments[0]:void 0,t=M(this,new eA(e));u||(this.size=t.entries.length)},em=ev.prototype;if(p(em,{append:function(e,t){var r=P(this);O(arguments.length,2),J(r.entries,{key:x(e),value:x(t)}),!u&&this.size++,r.updateURL()},delete:function(e){for(var t=P(this),r=O(arguments.length,1),n=t.entries,i=x(e),o=r<2?void 0:arguments[1],a=void 0===o?o:x(o),s=0;s<n.length;){var c=n[s];c.key===i&&(void 0===a||c.value===a)?ee(n,s,1):s++}u||(this.size=n.length),t.updateURL()},get:function(e){var t=P(this).entries;O(arguments.length,1);for(var r=x(e),n=0;n<t.length;n++)if(t[n].key===r)return t[n].value;return null},getAll:function(e){var t=P(this).entries;O(arguments.length,1);for(var r=x(e),n=[],i=0;i<t.length;i++)t[i].key===r&&J(n,t[i].value);return n},has:function(e){for(var t=P(this).entries,r=O(arguments.length,1),n=x(e),i=r<2?void 0:arguments[1],o=void 0===i?i:x(i),a=0;a<t.length;){var s=t[a++];if(s.key===n&&(void 0===o||s.value===o))return!0}return!1},set:function(e,t){var r,n=P(this);O(arguments.length,2);for(var i=n.entries,o=!1,a=x(e),s=x(t),c=0;c<i.length;c++)(r=i[c]).key===a&&(o?ee(i,c--,1):(o=!0,r.value=s));o||J(i,{key:a,value:s}),u||(this.size=i.length),n.updateURL()},sort:function(){var e=P(this);R(e.entries,function(e,t){return e.key>t.key?1:-1}),e.updateURL()},forEach:function(e){for(var t,r=P(this).entries,n=b(e,arguments.length>1?arguments[1]:void 0),i=0;i<r.length;)n((t=r[i++]).value,t.key,this)},keys:function(){return new eh(this,"keys")},values:function(){return new eh(this,"values")},entries:function(){return new eh(this,"entries")}},{enumerable:!0}),f(em,N,em.entries,{name:"entries"}),f(em,"toString",function(){return P(this).serialize()},{enumerable:!0}),u&&d(em,"size",{get:function(){return P(this).entries.length},configurable:!0,enumerable:!0}),h(ev,L),n({global:!0,constructor:!0,forced:!l},{URLSearchParams:ev}),!l&&g(G)){var eg=c($.has),ey=c($.set),eb=function(e){if(w(e)){var t,r=e.body;if(_(r)===L)return eg(t=e.headers?new G(e.headers):new G,"content-type")||ey(t,"content-type","application/x-www-form-urlencoded;charset=UTF-8"),E(e,{body:S(0,x(r)),headers:S(0,t)})}return e};if(g(F)&&n({global:!0,enumerable:!0,dontCallGetSet:!0,forced:!0},{fetch:function(e){return F(e,arguments.length>1?eb(arguments[1]):{})}}),g(U)){var e_=function(e){return m(this,z),new U(e,arguments.length>1?eb(arguments[1]):{})};z.constructor=e_,e_.prototype=z,n({global:!0,constructor:!0,dontCallGetSet:!0,forced:!0},{Request:e_})}}e.exports={URLSearchParams:ev,getState:P}},14603(e,t,r){"use strict";var n=r(36840),i=r(79504),o=r(655),a=r(22812),s=URLSearchParams,c=s.prototype,u=i(c.append),l=i(c.delete),f=i(c.forEach),d=i([].push),p=new s("a=1&a=2&b=3");p.delete("a",1),p.delete("b",void 0),p+""!="a=2"&&n(c,"delete",function(e){var t,r=arguments.length,n=r<2?void 0:arguments[1];if(r&&void 0===n)return l(this,e);var i=[];f(this,function(e,t){d(i,{key:t,value:e})}),a(r,1);for(var s=o(e),c=o(n),p=0,h=i.length;p<h;)l(this,(t=i[p]).key),p++;for(p=0;p<h;)((t=i[p++]).key!==s||t.value!==c)&&u(this,t.key,t.value)},{enumerable:!0,unsafe:!0})},47566(e,t,r){"use strict";var n=r(36840),i=r(79504),o=r(655),a=r(22812),s=URLSearchParams,c=s.prototype,u=i(c.getAll),l=i(c.has),f=new s("a=1");(f.has("a",2)||!f.has("a",void 0))&&n(c,"has",function(e){var t=arguments.length,r=t<2?void 0:arguments[1];if(t&&void 0===r)return l(this,e);var n=u(this,e);a(t,1);for(var i=o(r),s=0;s<n.length;)if(n[s++]===i)return!0;return!1},{enumerable:!0,unsafe:!0})},48408(e,t,r){"use strict";r(98406)},98721(e,t,r){"use strict";var n=r(43724),i=r(79504),o=r(62106),a=URLSearchParams.prototype,s=i(a.forEach);!n||"size"in a||o(a,"size",{get:function(){var e=0;return s(this,function(){e++}),e},configurable:!0,enumerable:!0})},2222(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(79039),a=r(22812),s=r(655),c=r(67416),u=i("URL"),l=c&&o(function(){u.canParse()}),f=o(function(){return 1!==u.canParse.length});n({target:"URL",stat:!0,forced:!l||f},{canParse:function(e){var t=a(arguments.length,1),r=s(e),n=t<2||void 0===arguments[1]?void 0:s(arguments[1]);try{return new u(r,n),!0}catch(e){return!1}}})},45806(e,t,r){"use strict";r(47764);var n,i=r(46518),o=r(43724),a=r(67416),s=r(44576),c=r(76080),u=r(79504),l=r(36840),f=r(62106),d=r(90679),p=r(39297),h=r(44213),A=r(75535),v=r(67680),m=r(68183).codeAt,g=r(3717),y=r(655),b=r(10687),_=r(22812),C=r(98406),w=r(91181),x=w.set,E=w.getterFor("URL"),S=C.URLSearchParams,k=C.getState,I=s.URL,T=s.TypeError,O=s.encodeURIComponent,D=s.parseInt,R=Math.floor,N=Math.pow,L=u("".charAt),j=u(/./.exec),M=u([].join),P=u(1.1.toString),B=u([].pop),F=u([].push),U=u("".replace),G=u([].shift),z=u("".split),$=u("".slice),W=u("".toLowerCase),H=u([].unshift),V="Invalid scheme",Y="Invalid host",q="Invalid port",X=/[a-z]/i,K=/[\d+\-.a-z]/i,J=/\d/,Q=/^0x/i,Z=/^[0-7]+$/,ee=/^\d+$/,et=/^[\da-f]+$/i,er=/[\0\t\n\r #%/:<>?@[\\\]^|]/,en=/[\0\t\n\r #/:<>?@[\\\]^|]/,ei=/^[\u0000-\u0020]+/,eo=/(^|[^\u0000-\u0020])[\u0000-\u0020]+$/,ea=/[\t\n\r]/g,es=function(e){var t,r,n=z(e,".");if(""===n[n.length-1]){if(1===n.length)return!1;n.length--}return!!j(ee,t=n[n.length-1])||!!j(Q,t)&&(""===(r=$(t,2))||!!j(et,r))},ec=function(e){var t,r,n,i,o,a,s,c=z(e,".");if(c.length&&""===c[c.length-1]&&c.length--,(t=c.length)>4)return null;for(n=0,r=[];n<t;n++){if(""===(i=c[n]))return null;if(o=10,i.length>1&&"0"===L(i,0)&&(o=j(Q,i)?16:8,i=$(i,8===o?1:2)),""===i)a=0;else{if(!j(10===o?ee:8===o?Z:et,i))return null;a=D(i,o)}F(r,a)}for(n=0;n<t;n++)if(a=r[n],n===t-1){if(a>=N(256,5-t))return null}else if(a>255)return null;for(s=B(r),n=0;n<r.length;n++)s+=r[n]*N(256,3-n);return s},eu=function(e){var t,r,n,i,o,a,s,c=[0,0,0,0,0,0,0,0],u=0,l=null,f=0,d=function(){return L(e,f)};if(":"===d()){if(":"!==L(e,1))return;f+=2,l=++u}for(;d();){if(8===u)return;if(":"===d()){if(null!==l)return;f++,l=++u;continue}for(t=r=0;r<4&&j(et,d());)t=16*t+D(d(),16),f++,r++;if("."===d()){if(0===r||(f-=r,u>6))return;for(n=0;d();){if(i=null,n>0)if("."!==d()||!(n<4))return;else f++;if(!j(J,d()))return;for(;j(J,d());){if(o=D(d(),10),null===i)i=o;else{if(0===i)return;i=10*i+o}if(i>255)return;f++}c[u]=256*c[u]+i,(2==++n||4===n)&&u++}if(4!==n)return;break}if(":"===d()){if(f++,!d())return}else if(d())return;c[u++]=t}if(null!==l)for(a=u-l,u=7;0!==u&&a>0;)s=c[u],c[u--]=c[l+a-1],c[l+--a]=s;else if(8!==u)return;return c},el=function(e){for(var t=null,r=1,n=null,i=0,o=0;o<8;o++)0!==e[o]?(i>r&&(t=n,r=i),n=null,i=0):(null===n&&(n=o),++i);return i>r?n:t},ef=function(e){var t,r,n,i;if("number"==typeof e){for(r=0,t=[];r<4;r++)H(t,e%256),e=R(e/256);return M(t,".")}if("object"==typeof e){for(t="",n=el(e),r=0;r<8;r++)(!i||0!==e[r])&&(i&&(i=!1),n===r?(t+=r?":":"::",i=!0):(t+=P(e[r],16),r<7&&(t+=":")));return"["+t+"]"}return e},ed={},ep=h({},ed,{" ":1,'"':1,"#":1,"<":1,">":1}),eh=h({},ep,{"'":1}),eA=h({},ed,{" ":1,'"':1,"<":1,">":1,"`":1}),ev=h({},eA,{"#":1,"?":1,"{":1,"}":1,"^":1}),em=h({},ev,{"/":1,":":1,";":1,"=":1,"@":1,"[":1,"\\":1,"]":1,"^":1,"|":1}),eg=function(e,t){var r=m(e,0);return r>=32&&r<127&&!p(t,e)?e:"'"===e&&p(t,e)?"%27":O(e)},ey={ftp:21,file:null,http:80,https:443,ws:80,wss:443},eb=function(e,t){var r;return 2===e.length&&j(X,L(e,0))&&(":"===(r=L(e,1))||!t&&"|"===r)},e_=function(e){var t;return e.length>1&&eb($(e,0,2))&&(2===e.length||"/"===(t=L(e,2))||"\\"===t||"?"===t||"#"===t)},eC={},ew={},ex={},eE={},eS={},ek={},eI={},eT={},eO={},eD={},eR={},eN={},eL={},ej={},eM={},eP={},eB={},eF={},eU={},eG={},ez={},e$=function(e,t,r){var n,i,o,a=y(e);if(t){if(i=this.parse(a))throw new T(i);this.searchParams=null}else{if(void 0!==r&&(n=new e$(r,!0)),i=this.parse(a,null,n))throw new T(i);(o=k(new S)).bindURL(this),this.searchParams=o}};e$.prototype={type:"URL",parse:function(e,t,r){var i=t||eC,o=0,a="",s=!1,c=!1,u=!1;for(e=y(e),t||(this.scheme="",this.username="",this.password="",this.host=null,this.port=null,this.path=[],this.query=null,this.fragment=null,this.cannotBeABaseURL=!1,e=U(e,ei,""),e=U(e,eo,"$1")),l=A(e=U(e,ea,""));o<=l.length;){switch(f=l[o],i){case eC:if(f&&j(X,f))a+=W(f),i=ew;else{if(t)return V;i=ex;continue}break;case ew:if(f&&j(K,f))a+=W(f);else if(":"===f){if(t&&(this.isSpecial()!==p(ey,a)||"file"===a&&(this.includesCredentials()||null!==this.port)||"file"===this.scheme&&""===this.host))return;if(this.scheme=a,t){this.isSpecial()&&ey[this.scheme]===this.port&&(this.port=null);return}a="","file"===this.scheme?i=ej:this.isSpecial()&&r&&r.scheme===this.scheme?i=eE:this.isSpecial()?i=eT:"/"===l[o+1]?(i=eS,o++):(this.cannotBeABaseURL=!0,F(this.path,""),i=eU)}else{if(t)return V;a="",i=ex,o=0;continue}break;case ex:if(!r||r.cannotBeABaseURL&&"#"!==f)return V;if(r.cannotBeABaseURL&&"#"===f){this.scheme=r.scheme,this.path=v(r.path),this.query=r.query,this.fragment="",this.cannotBeABaseURL=!0,i=ez;break}i="file"===r.scheme?ej:ek;continue;case eE:if("/"===f&&"/"===l[o+1])i=eO,o++;else{i=ek;continue}break;case eS:if("/"===f){i=eD;break}i=eF;continue;case ek:if(this.scheme=r.scheme,f===n)this.username=r.username,this.password=r.password,this.host=r.host,this.port=r.port,this.path=v(r.path),this.query=r.query;else if("/"===f||"\\"===f&&this.isSpecial())i=eI;else if("?"===f)this.username=r.username,this.password=r.password,this.host=r.host,this.port=r.port,this.path=v(r.path),this.query="",i=eG;else if("#"===f)this.username=r.username,this.password=r.password,this.host=r.host,this.port=r.port,this.path=v(r.path),this.query=r.query,this.fragment="",i=ez;else{this.username=r.username,this.password=r.password,this.host=r.host,this.port=r.port,this.path=v(r.path),this.path.length&&this.path.length--,i=eF;continue}break;case eI:if(this.isSpecial()&&("/"===f||"\\"===f))i=eO;else if("/"===f)i=eD;else{this.username=r.username,this.password=r.password,this.host=r.host,this.port=r.port,i=eF;continue}break;case eT:if(i=eO,"/"!==f||"/"!==l[o+1])continue;o++;break;case eO:if("/"!==f&&"\\"!==f){i=eD;continue}break;case eD:if("@"===f){s&&(a="%40"+a),s=!0,d=A(a);for(var l,f,d,h,m,g,b=0;b<d.length;b++){var _=d[b];if(":"===_&&!u){u=!0;continue}var C=eg(_,em);u?this.password+=C:this.username+=C}a=""}else if(f===n||"/"===f||"?"===f||"#"===f||"\\"===f&&this.isSpecial()){if(s&&""===a)return"Invalid authority";o-=A(a).length+1,a="",i=eR}else a+=f;break;case eR:case eN:if(t&&"file"===this.scheme){i=eP;continue}if(":"!==f||c)if(f===n||"/"===f||"?"===f||"#"===f||"\\"===f&&this.isSpecial()){if(this.isSpecial()&&""===a)return Y;if(t&&""===a&&(this.includesCredentials()||null!==this.port))return;if(h=this.parseHost(a))return h;if(a="",i=eB,t)return;continue}else"["===f?c=!0:"]"===f&&(c=!1),a+=f;else{if(""===a)return Y;if(t===eN)return;if(h=this.parseHost(a))return h;a="",i=eL}break;case eL:if(j(J,f))a+=f;else{if(!(f===n||"/"===f||"?"===f||"#"===f||"\\"===f&&this.isSpecial())&&!t)return q;if(""!==a){var w=D(a,10);if(w>65535)return q;this.port=this.isSpecial()&&w===ey[this.scheme]?null:w,a=""}if(t)return;i=eB;continue}break;case ej:if(this.scheme="file",this.host="","/"===f||"\\"===f)i=eM;else if(r&&"file"===r.scheme)switch(f){case n:this.host=r.host,this.path=v(r.path),this.query=r.query;break;case"?":this.host=r.host,this.path=v(r.path),this.query="",i=eG;break;case"#":this.host=r.host,this.path=v(r.path),this.query=r.query,this.fragment="",i=ez;break;default:this.host=r.host,e_(M(v(l,o),""))||(this.path=v(r.path),this.shortenPath()),i=eF;continue}else{i=eF;continue}break;case eM:if("/"===f||"\\"===f){i=eP;break}r&&"file"===r.scheme&&(this.host=r.host,!e_(M(v(l,o),""))&&eb(r.path[0],!0)&&F(this.path,r.path[0])),i=eF;continue;case eP:if(f===n||"/"===f||"\\"===f||"?"===f||"#"===f){if(!t&&eb(a))i=eF;else if(""===a){if(this.host="",t)return;i=eB}else{if(h=this.parseHost(a))return h;if("localhost"===this.host&&(this.host=""),t)return;a="",i=eB}continue}a+=f;break;case eB:if(this.isSpecial()){if(i=eF,"/"!==f&&"\\"!==f)continue}else if(t||"?"!==f)if(t||"#"!==f){if(f!==n&&(i=eF,"/"!==f))continue}else this.fragment="",i=ez;else this.query="",i=eG;break;case eF:if(f===n||"/"===f||"\\"===f&&this.isSpecial()||!t&&("?"===f||"#"===f)){if(".."===(m=W(m=a))||"%2e."===m||".%2e"===m||"%2e%2e"===m?(this.shortenPath(),"/"===f||"\\"===f&&this.isSpecial()||F(this.path,"")):"."===(g=a)||"%2e"===W(g)?"/"===f||"\\"===f&&this.isSpecial()||F(this.path,""):("file"===this.scheme&&!this.path.length&&eb(a)&&(null!==this.host&&""!==this.host&&(this.host=""),a=L(a,0)+":"),F(this.path,a)),a="","file"===this.scheme&&(f===n||"?"===f||"#"===f))for(;this.path.length>1&&""===this.path[0];)G(this.path);"?"===f?(this.query="",i=eG):"#"===f&&(this.fragment="",i=ez)}else a+=eg(f,ev);break;case eU:"?"===f?(this.query="",i=eG):"#"===f?(this.fragment="",i=ez):f!==n&&(this.path[0]+=eg(f,ed));break;case eG:t||"#"!==f?f!==n&&(this.query+=eg(f,this.isSpecial()?eh:ep)):(this.fragment="",i=ez);break;case ez:f!==n&&(this.fragment+=eg(f,eA))}o++}},parseHost:function(e){var t,r,n;if("["===L(e,0)){if("]"!==L(e,e.length-1)||!(t=eu($(e,1,-1))))return Y;this.host=t}else if(this.isSpecial()){if(j(er,e=g(e)))return Y;if(es(e)){if(null===(t=ec(e)))return Y;this.host=t}else this.host=e}else{if(j(en,e))return Y;for(t="",r=A(e),n=0;n<r.length;n++)t+=eg(r[n],ed);this.host=t}},cannotHaveUsernamePasswordPort:function(){return null===this.host||""===this.host||this.cannotBeABaseURL||"file"===this.scheme},includesCredentials:function(){return""!==this.username||""!==this.password},isSpecial:function(){return p(ey,this.scheme)},shortenPath:function(){var e=this.path,t=e.length;t&&("file"!==this.scheme||1!==t||!eb(e[0],!0))&&e.length--},serialize:function(){var e=this.scheme,t=this.username,r=this.password,n=this.host,i=this.port,o=this.path,a=this.query,s=this.fragment,c=e+":";return null!==n?(c+="//",this.includesCredentials()&&(c+=t+(r?":"+r:"")+"@"),c+=ef(n),null!==i&&(c+=":"+i)):"file"===e&&(c+="//"),null===n&&!this.cannotBeABaseURL&&o.length>1&&""===o[0]&&(c+="/."),c+=this.cannotBeABaseURL?o[0]:o.length?"/"+M(o,"/"):"",null!==a&&(c+="?"+a),null!==s&&(c+="#"+s),c},setHref:function(e){var t=this.parse(e);if(t)throw new T(t);this.searchParams.update()},getOrigin:function(){var e=this.scheme,t=this.port;if("blob"===e)try{return new eW(this.path[0]).origin}catch(e){return"null"}return"file"!==e&&this.isSpecial()?e+"://"+ef(this.host)+(null!==t?":"+t:""):"null"},getProtocol:function(){return this.scheme+":"},setProtocol:function(e){this.parse(y(e)+":",eC)},getUsername:function(){return this.username},setUsername:function(e){var t=A(y(e));if(!this.cannotHaveUsernamePasswordPort()){this.username="";for(var r=0;r<t.length;r++)this.username+=eg(t[r],em)}},getPassword:function(){return this.password},setPassword:function(e){var t=A(y(e));if(!this.cannotHaveUsernamePasswordPort()){this.password="";for(var r=0;r<t.length;r++)this.password+=eg(t[r],em)}},getHost:function(){var e=this.host,t=this.port;return null===e?"":null===t?ef(e):ef(e)+":"+t},setHost:function(e){this.cannotBeABaseURL||this.parse(e,eR)},getHostname:function(){var e=this.host;return null===e?"":ef(e)},setHostname:function(e){this.cannotBeABaseURL||this.parse(e,eN)},getPort:function(){var e=this.port;return null===e?"":y(e)},setPort:function(e){this.cannotHaveUsernamePasswordPort()||(""===(e=y(e))?this.port=null:this.parse(e,eL))},getPathname:function(){var e=this.path;return this.cannotBeABaseURL?e[0]:e.length?"/"+M(e,"/"):""},setPathname:function(e){this.cannotBeABaseURL||(this.path=[],this.parse(e,eB))},getSearch:function(){var e=this.query;return e?"?"+e:""},setSearch:function(e){""===(e=y(e))?this.query=null:("?"===L(e,0)&&(e=$(e,1)),this.query="",this.parse(e,eG)),this.searchParams.update()},getSearchParams:function(){return this.searchParams.facade},getHash:function(){var e=this.fragment;return e?"#"+e:""},setHash:function(e){if(""===(e=y(e))){this.fragment=null;return}"#"===L(e,0)&&(e=$(e,1)),this.fragment="",this.parse(e,ez)},update:function(){this.query=this.searchParams.serialize()||null}};var eW=function(e){var t=d(this,eH),r=_(arguments.length,1)>1?arguments[1]:void 0,n=x(t,new e$(e,!1,r));o||(t.href=n.serialize(),t.origin=n.getOrigin(),t.protocol=n.getProtocol(),t.username=n.getUsername(),t.password=n.getPassword(),t.host=n.getHost(),t.hostname=n.getHostname(),t.port=n.getPort(),t.pathname=n.getPathname(),t.search=n.getSearch(),t.searchParams=n.getSearchParams(),t.hash=n.getHash())},eH=eW.prototype,eV=function(e,t){return{get:function(){return E(this)[e]()},set:t&&function(e){return E(this)[t](e)},configurable:!0,enumerable:!0}};if(o&&(f(eH,"href",eV("serialize","setHref")),f(eH,"origin",eV("getOrigin")),f(eH,"protocol",eV("getProtocol","setProtocol")),f(eH,"username",eV("getUsername","setUsername")),f(eH,"password",eV("getPassword","setPassword")),f(eH,"host",eV("getHost","setHost")),f(eH,"hostname",eV("getHostname","setHostname")),f(eH,"port",eV("getPort","setPort")),f(eH,"pathname",eV("getPathname","setPathname")),f(eH,"search",eV("getSearch","setSearch")),f(eH,"searchParams",eV("getSearchParams")),f(eH,"hash",eV("getHash","setHash"))),l(eH,"toJSON",function(){return E(this).serialize()},{enumerable:!0}),l(eH,"toString",function(){return E(this).serialize()},{enumerable:!0}),I){var eY=I.createObjectURL,eq=I.revokeObjectURL;eY&&l(eW,"createObjectURL",c(eY,I)),eq&&l(eW,"revokeObjectURL",c(eq,I))}b(eW,"URL"),i({global:!0,constructor:!0,forced:!a,sham:!o},{URL:eW})},3296(e,t,r){"use strict";r(45806)},45781(e,t,r){"use strict";var n=r(46518),i=r(97751),o=r(22812),a=r(655),s=r(67416),c=i("URL");n({target:"URL",stat:!0,forced:!s},{parse:function(e){var t=o(arguments.length,1),r=a(e),n=t<2||void 0===arguments[1]?void 0:a(arguments[1]);try{return new c(r,n)}catch(e){return null}}})},27208(e,t,r){"use strict";var n=r(46518),i=r(69565);n({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return i(URL.prototype.toString,this)}})},84315(e,t,r){"use strict";r(52675),r(89463),r(34113),r(66412),r(97324),r(60193),r(92168),r(2259),r(86964),r(83142),r(83237),r(61833),r(67947),r(31073),r(45700),r(78125),r(20326),r(16280),r(83991),r(76918),r(30067),r(4294),r(88940),r(18107),r(28706),r(26835),r(88431),r(33771),r(2008),r(50113),r(48980),r(10838),r(13451),r(46449),r(78350),r(51629),r(23418),r(74423),r(25276),r(64346),r(23792),r(48598),r(8921),r(62062),r(31051),r(44114),r(72712),r(18863),r(94490),r(34782),r(15086),r(26910),r(87478),r(54554),r(9678),r(57145),r(71658),r(93514),r(30237),r(13609),r(11558),r(54743),r(46761),r(11745),r(38309),r(10255),r(3995),r(16573),r(78100),r(77936),r(61699),r(59089),r(91191),r(93515),r(1688),r(60739),r(89572),r(23288),r(48922),r(36456),r(94170),r(48957),r(62010),r(55081),r(18111),r(21979),r(76382),r(29314),r(81148),r(22489),r(20116),r(30531),r(7588),r(49603),r(61701),r(18237),r(13579),r(54972),r(61806),r(45595),r(69112),r(20344),r(33110),r(4731),r(36033),r(47072),r(45367),r(92731),r(93153),r(82326),r(36389),r(64444),r(8085),r(77762),r(65070),r(60605),r(4360),r(39469),r(72152),r(75376),r(56624),r(11367),r(5914),r(78553),r(23068),r(98690),r(60479),r(70761),r(2892),r(45374),r(25428),r(32637),r(40150),r(59149),r(64601),r(44435),r(87220),r(25843),r(62337),r(9868),r(80630),r(69085),r(59904),r(17427),r(67945),r(84185),r(87607),r(5506),r(52811),r(53921),r(83851),r(81278),r(1480),r(40875),r(77691),r(78347),r(29908),r(94052),r(94003),r(221),r(79432),r(9220),r(7904),r(16348),r(63548),r(93941),r(10287),r(26099),r(16034),r(78459),r(58940),r(3362),r(96167),r(93518),r(9391),r(31689),r(14628),r(52407),r(24793),r(50452),r(39796),r(60825),r(87411),r(21211),r(40888),r(9065),r(86565),r(32812),r(84634),r(71137),r(30985),r(34268),r(34873),r(15472),r(84864),r(96069),r(57465),r(27495),r(69479),r(87745),r(90906),r(38781),r(31415),r(17642),r(58004),r(33853),r(45876),r(32475),r(15024),r(31698),r(67357),r(23860),r(99449),r(27337),r(21699),r(42043),r(47764),r(71761),r(28543),r(35701),r(68156),r(85906),r(42781),r(25440),r(79978),r(5746),r(90744),r(11392),r(50375),r(67438),r(42762),r(39202),r(43359),r(89907),r(11898),r(35490),r(5745),r(94298),r(60268),r(69546),r(20781),r(50778),r(89195),r(46276),r(48718),r(16308),r(34594),r(29833),r(46594),r(72107),r(95477),r(21489),r(22134),r(3690),r(61740),r(48140),r(81630),r(72170),r(75044),r(69539),r(9313),r(89955),r(21903),r(91134),r(33206),r(48345),r(44496),r(66651),r(12887),r(19369),r(66812),r(8995),r(52568),r(31575),r(36072),r(88747),r(28845),r(29423),r(57301),r(373),r(86614),r(41405),r(37467),r(44732),r(33684),r(79577),r(45213),r(91925),r(16632),r(34226),r(9486),r(20456),r(88267),r(73772),r(88454),r(29452),r(30958),r(2945),r(42207),r(23500),r(62953),r(55815),r(64979),r(79739),r(59848),r(122),r(13611),r(71678),r(76031),r(3296),r(2222),r(45781),r(27208),r(48408),r(14603),r(47566),r(98721),r(19167)},21777(e,t,r){"use strict";let n,i;var o=r(61338),a=r(63814),s=r(19760);function c(){return globalThis._nc_auth_requestToken?globalThis._nc_auth_requestToken:globalThis.document?document.head.dataset.requesttoken??null:null}function u(e){if(!e||"string"!=typeof e)throw Error("Invalid CSRF token given",{cause:{token:e}});globalThis._nc_auth_requestToken!==e&&(globalThis._nc_auth_requestToken=e,globalThis.document&&(document.head.dataset.requesttoken=e),(0,o.Ic)("csrf-token-update",{token:e,_internal:!0}))}async function l(){let e=(0,a.Jv)("/csrftoken"),t=await fetch(e);if(!t.ok)throw Error("Could not fetch CSRF token from API",{cause:t});try{let{token:e}=await t.json();return u(e),e}catch(e){throw Error("Could not parse CSRF token from API response",{cause:e})}}function f(e){let t=async({token:t})=>{try{e(t)}catch(e){console.error("Error updating CSRF token observer",e)}};return(0,o.B1)("csrf-token-update",t),()=>(0,o.al)("csrf-token-update",t)}(0,o.B1)("csrf-token-update",({token:e,_internal:t})=>{t||u(e)});let d=(0,s.c0)("public").persist().build();class p{_displayName;uid;isAdmin;constructor(){d.getItem("guestUid")||d.setItem("guestUid",A()),this._displayName=d.getItem("guestNickname")||"",this.uid=d.getItem("guestUid")||A(),this.isAdmin=!1,(0,o.B1)("user:info:changed",e=>{this._displayName=e.displayName,d.setItem("guestNickname",e.displayName||"")})}get displayName(){return this._displayName}set displayName(e){this._displayName=e,d.setItem("guestNickname",e),(0,o.Ic)("user:info:changed",this)}}function h(e){if(!e||0===e.trim().length)throw Error("Nickname cannot be empty");(!n&&(n=new p),n).displayName=e}function A(){return globalThis.crypto?.randomUUID?globalThis.crypto.randomUUID():"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,e=>{let t=16*Math.random()|0;return("x"===e?t:3&t|8).toString(16)})}function v(e,t){return e?e.getAttribute(t):null}function m(){if(void 0!==i)return i;let e=document?.getElementsByTagName("head")[0];if(!e)return null;let t=v(e,"data-user");return i=null===t?null:{uid:t,displayName:v(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin}}r.d(t,{HW:()=>m,L$:()=>h,do:()=>c,p6:()=>l,zo:()=>f})},19760(e,t,r){"use strict";r.d(t,{c0:()=>o});class n{static GLOBAL_SCOPE_VOLATILE="nextcloud_vol";static GLOBAL_SCOPE_PERSISTENT="nextcloud_per";scope;wrapped;constructor(e,t,r){this.scope=`${r?n.GLOBAL_SCOPE_PERSISTENT:n.GLOBAL_SCOPE_VOLATILE}_${btoa(e)}_`,this.wrapped=t}scopeKey(e){return`${this.scope}${e}`}setItem(e,t){this.wrapped.setItem(this.scopeKey(e),t)}getItem(e){return this.wrapped.getItem(this.scopeKey(e))}removeItem(e){this.wrapped.removeItem(this.scopeKey(e))}clear(){Object.keys(this.wrapped).filter(e=>e.startsWith(this.scope)).map(this.wrapped.removeItem.bind(this.wrapped))}}class i{appId;persisted=!1;clearedOnLogout=!1;constructor(e){this.appId=e}persist(e=!0){return this.persisted=e,this}clearOnLogout(e=!0){return this.clearedOnLogout=e,this}build(){return new n(this.appId,this.persisted?window.localStorage:window.sessionStorage,!this.clearedOnLogout)}}function o(e){return new i(e)}},61338(e,t,r){"use strict";var n=r(38064),i=r(38711);class o{bus;constructor(e){"function"==typeof e.getVersion&&i(e.getVersion())?n(e.getVersion())!==n(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}getVersion(){return"3.3.3"}subscribe(e,t){this.bus.subscribe(e,t)}unsubscribe(e,t){this.bus.unsubscribe(e,t)}emit(e,...t){this.bus.emit(e,...t)}}class a{handlers=new Map;getVersion(){return"3.3.3"}subscribe(e,t){this.handlers.set(e,(this.handlers.get(e)||[]).concat(t))}unsubscribe(e,t){this.handlers.set(e,(this.handlers.get(e)||[]).filter(e=>e!==t))}emit(e,...t){(this.handlers.get(e)||[]).forEach(e=>{try{e(t[0])}catch(e){console.error("could not invoke event listener",e)}})}}let s=null;function c(){return null!==s?s:"u"<typeof window?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(window.OC?._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),s=void 0!==window?._nc_event_bus?new o(window._nc_event_bus):window._nc_event_bus=new a)}function u(e,t){c().subscribe(e,t)}function l(e,t){c().unsubscribe(e,t)}function f(e,...t){c().emit(e,...t)}r.d(t,{B1:()=>u,Ic:()=>f,al:()=>l})},93839(e,t,r){"use strict";var n=r(99418),i=r(70580);function o(){return globalThis._nc_l10n_locale}function a(){return o().replaceAll(/_/g,"-")}function s(){return globalThis._nc_l10n_language}function c(e){return["ae","ar","arc","arz","bcc","bqi","ckb","dv","fa","glk","ha","he","khw","ks","ku","mzn","nqo","pnb","ps","sd","ug","ur","ur-PK","uz-AF","yi"].includes(e||s())}function u(e){return{translations:globalThis._oc_l10n_registry_translations[e]??{},pluralFunction:globalThis._oc_l10n_registry_plural_functions[e]??(e=>e)}}function l(e,t,r,o,a){let s="object"==typeof r?r:void 0,c="number"==typeof o?o:"number"==typeof r?r:void 0,l={escape:!0,sanitize:!0,..."object"==typeof a?a:"object"==typeof o?o:{}},f=e=>e,d=(l.sanitize?n.A.sanitize:f)||f,p=l.escape?i:f,h=e=>"string"==typeof e||"number"==typeof e,A=(a?.bundle??u(e)).translations[t]||t;if(A=Array.isArray(A)?A[0]:A,"object"!=typeof s&&void 0===c)return d(A);return d(A.replace(/%n/g,""+c).replace(/{([^{}]*)}/g,(e,t)=>{if(void 0===s||!(t in s))return p(e);let r=s[t];return h(r)?p(`${r}`):"object"==typeof r&&h(r.value)?(!1!==r.escape?i:f)(`${r.value}`):p(e)}))}function f(e,t,r,n,i,o){let a="_"+t+"_::_"+r+"_",s=o?.bundle??u(e),c=s.translations[a];return void 0!==c&&Array.isArray(c)?l(e,c[s.pluralFunction(n)],i,n,o):1===n?l(e,t,i,n,o):l(e,r,i,n,o)}function d(e,t=s()){switch("pt-BR"===t&&(t="xbr"),t.length>3&&(t=t.substring(0,t.lastIndexOf("-"))),t){case"az":case"bo":case"dz":case"id":case"ja":case"jv":case"ka":case"km":case"kn":case"ko":case"ms":case"th":case"tr":case"vi":case"zh":default:return 0;case"af":case"bn":case"bg":case"ca":case"da":case"de":case"el":case"en":case"eo":case"es":case"et":case"eu":case"fa":case"fi":case"fo":case"fur":case"fy":case"gl":case"gu":case"ha":case"he":case"hu":case"is":case"it":case"ku":case"lb":case"ml":case"mn":case"mr":case"nah":case"nb":case"ne":case"nl":case"nn":case"no":case"oc":case"om":case"or":case"pa":case"pap":case"ps":case"pt":case"so":case"sq":case"sv":case"sw":case"ta":case"te":case"tk":case"ur":case"zu":return+(1!==e);case"am":case"bh":case"fil":case"fr":case"gun":case"hi":case"hy":case"ln":case"mg":case"nso":case"xbr":case"ti":case"wa":return+(0!==e&&1!==e);case"be":case"bs":case"hr":case"ru":case"sh":case"sr":case"uk":return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2;case"cs":case"sk":return 1===e?0:e>=2&&e<=4?1:2;case"ga":return 1===e?0:2===e?1:2;case"lt":return e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2;case"sl":return e%100==1?0:e%100==2?1:e%100==3||e%100==4?2:3;case"mk":return+(e%10!=1);case"mt":return 1===e?0:0===e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3;case"lv":return 0===e?0:e%10==1&&e%100!=11?1:2;case"pl":return 1===e?0:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?1:2;case"cy":return 1===e?0:2===e?1:8===e||11===e?2:3;case"ro":return 1===e?0:0===e||e%100>0&&e%100<20?1:2;case"ar":return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11&&e%100<=99?4:5}}globalThis._nc_l10n_locale??="u">typeof document&&document.documentElement.dataset.locale||Intl.DateTimeFormat().resolvedOptions().locale.replaceAll(/-/g,"_"),globalThis._nc_l10n_language??="u">typeof document&&document.documentElement.lang||(globalThis.navigator?.language??"en"),globalThis._oc_l10n_registry_translations??={},globalThis._oc_l10n_registry_plural_functions??={},r.d(t,{a:()=>s,b:()=>o,d:()=>f,e:()=>d,g:()=>a,i:()=>c,t:()=>l})},53334(e,t,r){"use strict";var n=r(93839);function i(){if(void 0!==globalThis.firstDay)return globalThis.firstDay;let e=new Intl.Locale((0,n.g)()),t=e.getWeekInfo?.()??e.weekInfo;return t?t.firstDay%7:1}function o(){if(void 0!==globalThis.dayNames)return globalThis.dayNames;let e=(0,n.g)();return[new Date(1970,0,4).toLocaleDateString(e,{weekday:"long"}),new Date(1970,0,5).toLocaleDateString(e,{weekday:"long"}),new Date(1970,0,6).toLocaleDateString(e,{weekday:"long"}),new Date(1970,0,7).toLocaleDateString(e,{weekday:"long"}),new Date(1970,0,8).toLocaleDateString(e,{weekday:"long"}),new Date(1970,0,9).toLocaleDateString(e,{weekday:"long"}),new Date(1970,0,10).toLocaleDateString(e,{weekday:"long"})]}function a(){if(void 0!==globalThis.dayNamesMin)return globalThis.dayNamesMin;let e=(0,n.g)();return[new Date(1970,0,4).toLocaleDateString(e,{weekday:"narrow"}),new Date(1970,0,5).toLocaleDateString(e,{weekday:"narrow"}),new Date(1970,0,6).toLocaleDateString(e,{weekday:"narrow"}),new Date(1970,0,7).toLocaleDateString(e,{weekday:"narrow"}),new Date(1970,0,8).toLocaleDateString(e,{weekday:"narrow"}),new Date(1970,0,9).toLocaleDateString(e,{weekday:"narrow"}),new Date(1970,0,10).toLocaleDateString(e,{weekday:"narrow"})]}function s(e=Date.now(),t={}){let r={ignoreSeconds:!1,language:(0,n.a)(),relativeTime:"long",...t},i=new Date(e),o=new Intl.RelativeTimeFormat([r.language,(0,n.a)()],{numeric:"auto",style:r.relativeTime}),a=(i.getTime()-Date.now())/1e3;if(59.5>Math.abs(a))return r.ignoreSeconds||o.format(Math.round(a),"second");let c=a/60;if(59>=Math.abs(c))return o.format(Math.round(c),"minute");let u=c/60;if(23.5>Math.abs(u))return o.format(Math.round(u),"hour");let l=u/24;if(6.5>Math.abs(l))return o.format(Math.round(l),"day");if(27.5>Math.abs(l))return o.format(Math.round(l/7),"week");let f=11>Math.abs(l/30)?{month:r.relativeTime,day:"numeric"}:{year:"narrow"===r.relativeTime?"2-digit":"numeric",month:r.relativeTime};return new Intl.DateTimeFormat([r.language,(0,n.a)()],f).format(i)}r.d(t,{JK:()=>n.b,JN:()=>i,Pe:()=>a,Tl:()=>n.t,V8:()=>n.i,Z0:()=>n.a,fw:()=>s,hY:()=>o,lO:()=>n.g,translatePlural:()=>n.d})},35947(e,t,r){"use strict";var n,i=r(21777),o=((n=o||{})[n.Debug=0]="Debug",n[n.Info=1]="Info",n[n.Warn=2]="Warn",n[n.Error=3]="Error",n[n.Fatal=4]="Fatal",n);class a{context;constructor(e){this.context=e||{}}formatMessage(e,t,r){let n="["+o[t].toUpperCase()+"] ";return(r&&r.app&&(n+=r.app+": "),"string"==typeof e)?n+e:(n+=`Unexpected ${e.name}`,e.message&&(n+=` "${e.message}"`),t===o.Debug&&e.stack&&(n+=` Stack trace: ${e.stack}`),n)}log(e,t,r){if(!("number"==typeof this.context?.level&&e<this.context?.level))switch("object"==typeof t&&r?.error===void 0&&(r.error=t),e){case o.Debug:console.debug(this.formatMessage(t,o.Debug,r),r);break;case o.Info:console.info(this.formatMessage(t,o.Info,r),r);break;case o.Warn:console.warn(this.formatMessage(t,o.Warn,r),r);break;case o.Error:console.error(this.formatMessage(t,o.Error,r),r);break;case o.Fatal:default:console.error(this.formatMessage(t,o.Fatal,r),r)}}debug(e,t){this.log(o.Debug,e,Object.assign({},this.context,t))}info(e,t){this.log(o.Info,e,Object.assign({},this.context,t))}warn(e,t){this.log(o.Warn,e,Object.assign({},this.context,t))}error(e,t){this.log(o.Error,e,Object.assign({},this.context,t))}fatal(e,t){this.log(o.Fatal,e,Object.assign({},this.context,t))}}function s(e){return new a(e)}class c{context;factory;constructor(e){this.context={},this.factory=e}setApp(e){return this.context.app=e,this}setLogLevel(e){return this.context.level=e,this}setUid(e){return this.context.uid=e,this}detectUser(){let e=(0,i.HW)();return null!==e&&(this.context.uid=e.uid),this}detectLogLevel(){let e=this,t=()=>{"complete"===document.readyState||"interactive"===document.readyState?(e.context.level=window._oc_config?.loglevel??o.Warn,window._oc_debug&&(e.context.level=o.Debug),document.removeEventListener("readystatechange",t)):document.addEventListener("readystatechange",t)};return t(),this}build(){return void 0===this.context.level&&this.detectLogLevel(),this.factory(this.context)}}function u(){return new c(s)}r.d(t,{YK:()=>u})},63814(e,t,r){"use strict";function n(e,t){return o(e,"",t)}let i=(e,t,r)=>{var n,i;let o=Object.assign({escape:!0},r||{});return"/"!==e.charAt(0)&&(e="/"+e),n=e,i=i=t||{},n.replace(/{([^{}]*)}/g,function(e,t){let r=i[t];return o.escape?"string"==typeof r||"number"==typeof r?encodeURIComponent(r.toString()):encodeURIComponent(e):"string"==typeof r||"number"==typeof r?r.toString():e})},o=(e,t,r)=>{var n;let i=window?.OC?.coreApps?.includes(e)??!1,o="php"===r.slice(-3),a=s();return o&&!i?(a+=`/index.php/apps/${e}`,t&&(a+=`/${encodeURI(t)}`),"index.php"!==r&&(a+=`/${r}`)):o||i?(("settings"===e||"core"===e||"search"===e)&&"ajax"===t&&(a+="/index.php"),e&&(a+=`/${e}`),t&&(a+=`/${t}`),a+=`/${r}`):(n=e,a=(window._oc_appswebroots??{})[n]??"",t&&(a+=`/${t}/`),"/"!==a.at(-1)&&(a+="/"),a+=r),a},a=()=>window.location.protocol+"//"+window.location.host+s();function s(){let e=window._oc_webroot;if(void 0===e){let t=(e=location.pathname).indexOf("/index.php/");if(-1!==t)e=e.slice(0,t);else{let t=e.indexOf("/",1);e=e.slice(0,t>0?t:void 0)}}return e}r.d(t,{aU:()=>s,uM:()=>n},{$_:a,Jv:(e,t,r)=>{let n=Object.assign({noRewrite:!1},r||{}),o=r?.baseURL??s();return window?.OC?.config?.modRewriteWorking!==!0||n.noRewrite?o+"/index.php"+i(e,t,r):o+i(e,t,r)},KT:(e,t,r)=>{let n=1===Object.assign({ocsVersion:2},r||{}).ocsVersion?1:2;return(r?.baseURL??a())+"/ocs/v"+n+".php"+i(e,t,r)},d0:(e,t)=>t.includes(".")?o(e,"img",t):o(e,"img",`${t}.svg`),dC:(e,t)=>(t?.baseURL??a())+"/remote.php/"+e})},3168(e,t,r){"use strict";let n=(0,r(35947).YK)().detectUser().setApp("@nextcloud/vue").build();r.d(t,{},{l:n})},95570(e,t,r){"use strict";var n=r(3168);function i(e){(window._nc_contacts_menu_hooks??={},window._nc_contacts_menu_hooks[e.id])?n.l.error(`ContactsMenu action for id ${e.id} has already been registered`,{action:e}):window._nc_contacts_menu_hooks[e.id]=e}function o(e){return window._nc_contacts_menu_hooks?Object.values(window._nc_contacts_menu_hooks).filter(t=>t.enabled(e)):[]}r.d(t,{I:()=>i,N:()=>o})},99418(e,t,r){"use strict";function n(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);r<t;r++)n[r]=e[r];return n}let i=Object.entries,o=Object.setPrototypeOf,a=Object.isFrozen,s=Object.getPrototypeOf,c=Object.getOwnPropertyDescriptor,u=Object.freeze,l=Object.seal,f=Object.create,d="u">typeof Reflect&&Reflect,p=d.apply,h=d.construct;u||(u=function(e){return e}),l||(l=function(e){return e}),p||(p=function(e,t){for(var r=arguments.length,n=Array(r>2?r-2:0),i=2;i<r;i++)n[i-2]=arguments[i];return e.apply(t,n)}),h||(h=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return new e(...r)});let A=j(Array.prototype.forEach),v=j(Array.prototype.lastIndexOf),m=j(Array.prototype.pop),g=j(Array.prototype.push),y=j(Array.prototype.splice),b=Array.isArray,_=j(String.prototype.toLowerCase),C=j(String.prototype.toString),w=j(String.prototype.match),x=j(String.prototype.replace),E=j(String.prototype.indexOf),S=j(String.prototype.trim),k=j(Number.prototype.toString),I=j(Boolean.prototype.toString),T="u"<typeof BigInt?null:j(BigInt.prototype.toString),O="u"<typeof Symbol?null:j(Symbol.prototype.toString),D=j(Object.prototype.hasOwnProperty),R=j(Object.prototype.toString),N=j(RegExp.prototype.test),L=(ec=TypeError,function(){for(var e=arguments.length,t=Array(e),r=0;r<e;r++)t[r]=arguments[r];return h(ec,t)});function j(e){return function(t){t instanceof RegExp&&(t.lastIndex=0);for(var r=arguments.length,n=Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];return p(e,t,n)}}function M(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:_;if(o&&o(e,null),!b(t))return e;let n=t.length;for(;n--;){let i=t[n];if("string"==typeof i){let e=r(i);e!==i&&(a(t)||(t[n]=e),i=e)}e[i]=!0}return e}function P(e){let t=f(null);for(let o of i(e)){var r=function(e){if(Array.isArray(e))return e}(o)||function(e){var t=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,n,i,o,a=[],s=!0,c=!1;try{i=(t=t.call(e)).next,!1;for(;!(s=(r=i.call(t)).done)&&(a.push(r.value),2!==a.length);s=!0);}catch(e){c=!0,n=e}finally{try{if(!s&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(c)throw n}}return a}}(o)||function(e){if(e){if("string"==typeof e)return n(e,2);var t=({}).toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(e):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?n(e,2):void 0}}(o)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}();let i=r[0],a=r[1];D(e,i)&&(b(a)?t[i]=function(e){for(let t=0;t<e.length;t++)D(e,t)||(e[t]=null);return e}(a):a&&"object"==typeof a&&a.constructor===Object?t[i]=P(a):t[i]=a)}return t}function B(e,t){for(;null!==e;){let r=c(e,t);if(r){if(r.get)return j(r.get);if("function"==typeof r.value)return j(r.value)}e=s(e)}return function(){return null}}let F=u(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),U=u(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),G=u(["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"]),z=u(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),$=u(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),W=u(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),H=u(["#text"]),V=u(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","command","commandfor","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns"]),Y=u(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),q=u(["accent","accentunder","align","bevelled","close","columnalign","columnlines","columnspacing","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lquote","lspace","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),X=u(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),K=l(/{{[\w\W]*|^[\w\W]*}}/g),J=l(/<%[\w\W]*|^[\w\W]*%>/g),Q=l(/\${[\w\W]*/g),Z=l(/^data-[\-\w.\u00B7-\uFFFF]+$/),ee=l(/^aria-[\-\w]+$/),et=l(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),er=l(/^(?:\w+script|data):/i),en=l(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),ei=l(/^html$/i),eo=l(/^[a-z][.\w]*(-[.\w]+)+$/i),ea=function(e,t){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let r=null,n="data-tt-policy-suffix";t&&t.hasAttribute(n)&&(r=t.getAttribute(n));let i="dompurify"+(r?"#"+r:"");try{return e.createPolicy(i,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+i+" could not be created."),null}},es=function(){return{afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}};var ec,eu=function e(){let t,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"u"<typeof window?null:window,n=t=>e(t);if(n.version="3.4.7",n.removed=[],!r||!r.document||9!==r.document.nodeType||!r.Element)return n.isSupported=!1,n;let o=r.document,a=o,s=a.currentScript;r.DocumentFragment;let c=r.HTMLTemplateElement,l=r.Node,d=r.Element,p=r.NodeFilter;void 0===r.NamedNodeMap&&(r.NamedNodeMap||r.MozNamedAttrMap),r.HTMLFormElement;let h=r.DOMParser,j=r.trustedTypes,ec=d.prototype,eu=B(ec,"cloneNode"),el=B(ec,"remove"),ef=B(ec,"nextSibling"),ed=B(ec,"childNodes"),ep=B(ec,"parentNode"),eh=B(ec,"shadowRoot"),eA=B(ec,"attributes"),ev=l&&l.prototype?B(l.prototype,"nodeType"):null,em=l&&l.prototype?B(l.prototype,"nodeName"):null;if("function"==typeof c){let e=o.createElement("template");e.content&&e.content.ownerDocument&&(o=e.content.ownerDocument)}let eg="",ey=o,eb=ey.implementation,e_=ey.createNodeIterator,eC=ey.createDocumentFragment,ew=ey.getElementsByTagName,ex=a.importNode,eE=es();n.isSupported="function"==typeof i&&"function"==typeof ep&&eb&&void 0!==eb.createHTMLDocument;let eS=et,ek=null,eI=M({},[...F,...U,...G,...$,...H]),eT=null,eO=M({},[...V,...Y,...q,...X]),eD=Object.seal(f(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),eR=null,eN=null,eL=Object.seal(f(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}})),ej=!0,eM=!0,eP=!1,eB=!0,eF=!1,eU=!0,eG=!1,ez=!1,e$=!1,eW=!1,eH=!1,eV=!1,eY=!0,eq=!1,eX="user-content-",eK=!0,eJ=!1,eQ={},eZ=null,e0=M({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),e1=null,e5=M({},["audio","video","img","source","image","track"]),e4=null,e6=M({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),e2="http://www.w3.org/1998/Math/MathML",e9="http://www.w3.org/2000/svg",e7="http://www.w3.org/1999/xhtml",e3=e7,e8=!1,te=null,tt=M({},[e2,e9,e7],C),tr=M({},["mi","mo","mn","ms","mtext"]),tn=M({},["annotation-xml"]),ti=M({},["title","style","font","a","script"]),to=null,ta=["application/xhtml+xml","text/html"],ts=null,tc=null,tu=o.createElement("form"),tl=function(e){return e instanceof RegExp||e instanceof Function},tf=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(tc&&tc===e)return;e&&"object"==typeof e||(e={}),e=P(e),ts="application/xhtml+xml"===(to=-1===ta.indexOf(e.PARSER_MEDIA_TYPE)?"text/html":e.PARSER_MEDIA_TYPE)?C:_,ek=D(e,"ALLOWED_TAGS")&&b(e.ALLOWED_TAGS)?M({},e.ALLOWED_TAGS,ts):eI,eT=D(e,"ALLOWED_ATTR")&&b(e.ALLOWED_ATTR)?M({},e.ALLOWED_ATTR,ts):eO,te=D(e,"ALLOWED_NAMESPACES")&&b(e.ALLOWED_NAMESPACES)?M({},e.ALLOWED_NAMESPACES,C):tt,e4=D(e,"ADD_URI_SAFE_ATTR")&&b(e.ADD_URI_SAFE_ATTR)?M(P(e6),e.ADD_URI_SAFE_ATTR,ts):e6,e1=D(e,"ADD_DATA_URI_TAGS")&&b(e.ADD_DATA_URI_TAGS)?M(P(e5),e.ADD_DATA_URI_TAGS,ts):e5,eZ=D(e,"FORBID_CONTENTS")&&b(e.FORBID_CONTENTS)?M({},e.FORBID_CONTENTS,ts):e0,eR=D(e,"FORBID_TAGS")&&b(e.FORBID_TAGS)?M({},e.FORBID_TAGS,ts):P({}),eN=D(e,"FORBID_ATTR")&&b(e.FORBID_ATTR)?M({},e.FORBID_ATTR,ts):P({}),eQ=!!D(e,"USE_PROFILES")&&(e.USE_PROFILES&&"object"==typeof e.USE_PROFILES?P(e.USE_PROFILES):e.USE_PROFILES),ej=!1!==e.ALLOW_ARIA_ATTR,eM=!1!==e.ALLOW_DATA_ATTR,eP=e.ALLOW_UNKNOWN_PROTOCOLS||!1,eB=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,eF=e.SAFE_FOR_TEMPLATES||!1,eU=!1!==e.SAFE_FOR_XML,eG=e.WHOLE_DOCUMENT||!1,eW=e.RETURN_DOM||!1,eH=e.RETURN_DOM_FRAGMENT||!1,eV=e.RETURN_TRUSTED_TYPE||!1,e$=e.FORCE_BODY||!1,eY=!1!==e.SANITIZE_DOM,eq=e.SANITIZE_NAMED_PROPS||!1,eK=!1!==e.KEEP_CONTENT,eJ=e.IN_PLACE||!1,eS=!function(e){try{return N(e,""),!0}catch(e){return!1}}(e.ALLOWED_URI_REGEXP)?et:e.ALLOWED_URI_REGEXP,e3="string"==typeof e.NAMESPACE?e.NAMESPACE:e7,tr=D(e,"MATHML_TEXT_INTEGRATION_POINTS")&&e.MATHML_TEXT_INTEGRATION_POINTS&&"object"==typeof e.MATHML_TEXT_INTEGRATION_POINTS?P(e.MATHML_TEXT_INTEGRATION_POINTS):M({},["mi","mo","mn","ms","mtext"]),tn=D(e,"HTML_INTEGRATION_POINTS")&&e.HTML_INTEGRATION_POINTS&&"object"==typeof e.HTML_INTEGRATION_POINTS?P(e.HTML_INTEGRATION_POINTS):M({},["annotation-xml"]);let r=D(e,"CUSTOM_ELEMENT_HANDLING")&&e.CUSTOM_ELEMENT_HANDLING&&"object"==typeof e.CUSTOM_ELEMENT_HANDLING?P(e.CUSTOM_ELEMENT_HANDLING):f(null);if(eD=f(null),D(r,"tagNameCheck")&&tl(r.tagNameCheck)&&(eD.tagNameCheck=r.tagNameCheck),D(r,"attributeNameCheck")&&tl(r.attributeNameCheck)&&(eD.attributeNameCheck=r.attributeNameCheck),D(r,"allowCustomizedBuiltInElements")&&"boolean"==typeof r.allowCustomizedBuiltInElements&&(eD.allowCustomizedBuiltInElements=r.allowCustomizedBuiltInElements),eF&&(eM=!1),eH&&(eW=!0),eQ&&(ek=M({},H),eT=f(null),!0===eQ.html&&(M(ek,F),M(eT,V)),!0===eQ.svg&&(M(ek,U),M(eT,Y),M(eT,X)),!0===eQ.svgFilters&&(M(ek,G),M(eT,Y),M(eT,X)),!0===eQ.mathMl&&(M(ek,$),M(eT,q),M(eT,X))),eL.tagCheck=null,eL.attributeCheck=null,D(e,"ADD_TAGS")&&("function"==typeof e.ADD_TAGS?eL.tagCheck=e.ADD_TAGS:b(e.ADD_TAGS)&&(ek===eI&&(ek=P(ek)),M(ek,e.ADD_TAGS,ts))),D(e,"ADD_ATTR")&&("function"==typeof e.ADD_ATTR?eL.attributeCheck=e.ADD_ATTR:b(e.ADD_ATTR)&&(eT===eO&&(eT=P(eT)),M(eT,e.ADD_ATTR,ts))),D(e,"ADD_URI_SAFE_ATTR")&&b(e.ADD_URI_SAFE_ATTR)&&M(e4,e.ADD_URI_SAFE_ATTR,ts),D(e,"FORBID_CONTENTS")&&b(e.FORBID_CONTENTS)&&(eZ===e0&&(eZ=P(eZ)),M(eZ,e.FORBID_CONTENTS,ts)),D(e,"ADD_FORBID_CONTENTS")&&b(e.ADD_FORBID_CONTENTS)&&(eZ===e0&&(eZ=P(eZ)),M(eZ,e.ADD_FORBID_CONTENTS,ts)),eK&&(ek["#text"]=!0),eG&&M(ek,["html","head","body"]),ek.table&&(M(ek,["tbody"]),delete eR.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw L('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw L('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');eg=(t=e.TRUSTED_TYPES_POLICY).createHTML("")}else void 0===t&&(t=ea(j,s)),null!==t&&"string"==typeof eg&&(eg=t.createHTML(""));(eE.uponSanitizeElement.length>0||eE.uponSanitizeAttribute.length>0)&&ek===eI&&(ek=P(ek)),eE.uponSanitizeAttribute.length>0&&eT===eO&&(eT=P(eT)),u&&u(e),tc=e},td=M({},[...U,...G,...z]),tp=M({},[...$,...W]),th=function(e){let t=ep(e);t&&t.tagName||(t={namespaceURI:e3,tagName:"template"});let r=_(e.tagName),n=_(t.tagName);return!!te[e.namespaceURI]&&(e.namespaceURI===e9?t.namespaceURI===e7?"svg"===r:t.namespaceURI===e2?"svg"===r&&("annotation-xml"===n||tr[n]):!!td[r]:e.namespaceURI===e2?t.namespaceURI===e7?"math"===r:t.namespaceURI===e9?"math"===r&&tn[n]:!!tp[r]:e.namespaceURI===e7?(t.namespaceURI!==e9||!!tn[n])&&(t.namespaceURI!==e2||!!tr[n])&&!tp[r]&&(ti[r]||!td[r]):"application/xhtml+xml"===to&&!!te[e.namespaceURI])},tA=function(e){g(n.removed,{element:e});try{ep(e).removeChild(e)}catch(t){el(e)}},tv=function(e,t){try{g(n.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){g(n.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e)if(eW||eH)try{tA(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},tm=function(e){let r=null,n=null;if(e$)e="<remove></remove>"+e;else{let t=w(e,/^[\r\n\t ]+/);n=t&&t[0]}"application/xhtml+xml"===to&&e3===e7&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");let i=t?t.createHTML(e):e;if(e3===e7)try{r=new h().parseFromString(i,to)}catch(e){}if(!r||!r.documentElement){r=eb.createDocument(e3,"template",null);try{r.documentElement.innerHTML=e8?eg:i}catch(e){}}let a=r.body||r.documentElement;return(e&&n&&a.insertBefore(o.createTextNode(n),a.childNodes[0]||null),e3===e7)?ew.call(r,eG?"html":"body")[0]:eG?r.documentElement:a},tg=function(e){return e_.call(e.ownerDocument||e,e,p.SHOW_ELEMENT|p.SHOW_COMMENT|p.SHOW_TEXT|p.SHOW_PROCESSING_INSTRUCTION|p.SHOW_CDATA_SECTION,null)},ty=function(e){e.normalize();let t=e_.call(e.ownerDocument||e,e,p.SHOW_TEXT|p.SHOW_COMMENT|p.SHOW_CDATA_SECTION|p.SHOW_PROCESSING_INSTRUCTION,null),r=t.nextNode();for(;r;){let e=r.data;A([K,J,Q],t=>{e=x(e,t," ")}),r.data=e,r=t.nextNode()}},tb=function(e){let t=em?em(e):null;return"string"==typeof t&&"form"===ts(t)&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||e.attributes!==eA(e)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes||e.nodeType!==ev(e)||e.childNodes!==ed(e))},t_=function(e){if(!ev||"object"!=typeof e||null===e)return!1;try{return 11===ev(e)}catch(e){return!1}},tC=function(e){if(!ev||"object"!=typeof e||null===e)return!1;try{return"number"==typeof ev(e)}catch(e){return!1}};function tw(e,t,r){A(e,e=>{e.call(n,t,r,tc)})}let tx=function(e){let t=null;if(tw(eE.beforeSanitizeElements,e,null),tb(e))return tA(e),!0;let r=ts(e.nodeName);if(tw(eE.uponSanitizeElement,e,{tagName:r,allowedTags:ek}),eU&&e.hasChildNodes()&&!tC(e.firstElementChild)&&N(/<[/\w!]/g,e.innerHTML)&&N(/<[/\w!]/g,e.textContent)||eU&&e.namespaceURI===e7&&"style"===r&&tC(e.firstElementChild)||7===e.nodeType||eU&&8===e.nodeType&&N(/<[/\w]/g,e.data))return tA(e),!0;if(eR[r]||!(eL.tagCheck instanceof Function&&eL.tagCheck(r))&&!ek[r]){if(!eR[r]&&tk(r)&&(eD.tagNameCheck instanceof RegExp&&N(eD.tagNameCheck,r)||eD.tagNameCheck instanceof Function&&eD.tagNameCheck(r)))return!1;if(eK&&!eZ[r]){let t=ep(e),r=ed(e);if(r&&t){let n=r.length;for(let i=n-1;i>=0;--i){let n=eu(r[i],!0);t.insertBefore(n,ef(e))}}}return tA(e),!0}return(ev?ev(e):e.nodeType)===1&&!th(e)||("noscript"===r||"noembed"===r||"noframes"===r)&&N(/<\/no(script|embed|frames)/i,e.innerHTML)?(tA(e),!0):(eF&&3===e.nodeType&&(t=e.textContent,A([K,J,Q],e=>{t=x(t,e," ")}),e.textContent!==t&&(g(n.removed,{element:e.cloneNode()}),e.textContent=t)),tw(eE.afterSanitizeElements,e,null),!1)},tE=function(e,t,r){if(eN[t]||eY&&("id"===t||"name"===t)&&(r in o||r in tu))return!1;let n=eT[t]||eL.attributeCheck instanceof Function&&eL.attributeCheck(t,e);if(eM&&!eN[t]&&N(Z,t));else if(ej&&N(ee,t));else if(!n||eN[t]){if(!(tk(e)&&(eD.tagNameCheck instanceof RegExp&&N(eD.tagNameCheck,e)||eD.tagNameCheck instanceof Function&&eD.tagNameCheck(e))&&(eD.attributeNameCheck instanceof RegExp&&N(eD.attributeNameCheck,t)||eD.attributeNameCheck instanceof Function&&eD.attributeNameCheck(t,e))||"is"===t&&eD.allowCustomizedBuiltInElements&&(eD.tagNameCheck instanceof RegExp&&N(eD.tagNameCheck,r)||eD.tagNameCheck instanceof Function&&eD.tagNameCheck(r))))return!1}else if(e4[t]);else if(N(eS,x(r,en,"")));else if(("src"===t||"xlink:href"===t||"href"===t)&&"script"!==e&&0===E(r,"data:")&&e1[e]);else if(eP&&!N(er,x(r,en,"")));else if(r)return!1;return!0},tS=M({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),tk=function(e){return!tS[_(e)]&&N(eo,e)},tI=function(e){tw(eE.beforeSanitizeAttributes,e,null);let r=e.attributes;if(!r||tb(e))return;let i={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:eT,forceKeepAttr:void 0},o=r.length;for(;o--;){let a=r[o],s=a.name,c=a.namespaceURI,u=a.value,l=ts(s),f="value"===s?u:S(u);if(i.attrName=l,i.attrValue=f,i.keepAttr=!0,i.forceKeepAttr=void 0,tw(eE.uponSanitizeAttribute,e,i),f=i.attrValue,eq&&("id"===l||"name"===l)&&0!==E(f,eX)&&(tv(s,e),f=eX+f),eU&&N(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,f)||"attributename"===l&&w(f,"href")){tv(s,e);continue}if(i.forceKeepAttr)continue;if(!i.keepAttr||!eB&&N(/\/>/i,f)){tv(s,e);continue}eF&&A([K,J,Q],e=>{f=x(f,e," ")});let d=ts(e.nodeName);if(!tE(d,l,f)){tv(s,e);continue}if(t&&"object"==typeof j&&"function"==typeof j.getAttributeType)if(c);else switch(j.getAttributeType(d,l)){case"TrustedHTML":f=t.createHTML(f);break;case"TrustedScriptURL":f=t.createScriptURL(f)}if(f!==u)try{c?e.setAttributeNS(c,s,f):e.setAttribute(s,f),tb(e)?tA(e):m(n.removed)}catch(t){tv(s,e)}}tw(eE.afterSanitizeAttributes,e,null)},tT=function(e){let t=null,r=tg(e);for(tw(eE.beforeSanitizeShadowDOM,e,null);t=r.nextNode();)if(tw(eE.uponSanitizeShadowNode,t,null),tx(t),tI(t),t_(t.content)&&tT(t.content),(ev?ev(t):t.nodeType)===1){let e=eh?eh(t):t.shadowRoot;t_(e)&&(tO(e),tT(e))}tw(eE.afterSanitizeShadowDOM,e,null)},tO=function(e){let t=ev?ev(e):e.nodeType;if(1===t){let t=eh?eh(e):e.shadowRoot;t_(t)&&(tO(t),tT(t))}let r=ed?ed(e):e.childNodes;if(!r)return;let n=[];for(let e of(A(r,e=>{g(n,e)}),n))tO(e);if(1===t){let t=em?em(e):null;if("string"==typeof t&&"template"===ts(t)){let t=e.content;t_(t)&&tO(t)}}};return n.sanitize=function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=null,o=null,s=null,c=null;if((e8=!e)&&(e="\x3c!--\x3e"),"string"!=typeof e&&!tC(e)&&"string"!=typeof(e=function(e){switch(typeof e){case"string":return e;case"number":return k(e);case"boolean":return I(e);case"bigint":return T?T(e):"0";case"symbol":return O?O(e):"Symbol()";case"undefined":default:return R(e);case"function":case"object":{if(null===e)return R(e);let t=B(e,"toString");if("function"==typeof t){let r=t(e);return"string"==typeof r?r:R(r)}return R(e)}}}(e)))throw L("dirty is not a string, aborting");if(!n.isSupported)return e;if(ez||tf(r),n.removed=[],"string"==typeof e&&(eJ=!1),eJ){let t=em?em(e):e.nodeName;if("string"==typeof t){let e=ts(t);if(!ek[e]||eR[e])throw L("root node is forbidden and cannot be sanitized in-place")}if(tb(e))throw L("root node is clobbered and cannot be sanitized in-place");tO(e)}else if(tC(e))1===(o=(i=tm("\x3c!----\x3e")).ownerDocument.importNode(e,!0)).nodeType&&"BODY"===o.nodeName||"HTML"===o.nodeName?i=o:i.appendChild(o),tO(o);else{if(!eW&&!eF&&!eG&&-1===e.indexOf("<"))return t&&eV?t.createHTML(e):e;if(!(i=tm(e)))return eW?null:eV?eg:""}i&&e$&&tA(i.firstChild);let u=tg(eJ?e:i);for(;s=u.nextNode();)tx(s),tI(s),t_(s.content)&&tT(s.content);if(eJ)return eF&&ty(e),e;if(eW){if(eF&&ty(i),eH)for(c=eC.call(i.ownerDocument);i.firstChild;)c.appendChild(i.firstChild);else c=i;return(eT.shadowroot||eT.shadowrootmode)&&(c=ex.call(a,c,!0)),c}let l=eG?i.outerHTML:i.innerHTML;return eG&&ek["!doctype"]&&i.ownerDocument&&i.ownerDocument.doctype&&i.ownerDocument.doctype.name&&N(ei,i.ownerDocument.doctype.name)&&(l="<!DOCTYPE "+i.ownerDocument.doctype.name+">\n"+l),eF&&A([K,J,Q],e=>{l=x(l,e," ")}),t&&eV?t.createHTML(l):l},n.setConfig=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};tf(e),ez=!0},n.clearConfig=function(){tc=null,ez=!1},n.isValidAttribute=function(e,t,r){return tc||tf({}),tE(ts(e),ts(t),r)},n.addHook=function(e,t){"function"==typeof t&&g(eE[e],t)},n.removeHook=function(e,t){if(void 0!==t){let r=v(eE[e],t);return -1===r?void 0:y(eE[e],r,1)[0]}return m(eE[e])},n.removeHooks=function(e){eE[e]=[]},n.removeAllHooks=function(){eE=es()},n}();r.d(t,{A:()=>eu})}},i={};function o(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={id:e,exports:{}};return n[e].call(r.exports,r,r.exports,o),r.exports}o.m=n,o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},s=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,o.t=function(e,t){if(1&t&&(e=this(e)),8&t||"object"==typeof e&&e&&(4&t&&e.__esModule||16&t&&"function"==typeof e.then))return e;var r=Object.create(null);o.r(r);var n={};a=a||[null,s({}),s([]),s(s)];for(var i=2&t&&e;("object"==typeof i||"function"==typeof i)&&!~a.indexOf(i);i=s(i))Object.getOwnPropertyNames(i).forEach(t=>{n[t]=()=>e[t]});return n.default=()=>e,o.d(r,n),r},o.d=(e,t,r)=>{var n=(t,r)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,[r]:t[n]})};n(t,"get"),n(r,"value")},o.f={},o.e=e=>Promise.all(Object.keys(o.f).reduce((t,r)=>(o.f[r](e,t),t),[])),o.u=e=>"calendar-"+e+".js?v="+({"defaultVendors-node_modules_mdi_js_mdi_js-node_modules_nextcloud_dialogs_dist_chunks_preview--fca89e":"dec2f8cf11511da8","defaultVendors-node_modules_moment_moment_js":"9929f060fdc15254","defaultVendors-node_modules_nextcloud_dialogs_dist_chunks_ConflictPicker-BwfOiKFa_mjs":"32b362ffa093bb63","defaultVendors-node_modules_nextcloud_dialogs_dist_chunks_FilePicker-DWYoSaVg_mjs-node_module-4c3472":"786882692f20e3b7","defaultVendors-node_modules_nextcloud_dialogs_dist_chunks__plugin-vue_export-helper-1tPrXgE0_-80ce3e":"2ce37ca13fc94ea8","defaultVendors-node_modules_nextcloud_vue_dist_assets_NcDateTimePickerNative-BP6eg8aU_css-nod-ea584e":"6863f4486040e955","defaultVendors-node_modules_nextcloud_vue_dist_chunks_NcColorPicker-CGE4Kei4_mjs":"d53dba8d158d9ae6","defaultVendors-node_modules_nextcloud_vue_dist_chunks_NcDateTimePicker-CK4rhfEB_mjs":"4883fcea72061dfc","defaultVendors-node_modules_nextcloud_vue_dist_chunks_NcTextField_vue_vue_type_script_setup_t-715f22":"526281ea042a03b4","defaultVendors-node_modules_p-queue_dist_index_js-node_modules_nextcloud_vue_dist_chunks_NcDa-5b7740":"0850cd1a0ed17d2f","defaultVendors-node_modules_pinia_dist_pinia_mjs":"15ba2d15a2d0827c","defaultVendors-node_modules_rehype-highlight_index_js":"d72a04625a196a6f","defaultVendors-node_modules_toastify-js_src_toastify_js-node_modules_vue-material-design-icon-dba052":"e48f1b3e8ed9d499","defaultVendors-node_modules_vue-material-design-icons_Check_vue-src_views_ContactsMenuAvailab-e01f8d":"4afee7efd079062f","defaultVendors-node_modules_vue_runtime-core_dist_runtime-core_esm-bundler_js":"2a75d8872e257cf2","defaultVendors-node_modules_vue_runtime-dom_dist_runtime-dom_esm-bundler_js":"512dffa687fad77f",node_modules_moment_locale_af_js:"86d2735d266f4f6c","node_modules_moment_locale_ar-dz_js":"e649493f5197caae","node_modules_moment_locale_ar-kw_js":"6c0f045a8a6888e6","node_modules_moment_locale_ar-ly_js":"8887f3f9a4a7c0dd","node_modules_moment_locale_ar-ma_js":"7d55fc0cc3b0aa59","node_modules_moment_locale_ar-ps_js":"45d0bc5c8de4decd","node_modules_moment_locale_ar-sa_js":"3c45be90a5581249","node_modules_moment_locale_ar-tn_js":"0ba8ab09ebc33198",node_modules_moment_locale_ar_js:"291072bf1cfa1746",node_modules_moment_locale_az_js:"67778f2fa6b18acf",node_modules_moment_locale_be_js:"b2e2ecdc42c9c23f",node_modules_moment_locale_bg_js:"1e2fb8dd3c9f27bf",node_modules_moment_locale_bm_js:"413607917e91112a","node_modules_moment_locale_bn-bd_js":"d7e3c3e2d9862bd0",node_modules_moment_locale_bn_js:"f6b19c5264aaee2a",node_modules_moment_locale_bo_js:"7c2c58a7523682f7",node_modules_moment_locale_br_js:"b25c6aeab58949ba",node_modules_moment_locale_bs_js:"9774cf58e48c2944",node_modules_moment_locale_ca_js:"312a286fb3a287fe",node_modules_moment_locale_cs_js:"37493c7fd52059f6",node_modules_moment_locale_cv_js:"73745bc4c65b20c0",node_modules_moment_locale_cy_js:"dae1715d1efca136",node_modules_moment_locale_da_js:"3f0afd77bc8fcfc4","node_modules_moment_locale_de-at_js":"d09c6820126c2c33","node_modules_moment_locale_de-ch_js":"dc7e48948f2c1b3e",node_modules_moment_locale_de_js:"4e6cedb84165fe80",node_modules_moment_locale_dv_js:"a668cfe3c9d096ea",node_modules_moment_locale_el_js:"3455f8c16bd14b4b","node_modules_moment_locale_en-au_js":"27432b43265c96b3","node_modules_moment_locale_en-ca_js":"ab6901bcbcc4238c","node_modules_moment_locale_en-gb_js":"7ab6a2c8855fb61c","node_modules_moment_locale_en-ie_js":"660c15bee57dce1d","node_modules_moment_locale_en-il_js":"e6ba0d561bd5bd45","node_modules_moment_locale_en-in_js":"27686f968dc39b71","node_modules_moment_locale_en-nz_js":"09f8b2dc88ce75ff","node_modules_moment_locale_en-sg_js":"bc30fdb5dd30f225",node_modules_moment_locale_eo_js:"2b3be10a1f5c41c0","node_modules_moment_locale_es-do_js":"6d861e0dc511ff9b","node_modules_moment_locale_es-mx_js":"c3f891893c5b5048","node_modules_moment_locale_es-us_js":"7632b6e874ea5b6d",node_modules_moment_locale_es_js:"7da343a76b24dbef",node_modules_moment_locale_et_js:"97fdda03b400af44",node_modules_moment_locale_eu_js:"11c6dd7dedb1ea40",node_modules_moment_locale_fa_js:"31c5cf3067e11c23",node_modules_moment_locale_fi_js:"9819f159a8fd0d5d",node_modules_moment_locale_fil_js:"e118acc019da9648",node_modules_moment_locale_fo_js:"0a019658e7f8a636","node_modules_moment_locale_fr-ca_js":"b0ef6b488a6b22e1","node_modules_moment_locale_fr-ch_js":"e084f2233b4cd1ca",node_modules_moment_locale_fr_js:"82d30cbdb868e080",node_modules_moment_locale_fy_js:"5ab67e4aaa55030d",node_modules_moment_locale_ga_js:"e1eaf2723e9ba266",node_modules_moment_locale_gd_js:"0b6d222f6cc66fec",node_modules_moment_locale_gl_js:"83c43a68b226a329","node_modules_moment_locale_gom-deva_js":"08bb332c92035c1e","node_modules_moment_locale_gom-latn_js":"b09968e2408742d3",node_modules_moment_locale_gu_js:"ad8f68195a7923f6",node_modules_moment_locale_he_js:"654a7450ee228b00",node_modules_moment_locale_hi_js:"478d746986db9b58",node_modules_moment_locale_hr_js:"279526ac528c2231",node_modules_moment_locale_hu_js:"7ea1a3c1bbe435b2","node_modules_moment_locale_hy-am_js":"38bb720edcd701dd",node_modules_moment_locale_id_js:"04d97ecfe8ac1673",node_modules_moment_locale_is_js:"eb95ef7d8275cd78","node_modules_moment_locale_it-ch_js":"e6a852fe97698eba",node_modules_moment_locale_it_js:"7ccdb28ca5120dd4",node_modules_moment_locale_ja_js:"0016a73666b3102d",node_modules_moment_locale_jv_js:"60331c354be5ea18",node_modules_moment_locale_ka_js:"3ee760ff97e508a4",node_modules_moment_locale_kk_js:"73045daaa99cb0ce",node_modules_moment_locale_km_js:"f145d8beefa96c93",node_modules_moment_locale_kn_js:"3e74b24a6d3dd5bd",node_modules_moment_locale_ko_js:"28170b354abf9f96","node_modules_moment_locale_ku-kmr_js":"d2681a93c2cc5a90",node_modules_moment_locale_ku_js:"319cbb0cce9ad188",node_modules_moment_locale_ky_js:"3c33567ef6fc8862",node_modules_moment_locale_lb_js:"84abf039e640603e",node_modules_moment_locale_lo_js:"0c29c04b426a0be5",node_modules_moment_locale_lt_js:"95cfea83039b363b",node_modules_moment_locale_lv_js:"f1760990cc53abee",node_modules_moment_locale_me_js:"702acfec2b34a1d3",node_modules_moment_locale_mi_js:"96c9af6adb36a5bb",node_modules_moment_locale_mk_js:"6348eeb59479d00e",node_modules_moment_locale_ml_js:"78fcc3f63e15b8ca",node_modules_moment_locale_mn_js:"3b17bbad5151d428",node_modules_moment_locale_mr_js:"54317da1b322f371","node_modules_moment_locale_ms-my_js":"d3ff81ce3ee0dada",node_modules_moment_locale_ms_js:"421487b86cc8fe16",node_modules_moment_locale_mt_js:"e52e678e072976a2",node_modules_moment_locale_my_js:"cc60c5d80f9af778",node_modules_moment_locale_nb_js:"af9362813cb82f5b",node_modules_moment_locale_ne_js:"830ea2fe538c776b","node_modules_moment_locale_nl-be_js":"7d01754ba1b42950",node_modules_moment_locale_nl_js:"6e9a0ea0019537ee",node_modules_moment_locale_nn_js:"9ea7d8391ad3edc0","node_modules_moment_locale_oc-lnc_js":"1df0f16716ba4432","node_modules_moment_locale_pa-in_js":"b366fe34daacbcd5",node_modules_moment_locale_pl_js:"24c2826ab30b3779","node_modules_moment_locale_pt-br_js":"f5e027d0c79ef428",node_modules_moment_locale_pt_js:"4b54542c4d206be9",node_modules_moment_locale_ro_js:"92247fad4ec08268",node_modules_moment_locale_ru_js:"6e6718625bfdb837",node_modules_moment_locale_sd_js:"06879353a88997a7",node_modules_moment_locale_se_js:"77ff599074b9b145",node_modules_moment_locale_si_js:"5b102f2e46437fb7",node_modules_moment_locale_sk_js:"f1d6276aee922539",node_modules_moment_locale_sl_js:"33d5836d7fda2fb4",node_modules_moment_locale_sq_js:"92c65ebfe7824378","node_modules_moment_locale_sr-cyrl_js":"9bc37282a59e3ff8",node_modules_moment_locale_sr_js:"05df3a32848eb6e3",node_modules_moment_locale_ss_js:"5d6e062c44751194",node_modules_moment_locale_sv_js:"6f9947ea2e0645ae",node_modules_moment_locale_sw_js:"b09a962aa265af21",node_modules_moment_locale_ta_js:"e640e38459413a1b",node_modules_moment_locale_te_js:"91964f8fdc19b9d9",node_modules_moment_locale_tet_js:"1f402e9e3a8b9b62",node_modules_moment_locale_tg_js:"ba6f53a07239d84e",node_modules_moment_locale_th_js:"8995813325432043",node_modules_moment_locale_tk_js:"5966972b1db9c7e2","node_modules_moment_locale_tl-ph_js":"ed39ed04510fa495",node_modules_moment_locale_tlh_js:"ad95f3b41cdfd309",node_modules_moment_locale_tr_js:"5a910ff858c7acbd",node_modules_moment_locale_tzl_js:"d042d2b13967ad02","node_modules_moment_locale_tzm-latn_js":"d3356ab096c14bce",node_modules_moment_locale_tzm_js:"9b4b62168a187471","node_modules_moment_locale_ug-cn_js":"26486cd9932b8e25",node_modules_moment_locale_uk_js:"be97fc312526e25b",node_modules_moment_locale_ur_js:"c01fff3c70c64be2","node_modules_moment_locale_uz-latn_js":"14f453eb83d3a870",node_modules_moment_locale_uz_js:"1ef987991ec70727",node_modules_moment_locale_vi_js:"b7ecf2b9060f52a0","node_modules_moment_locale_x-pseudo_js":"3d4c0ca075ce0948",node_modules_moment_locale_yo_js:"c140c2f677eadc61","node_modules_moment_locale_zh-cn_js":"851353b14eac9ecc","node_modules_moment_locale_zh-hk_js":"bcbf57bff5b7aaa6","node_modules_moment_locale_zh-mo_js":"0a533659c8dabfaa","node_modules_moment_locale_zh-tw_js":"df5bd2bdd26ef7de","node_modules_nextcloud_dialogs_dist_chunks_PublicAuthPrompt-CxPJPSnh_mjs":"807e285e04cb058f",node_modules_nextcloud_vue_dist_components_NcColorPicker_index_mjs:"8ea6bc4ee6ec93fb",node_modules_nextcloud_vue_dist_components_NcDateTimePicker_index_mjs:"0b80a1c1df8e3c8c",node_modules_nextcloud_vue_dist_components_NcSelect_index_mjs:"71a8e56e2b732883","node_modules_vue_dist_vue_runtime_esm-bundler_js":"cb90178920c6efff"})[e],o.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})(),o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),c={},o.l=function(e,t,r,n){if(c[e])return void c[e].push(t);if(void 0!==r)for(var i,a,s=document.getElementsByTagName("script"),u=0;u<s.length;u++){var l=s[u];if(l.getAttribute("src")==e||l.getAttribute("data-rspack")=="calendar:"+r){i=l;break}}i||(a=!0,(i=document.createElement("script")).timeout=120,o.nc&&i.setAttribute("nonce",o.nc),i.setAttribute("data-rspack","calendar:"+r),i.src=e),c[e]=[t];var f=function(t,r){i.onerror=i.onload=null,clearTimeout(d);var n=c[e];if(delete c[e],i.parentNode&&i.parentNode.removeChild(i),n&&n.forEach(function(e){return e(r)}),t)return t(r)},d=setTimeout(f.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=f.bind(null,i.onerror),i.onload=f.bind(null,i.onload),a&&document.head.appendChild(i)},o.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),o.nc=void 0,o.g.importScripts&&(u=o.g.location+"");var a,s,c,u,l=o.g.document;if(!u&&l&&(l.currentScript&&"SCRIPT"===l.currentScript.tagName.toUpperCase()&&(u=l.currentScript.src),!u)){var f=l.getElementsByTagName("script");if(f.length)for(var d=f.length-1;d>-1&&(!u||!/^http(s?):/.test(u));)u=f[d--].src}if(!u)throw Error("Automatic publicPath is not supported in this browser");o.p=u=u.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),e={"contacts-menu":0},o.f.j=function(t,r){var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var i=new Promise((r,i)=>n=e[t]=[r,i]);r.push(n[2]=i);var a=o.p+o.u(t),s=Error();o.l(a,function(r){if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var i=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+i+": "+a+")",s.name="ChunkLoadError",s.type=i,s.request=a,n[1](s)}},"chunk-"+t,t)}},t=(t,r)=>{var n,i,[a,s,c]=r,u=0;if(a.some(t=>0!==e[t])){for(n in s)o.o(s,n)&&(o.m[n]=s[n]);c&&c(o)}for(t&&t(r);u<a.length;u++)i=a[u],o.o(e,i)&&e[i]&&e[i][0](),e[i]=0},(r=self.rspackChunkcalendar=self.rspackChunkcalendar||[]).forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r)),o(37153)})(); //# sourceMappingURL=calendar-contacts-menu.js.map?v=e7e92fa5f2e392a7
Save File
Cancel