Files
therinaldos.com/wedding-pics/apps/text/js/text-init.js
T
david ef1ff240d4
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s
migrate therinaldos.com data
2024-05-05 15:50:45 -04:00

3 lines
604 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*! For license information please see text-init.js.LICENSE.txt */
(()=>{var e,n,r,a,s={22200:(e,t,n)=>{"use strict";var r=n(57888),a=void 0,s=[];r.subscribe("csrf-token-update",(function(e){a=e.token,s.forEach((function(t){try{t(e.token)}catch(e){console.error("error updating CSRF token observer",e)}}))}));var o=function(e,t){return e?e.getAttribute(t):null},i=void 0;t.getCurrentUser=function(){if(void 0!==i)return i;var e=null===document||void 0===document?void 0:document.getElementsByTagName("head")[0];if(!e)return null;var t=o(e,"data-user");return i=null===t?null:{uid:t,displayName:o(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin}},t.getRequestToken=function(){if(void 0===a){var e=null===document||void 0===document?void 0:document.getElementsByTagName("head")[0];a=e?e.getAttribute("data-requesttoken"):null}return a},t.onRequestTokenUpdate=function(e){s.push(e)}},62556:(e,t,n)=>{"use strict";t.Kc=function(e){return new r.default(e)};var r=s(n(71957)),a=s(n(48971));function s(e){return e&&e.__esModule?e:{default:e}}function o(e,t){Object.keys(e).filter((e=>!t||t(e))).map(e.removeItem.bind(e))}},48971:(e,t)=>{"use strict";function n(e,t,n){return(t=function(e){var t=function(e,t){if("object"!=typeof e||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;class r{constructor(e,t,a){n(this,"scope",void 0),n(this,"wrapped",void 0),this.scope=`${a?r.GLOBAL_SCOPE_PERSISTENT:r.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))}}t.default=r,n(r,"GLOBAL_SCOPE_VOLATILE","nextcloud_vol"),n(r,"GLOBAL_SCOPE_PERSISTENT","nextcloud_per")},71957:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var r,a=(r=n(48971))&&r.__esModule?r:{default:r};function s(e,t,n){return(t=function(e){var t=function(e,t){if("object"!=typeof e||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==typeof t?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}t.default=class{constructor(e){s(this,"appId",void 0),s(this,"persisted",!1),s(this,"clearedOnLogout",!1),this.appId=e}persist(){let e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this.persisted=e,this}clearOnLogout(){let e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return this.clearedOnLogout=e,this}build(){return new a.default(this.appId,this.persisted?window.localStorage:window.sessionStorage,!this.clearedOnLogout)}}},67737:(e,t,n)=>{const r=n(85503),{MAX_LENGTH:a,MAX_SAFE_INTEGER:s}=n(35519),{safeRe:o,t:i}=n(88238),l=n(74433),{compareIdentifiers:u}=n(63242);class c{constructor(e,t){if(t=l(t),e instanceof c){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease)return e;e=e.version}else if("string"!=typeof e)throw new TypeError(`Invalid version. Must be a string. Got type "${typeof e}".`);if(e.length>a)throw new TypeError(`version is longer than ${a} characters`);r("SemVer",e,t),this.options=t,this.loose=!!t.loose,this.includePrerelease=!!t.includePrerelease;const n=e.trim().match(t.loose?o[i.LOOSE]:o[i.FULL]);if(!n)throw new TypeError(`Invalid Version: ${e}`);if(this.raw=e,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>s||this.major<0)throw new TypeError("Invalid major version");if(this.minor>s||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>s||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map((e=>{if(/^[0-9]+$/.test(e)){const t=+e;if(t>=0&&t<s)return t}return e})):this.prerelease=[],this.build=n[5]?n[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(e){if(r("SemVer.compare",this.version,this.options,e),!(e instanceof c)){if("string"==typeof e&&e===this.version)return 0;e=new c(e,this.options)}return e.version===this.version?0:this.compareMain(e)||this.comparePre(e)}compareMain(e){return e instanceof c||(e=new c(e,this.options)),u(this.major,e.major)||u(this.minor,e.minor)||u(this.patch,e.patch)}comparePre(e){if(e instanceof c||(e=new c(e,this.options)),this.prerelease.length&&!e.prerelease.length)return-1;if(!this.prerelease.length&&e.prerelease.length)return 1;if(!this.prerelease.length&&!e.prerelease.length)return 0;let t=0;do{const n=this.prerelease[t],a=e.prerelease[t];if(r("prerelease compare",t,n,a),void 0===n&&void 0===a)return 0;if(void 0===a)return 1;if(void 0===n)return-1;if(n!==a)return u(n,a)}while(++t)}compareBuild(e){e instanceof c||(e=new c(e,this.options));let t=0;do{const n=this.build[t],a=e.build[t];if(r("prerelease compare",t,n,a),void 0===n&&void 0===a)return 0;if(void 0===a)return 1;if(void 0===n)return-1;if(n!==a)return u(n,a)}while(++t)}inc(e,t,n){switch(e){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",t,n);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",t,n);break;case"prepatch":this.prerelease.length=0,this.inc("patch",t,n),this.inc("pre",t,n);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",t,n),this.inc("pre",t,n);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":{const e=Number(n)?1:0;if(!t&&!1===n)throw new Error("invalid increment argument: identifier is empty");if(0===this.prerelease.length)this.prerelease=[e];else{let r=this.prerelease.length;for(;--r>=0;)"number"==typeof this.prerelease[r]&&(this.prerelease[r]++,r=-2);if(-1===r){if(t===this.prerelease.join(".")&&!1===n)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(e)}}if(t){let r=[t,e];!1===n&&(r=[t]),0===u(this.prerelease[0],t)?isNaN(this.prerelease[1])&&(this.prerelease=r):this.prerelease=r}break}default:throw new Error(`invalid increment argument: ${e}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}e.exports=c},92426:(e,t,n)=>{const r=n(67737);e.exports=(e,t)=>new r(e,t).major},67488:(e,t,n)=>{const r=n(67737);e.exports=(e,t,n=!1)=>{if(e instanceof r)return e;try{return new r(e,t)}catch(e){if(!n)return null;throw e}}},77907:(e,t,n)=>{const r=n(67488);e.exports=(e,t)=>{const n=r(e,t);return n?n.version:null}},35519:e=>{const t=Number.MAX_SAFE_INTEGER||9007199254740991;e.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:16,MAX_SAFE_BUILD_LENGTH:250,MAX_SAFE_INTEGER:t,RELEASE_TYPES:["major","premajor","minor","preminor","patch","prepatch","prerelease"],SEMVER_SPEC_VERSION:"2.0.0",FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},85503:(e,t,n)=>{var r=n(34155);const a="object"==typeof r&&r.env&&r.env.NODE_DEBUG&&/\bsemver\b/i.test(r.env.NODE_DEBUG)?(...e)=>console.error("SEMVER",...e):()=>{};e.exports=a},63242:e=>{const t=/^[0-9]+$/,n=(e,n)=>{const r=t.test(e),a=t.test(n);return r&&a&&(e=+e,n=+n),e===n?0:r&&!a?-1:a&&!r?1:e<n?-1:1};e.exports={compareIdentifiers:n,rcompareIdentifiers:(e,t)=>n(t,e)}},74433:e=>{const t=Object.freeze({loose:!0}),n=Object.freeze({});e.exports=e=>e?"object"!=typeof e?t:e:n},88238:(e,t,n)=>{const{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:a}=n(35519),s=n(85503),o=(t=e.exports={}).re=[],i=t.safeRe=[],l=t.src=[],u=t.t={};let c=0;const p="[a-zA-Z0-9-]",d=[["\\s",1],["\\d",r],[p,a]],f=(e,t,n)=>{const r=(e=>{for(const[t,n]of d)e=e.split(`${t}*`).join(`${t}{0,${n}}`).split(`${t}+`).join(`${t}{1,${n}}`);return e})(t),a=c++;s(e,a,t),u[e]=a,l[a]=t,o[a]=new RegExp(t,n?"g":void 0),i[a]=new RegExp(r,n?"g":void 0)};f("NUMERICIDENTIFIER","0|[1-9]\\d*"),f("NUMERICIDENTIFIERLOOSE","\\d+"),f("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${p}*`),f("MAINVERSION",`(${l[u.NUMERICIDENTIFIER]})\\.(${l[u.NUMERICIDENTIFIER]})\\.(${l[u.NUMERICIDENTIFIER]})`),f("MAINVERSIONLOOSE",`(${l[u.NUMERICIDENTIFIERLOOSE]})\\.(${l[u.NUMERICIDENTIFIERLOOSE]})\\.(${l[u.NUMERICIDENTIFIERLOOSE]})`),f("PRERELEASEIDENTIFIER",`(?:${l[u.NUMERICIDENTIFIER]}|${l[u.NONNUMERICIDENTIFIER]})`),f("PRERELEASEIDENTIFIERLOOSE",`(?:${l[u.NUMERICIDENTIFIERLOOSE]}|${l[u.NONNUMERICIDENTIFIER]})`),f("PRERELEASE",`(?:-(${l[u.PRERELEASEIDENTIFIER]}(?:\\.${l[u.PRERELEASEIDENTIFIER]})*))`),f("PRERELEASELOOSE",`(?:-?(${l[u.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${l[u.PRERELEASEIDENTIFIERLOOSE]})*))`),f("BUILDIDENTIFIER",`${p}+`),f("BUILD",`(?:\\+(${l[u.BUILDIDENTIFIER]}(?:\\.${l[u.BUILDIDENTIFIER]})*))`),f("FULLPLAIN",`v?${l[u.MAINVERSION]}${l[u.PRERELEASE]}?${l[u.BUILD]}?`),f("FULL",`^${l[u.FULLPLAIN]}$`),f("LOOSEPLAIN",`[v=\\s]*${l[u.MAINVERSIONLOOSE]}${l[u.PRERELEASELOOSE]}?${l[u.BUILD]}?`),f("LOOSE",`^${l[u.LOOSEPLAIN]}$`),f("GTLT","((?:<|>)?=?)"),f("XRANGEIDENTIFIERLOOSE",`${l[u.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),f("XRANGEIDENTIFIER",`${l[u.NUMERICIDENTIFIER]}|x|X|\\*`),f("XRANGEPLAIN",`[v=\\s]*(${l[u.XRANGEIDENTIFIER]})(?:\\.(${l[u.XRANGEIDENTIFIER]})(?:\\.(${l[u.XRANGEIDENTIFIER]})(?:${l[u.PRERELEASE]})?${l[u.BUILD]}?)?)?`),f("XRANGEPLAINLOOSE",`[v=\\s]*(${l[u.XRANGEIDENTIFIERLOOSE]})(?:\\.(${l[u.XRANGEIDENTIFIERLOOSE]})(?:\\.(${l[u.XRANGEIDENTIFIERLOOSE]})(?:${l[u.PRERELEASELOOSE]})?${l[u.BUILD]}?)?)?`),f("XRANGE",`^${l[u.GTLT]}\\s*${l[u.XRANGEPLAIN]}$`),f("XRANGELOOSE",`^${l[u.GTLT]}\\s*${l[u.XRANGEPLAINLOOSE]}$`),f("COERCE",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?(?:$|[^\\d])`),f("COERCERTL",l[u.COERCE],!0),f("LONETILDE","(?:~>?)"),f("TILDETRIM",`(\\s*)${l[u.LONETILDE]}\\s+`,!0),t.tildeTrimReplace="$1~",f("TILDE",`^${l[u.LONETILDE]}${l[u.XRANGEPLAIN]}$`),f("TILDELOOSE",`^${l[u.LONETILDE]}${l[u.XRANGEPLAINLOOSE]}$`),f("LONECARET","(?:\\^)"),f("CARETTRIM",`(\\s*)${l[u.LONECARET]}\\s+`,!0),t.caretTrimReplace="$1^",f("CARET",`^${l[u.LONECARET]}${l[u.XRANGEPLAIN]}$`),f("CARETLOOSE",`^${l[u.LONECARET]}${l[u.XRANGEPLAINLOOSE]}$`),f("COMPARATORLOOSE",`^${l[u.GTLT]}\\s*(${l[u.LOOSEPLAIN]})$|^$`),f("COMPARATOR",`^${l[u.GTLT]}\\s*(${l[u.FULLPLAIN]})$|^$`),f("COMPARATORTRIM",`(\\s*)${l[u.GTLT]}\\s*(${l[u.LOOSEPLAIN]}|${l[u.XRANGEPLAIN]})`,!0),t.comparatorTrimReplace="$1$2$3",f("HYPHENRANGE",`^\\s*(${l[u.XRANGEPLAIN]})\\s+-\\s+(${l[u.XRANGEPLAIN]})\\s*$`),f("HYPHENRANGELOOSE",`^\\s*(${l[u.XRANGEPLAINLOOSE]})\\s+-\\s+(${l[u.XRANGEPLAINLOOSE]})\\s*$`),f("STAR","(<|>)?=?\\s*\\*"),f("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),f("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},71356:(e,t,n)=>{"use strict";n(69070),n(32165),n(66992),n(78783),n(33948),Object.defineProperty(t,"__esModule",{value:!0}),t.ConsoleLogger=void 0,t.buildConsoleLogger=function(e){return new i(e)},n(19601),n(96649),n(96078),n(82526),n(41817),n(41539),n(9653);var r=n(20006);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,o(r.key),r)}}function o(e){var t=function(e,t){if("object"!==a(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===a(t)?t:String(t)}var i=function(){function e(t){var n,r,a;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),n=this,a=void 0,(r=o(r="context"))in n?Object.defineProperty(n,r,{value:a,enumerable:!0,configurable:!0,writable:!0}):n[r]=a,this.context=t||{}}var t,n,i;return t=e,(n=[{key:"formatMessage",value:function(e,t,n){var a="["+r.LogLevel[t].toUpperCase()+"] ";return n&&n.app&&(a+=n.app+": "),"string"==typeof e?a+e:(a+="Unexpected ".concat(e.name),e.message&&(a+=' "'.concat(e.message,'"')),t===r.LogLevel.Debug&&e.stack&&(a+="\n\nStack trace:\n".concat(e.stack)),a)}},{key:"log",value:function(e,t,n){var s,o;if(!("number"==typeof(null===(s=this.context)||void 0===s?void 0:s.level)&&e<(null===(o=this.context)||void 0===o?void 0:o.level)))switch("object"===a(t)&&void 0===(null==n?void 0:n.error)&&(n.error=t),e){case r.LogLevel.Debug:console.debug(this.formatMessage(t,r.LogLevel.Debug,n),n);break;case r.LogLevel.Info:console.info(this.formatMessage(t,r.LogLevel.Info,n),n);break;case r.LogLevel.Warn:console.warn(this.formatMessage(t,r.LogLevel.Warn,n),n);break;case r.LogLevel.Error:console.error(this.formatMessage(t,r.LogLevel.Error,n),n);break;case r.LogLevel.Fatal:default:console.error(this.formatMessage(t,r.LogLevel.Fatal,n),n)}}},{key:"debug",value:function(e,t){this.log(r.LogLevel.Debug,e,Object.assign({},this.context,t))}},{key:"info",value:function(e,t){this.log(r.LogLevel.Info,e,Object.assign({},this.context,t))}},{key:"warn",value:function(e,t){this.log(r.LogLevel.Warn,e,Object.assign({},this.context,t))}},{key:"error",value:function(e,t){this.log(r.LogLevel.Error,e,Object.assign({},this.context,t))}},{key:"fatal",value:function(e,t){this.log(r.LogLevel.Fatal,e,Object.assign({},this.context,t))}}])&&s(t.prototype,n),i&&s(t,i),Object.defineProperty(t,"prototype",{writable:!1}),e}();t.ConsoleLogger=i},55058:(e,t,n)=>{"use strict";n(69070),n(32165),n(66992),n(78783),n(33948),Object.defineProperty(t,"__esModule",{value:!0}),t.LoggerBuilder=void 0,n(96649),n(96078),n(82526),n(41817),n(41539),n(9653);var r=n(22200),a=n(20006);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function o(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,l(r.key),r)}}function i(e,t,n){return(t=l(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function l(e){var t=function(e,t){if("object"!==s(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t||"default");if("object"!==s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"===s(t)?t:String(t)}var u=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),i(this,"context",void 0),i(this,"factory",void 0),this.context={},this.factory=t}var t,n,s;return t=e,(n=[{key:"setApp",value:function(e){return this.context.app=e,this}},{key:"setLogLevel",value:function(e){return this.context.level=e,this}},{key:"setUid",value:function(e){return this.context.uid=e,this}},{key:"detectUser",value:function(){var e=(0,r.getCurrentUser)();return null!==e&&(this.context.uid=e.uid),this}},{key:"detectLogLevel",value:function(){var e=this;return function t(){var n,r;"complete"===document.readyState||"interactive"===document.readyState?(e.context.level=null!==(n=null===(r=window._oc_config)||void 0===r?void 0:r.loglevel)&&void 0!==n?n:a.LogLevel.Warn,window._oc_debug&&(e.context.level=a.LogLevel.Debug),document.removeEventListener("readystatechange",t)):document.addEventListener("readystatechange",t)}(),this}},{key:"build",value:function(){return void 0===this.context.level&&this.detectLogLevel(),this.factory(this.context)}}])&&o(t.prototype,n),s&&o(t,s),Object.defineProperty(t,"prototype",{writable:!1}),e}();t.LoggerBuilder=u},20006:(e,t,n)=>{"use strict";n(69070),Object.defineProperty(t,"__esModule",{value:!0}),t.LogLevel=void 0;var r=function(e){return e[e.Debug=0]="Debug",e[e.Info=1]="Info",e[e.Warn=2]="Warn",e[e.Error=3]="Error",e[e.Fatal=4]="Fatal",e}({});t.LogLevel=r},17499:(e,t,n)=>{"use strict";n(69070),t.IY=o;var r=n(71356),a=n(55058),s=n(20006);function o(){return new a.LoggerBuilder(r.buildConsoleLogger)}},65358:(e,t,n)=>{"use strict";function r(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];if(arguments.length<1)return"";var r=t.filter((function(e){return e.length>0}));if(r.length<1)return"";var a=r[r.length-1],s="/"===r[0].charAt(0),o="/"===a.charAt(a.length-1),i=r.reduce((function(e,t){return e.concat(t.split("/"))}),[]),l=!s,u=i.reduce((function(e,t){return""===t?e:l?(l=!1,e+t):e+"/"+t}),"");return o?u+"/":u}t.Ec=function(e){if(!e)return e;return e.split("/").map(encodeURIComponent).join("/")},n(21249),n(74916),n(23123),n(15306),n(57327),n(85827),n(92222)},79753:(e,t)=>{"use strict";t.kZ=t.nu=t.c=t.Ii=void 0;t.kZ=(e,t)=>r(e,"",t);t.c=e=>window.location.protocol+"//"+window.location.host+(e=>a()+"/remote.php/"+e)(e);t.Ii=(e,t,r)=>{const s=1===Object.assign({ocsVersion:2},r||{}).ocsVersion?1:2;return window.location.protocol+"//"+window.location.host+a()+"/ocs/v"+s+".php"+n(e,t,r)};const n=(e,t,n)=>{const r=Object.assign({escape:!0},n||{});return"/"!==e.charAt(0)&&(e="/"+e),a=(a=t||{})||{},e.replace(/{([^{}]*)}/g,(function(e,t){var n=a[t];return r.escape?"string"==typeof n||"number"==typeof n?encodeURIComponent(n.toString()):encodeURIComponent(e):"string"==typeof n||"number"==typeof n?n.toString():e}));var a};t.nu=(e,t,r)=>{const s=Object.assign({noRewrite:!1},r||{});return!0!==window?.OC?.config?.modRewriteWorking||s.noRewrite?a()+"/index.php"+n(e,t,r):a()+n(e,t,r)};const r=(e,t,n)=>{const r=-1!==window?.OC?.coreApps?.indexOf(e);let s=a();return"php"!==n.substring(n.length-3)||r?"php"===n.substring(n.length-3)||r?(s+="settings"!==e&&"core"!==e&&"search"!==e||"ajax"!==t?"/":"/index.php/",r||(s+="apps/"),""!==e&&(s+=e+="/"),t&&(s+=t+"/"),s+=n):(s=window?.OC?.appswebroots?.[e],t&&(s+="/"+t+"/"),"/"!==s.substring(s.length-1)&&(s+="/"),s+=n):(s+="/index.php/apps/"+e,"index.php"!==n&&(s+="/",t&&(s+=encodeURI(t+"/")),s+=n)),s};const a=()=>window?.OC?.webroot||""},94091:(e,n,r)=>{"use strict";r.d(n,{Lz:()=>f,U3:()=>h,t_:()=>v});var a=r(69183),s=r(5656),o=(r(79753),r(43554)),i=(r(74411),r(25030)),l=r(77958),u=r(64024),c=r(47845),p=r(43935),d=r(19611);const f=function(e,t){const n=e.split("/"),r=t.split("/");for(n.pop();n[0]===r[0];)if(n.shift(),r.shift(),0===n.length&&0===r.length)return".";const a=n.fill("..").concat(r),s=t.split("/");return a.length<s.length?a.join("/"):t};let m=!1;const h=()=>{const e=t("text","Readme")+"."+(0,o.j)("text","default_file_extension");(0,s.cd)({id:"rich-workspace-init",displayName:t("text","Add description"),enabled:e=>!Number(e.attributes["rich-workspace-file"])&&0!=(e.permissions&s.y3.CREATE),iconSvgInline:d,async handler(n,r){var o,i;const p=r.map((e=>e.basename));if(p.includes(e))return void(0,u.x2)(t("text",'"{name}" already exist!',{name:e}));const d=n.encodedSource+"/"+encodeURIComponent(e),f=await(0,c.Z)({method:"PUT",url:d,headers:{Overwrite:"F"}}),h=parseInt(f.headers["oc-fileid"]),g=new s.$B({source:n.source+"/"+encodeURIComponent(e),id:h,mtime:new Date,mime:"text/markdown",owner:(null===(o=(0,l.ts)())||void 0===o?void 0:o.uid)||null,permissions:s.y3.ALL,root:(null==n?void 0:n.root)||"/files/"+(null===(i=(0,l.ts)())||void 0===i?void 0:i.uid)});(0,u.s$)(t("text",'Created "{name}"',{name:e})),0===p.length&&(m=g),(0,a.j8)("files:node:created",g)}})};let g=null;const v=new s.h4({id:"workspace",order:10,enabled:(e,t)=>"files"===t.id,async render(e,t,n){g&&(g.$destroy(),g=null);const a=!!t.attributes["rich-workspace-file"]||!!m,s=m?(0,p.dirname)(m.path):t.path,o=m?"":t.attributes["rich-workspace"];m=!1;const{default:l}=await Promise.all([r.e("mermaid"),r.e("vendors-node_modules_nextcloud_vue_dist_index_mjs"),r.e("vendors-node_modules_braintree_sanitize-url_dist_index_js-node_modules_quartzy_markdown-it-me-01b328"),r.e("src_extensions_index_js-src_components_Editor_EditorOutline_vue-data_image_svg_xml_3csvg_20xm-1ac8cb"),r.e("src_views_RichWorkspace_vue-node_modules_nextcloud_vue_dist_chunks_emoji-tllD0Rvt_mjs-node_mo-23061b")]).then(r.bind(r,7444));Promise.resolve().then(r.bind(r,20144)).then((t=>{e.id="files-workspace-wrapper";const n=t.default;n.prototype.t=window.t,n.prototype.n=window.n,n.prototype.OCA=window.OCA;const r=n.extend(l);g=new r({propsData:{path:s,hasRichWorkspace:a,content:o},store:i.default}).$mount(e)}))},updated(e,t){m=!1;const n=!!e.attributes["rich-workspace-file"];g.path=e.path,g.hasRichWorkspace=n,g.content=e.attributes["rich-workspace"]}})},74411:(e,t,n)=>{"use strict";var r,a;const s=["text/plain","application/cmd","application/x-empty","application/x-msdos-program","application/javascript","application/json","application/x-perl","application/x-php","application/x-tex","application/xml","application/yaml","text/asciidoc","text/css","text/html","text/org","text/x-c","text/x-c++src","text/x-h","text/x-java-source","text/x-ldif","text/x-python","text/x-shellscript"];null!==(r=OC.appswebroots)&&void 0!==r&&r.richdocuments||null!==(a=OC.appswebroots)&&void 0!==a&&a.onlyoffice||s.push("text/csv")},25030:(e,t,n)=>{"use strict";n.d(t,{default:()=>b,D:()=>y});var r=n(20144),a=n(20629),s=n(62556),o=n(79753),i=n(47845);const l="SET_VIEW_WIDTH",u="SET_SHOW_AUTHOR_ANNOTATIONS",c="SET_CURRENT_SESSION",p="SET_HEADINGS",d="SET_ATTACHMENT_LIST";var f=n(20296),m=n.n(f);const h=()=>document.documentElement.clientWidth,g=e=>{let{commit:t}=e;const n=m()((()=>{t("text/".concat(l),h())}),100);window.addEventListener("resize",n)},v=(0,s.Kc)("text").persist().build();r.default.use(a.ZP);const y={state:{showAuthorAnnotations:"true"===v.getItem("showAuthorAnnotations"),currentSession:v.getItem("currentSession"),viewWidth:h(),headings:Object.freeze([]),attachmentList:[]},getters:{imageAttachments:e=>e.attachmentList.filter((e=>e.isImage)),findAttachment:e=>t=>e.attachmentList.find((e=>e.name===t))},mutations:{[l](e,t){e.viewWidth=t},[u](e,t){e.showAuthorAnnotations=t,v.setItem("showAuthorAnnotations",""+t)},[c](e,t){e.currentSession=t,v.setItem("currentSession",t)},[p](e,t){if(e.headings.length!==t.length)return void(e.headings=Object.freeze(t));const n=e.headings,r=t.map(((e,t)=>{const r=n[t].level;return Object.freeze({...e,previous:r})}));e.headings=Object.freeze(r)},[d](e,t){e.attachmentList=t}},actions:{setShowAuthorAnnotations(e,t){let{commit:n}=e;n(u,t)},setCurrentSession(e,t){let{commit:n}=e;n(c,t)},setHeadings(e,t){let{commit:n}=e;n(p,t)},async setAttachmentList(e,t){var n,r,a,s;let{commit:l,state:u}=e,{documentId:c,shareToken:p}=t;const f=await i.Z.post((0,o.nu)("/apps/text/attachments"),{documentId:null!==(n=null===(r=u.currentSession)||void 0===r?void 0:r.documentId)&&void 0!==n?n:c,sessionId:null===(a=u.currentSession)||void 0===a?void 0:a.id,sessionToken:null===(s=u.currentSession)||void 0===s?void 0:s.token,shareToken:p});l(d,f.data)}}},b=new a.yh({plugins:[g],modules:{text:{namespaced:!0,...y}}})},79742:(e,t)=>{"use strict";t.byteLength=function(e){var t=i(e),n=t[0],r=t[1];return 3*(n+r)/4-r},t.toByteArray=function(e){var t,n,s=i(e),o=s[0],l=s[1],u=new a(function(e,t,n){return 3*(t+n)/4-n}(0,o,l)),c=0,p=l>0?o-4:o;for(n=0;n<p;n+=4)t=r[e.charCodeAt(n)]<<18|r[e.charCodeAt(n+1)]<<12|r[e.charCodeAt(n+2)]<<6|r[e.charCodeAt(n+3)],u[c++]=t>>16&255,u[c++]=t>>8&255,u[c++]=255&t;2===l&&(t=r[e.charCodeAt(n)]<<2|r[e.charCodeAt(n+1)]>>4,u[c++]=255&t);1===l&&(t=r[e.charCodeAt(n)]<<10|r[e.charCodeAt(n+1)]<<4|r[e.charCodeAt(n+2)]>>2,u[c++]=t>>8&255,u[c++]=255&t);return u},t.fromByteArray=function(e){for(var t,r=e.length,a=r%3,s=[],o=16383,i=0,u=r-a;i<u;i+=o)s.push(l(e,i,i+o>u?u:i+o));1===a?(t=e[r-1],s.push(n[t>>2]+n[t<<4&63]+"==")):2===a&&(t=(e[r-2]<<8)+e[r-1],s.push(n[t>>10]+n[t>>4&63]+n[t<<2&63]+"="));return s.join("")};for(var n=[],r=[],a="undefined"!=typeof Uint8Array?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=s[o],r[s.charCodeAt(o)]=o;function i(e){var t=e.length;if(t%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var n=e.indexOf("=");return-1===n&&(n=t),[n,n===t?0:4-n%4]}function l(e,t,r){for(var a,s,o=[],i=t;i<r;i+=3)a=(e[i]<<16&16711680)+(e[i+1]<<8&65280)+(255&e[i+2]),o.push(n[(s=a)>>18&63]+n[s>>12&63]+n[s>>6&63]+n[63&s]);return o.join("")}r["-".charCodeAt(0)]=62,r["_".charCodeAt(0)]=63},48764:(e,t,n)=>{"use strict";var r=n(79742),a=n(80645);t.lW=i,t.h2=50;var s=2147483647;function o(e){if(e>s)throw new RangeError('The value "'+e+'" is invalid for option "size"');var t=new Uint8Array(e);return t.__proto__=i.prototype,t}function i(e,t,n){if("number"==typeof e){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return c(e)}return l(e,t,n)}function l(e,t,n){if("string"==typeof e)return function(e,t){"string"==typeof t&&""!==t||(t="utf8");if(!i.isEncoding(t))throw new TypeError("Unknown encoding: "+t);var n=0|f(e,t),r=o(n),a=r.write(e,t);a!==n&&(r=r.slice(0,a));return r}(e,t);if(ArrayBuffer.isView(e))return p(e);if(null==e)throw TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e);if($(e,ArrayBuffer)||e&&$(e.buffer,ArrayBuffer))return function(e,t,n){if(t<0||e.byteLength<t)throw new RangeError('"offset" is outside of buffer bounds');if(e.byteLength<t+(n||0))throw new RangeError('"length" is outside of buffer bounds');var r;r=void 0===t&&void 0===n?new Uint8Array(e):void 0===n?new Uint8Array(e,t):new Uint8Array(e,t,n);return r.__proto__=i.prototype,r}(e,t,n);if("number"==typeof e)throw new TypeError('The "value" argument must not be of type number. Received type number');var r=e.valueOf&&e.valueOf();if(null!=r&&r!==e)return i.from(r,t,n);var a=function(e){if(i.isBuffer(e)){var t=0|d(e.length),n=o(t);return 0===n.length||e.copy(n,0,0,t),n}if(void 0!==e.length)return"number"!=typeof e.length||z(e.length)?o(0):p(e);if("Buffer"===e.type&&Array.isArray(e.data))return p(e.data)}(e);if(a)return a;if("undefined"!=typeof Symbol&&null!=Symbol.toPrimitive&&"function"==typeof e[Symbol.toPrimitive])return i.from(e[Symbol.toPrimitive]("string"),t,n);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}function u(e){if("number"!=typeof e)throw new TypeError('"size" argument must be of type number');if(e<0)throw new RangeError('The value "'+e+'" is invalid for option "size"')}function c(e){return u(e),o(e<0?0:0|d(e))}function p(e){for(var t=e.length<0?0:0|d(e.length),n=o(t),r=0;r<t;r+=1)n[r]=255&e[r];return n}function d(e){if(e>=s)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+s.toString(16)+" bytes");return 0|e}function f(e,t){if(i.isBuffer(e))return e.length;if(ArrayBuffer.isView(e)||$(e,ArrayBuffer))return e.byteLength;if("string"!=typeof e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof e);var n=e.length,r=arguments.length>2&&!0===arguments[2];if(!r&&0===n)return 0;for(var a=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":return M(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(e).length;default:if(a)return r?-1:M(e).length;t=(""+t).toLowerCase(),a=!0}}function m(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return j(this,t,n);case"utf8":case"utf-8":return S(this,t,n);case"ascii":return E(this,t,n);case"latin1":case"binary":return L(this,t,n);case"base64":return C(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return F(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function h(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function g(e,t,n,r,a){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),z(n=+n)&&(n=a?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(a)return-1;n=e.length-1}else if(n<0){if(!a)return-1;n=0}if("string"==typeof t&&(t=i.from(t,r)),i.isBuffer(t))return 0===t.length?-1:v(e,t,n,r,a);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?a?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):v(e,[t],n,r,a);throw new TypeError("val must be string, number or Buffer")}function v(e,t,n,r,a){var s,o=1,i=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;o=2,i/=2,l/=2,n/=2}function u(e,t){return 1===o?e[t]:e.readUInt16BE(t*o)}if(a){var c=-1;for(s=n;s<i;s++)if(u(e,s)===u(t,-1===c?0:s-c)){if(-1===c&&(c=s),s-c+1===l)return c*o}else-1!==c&&(s-=s-c),c=-1}else for(n+l>i&&(n=i-l),s=n;s>=0;s--){for(var p=!0,d=0;d<l;d++)if(u(e,s+d)!==u(t,d)){p=!1;break}if(p)return s}return-1}function y(e,t,n,r){n=Number(n)||0;var a=e.length-n;r?(r=Number(r))>a&&(r=a):r=a;var s=t.length;r>s/2&&(r=s/2);for(var o=0;o<r;++o){var i=parseInt(t.substr(2*o,2),16);if(z(i))return o;e[n+o]=i}return o}function b(e,t,n,r){return D(M(t,e.length-n),e,n,r)}function w(e,t,n,r){return D(function(e){for(var t=[],n=0;n<e.length;++n)t.push(255&e.charCodeAt(n));return t}(t),e,n,r)}function x(e,t,n,r){return w(e,t,n,r)}function T(e,t,n,r){return D(B(t),e,n,r)}function _(e,t,n,r){return D(function(e,t){for(var n,r,a,s=[],o=0;o<e.length&&!((t-=2)<0);++o)r=(n=e.charCodeAt(o))>>8,a=n%256,s.push(a),s.push(r);return s}(t,e.length-n),e,n,r)}function C(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function S(e,t,n){n=Math.min(e.length,n);for(var r=[],a=t;a<n;){var s,o,i,l,u=e[a],c=null,p=u>239?4:u>223?3:u>191?2:1;if(a+p<=n)switch(p){case 1:u<128&&(c=u);break;case 2:128==(192&(s=e[a+1]))&&(l=(31&u)<<6|63&s)>127&&(c=l);break;case 3:s=e[a+1],o=e[a+2],128==(192&s)&&128==(192&o)&&(l=(15&u)<<12|(63&s)<<6|63&o)>2047&&(l<55296||l>57343)&&(c=l);break;case 4:s=e[a+1],o=e[a+2],i=e[a+3],128==(192&s)&&128==(192&o)&&128==(192&i)&&(l=(15&u)<<18|(63&s)<<12|(63&o)<<6|63&i)>65535&&l<1114112&&(c=l)}null===c?(c=65533,p=1):c>65535&&(c-=65536,r.push(c>>>10&1023|55296),c=56320|1023&c),r.push(c),a+=p}return function(e){var t=e.length;if(t<=N)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r<t;)n+=String.fromCharCode.apply(String,e.slice(r,r+=N));return n}(r)}i.TYPED_ARRAY_SUPPORT=function(){try{var e=new Uint8Array(1);return e.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===e.foo()}catch(e){return!1}}(),i.TYPED_ARRAY_SUPPORT||"undefined"==typeof console||"function"!=typeof console.error||console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(i.prototype,"parent",{enumerable:!0,get:function(){if(i.isBuffer(this))return this.buffer}}),Object.defineProperty(i.prototype,"offset",{enumerable:!0,get:function(){if(i.isBuffer(this))return this.byteOffset}}),"undefined"!=typeof Symbol&&null!=Symbol.species&&i[Symbol.species]===i&&Object.defineProperty(i,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),i.poolSize=8192,i.from=function(e,t,n){return l(e,t,n)},i.prototype.__proto__=Uint8Array.prototype,i.__proto__=Uint8Array,i.alloc=function(e,t,n){return function(e,t,n){return u(e),e<=0?o(e):void 0!==t?"string"==typeof n?o(e).fill(t,n):o(e).fill(t):o(e)}(e,t,n)},i.allocUnsafe=function(e){return c(e)},i.allocUnsafeSlow=function(e){return c(e)},i.isBuffer=function(e){return null!=e&&!0===e._isBuffer&&e!==i.prototype},i.compare=function(e,t){if($(e,Uint8Array)&&(e=i.from(e,e.offset,e.byteLength)),$(t,Uint8Array)&&(t=i.from(t,t.offset,t.byteLength)),!i.isBuffer(e)||!i.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;for(var n=e.length,r=t.length,a=0,s=Math.min(n,r);a<s;++a)if(e[a]!==t[a]){n=e[a],r=t[a];break}return n<r?-1:r<n?1:0},i.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},i.concat=function(e,t){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(0===e.length)return i.alloc(0);var n;if(void 0===t)for(t=0,n=0;n<e.length;++n)t+=e[n].length;var r=i.allocUnsafe(t),a=0;for(n=0;n<e.length;++n){var s=e[n];if($(s,Uint8Array)&&(s=i.from(s)),!i.isBuffer(s))throw new TypeError('"list" argument must be an Array of Buffers');s.copy(r,a),a+=s.length}return r},i.byteLength=f,i.prototype._isBuffer=!0,i.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;t<e;t+=2)h(this,t,t+1);return this},i.prototype.swap32=function(){var e=this.length;if(e%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var t=0;t<e;t+=4)h(this,t,t+3),h(this,t+1,t+2);return this},i.prototype.swap64=function(){var e=this.length;if(e%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var t=0;t<e;t+=8)h(this,t,t+7),h(this,t+1,t+6),h(this,t+2,t+5),h(this,t+3,t+4);return this},i.prototype.toString=function(){var e=this.length;return 0===e?"":0===arguments.length?S(this,0,e):m.apply(this,arguments)},i.prototype.toLocaleString=i.prototype.toString,i.prototype.equals=function(e){if(!i.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e||0===i.compare(this,e)},i.prototype.inspect=function(){var e="",n=t.h2;return e=this.toString("hex",0,n).replace(/(.{2})/g,"$1 ").trim(),this.length>n&&(e+=" ... "),"<Buffer "+e+">"},i.prototype.compare=function(e,t,n,r,a){if($(e,Uint8Array)&&(e=i.from(e,e.offset,e.byteLength)),!i.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===a&&(a=this.length),t<0||n>e.length||r<0||a>this.length)throw new RangeError("out of range index");if(r>=a&&t>=n)return 0;if(r>=a)return-1;if(t>=n)return 1;if(this===e)return 0;for(var s=(a>>>=0)-(r>>>=0),o=(n>>>=0)-(t>>>=0),l=Math.min(s,o),u=this.slice(r,a),c=e.slice(t,n),p=0;p<l;++p)if(u[p]!==c[p]){s=u[p],o=c[p];break}return s<o?-1:o<s?1:0},i.prototype.includes=function(e,t,n){return-1!==this.indexOf(e,t,n)},i.prototype.indexOf=function(e,t,n){return g(this,e,t,n,!0)},i.prototype.lastIndexOf=function(e,t,n){return g(this,e,t,n,!1)},i.prototype.write=function(e,t,n,r){if(void 0===t)r="utf8",n=this.length,t=0;else if(void 0===n&&"string"==typeof t)r=t,n=this.length,t=0;else{if(!isFinite(t))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");t>>>=0,isFinite(n)?(n>>>=0,void 0===r&&(r="utf8")):(r=n,n=void 0)}var a=this.length-t;if((void 0===n||n>a)&&(n=a),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var s=!1;;)switch(r){case"hex":return y(this,e,t,n);case"utf8":case"utf-8":return b(this,e,t,n);case"ascii":return w(this,e,t,n);case"latin1":case"binary":return x(this,e,t,n);case"base64":return T(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _(this,e,t,n);default:if(s)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),s=!0}},i.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var N=4096;function E(e,t,n){var r="";n=Math.min(e.length,n);for(var a=t;a<n;++a)r+=String.fromCharCode(127&e[a]);return r}function L(e,t,n){var r="";n=Math.min(e.length,n);for(var a=t;a<n;++a)r+=String.fromCharCode(e[a]);return r}function j(e,t,n){var r=e.length;(!t||t<0)&&(t=0),(!n||n<0||n>r)&&(n=r);for(var a="",s=t;s<n;++s)a+=I(e[s]);return a}function F(e,t,n){for(var r=e.slice(t,n),a="",s=0;s<r.length;s+=2)a+=String.fromCharCode(r[s]+256*r[s+1]);return a}function k(e,t,n){if(e%1!=0||e<0)throw new RangeError("offset is not uint");if(e+t>n)throw new RangeError("Trying to access beyond buffer length")}function O(e,t,n,r,a,s){if(!i.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>a||t<s)throw new RangeError('"value" argument is out of bounds');if(n+r>e.length)throw new RangeError("Index out of range")}function A(e,t,n,r,a,s){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function P(e,t,n,r,s){return t=+t,n>>>=0,s||A(e,0,n,4),a.write(e,t,n,r,23,4),n+4}function U(e,t,n,r,s){return t=+t,n>>>=0,s||A(e,0,n,8),a.write(e,t,n,r,52,8),n+8}i.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t<e&&(t=e);var r=this.subarray(e,t);return r.__proto__=i.prototype,r},i.prototype.readUIntLE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=this[e],a=1,s=0;++s<t&&(a*=256);)r+=this[e+s]*a;return r},i.prototype.readUIntBE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=this[e+--t],a=1;t>0&&(a*=256);)r+=this[e+--t]*a;return r},i.prototype.readUInt8=function(e,t){return e>>>=0,t||k(e,1,this.length),this[e]},i.prototype.readUInt16LE=function(e,t){return e>>>=0,t||k(e,2,this.length),this[e]|this[e+1]<<8},i.prototype.readUInt16BE=function(e,t){return e>>>=0,t||k(e,2,this.length),this[e]<<8|this[e+1]},i.prototype.readUInt32LE=function(e,t){return e>>>=0,t||k(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},i.prototype.readUInt32BE=function(e,t){return e>>>=0,t||k(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},i.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=this[e],a=1,s=0;++s<t&&(a*=256);)r+=this[e+s]*a;return r>=(a*=128)&&(r-=Math.pow(2,8*t)),r},i.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||k(e,t,this.length);for(var r=t,a=1,s=this[e+--r];r>0&&(a*=256);)s+=this[e+--r]*a;return s>=(a*=128)&&(s-=Math.pow(2,8*t)),s},i.prototype.readInt8=function(e,t){return e>>>=0,t||k(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},i.prototype.readInt16LE=function(e,t){e>>>=0,t||k(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt16BE=function(e,t){e>>>=0,t||k(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},i.prototype.readInt32LE=function(e,t){return e>>>=0,t||k(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},i.prototype.readInt32BE=function(e,t){return e>>>=0,t||k(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},i.prototype.readFloatLE=function(e,t){return e>>>=0,t||k(e,4,this.length),a.read(this,e,!0,23,4)},i.prototype.readFloatBE=function(e,t){return e>>>=0,t||k(e,4,this.length),a.read(this,e,!1,23,4)},i.prototype.readDoubleLE=function(e,t){return e>>>=0,t||k(e,8,this.length),a.read(this,e,!0,52,8)},i.prototype.readDoubleBE=function(e,t){return e>>>=0,t||k(e,8,this.length),a.read(this,e,!1,52,8)},i.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t>>>=0,n>>>=0,r)||O(this,e,t,n,Math.pow(2,8*n)-1,0);var a=1,s=0;for(this[t]=255&e;++s<n&&(a*=256);)this[t+s]=e/a&255;return t+n},i.prototype.writeUIntBE=function(e,t,n,r){(e=+e,t>>>=0,n>>>=0,r)||O(this,e,t,n,Math.pow(2,8*n)-1,0);var a=n-1,s=1;for(this[t+a]=255&e;--a>=0&&(s*=256);)this[t+a]=e/s&255;return t+n},i.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,1,255,0),this[t]=255&e,t+1},i.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},i.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},i.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},i.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},i.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var a=Math.pow(2,8*n-1);O(this,e,t,n,a-1,-a)}var s=0,o=1,i=0;for(this[t]=255&e;++s<n&&(o*=256);)e<0&&0===i&&0!==this[t+s-1]&&(i=1),this[t+s]=(e/o>>0)-i&255;return t+n},i.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t>>>=0,!r){var a=Math.pow(2,8*n-1);O(this,e,t,n,a-1,-a)}var s=n-1,o=1,i=0;for(this[t+s]=255&e;--s>=0&&(o*=256);)e<0&&0===i&&0!==this[t+s+1]&&(i=1),this[t+s]=(e/o>>0)-i&255;return t+n},i.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},i.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},i.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},i.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},i.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||O(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},i.prototype.writeFloatLE=function(e,t,n){return P(this,e,t,!0,n)},i.prototype.writeFloatBE=function(e,t,n){return P(this,e,t,!1,n)},i.prototype.writeDoubleLE=function(e,t,n){return U(this,e,t,!0,n)},i.prototype.writeDoubleBE=function(e,t,n){return U(this,e,t,!1,n)},i.prototype.copy=function(e,t,n,r){if(!i.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r<n&&(r=n),r===n)return 0;if(0===e.length||0===this.length)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t<r-n&&(r=e.length-t+n);var a=r-n;if(this===e&&"function"==typeof Uint8Array.prototype.copyWithin)this.copyWithin(t,n,r);else if(this===e&&n<t&&t<r)for(var s=a-1;s>=0;--s)e[s+t]=this[s+n];else Uint8Array.prototype.set.call(e,this.subarray(n,r),t);return a},i.prototype.fill=function(e,t,n,r){if("string"==typeof e){if("string"==typeof t?(r=t,t=0,n=this.length):"string"==typeof n&&(r=n,n=this.length),void 0!==r&&"string"!=typeof r)throw new TypeError("encoding must be a string");if("string"==typeof r&&!i.isEncoding(r))throw new TypeError("Unknown encoding: "+r);if(1===e.length){var a=e.charCodeAt(0);("utf8"===r&&a<128||"latin1"===r)&&(e=a)}}else"number"==typeof e&&(e&=255);if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;var s;if(t>>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(s=t;s<n;++s)this[s]=e;else{var o=i.isBuffer(e)?e:i.from(e,r),l=o.length;if(0===l)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(s=0;s<n-t;++s)this[s+t]=o[s%l]}return this};var R=/[^+/0-9A-Za-z-_]/g;function I(e){return e<16?"0"+e.toString(16):e.toString(16)}function M(e,t){var n;t=t||1/0;for(var r=e.length,a=null,s=[],o=0;o<r;++o){if((n=e.charCodeAt(o))>55295&&n<57344){if(!a){if(n>56319){(t-=3)>-1&&s.push(239,191,189);continue}if(o+1===r){(t-=3)>-1&&s.push(239,191,189);continue}a=n;continue}if(n<56320){(t-=3)>-1&&s.push(239,191,189),a=n;continue}n=65536+(a-55296<<10|n-56320)}else a&&(t-=3)>-1&&s.push(239,191,189);if(a=null,n<128){if((t-=1)<0)break;s.push(n)}else if(n<2048){if((t-=2)<0)break;s.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;s.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;s.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return s}function B(e){return r.toByteArray(function(e){if((e=(e=e.split("=")[0]).trim().replace(R,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function D(e,t,n,r){for(var a=0;a<r&&!(a+n>=t.length||a>=e.length);++a)t[a+n]=e[a];return a}function $(e,t){return e instanceof t||null!=e&&null!=e.constructor&&null!=e.constructor.name&&e.constructor.name===t.name}function z(e){return e!=e}},19662:(e,t,n)=>{"use strict";var r=n(60614),a=n(66330),s=TypeError;e.exports=function(e){if(r(e))return e;throw new s(a(e)+" is not a function")}},39483:(e,t,n)=>{"use strict";var r=n(4411),a=n(66330),s=TypeError;e.exports=function(e){if(r(e))return e;throw new s(a(e)+" is not a constructor")}},96077:(e,t,n)=>{"use strict";var r=n(60614),a=String,s=TypeError;e.exports=function(e){if("object"==typeof e||r(e))return e;throw new s("Can't set "+a(e)+" as a prototype")}},51223:(e,t,n)=>{"use strict";var r=n(5112),a=n(70030),s=n(3070).f,o=r("unscopables"),i=Array.prototype;void 0===i[o]&&s(i,o,{configurable:!0,value:a(null)}),e.exports=function(e){i[o][e]=!0}},31530:(e,t,n)=>{"use strict";var r=n(28710).charAt;e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},19670:(e,t,n)=>{"use strict";var r=n(70111),a=String,s=TypeError;e.exports=function(e){if(r(e))return e;throw new s(a(e)+" is not an object")}},41318:(e,t,n)=>{"use strict";var r=n(45656),a=n(51400),s=n(26244),o=function(e){return function(t,n,o){var i,l=r(t),u=s(l),c=a(o,u);if(e&&n!=n){for(;u>c;)if((i=l[c++])!=i)return!0}else for(;u>c;c++)if((e||c in l)&&l[c]===n)return e||c||0;return!e&&-1}};e.exports={includes:o(!0),indexOf:o(!1)}},42092:(e,t,n)=>{"use strict";var r=n(49974),a=n(1702),s=n(68361),o=n(47908),i=n(26244),l=n(65417),u=a([].push),c=function(e){var t=1===e,n=2===e,a=3===e,c=4===e,p=6===e,d=7===e,f=5===e||p;return function(m,h,g,v){for(var y,b,w=o(m),x=s(w),T=r(h,g),_=i(x),C=0,S=v||l,N=t?S(m,_):n||d?S(m,0):void 0;_>C;C++)if((f||C in x)&&(b=T(y=x[C],C,w),e))if(t)N[C]=b;else if(b)switch(e){case 3:return!0;case 5:return y;case 6:return C;case 2:u(N,y)}else switch(e){case 4:return!1;case 7:u(N,y)}return p?-1:a||c?c:N}};e.exports={forEach:c(0),map:c(1),filter:c(2),some:c(3),every:c(4),find:c(5),findIndex:c(6),filterReject:c(7)}},81194:(e,t,n)=>{"use strict";var r=n(47293),a=n(5112),s=n(7392),o=a("species");e.exports=function(e){return s>=51||!r((function(){var t=[];return(t.constructor={})[o]=function(){return{foo:1}},1!==t[e](Boolean).foo}))}},9341:(e,t,n)=>{"use strict";var r=n(47293);e.exports=function(e,t){var n=[][e];return!!n&&r((function(){n.call(null,t||function(){return 1},1)}))}},53671:(e,t,n)=>{"use strict";var r=n(19662),a=n(47908),s=n(68361),o=n(26244),i=TypeError,l=function(e){return function(t,n,l,u){r(n);var c=a(t),p=s(c),d=o(c),f=e?d-1:0,m=e?-1:1;if(l<2)for(;;){if(f in p){u=p[f],f+=m;break}if(f+=m,e?f<0:d<=f)throw new i("Reduce of empty array with no initial value")}for(;e?f>=0:d>f;f+=m)f in p&&(u=n(u,p[f],f,c));return u}};e.exports={left:l(!1),right:l(!0)}},41589:(e,t,n)=>{"use strict";var r=n(51400),a=n(26244),s=n(86135),o=Array,i=Math.max;e.exports=function(e,t,n){for(var l=a(e),u=r(t,l),c=r(void 0===n?l:n,l),p=o(i(c-u,0)),d=0;u<c;u++,d++)s(p,d,e[u]);return p.length=d,p}},50206:(e,t,n)=>{"use strict";var r=n(1702);e.exports=r([].slice)},77475:(e,t,n)=>{"use strict";var r=n(43157),a=n(4411),s=n(70111),o=n(5112)("species"),i=Array;e.exports=function(e){var t;return r(e)&&(t=e.constructor,(a(t)&&(t===i||r(t.prototype))||s(t)&&null===(t=t[o]))&&(t=void 0)),void 0===t?i:t}},65417:(e,t,n)=>{"use strict";var r=n(77475);e.exports=function(e,t){return new(r(e))(0===t?0:t)}},84326:(e,t,n)=>{"use strict";var r=n(1702),a=r({}.toString),s=r("".slice);e.exports=function(e){return s(a(e),8,-1)}},70648:(e,t,n)=>{"use strict";var r=n(51694),a=n(60614),s=n(84326),o=n(5112)("toStringTag"),i=Object,l="Arguments"===s(function(){return arguments}());e.exports=r?s:function(e){var t,n,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=i(e),o))?n:l?s(t):"Object"===(r=s(t))&&a(t.callee)?"Arguments":r}},99920:(e,t,n)=>{"use strict";var r=n(92597),a=n(53887),s=n(31236),o=n(3070);e.exports=function(e,t,n){for(var i=a(t),l=o.f,u=s.f,c=0;c<i.length;c++){var p=i[c];r(e,p)||n&&r(n,p)||l(e,p,u(t,p))}}},49920:(e,t,n)=>{"use strict";var r=n(47293);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},76178:e=>{"use strict";e.exports=function(e,t){return{value:e,done:t}}},68880:(e,t,n)=>{"use strict";var r=n(19781),a=n(3070),s=n(79114);e.exports=r?function(e,t,n){return a.f(e,t,s(1,n))}:function(e,t,n){return e[t]=n,e}},79114:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},86135:(e,t,n)=>{"use strict";var r=n(34948),a=n(3070),s=n(79114);e.exports=function(e,t,n){var o=r(t);o in e?a.f(e,o,s(0,n)):e[o]=n}},38709:(e,t,n)=>{"use strict";var r=n(19670),a=n(92140),s=TypeError;e.exports=function(e){if(r(this),"string"===e||"default"===e)e="string";else if("number"!==e)throw new s("Incorrect hint");return a(this,e)}},47045:(e,t,n)=>{"use strict";var r=n(56339),a=n(3070);e.exports=function(e,t,n){return n.get&&r(n.get,t,{getter:!0}),n.set&&r(n.set,t,{setter:!0}),a.f(e,t,n)}},98052:(e,t,n)=>{"use strict";var r=n(60614),a=n(3070),s=n(56339),o=n(13072);e.exports=function(e,t,n,i){i||(i={});var l=i.enumerable,u=void 0!==i.name?i.name:t;if(r(n)&&s(n,u,i),i.global)l?e[t]=n:o(t,n);else{try{i.unsafe?e[t]&&(l=!0):delete e[t]}catch(e){}l?e[t]=n:a.f(e,t,{value:n,enumerable:!1,configurable:!i.nonConfigurable,writable:!i.nonWritable})}return e}},13072:(e,t,n)=>{"use strict";var r=n(17854),a=Object.defineProperty;e.exports=function(e,t){try{a(r,e,{value:t,configurable:!0,writable:!0})}catch(n){r[e]=t}return t}},19781:(e,t,n)=>{"use strict";var r=n(47293);e.exports=!r((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},4154:e=>{"use strict";var t="object"==typeof document&&document.all,n=void 0===t&&void 0!==t;e.exports={all:t,IS_HTMLDDA:n}},80317:(e,t,n)=>{"use strict";var r=n(17854),a=n(70111),s=r.document,o=a(s)&&a(s.createElement);e.exports=function(e){return o?s.createElement(e):{}}},7207:e=>{"use strict";var t=TypeError;e.exports=function(e){if(e>9007199254740991)throw t("Maximum allowed index exceeded");return e}},48324: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}},98509:(e,t,n)=>{"use strict";var r=n(80317)("span").classList,a=r&&r.constructor&&r.constructor.prototype;e.exports=a===Object.prototype?void 0:a},35268:(e,t,n)=>{"use strict";var r=n(17854),a=n(84326);e.exports="process"===a(r.process)},88113:e=>{"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},7392:(e,t,n)=>{"use strict";var r,a,s=n(17854),o=n(88113),i=s.process,l=s.Deno,u=i&&i.versions||l&&l.version,c=u&&u.v8;c&&(a=(r=c.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!a&&o&&(!(r=o.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=o.match(/Chrome\/(\d+)/))&&(a=+r[1]),e.exports=a},80748:e=>{"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},82109:(e,t,n)=>{"use strict";var r=n(17854),a=n(31236).f,s=n(68880),o=n(98052),i=n(13072),l=n(99920),u=n(54705);e.exports=function(e,t){var n,c,p,d,f,m=e.target,h=e.global,g=e.stat;if(n=h?r:g?r[m]||i(m,{}):(r[m]||{}).prototype)for(c in t){if(d=t[c],p=e.dontCallGetSet?(f=a(n,c))&&f.value:n[c],!u(h?c:m+(g?".":"#")+c,e.forced)&&void 0!==p){if(typeof d==typeof p)continue;l(d,p)}(e.sham||p&&p.sham)&&s(d,"sham",!0),o(n,c,d,e)}}},47293:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},27007:(e,t,n)=>{"use strict";n(74916);var r=n(21470),a=n(98052),s=n(22261),o=n(47293),i=n(5112),l=n(68880),u=i("species"),c=RegExp.prototype;e.exports=function(e,t,n,p){var d=i(e),f=!o((function(){var t={};return t[d]=function(){return 7},7!==""[e](t)})),m=f&&!o((function(){var t=!1,n=/a/;return"split"===e&&((n={}).constructor={},n.constructor[u]=function(){return n},n.flags="",n[d]=/./[d]),n.exec=function(){return t=!0,null},n[d](""),!t}));if(!f||!m||n){var h=r(/./[d]),g=t(d,""[e],(function(e,t,n,a,o){var i=r(e),l=t.exec;return l===s||l===c.exec?f&&!o?{done:!0,value:h(t,n,a)}:{done:!0,value:i(n,t,a)}:{done:!1}}));a(String.prototype,e,g[0]),a(c,d,g[1])}p&&l(c[d],"sham",!0)}},22104:(e,t,n)=>{"use strict";var r=n(34374),a=Function.prototype,s=a.apply,o=a.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(s):function(){return o.apply(s,arguments)})},49974:(e,t,n)=>{"use strict";var r=n(21470),a=n(19662),s=n(34374),o=r(r.bind);e.exports=function(e,t){return a(e),void 0===t?e:s?o(e,t):function(){return e.apply(t,arguments)}}},34374:(e,t,n)=>{"use strict";var r=n(47293);e.exports=!r((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},46916:(e,t,n)=>{"use strict";var r=n(34374),a=Function.prototype.call;e.exports=r?a.bind(a):function(){return a.apply(a,arguments)}},76530:(e,t,n)=>{"use strict";var r=n(19781),a=n(92597),s=Function.prototype,o=r&&Object.getOwnPropertyDescriptor,i=a(s,"name"),l=i&&"something"===function(){}.name,u=i&&(!r||r&&o(s,"name").configurable);e.exports={EXISTS:i,PROPER:l,CONFIGURABLE:u}},75668:(e,t,n)=>{"use strict";var r=n(1702),a=n(19662);e.exports=function(e,t,n){try{return r(a(Object.getOwnPropertyDescriptor(e,t)[n]))}catch(e){}}},21470:(e,t,n)=>{"use strict";var r=n(84326),a=n(1702);e.exports=function(e){if("Function"===r(e))return a(e)}},1702:(e,t,n)=>{"use strict";var r=n(34374),a=Function.prototype,s=a.call,o=r&&a.bind.bind(s,s);e.exports=r?o:function(e){return function(){return s.apply(e,arguments)}}},35005:(e,t,n)=>{"use strict";var r=n(17854),a=n(60614);e.exports=function(e,t){return arguments.length<2?(n=r[e],a(n)?n:void 0):r[e]&&r[e][t];var n}},88044:(e,t,n)=>{"use strict";var r=n(1702),a=n(43157),s=n(60614),o=n(84326),i=n(41340),l=r([].push);e.exports=function(e){if(s(e))return e;if(a(e)){for(var t=e.length,n=[],r=0;r<t;r++){var u=e[r];"string"==typeof u?l(n,u):"number"!=typeof u&&"Number"!==o(u)&&"String"!==o(u)||l(n,i(u))}var c=n.length,p=!0;return function(e,t){if(p)return p=!1,t;if(a(this))return t;for(var r=0;r<c;r++)if(n[r]===e)return t}}}},58173:(e,t,n)=>{"use strict";var r=n(19662),a=n(68554);e.exports=function(e,t){var n=e[t];return a(n)?void 0:r(n)}},10647:(e,t,n)=>{"use strict";var r=n(1702),a=n(47908),s=Math.floor,o=r("".charAt),i=r("".replace),l=r("".slice),u=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,c=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,n,r,p,d){var f=n+e.length,m=r.length,h=c;return void 0!==p&&(p=a(p),h=u),i(d,h,(function(a,i){var u;switch(o(i,0)){case"$":return"$";case"&":return e;case"`":return l(t,0,n);case"'":return l(t,f);case"<":u=p[l(i,1,-1)];break;default:var c=+i;if(0===c)return a;if(c>m){var d=s(c/10);return 0===d?a:d<=m?void 0===r[d-1]?o(i,1):r[d-1]+o(i,1):a}u=r[c-1]}return void 0===u?"":u}))}},17854:function(e,t,n){"use strict";var r=function(e){return e&&e.Math===Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||function(){return this}()||this||Function("return this")()},92597:(e,t,n)=>{"use strict";var r=n(1702),a=n(47908),s=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return s(a(e),t)}},3501:e=>{"use strict";e.exports={}},60490:(e,t,n)=>{"use strict";var r=n(35005);e.exports=r("document","documentElement")},64664:(e,t,n)=>{"use strict";var r=n(19781),a=n(47293),s=n(80317);e.exports=!r&&!a((function(){return 7!==Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a}))},68361:(e,t,n)=>{"use strict";var r=n(1702),a=n(47293),s=n(84326),o=Object,i=r("".split);e.exports=a((function(){return!o("z").propertyIsEnumerable(0)}))?function(e){return"String"===s(e)?i(e,""):o(e)}:o},79587:(e,t,n)=>{"use strict";var r=n(60614),a=n(70111),s=n(27674);e.exports=function(e,t,n){var o,i;return s&&r(o=t.constructor)&&o!==n&&a(i=o.prototype)&&i!==n.prototype&&s(e,i),e}},42788:(e,t,n)=>{"use strict";var r=n(1702),a=n(60614),s=n(5465),o=r(Function.toString);a(s.inspectSource)||(s.inspectSource=function(e){return o(e)}),e.exports=s.inspectSource},29909:(e,t,n)=>{"use strict";var r,a,s,o=n(94811),i=n(17854),l=n(70111),u=n(68880),c=n(92597),p=n(5465),d=n(6200),f=n(3501),m="Object already initialized",h=i.TypeError,g=i.WeakMap;if(o||p.state){var v=p.state||(p.state=new g);v.get=v.get,v.has=v.has,v.set=v.set,r=function(e,t){if(v.has(e))throw new h(m);return t.facade=e,v.set(e,t),t},a=function(e){return v.get(e)||{}},s=function(e){return v.has(e)}}else{var y=d("state");f[y]=!0,r=function(e,t){if(c(e,y))throw new h(m);return t.facade=e,u(e,y,t),t},a=function(e){return c(e,y)?e[y]:{}},s=function(e){return c(e,y)}}e.exports={set:r,get:a,has:s,enforce:function(e){return s(e)?a(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!l(t)||(n=a(t)).type!==e)throw new h("Incompatible receiver, "+e+" required");return n}}}},43157:(e,t,n)=>{"use strict";var r=n(84326);e.exports=Array.isArray||function(e){return"Array"===r(e)}},60614:(e,t,n)=>{"use strict";var r=n(4154),a=r.all;e.exports=r.IS_HTMLDDA?function(e){return"function"==typeof e||e===a}:function(e){return"function"==typeof e}},4411:(e,t,n)=>{"use strict";var r=n(1702),a=n(47293),s=n(60614),o=n(70648),i=n(35005),l=n(42788),u=function(){},c=[],p=i("Reflect","construct"),d=/^\s*(?:class|function)\b/,f=r(d.exec),m=!d.test(u),h=function(e){if(!s(e))return!1;try{return p(u,c,e),!0}catch(e){return!1}},g=function(e){if(!s(e))return!1;switch(o(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return m||!!f(d,l(e))}catch(e){return!0}};g.sham=!0,e.exports=!p||a((function(){var e;return h(h.call)||!h(Object)||!h((function(){e=!0}))||e}))?g:h},54705:(e,t,n)=>{"use strict";var r=n(47293),a=n(60614),s=/#|\.prototype\./,o=function(e,t){var n=l[i(e)];return n===c||n!==u&&(a(t)?r(t):!!t)},i=o.normalize=function(e){return String(e).replace(s,".").toLowerCase()},l=o.data={},u=o.NATIVE="N",c=o.POLYFILL="P";e.exports=o},68554:e=>{"use strict";e.exports=function(e){return null==e}},70111:(e,t,n)=>{"use strict";var r=n(60614),a=n(4154),s=a.all;e.exports=a.IS_HTMLDDA?function(e){return"object"==typeof e?null!==e:r(e)||e===s}:function(e){return"object"==typeof e?null!==e:r(e)}},31913:e=>{"use strict";e.exports=!1},47850:(e,t,n)=>{"use strict";var r=n(70111),a=n(84326),s=n(5112)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[s])?!!t:"RegExp"===a(e))}},52190:(e,t,n)=>{"use strict";var r=n(35005),a=n(60614),s=n(47976),o=n(43307),i=Object;e.exports=o?function(e){return"symbol"==typeof e}:function(e){var t=r("Symbol");return a(t)&&s(t.prototype,i(e))}},63061:(e,t,n)=>{"use strict";var r=n(13383).IteratorPrototype,a=n(70030),s=n(79114),o=n(58003),i=n(97497),l=function(){return this};e.exports=function(e,t,n,u){var c=t+" Iterator";return e.prototype=a(r,{next:s(+!u,n)}),o(e,c,!1,!0),i[c]=l,e}},51656:(e,t,n)=>{"use strict";var r=n(82109),a=n(46916),s=n(31913),o=n(76530),i=n(60614),l=n(63061),u=n(79518),c=n(27674),p=n(58003),d=n(68880),f=n(98052),m=n(5112),h=n(97497),g=n(13383),v=o.PROPER,y=o.CONFIGURABLE,b=g.IteratorPrototype,w=g.BUGGY_SAFARI_ITERATORS,x=m("iterator"),T="keys",_="values",C="entries",S=function(){return this};e.exports=function(e,t,n,o,m,g,N){l(n,t,o);var E,L,j,F=function(e){if(e===m&&U)return U;if(!w&&e&&e in A)return A[e];switch(e){case T:case _:case C:return function(){return new n(this,e)}}return function(){return new n(this)}},k=t+" Iterator",O=!1,A=e.prototype,P=A[x]||A["@@iterator"]||m&&A[m],U=!w&&P||F(m),R="Array"===t&&A.entries||P;if(R&&(E=u(R.call(new e)))!==Object.prototype&&E.next&&(s||u(E)===b||(c?c(E,b):i(E[x])||f(E,x,S)),p(E,k,!0,!0),s&&(h[k]=S)),v&&m===_&&P&&P.name!==_&&(!s&&y?d(A,"name",_):(O=!0,U=function(){return a(P,this)})),m)if(L={values:F(_),keys:g?U:F(T),entries:F(C)},N)for(j in L)(w||O||!(j in A))&&f(A,j,L[j]);else r({target:t,proto:!0,forced:w||O},L);return s&&!N||A[x]===U||f(A,x,U,{name:m}),h[t]=U,L}},13383:(e,t,n)=>{"use strict";var r,a,s,o=n(47293),i=n(60614),l=n(70111),u=n(70030),c=n(79518),p=n(98052),d=n(5112),f=n(31913),m=d("iterator"),h=!1;[].keys&&("next"in(s=[].keys())?(a=c(c(s)))!==Object.prototype&&(r=a):h=!0),!l(r)||o((function(){var e={};return r[m].call(e)!==e}))?r={}:f&&(r=u(r)),i(r[m])||p(r,m,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:h}},97497:e=>{"use strict";e.exports={}},26244:(e,t,n)=>{"use strict";var r=n(17466);e.exports=function(e){return r(e.length)}},56339:(e,t,n)=>{"use strict";var r=n(1702),a=n(47293),s=n(60614),o=n(92597),i=n(19781),l=n(76530).CONFIGURABLE,u=n(42788),c=n(29909),p=c.enforce,d=c.get,f=String,m=Object.defineProperty,h=r("".slice),g=r("".replace),v=r([].join),y=i&&!a((function(){return 8!==m((function(){}),"length",{value:8}).length})),b=String(String).split("String"),w=e.exports=function(e,t,n){"Symbol("===h(f(t),0,7)&&(t="["+g(f(t),/^Symbol\(([^)]*)\)/,"$1")+"]"),n&&n.getter&&(t="get "+t),n&&n.setter&&(t="set "+t),(!o(e,"name")||l&&e.name!==t)&&(i?m(e,"name",{value:t,configurable:!0}):e.name=t),y&&n&&o(n,"arity")&&e.length!==n.arity&&m(e,"length",{value:n.arity});try{n&&o(n,"constructor")&&n.constructor?i&&m(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(e){}var r=p(e);return o(r,"source")||(r.source=v(b,"string"==typeof t?t:"")),e};Function.prototype.toString=w((function(){return s(this)&&d(this).source||u(this)}),"toString")},74758:e=>{"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var r=+e;return(r>0?n:t)(r)}},21574:(e,t,n)=>{"use strict";var r=n(19781),a=n(1702),s=n(46916),o=n(47293),i=n(81956),l=n(25181),u=n(55296),c=n(47908),p=n(68361),d=Object.assign,f=Object.defineProperty,m=a([].concat);e.exports=!d||o((function(){if(r&&1!==d({b:1},d(f({},"a",{enumerable:!0,get:function(){f(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},t={},n=Symbol("assign detection"),a="abcdefghijklmnopqrst";return e[n]=7,a.split("").forEach((function(e){t[e]=e})),7!==d({},e)[n]||i(d({},t)).join("")!==a}))?function(e,t){for(var n=c(e),a=arguments.length,o=1,d=l.f,f=u.f;a>o;)for(var h,g=p(arguments[o++]),v=d?m(i(g),d(g)):i(g),y=v.length,b=0;y>b;)h=v[b++],r&&!s(f,g,h)||(n[h]=g[h]);return n}:d},70030:(e,t,n)=>{"use strict";var r,a=n(19670),s=n(36048),o=n(80748),i=n(3501),l=n(60490),u=n(80317),c=n(6200),p="prototype",d="script",f=c("IE_PROTO"),m=function(){},h=function(e){return"<"+d+">"+e+"</"+d+">"},g=function(e){e.write(h("")),e.close();var t=e.parentWindow.Object;return e=null,t},v=function(){try{r=new ActiveXObject("htmlfile")}catch(e){}var e,t,n;v="undefined"!=typeof document?document.domain&&r?g(r):(t=u("iframe"),n="java"+d+":",t.style.display="none",l.appendChild(t),t.src=String(n),(e=t.contentWindow.document).open(),e.write(h("document.F=Object")),e.close(),e.F):g(r);for(var a=o.length;a--;)delete v[p][o[a]];return v()};i[f]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(m[p]=a(e),n=new m,m[p]=null,n[f]=e):n=v(),void 0===t?n:s.f(n,t)}},36048:(e,t,n)=>{"use strict";var r=n(19781),a=n(3353),s=n(3070),o=n(19670),i=n(45656),l=n(81956);t.f=r&&!a?Object.defineProperties:function(e,t){o(e);for(var n,r=i(t),a=l(t),u=a.length,c=0;u>c;)s.f(e,n=a[c++],r[n]);return e}},3070:(e,t,n)=>{"use strict";var r=n(19781),a=n(64664),s=n(3353),o=n(19670),i=n(34948),l=TypeError,u=Object.defineProperty,c=Object.getOwnPropertyDescriptor,p="enumerable",d="configurable",f="writable";t.f=r?s?function(e,t,n){if(o(e),t=i(t),o(n),"function"==typeof e&&"prototype"===t&&"value"in n&&f in n&&!n[f]){var r=c(e,t);r&&r[f]&&(e[t]=n.value,n={configurable:d in n?n[d]:r[d],enumerable:p in n?n[p]:r[p],writable:!1})}return u(e,t,n)}:u:function(e,t,n){if(o(e),t=i(t),o(n),a)try{return u(e,t,n)}catch(e){}if("get"in n||"set"in n)throw new l("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},31236:(e,t,n)=>{"use strict";var r=n(19781),a=n(46916),s=n(55296),o=n(79114),i=n(45656),l=n(34948),u=n(92597),c=n(64664),p=Object.getOwnPropertyDescriptor;t.f=r?p:function(e,t){if(e=i(e),t=l(t),c)try{return p(e,t)}catch(e){}if(u(e,t))return o(!a(s.f,e,t),e[t])}},1156:(e,t,n)=>{"use strict";var r=n(84326),a=n(45656),s=n(8006).f,o=n(41589),i="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return i&&"Window"===r(e)?function(e){try{return s(e)}catch(e){return o(i)}}(e):s(a(e))}},8006:(e,t,n)=>{"use strict";var r=n(16324),a=n(80748).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,a)}},25181:(e,t)=>{"use strict";t.f=Object.getOwnPropertySymbols},79518:(e,t,n)=>{"use strict";var r=n(92597),a=n(60614),s=n(47908),o=n(6200),i=n(49920),l=o("IE_PROTO"),u=Object,c=u.prototype;e.exports=i?u.getPrototypeOf:function(e){var t=s(e);if(r(t,l))return t[l];var n=t.constructor;return a(n)&&t instanceof n?n.prototype:t instanceof u?c:null}},47976:(e,t,n)=>{"use strict";var r=n(1702);e.exports=r({}.isPrototypeOf)},16324:(e,t,n)=>{"use strict";var r=n(1702),a=n(92597),s=n(45656),o=n(41318).indexOf,i=n(3501),l=r([].push);e.exports=function(e,t){var n,r=s(e),u=0,c=[];for(n in r)!a(i,n)&&a(r,n)&&l(c,n);for(;t.length>u;)a(r,n=t[u++])&&(~o(c,n)||l(c,n));return c}},81956:(e,t,n)=>{"use strict";var r=n(16324),a=n(80748);e.exports=Object.keys||function(e){return r(e,a)}},55296:(e,t)=>{"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,a=r&&!n.call({1:2},1);t.f=a?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},27674:(e,t,n)=>{"use strict";var r=n(75668),a=n(19670),s=n(96077);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{(e=r(Object.prototype,"__proto__","set"))(n,[]),t=n instanceof Array}catch(e){}return function(n,r){return a(n),s(r),t?e(n,r):n.__proto__=r,n}}():void 0)},90288:(e,t,n)=>{"use strict";var r=n(51694),a=n(70648);e.exports=r?{}.toString:function(){return"[object "+a(this)+"]"}},92140:(e,t,n)=>{"use strict";var r=n(46916),a=n(60614),s=n(70111),o=TypeError;e.exports=function(e,t){var n,i;if("string"===t&&a(n=e.toString)&&!s(i=r(n,e)))return i;if(a(n=e.valueOf)&&!s(i=r(n,e)))return i;if("string"!==t&&a(n=e.toString)&&!s(i=r(n,e)))return i;throw new o("Can't convert object to primitive value")}},53887:(e,t,n)=>{"use strict";var r=n(35005),a=n(1702),s=n(8006),o=n(25181),i=n(19670),l=a([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=s.f(i(e)),n=o.f;return n?l(t,n(e)):t}},40857:(e,t,n)=>{"use strict";var r=n(17854);e.exports=r},97651:(e,t,n)=>{"use strict";var r=n(46916),a=n(19670),s=n(60614),o=n(84326),i=n(22261),l=TypeError;e.exports=function(e,t){var n=e.exec;if(s(n)){var u=r(n,e,t);return null!==u&&a(u),u}if("RegExp"===o(e))return r(i,e,t);throw new l("RegExp#exec called on incompatible receiver")}},22261:(e,t,n)=>{"use strict";var r,a,s=n(46916),o=n(1702),i=n(41340),l=n(67066),u=n(52999),c=n(72309),p=n(70030),d=n(29909).get,f=n(9441),m=n(38173),h=c("native-string-replace",String.prototype.replace),g=RegExp.prototype.exec,v=g,y=o("".charAt),b=o("".indexOf),w=o("".replace),x=o("".slice),T=(a=/b*/g,s(g,r=/a/,"a"),s(g,a,"a"),0!==r.lastIndex||0!==a.lastIndex),_=u.BROKEN_CARET,C=void 0!==/()??/.exec("")[1];(T||C||_||f||m)&&(v=function(e){var t,n,r,a,o,u,c,f=this,m=d(f),S=i(e),N=m.raw;if(N)return N.lastIndex=f.lastIndex,t=s(v,N,S),f.lastIndex=N.lastIndex,t;var E=m.groups,L=_&&f.sticky,j=s(l,f),F=f.source,k=0,O=S;if(L&&(j=w(j,"y",""),-1===b(j,"g")&&(j+="g"),O=x(S,f.lastIndex),f.lastIndex>0&&(!f.multiline||f.multiline&&"\n"!==y(S,f.lastIndex-1))&&(F="(?: "+F+")",O=" "+O,k++),n=new RegExp("^(?:"+F+")",j)),C&&(n=new RegExp("^"+F+"$(?!\\s)",j)),T&&(r=f.lastIndex),a=s(g,L?n:f,O),L?a?(a.input=x(a.input,k),a[0]=x(a[0],k),a.index=f.lastIndex,f.lastIndex+=a[0].length):f.lastIndex=0:T&&a&&(f.lastIndex=f.global?a.index+a[0].length:r),C&&a&&a.length>1&&s(h,a[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(a[o]=void 0)})),a&&E)for(a.groups=u=p(null),o=0;o<E.length;o++)u[(c=E[o])[0]]=a[c[1]];return a}),e.exports=v},67066:(e,t,n)=>{"use strict";var r=n(19670);e.exports=function(){var e=r(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}},52999:(e,t,n)=>{"use strict";var r=n(47293),a=n(17854).RegExp,s=r((function(){var e=a("a","y");return e.lastIndex=2,null!==e.exec("abcd")})),o=s||r((function(){return!a("a","y").sticky})),i=s||r((function(){var e=a("^r","gy");return e.lastIndex=2,null!==e.exec("str")}));e.exports={BROKEN_CARET:i,MISSED_STICKY:o,UNSUPPORTED_Y:s}},9441:(e,t,n)=>{"use strict";var r=n(47293),a=n(17854).RegExp;e.exports=r((function(){var e=a(".","s");return!(e.dotAll&&e.test("\n")&&"s"===e.flags)}))},38173:(e,t,n)=>{"use strict";var r=n(47293),a=n(17854).RegExp;e.exports=r((function(){var e=a("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}))},84488:(e,t,n)=>{"use strict";var r=n(68554),a=TypeError;e.exports=function(e){if(r(e))throw new a("Can't call method on "+e);return e}},58003:(e,t,n)=>{"use strict";var r=n(3070).f,a=n(92597),s=n(5112)("toStringTag");e.exports=function(e,t,n){e&&!n&&(e=e.prototype),e&&!a(e,s)&&r(e,s,{configurable:!0,value:t})}},6200:(e,t,n)=>{"use strict";var r=n(72309),a=n(69711),s=r("keys");e.exports=function(e){return s[e]||(s[e]=a(e))}},5465:(e,t,n)=>{"use strict";var r=n(17854),a=n(13072),s="__core-js_shared__",o=r[s]||a(s,{});e.exports=o},72309:(e,t,n)=>{"use strict";var r=n(31913),a=n(5465);(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.33.0",mode:r?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE",source:"https://github.com/zloirock/core-js"})},36707:(e,t,n)=>{"use strict";var r=n(19670),a=n(39483),s=n(68554),o=n(5112)("species");e.exports=function(e,t){var n,i=r(e).constructor;return void 0===i||s(n=r(i)[o])?t:a(n)}},28710:(e,t,n)=>{"use strict";var r=n(1702),a=n(19303),s=n(41340),o=n(84488),i=r("".charAt),l=r("".charCodeAt),u=r("".slice),c=function(e){return function(t,n){var r,c,p=s(o(t)),d=a(n),f=p.length;return d<0||d>=f?e?"":void 0:(r=l(p,d))<55296||r>56319||d+1===f||(c=l(p,d+1))<56320||c>57343?e?i(p,d):r:e?u(p,d,d+2):c-56320+(r-55296<<10)+65536}};e.exports={codeAt:c(!1),charAt:c(!0)}},53111:(e,t,n)=>{"use strict";var r=n(1702),a=n(84488),s=n(41340),o=n(81361),i=r("".replace),l=RegExp("^["+o+"]+"),u=RegExp("(^|[^"+o+"])["+o+"]+$"),c=function(e){return function(t){var n=s(a(t));return 1&e&&(n=i(n,l,"")),2&e&&(n=i(n,u,"$1")),n}};e.exports={start:c(1),end:c(2),trim:c(3)}},36293:(e,t,n)=>{"use strict";var r=n(7392),a=n(47293),s=n(17854).String;e.exports=!!Object.getOwnPropertySymbols&&!a((function(){var e=Symbol("symbol detection");return!s(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},56532:(e,t,n)=>{"use strict";var r=n(46916),a=n(35005),s=n(5112),o=n(98052);e.exports=function(){var e=a("Symbol"),t=e&&e.prototype,n=t&&t.valueOf,i=s("toPrimitive");t&&!t[i]&&o(t,i,(function(e){return r(n,this)}),{arity:1})}},2015:(e,t,n)=>{"use strict";var r=n(36293);e.exports=r&&!!Symbol.for&&!!Symbol.keyFor},50863:(e,t,n)=>{"use strict";var r=n(1702);e.exports=r(1..valueOf)},51400:(e,t,n)=>{"use strict";var r=n(19303),a=Math.max,s=Math.min;e.exports=function(e,t){var n=r(e);return n<0?a(n+t,0):s(n,t)}},45656:(e,t,n)=>{"use strict";var r=n(68361),a=n(84488);e.exports=function(e){return r(a(e))}},19303:(e,t,n)=>{"use strict";var r=n(74758);e.exports=function(e){var t=+e;return t!=t||0===t?0:r(t)}},17466:(e,t,n)=>{"use strict";var r=n(19303),a=Math.min;e.exports=function(e){return e>0?a(r(e),9007199254740991):0}},47908:(e,t,n)=>{"use strict";var r=n(84488),a=Object;e.exports=function(e){return a(r(e))}},57593:(e,t,n)=>{"use strict";var r=n(46916),a=n(70111),s=n(52190),o=n(58173),i=n(92140),l=n(5112),u=TypeError,c=l("toPrimitive");e.exports=function(e,t){if(!a(e)||s(e))return e;var n,l=o(e,c);if(l){if(void 0===t&&(t="default"),n=r(l,e,t),!a(n)||s(n))return n;throw new u("Can't convert object to primitive value")}return void 0===t&&(t="number"),i(e,t)}},34948:(e,t,n)=>{"use strict";var r=n(57593),a=n(52190);e.exports=function(e){var t=r(e,"string");return a(t)?t:t+""}},51694:(e,t,n)=>{"use strict";var r={};r[n(5112)("toStringTag")]="z",e.exports="[object z]"===String(r)},41340:(e,t,n)=>{"use strict";var r=n(70648),a=String;e.exports=function(e){if("Symbol"===r(e))throw new TypeError("Cannot convert a Symbol value to a string");return a(e)}},66330:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},69711:(e,t,n)=>{"use strict";var r=n(1702),a=0,s=Math.random(),o=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+o(++a+s,36)}},43307:(e,t,n)=>{"use strict";var r=n(36293);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3353:(e,t,n)=>{"use strict";var r=n(19781),a=n(47293);e.exports=r&&a((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},94811:(e,t,n)=>{"use strict";var r=n(17854),a=n(60614),s=r.WeakMap;e.exports=a(s)&&/native code/.test(String(s))},26800:(e,t,n)=>{"use strict";var r=n(40857),a=n(92597),s=n(6061),o=n(3070).f;e.exports=function(e){var t=r.Symbol||(r.Symbol={});a(t,e)||o(t,e,{value:s.f(e)})}},6061:(e,t,n)=>{"use strict";var r=n(5112);t.f=r},5112:(e,t,n)=>{"use strict";var r=n(17854),a=n(72309),s=n(92597),o=n(69711),i=n(36293),l=n(43307),u=r.Symbol,c=a("wks"),p=l?u.for||u:u&&u.withoutSetter||o;e.exports=function(e){return s(c,e)||(c[e]=i&&s(u,e)?u[e]:p("Symbol."+e)),c[e]}},81361:e=>{"use strict";e.exports="\t\n\v\f\r    \u2028\u2029\ufeff"},92222:(e,t,n)=>{"use strict";var r=n(82109),a=n(47293),s=n(43157),o=n(70111),i=n(47908),l=n(26244),u=n(7207),c=n(86135),p=n(65417),d=n(81194),f=n(5112),m=n(7392),h=f("isConcatSpreadable"),g=m>=51||!a((function(){var e=[];return e[h]=!1,e.concat()[0]!==e})),v=function(e){if(!o(e))return!1;var t=e[h];return void 0!==t?!!t:s(e)};r({target:"Array",proto:!0,arity:1,forced:!g||!d("concat")},{concat:function(e){var t,n,r,a,s,o=i(this),d=p(o,0),f=0;for(t=-1,r=arguments.length;t<r;t++)if(v(s=-1===t?o:arguments[t]))for(a=l(s),u(f+a),n=0;n<a;n++,f++)n in s&&c(d,f,s[n]);else u(f+1),c(d,f++,s);return d.length=f,d}})},57327:(e,t,n)=>{"use strict";var r=n(82109),a=n(42092).filter;r({target:"Array",proto:!0,forced:!n(81194)("filter")},{filter:function(e){return a(this,e,arguments.length>1?arguments[1]:void 0)}})},66992:(e,t,n)=>{"use strict";var r=n(45656),a=n(51223),s=n(97497),o=n(29909),i=n(3070).f,l=n(51656),u=n(76178),c=n(31913),p=n(19781),d="Array Iterator",f=o.set,m=o.getterFor(d);e.exports=l(Array,"Array",(function(e,t){f(this,{type:d,target:r(e),index:0,kind:t})}),(function(){var e=m(this),t=e.target,n=e.kind,r=e.index++;if(!t||r>=t.length)return e.target=void 0,u(void 0,!0);switch(n){case"keys":return u(r,!1);case"values":return u(t[r],!1)}return u([r,t[r]],!1)}),"values");var h=s.Arguments=s.Array;if(a("keys"),a("values"),a("entries"),!c&&p&&"values"!==h.name)try{i(h,"name",{value:"values"})}catch(e){}},21249:(e,t,n)=>{"use strict";var r=n(82109),a=n(42092).map;r({target:"Array",proto:!0,forced:!n(81194)("map")},{map:function(e){return a(this,e,arguments.length>1?arguments[1]:void 0)}})},85827:(e,t,n)=>{"use strict";var r=n(82109),a=n(53671).left,s=n(9341),o=n(7392);r({target:"Array",proto:!0,forced:!n(35268)&&o>79&&o<83||!s("reduce")},{reduce:function(e){var t=arguments.length;return a(this,e,t,t>1?arguments[1]:void 0)}})},96078:(e,t,n)=>{"use strict";var r=n(92597),a=n(98052),s=n(38709),o=n(5112)("toPrimitive"),i=Date.prototype;r(i,o)||a(i,o,s)},38862:(e,t,n)=>{"use strict";var r=n(82109),a=n(35005),s=n(22104),o=n(46916),i=n(1702),l=n(47293),u=n(60614),c=n(52190),p=n(50206),d=n(88044),f=n(36293),m=String,h=a("JSON","stringify"),g=i(/./.exec),v=i("".charAt),y=i("".charCodeAt),b=i("".replace),w=i(1..toString),x=/[\uD800-\uDFFF]/g,T=/^[\uD800-\uDBFF]$/,_=/^[\uDC00-\uDFFF]$/,C=!f||l((function(){var e=a("Symbol")("stringify detection");return"[null]"!==h([e])||"{}"!==h({a:e})||"{}"!==h(Object(e))})),S=l((function(){return'"\\udf06\\ud834"'!==h("\udf06\ud834")||'"\\udead"'!==h("\udead")})),N=function(e,t){var n=p(arguments),r=d(t);if(u(r)||void 0!==e&&!c(e))return n[1]=function(e,t){if(u(r)&&(t=o(r,this,m(e),t)),!c(t))return t},s(h,null,n)},E=function(e,t,n){var r=v(n,t-1),a=v(n,t+1);return g(T,e)&&!g(_,a)||g(_,e)&&!g(T,r)?"\\u"+w(y(e,0),16):e};h&&r({target:"JSON",stat:!0,arity:3,forced:C||S},{stringify:function(e,t,n){var r=p(arguments),a=s(C?N:h,null,r);return S&&"string"==typeof a?b(a,x,E):a}})},9653:(e,t,n)=>{"use strict";var r=n(82109),a=n(31913),s=n(19781),o=n(17854),i=n(40857),l=n(1702),u=n(54705),c=n(92597),p=n(79587),d=n(47976),f=n(52190),m=n(57593),h=n(47293),g=n(8006).f,v=n(31236).f,y=n(3070).f,b=n(50863),w=n(53111).trim,x="Number",T=o[x],_=i[x],C=T.prototype,S=o.TypeError,N=l("".slice),E=l("".charCodeAt),L=function(e){var t,n,r,a,s,o,i,l,u=m(e,"number");if(f(u))throw new S("Cannot convert a Symbol value to a number");if("string"==typeof u&&u.length>2)if(u=w(u),43===(t=E(u,0))||45===t){if(88===(n=E(u,2))||120===n)return NaN}else if(48===t){switch(E(u,1)){case 66:case 98:r=2,a=49;break;case 79:case 111:r=8,a=55;break;default:return+u}for(o=(s=N(u,2)).length,i=0;i<o;i++)if((l=E(s,i))<48||l>a)return NaN;return parseInt(s,r)}return+u},j=u(x,!T(" 0o1")||!T("0b1")||T("+0x1")),F=function(e){var t,n=arguments.length<1?0:T(function(e){var t=m(e,"number");return"bigint"==typeof t?t:L(t)}(e));return d(C,t=this)&&h((function(){b(t)}))?p(Object(n),this,F):n};F.prototype=C,j&&!a&&(C.constructor=F),r({global:!0,constructor:!0,wrap:!0,forced:j},{Number:F});var k=function(e,t){for(var n,r=s?g(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(","),a=0;r.length>a;a++)c(t,n=r[a])&&!c(e,n)&&y(e,n,v(t,n))};a&&_&&k(i[x],_),(j||a)&&k(i[x],T)},19601:(e,t,n)=>{"use strict";var r=n(82109),a=n(21574);r({target:"Object",stat:!0,arity:2,forced:Object.assign!==a},{assign:a})},69070:(e,t,n)=>{"use strict";var r=n(82109),a=n(19781),s=n(3070).f;r({target:"Object",stat:!0,forced:Object.defineProperty!==s,sham:!a},{defineProperty:s})},29660:(e,t,n)=>{"use strict";var r=n(82109),a=n(36293),s=n(47293),o=n(25181),i=n(47908);r({target:"Object",stat:!0,forced:!a||s((function(){o.f(1)}))},{getOwnPropertySymbols:function(e){var t=o.f;return t?t(i(e)):[]}})},41539:(e,t,n)=>{"use strict";var r=n(51694),a=n(98052),s=n(90288);r||a(Object.prototype,"toString",s,{unsafe:!0})},74916:(e,t,n)=>{"use strict";var r=n(82109),a=n(22261);r({target:"RegExp",proto:!0,forced:/./.exec!==a},{exec:a})},78783:(e,t,n)=>{"use strict";var r=n(28710).charAt,a=n(41340),s=n(29909),o=n(51656),i=n(76178),l="String Iterator",u=s.set,c=s.getterFor(l);o(String,"String",(function(e){u(this,{type:l,string:a(e),index:0})}),(function(){var e,t=c(this),n=t.string,a=t.index;return a>=n.length?i(void 0,!0):(e=r(n,a),t.index+=e.length,i(e,!1))}))},15306:(e,t,n)=>{"use strict";var r=n(22104),a=n(46916),s=n(1702),o=n(27007),i=n(47293),l=n(19670),u=n(60614),c=n(68554),p=n(19303),d=n(17466),f=n(41340),m=n(84488),h=n(31530),g=n(58173),v=n(10647),y=n(97651),b=n(5112)("replace"),w=Math.max,x=Math.min,T=s([].concat),_=s([].push),C=s("".indexOf),S=s("".slice),N="$0"==="a".replace(/./,"$0"),E=!!/./[b]&&""===/./[b]("a","$0");o("replace",(function(e,t,n){var s=E?"$":"$0";return[function(e,n){var r=m(this),s=c(e)?void 0:g(e,b);return s?a(s,e,r,n):a(t,f(r),e,n)},function(e,a){var o=l(this),i=f(e);if("string"==typeof a&&-1===C(a,s)&&-1===C(a,"$<")){var c=n(t,o,i,a);if(c.done)return c.value}var m=u(a);m||(a=f(a));var g,b=o.global;b&&(g=o.unicode,o.lastIndex=0);for(var N,E=[];null!==(N=y(o,i))&&(_(E,N),b);){""===f(N[0])&&(o.lastIndex=h(i,d(o.lastIndex),g))}for(var L,j="",F=0,k=0;k<E.length;k++){for(var O,A=f((N=E[k])[0]),P=w(x(p(N.index),i.length),0),U=[],R=1;R<N.length;R++)_(U,void 0===(L=N[R])?L:String(L));var I=N.groups;if(m){var M=T([A],U,P,i);void 0!==I&&_(M,I),O=f(r(a,void 0,M))}else O=v(A,i,P,U,I,a);P>=F&&(j+=S(i,F,P)+O,F=P+A.length)}return j+S(i,F)}]}),!!i((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}))||!N||E)},23123:(e,t,n)=>{"use strict";var r=n(22104),a=n(46916),s=n(1702),o=n(27007),i=n(19670),l=n(68554),u=n(47850),c=n(84488),p=n(36707),d=n(31530),f=n(17466),m=n(41340),h=n(58173),g=n(41589),v=n(97651),y=n(22261),b=n(52999),w=n(47293),x=b.UNSUPPORTED_Y,T=4294967295,_=Math.min,C=[].push,S=s(/./.exec),N=s(C),E=s("".slice);o("split",(function(e,t,n){var s;return s="c"==="abbc".split(/(b)*/)[1]||4!=="test".split(/(?:)/,-1).length||2!=="ab".split(/(?:ab)*/).length||4!==".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(e,n){var s=m(c(this)),o=void 0===n?T:n>>>0;if(0===o)return[];if(void 0===e)return[s];if(!u(e))return a(t,s,e,o);for(var i,l,p,d=[],f=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),h=0,v=new RegExp(e.source,f+"g");(i=a(y,v,s))&&!((l=v.lastIndex)>h&&(N(d,E(s,h,i.index)),i.length>1&&i.index<s.length&&r(C,d,g(i,1)),p=i[0].length,h=l,d.length>=o));)v.lastIndex===i.index&&v.lastIndex++;return h===s.length?!p&&S(v,"")||N(d,""):N(d,E(s,h)),d.length>o?g(d,0,o):d}:"0".split(void 0,0).length?function(e,n){return void 0===e&&0===n?[]:a(t,this,e,n)}:t,[function(t,n){var r=c(this),o=l(t)?void 0:h(t,e);return o?a(o,t,r,n):a(s,m(r),t,n)},function(e,r){var a=i(this),o=m(e),l=n(s,a,o,r,s!==t);if(l.done)return l.value;var u=p(a,RegExp),c=a.unicode,h=(a.ignoreCase?"i":"")+(a.multiline?"m":"")+(a.unicode?"u":"")+(x?"g":"y"),g=new u(x?"^(?:"+a.source+")":a,h),y=void 0===r?T:r>>>0;if(0===y)return[];if(0===o.length)return null===v(g,o)?[o]:[];for(var b=0,w=0,C=[];w<o.length;){g.lastIndex=x?0:w;var S,L=v(g,x?E(o,w):o);if(null===L||(S=_(f(g.lastIndex+(x?w:0)),o.length))===b)w=d(o,w,c);else{if(N(C,E(o,b,w)),C.length===y)return C;for(var j=1;j<=L.length-1;j++)if(N(C,L[j]),C.length===y)return C;w=b=S}}return N(C,E(o,b)),C}]}),!!w((function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2!==n.length||"a"!==n[0]||"b"!==n[1]})),x)},4032:(e,t,n)=>{"use strict";var r=n(82109),a=n(17854),s=n(46916),o=n(1702),i=n(31913),l=n(19781),u=n(36293),c=n(47293),p=n(92597),d=n(47976),f=n(19670),m=n(45656),h=n(34948),g=n(41340),v=n(79114),y=n(70030),b=n(81956),w=n(8006),x=n(1156),T=n(25181),_=n(31236),C=n(3070),S=n(36048),N=n(55296),E=n(98052),L=n(47045),j=n(72309),F=n(6200),k=n(3501),O=n(69711),A=n(5112),P=n(6061),U=n(26800),R=n(56532),I=n(58003),M=n(29909),B=n(42092).forEach,D=F("hidden"),$="Symbol",z="prototype",H=M.set,V=M.getterFor($),G=Object[z],q=a.Symbol,J=q&&q[z],W=a.RangeError,K=a.TypeError,X=a.QObject,Y=_.f,Z=C.f,Q=x.f,ee=N.f,te=o([].push),ne=j("symbols"),re=j("op-symbols"),ae=j("wks"),se=!X||!X[z]||!X[z].findChild,oe=function(e,t,n){var r=Y(G,t);r&&delete G[t],Z(e,t,n),r&&e!==G&&Z(G,t,r)},ie=l&&c((function(){return 7!==y(Z({},"a",{get:function(){return Z(this,"a",{value:7}).a}})).a}))?oe:Z,le=function(e,t){var n=ne[e]=y(J);return H(n,{type:$,tag:e,description:t}),l||(n.description=t),n},ue=function(e,t,n){e===G&&ue(re,t,n),f(e);var r=h(t);return f(n),p(ne,r)?(n.enumerable?(p(e,D)&&e[D][r]&&(e[D][r]=!1),n=y(n,{enumerable:v(0,!1)})):(p(e,D)||Z(e,D,v(1,{})),e[D][r]=!0),ie(e,r,n)):Z(e,r,n)},ce=function(e,t){f(e);var n=m(t),r=b(n).concat(me(n));return B(r,(function(t){l&&!s(pe,n,t)||ue(e,t,n[t])})),e},pe=function(e){var t=h(e),n=s(ee,this,t);return!(this===G&&p(ne,t)&&!p(re,t))&&(!(n||!p(this,t)||!p(ne,t)||p(this,D)&&this[D][t])||n)},de=function(e,t){var n=m(e),r=h(t);if(n!==G||!p(ne,r)||p(re,r)){var a=Y(n,r);return!a||!p(ne,r)||p(n,D)&&n[D][r]||(a.enumerable=!0),a}},fe=function(e){var t=Q(m(e)),n=[];return B(t,(function(e){p(ne,e)||p(k,e)||te(n,e)})),n},me=function(e){var t=e===G,n=Q(t?re:m(e)),r=[];return B(n,(function(e){!p(ne,e)||t&&!p(G,e)||te(r,ne[e])})),r};u||(E(J=(q=function(){if(d(J,this))throw new K("Symbol is not a constructor");var e=arguments.length&&void 0!==arguments[0]?g(arguments[0]):void 0,t=O(e),n=function(e){this===G&&s(n,re,e),p(this,D)&&p(this[D],t)&&(this[D][t]=!1);var r=v(1,e);try{ie(this,t,r)}catch(e){if(!(e instanceof W))throw e;oe(this,t,r)}};return l&&se&&ie(G,t,{configurable:!0,set:n}),le(t,e)})[z],"toString",(function(){return V(this).tag})),E(q,"withoutSetter",(function(e){return le(O(e),e)})),N.f=pe,C.f=ue,S.f=ce,_.f=de,w.f=x.f=fe,T.f=me,P.f=function(e){return le(A(e),e)},l&&(L(J,"description",{configurable:!0,get:function(){return V(this).description}}),i||E(G,"propertyIsEnumerable",pe,{unsafe:!0}))),r({global:!0,constructor:!0,wrap:!0,forced:!u,sham:!u},{Symbol:q}),B(b(ae),(function(e){U(e)})),r({target:$,stat:!0,forced:!u},{useSetter:function(){se=!0},useSimple:function(){se=!1}}),r({target:"Object",stat:!0,forced:!u,sham:!l},{create:function(e,t){return void 0===t?y(e):ce(y(e),t)},defineProperty:ue,defineProperties:ce,getOwnPropertyDescriptor:de}),r({target:"Object",stat:!0,forced:!u},{getOwnPropertyNames:fe}),R(),I(q,$),k[D]=!0},41817:(e,t,n)=>{"use strict";var r=n(82109),a=n(19781),s=n(17854),o=n(1702),i=n(92597),l=n(60614),u=n(47976),c=n(41340),p=n(47045),d=n(99920),f=s.Symbol,m=f&&f.prototype;if(a&&l(f)&&(!("description"in m)||void 0!==f().description)){var h={},g=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:c(arguments[0]),t=u(m,this)?new f(e):void 0===e?f():f(e);return""===e&&(h[t]=!0),t};d(g,f),g.prototype=m,m.constructor=g;var v="Symbol(description detection)"===String(f("description detection")),y=o(m.valueOf),b=o(m.toString),w=/^Symbol\((.*)\)[^)]+$/,x=o("".replace),T=o("".slice);p(m,"description",{configurable:!0,get:function(){var e=y(this);if(i(h,e))return"";var t=b(e),n=v?T(t,7,-1):x(t,w,"$1");return""===n?void 0:n}}),r({global:!0,constructor:!0,forced:!0},{Symbol:g})}},40763:(e,t,n)=>{"use strict";var r=n(82109),a=n(35005),s=n(92597),o=n(41340),i=n(72309),l=n(2015),u=i("string-to-symbol-registry"),c=i("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!l},{for:function(e){var t=o(e);if(s(u,t))return u[t];var n=a("Symbol")(t);return u[t]=n,c[n]=t,n}})},32165:(e,t,n)=>{"use strict";n(26800)("iterator")},82526:(e,t,n)=>{"use strict";n(4032),n(40763),n(26620),n(38862),n(29660)},26620:(e,t,n)=>{"use strict";var r=n(82109),a=n(92597),s=n(52190),o=n(66330),i=n(72309),l=n(2015),u=i("symbol-to-string-registry");r({target:"Symbol",stat:!0,forced:!l},{keyFor:function(e){if(!s(e))throw new TypeError(o(e)+" is not a symbol");if(a(u,e))return u[e]}})},96649:(e,t,n)=>{"use strict";var r=n(26800),a=n(56532);r("toPrimitive"),a()},33948:(e,t,n)=>{"use strict";var r=n(17854),a=n(48324),s=n(98509),o=n(66992),i=n(68880),l=n(5112),u=l("iterator"),c=l("toStringTag"),p=o.values,d=function(e,t){if(e){if(e[u]!==p)try{i(e,u,p)}catch(t){e[u]=p}if(e[c]||i(e,c,t),a[t])for(var n in o)if(e[n]!==o[n])try{i(e,n,o[n])}catch(t){e[n]=o[n]}}};for(var f in a)d(r[f]&&r[f].prototype,f);d(s,"DOMTokenList")},20296:e=>{function t(e,t,n){var r,a,s,o,i;function l(){var u=Date.now()-o;u<t&&u>=0?r=setTimeout(l,t-u):(r=null,n||(i=e.apply(s,a),s=a=null))}null==t&&(t=100);var u=function(){s=this,a=arguments,o=Date.now();var u=n&&!r;return r||(r=setTimeout(l,t)),u&&(i=e.apply(s,a),s=a=null),i};return u.clear=function(){r&&(clearTimeout(r),r=null)},u.flush=function(){r&&(i=e.apply(s,a),s=a=null,clearTimeout(r),r=null)},u}t.debounce=t,e.exports=t},27856:function(e){e.exports=function(){"use strict";const{entries:e,setPrototypeOf:t,isFrozen:n,getPrototypeOf:r,getOwnPropertyDescriptor:a}=Object;let{freeze:s,seal:o,create:i}=Object,{apply:l,construct:u}="undefined"!=typeof Reflect&&Reflect;l||(l=function(e,t,n){return e.apply(t,n)}),s||(s=function(e){return e}),o||(o=function(e){return e}),u||(u=function(e,t){return new e(...t)});const c=x(Array.prototype.forEach),p=x(Array.prototype.pop),d=x(Array.prototype.push),f=x(String.prototype.toLowerCase),m=x(String.prototype.toString),h=x(String.prototype.match),g=x(String.prototype.replace),v=x(String.prototype.indexOf),y=x(String.prototype.trim),b=x(RegExp.prototype.test),w=T(TypeError);function x(e){return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),a=1;a<n;a++)r[a-1]=arguments[a];return l(e,t,r)}}function T(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return u(e,n)}}function _(e,r,a){var s;a=null!==(s=a)&&void 0!==s?s:f,t&&t(e,null);let o=r.length;for(;o--;){let t=r[o];if("string"==typeof t){const e=a(t);e!==t&&(n(r)||(r[o]=e),t=e)}e[t]=!0}return e}function C(t){const n=i(null);for(const[r,a]of e(t))n[r]=a;return n}function S(e,t){for(;null!==e;){const n=a(e,t);if(n){if(n.get)return x(n.get);if("function"==typeof n.value)return x(n.value)}e=r(e)}function n(e){return console.warn("fallback value for",e),null}return n}const N=s(["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","section","select","shadow","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"]),E=s(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),L=s(["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"]),j=s(["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"]),F=s(["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"]),k=s(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),O=s(["#text"]),A=s(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","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","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),P=s(["accent-height","accumulate","additive","alignment-baseline","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","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","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","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","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","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"]),U=s(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","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"]),R=s(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),I=o(/\{\{[\w\W]*|[\w\W]*\}\}/gm),M=o(/<%[\w\W]*|[\w\W]*%>/gm),B=o(/\${[\w\W]*}/gm),D=o(/^data-[\-\w.\u00B7-\uFFFF]/),$=o(/^aria-[\-\w]+$/),z=o(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),H=o(/^(?:\w+script|data):/i),V=o(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),G=o(/^html$/i);var q=Object.freeze({__proto__:null,MUSTACHE_EXPR:I,ERB_EXPR:M,TMPLIT_EXPR:B,DATA_ATTR:D,ARIA_ATTR:$,IS_ALLOWED_URI:z,IS_SCRIPT_OR_DATA:H,ATTR_WHITESPACE:V,DOCTYPE_NAME:G});const J=()=>"undefined"==typeof window?null:window,W=function(e,t){if("object"!=typeof e||"function"!=typeof e.createPolicy)return null;let n=null;const r="data-tt-policy-suffix";t&&t.hasAttribute(r)&&(n=t.getAttribute(r));const a="dompurify"+(n?"#"+n:"");try{return e.createPolicy(a,{createHTML:e=>e,createScriptURL:e=>e})}catch(e){return console.warn("TrustedTypes policy "+a+" could not be created."),null}};function K(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:J();const n=e=>K(e);if(n.version="3.0.5",n.removed=[],!t||!t.document||9!==t.document.nodeType)return n.isSupported=!1,n;const r=t.document,a=r.currentScript;let{document:o}=t;const{DocumentFragment:i,HTMLTemplateElement:l,Node:u,Element:x,NodeFilter:T,NamedNodeMap:I=t.NamedNodeMap||t.MozNamedAttrMap,HTMLFormElement:M,DOMParser:B,trustedTypes:D}=t,$=x.prototype,H=S($,"cloneNode"),V=S($,"nextSibling"),X=S($,"childNodes"),Y=S($,"parentNode");if("function"==typeof l){const e=o.createElement("template");e.content&&e.content.ownerDocument&&(o=e.content.ownerDocument)}let Z,Q="";const{implementation:ee,createNodeIterator:te,createDocumentFragment:ne,getElementsByTagName:re}=o,{importNode:ae}=r;let se={};n.isSupported="function"==typeof e&&"function"==typeof Y&&ee&&void 0!==ee.createHTMLDocument;const{MUSTACHE_EXPR:oe,ERB_EXPR:ie,TMPLIT_EXPR:le,DATA_ATTR:ue,ARIA_ATTR:ce,IS_SCRIPT_OR_DATA:pe,ATTR_WHITESPACE:de}=q;let{IS_ALLOWED_URI:fe}=q,me=null;const he=_({},[...N,...E,...L,...F,...O]);let ge=null;const ve=_({},[...A,...P,...U,...R]);let ye=Object.seal(Object.create(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}})),be=null,we=null,xe=!0,Te=!0,_e=!1,Ce=!0,Se=!1,Ne=!1,Ee=!1,Le=!1,je=!1,Fe=!1,ke=!1,Oe=!0,Ae=!1;const Pe="user-content-";let Ue=!0,Re=!1,Ie={},Me=null;const Be=_({},["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"]);let De=null;const $e=_({},["audio","video","img","source","image","track"]);let ze=null;const He=_({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Ve="http://www.w3.org/1998/Math/MathML",Ge="http://www.w3.org/2000/svg",qe="http://www.w3.org/1999/xhtml";let Je=qe,We=!1,Ke=null;const Xe=_({},[Ve,Ge,qe],m);let Ye;const Ze=["application/xhtml+xml","text/html"],Qe="text/html";let et,tt=null;const nt=o.createElement("form"),rt=function(e){return e instanceof RegExp||e instanceof Function},at=function(e){if(!tt||tt!==e){if(e&&"object"==typeof e||(e={}),e=C(e),Ye=Ye=-1===Ze.indexOf(e.PARSER_MEDIA_TYPE)?Qe:e.PARSER_MEDIA_TYPE,et="application/xhtml+xml"===Ye?m:f,me="ALLOWED_TAGS"in e?_({},e.ALLOWED_TAGS,et):he,ge="ALLOWED_ATTR"in e?_({},e.ALLOWED_ATTR,et):ve,Ke="ALLOWED_NAMESPACES"in e?_({},e.ALLOWED_NAMESPACES,m):Xe,ze="ADD_URI_SAFE_ATTR"in e?_(C(He),e.ADD_URI_SAFE_ATTR,et):He,De="ADD_DATA_URI_TAGS"in e?_(C($e),e.ADD_DATA_URI_TAGS,et):$e,Me="FORBID_CONTENTS"in e?_({},e.FORBID_CONTENTS,et):Be,be="FORBID_TAGS"in e?_({},e.FORBID_TAGS,et):{},we="FORBID_ATTR"in e?_({},e.FORBID_ATTR,et):{},Ie="USE_PROFILES"in e&&e.USE_PROFILES,xe=!1!==e.ALLOW_ARIA_ATTR,Te=!1!==e.ALLOW_DATA_ATTR,_e=e.ALLOW_UNKNOWN_PROTOCOLS||!1,Ce=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,Se=e.SAFE_FOR_TEMPLATES||!1,Ne=e.WHOLE_DOCUMENT||!1,je=e.RETURN_DOM||!1,Fe=e.RETURN_DOM_FRAGMENT||!1,ke=e.RETURN_TRUSTED_TYPE||!1,Le=e.FORCE_BODY||!1,Oe=!1!==e.SANITIZE_DOM,Ae=e.SANITIZE_NAMED_PROPS||!1,Ue=!1!==e.KEEP_CONTENT,Re=e.IN_PLACE||!1,fe=e.ALLOWED_URI_REGEXP||z,Je=e.NAMESPACE||qe,ye=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&rt(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(ye.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&rt(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(ye.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(ye.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),Se&&(Te=!1),Fe&&(je=!0),Ie&&(me=_({},[...O]),ge=[],!0===Ie.html&&(_(me,N),_(ge,A)),!0===Ie.svg&&(_(me,E),_(ge,P),_(ge,R)),!0===Ie.svgFilters&&(_(me,L),_(ge,P),_(ge,R)),!0===Ie.mathMl&&(_(me,F),_(ge,U),_(ge,R))),e.ADD_TAGS&&(me===he&&(me=C(me)),_(me,e.ADD_TAGS,et)),e.ADD_ATTR&&(ge===ve&&(ge=C(ge)),_(ge,e.ADD_ATTR,et)),e.ADD_URI_SAFE_ATTR&&_(ze,e.ADD_URI_SAFE_ATTR,et),e.FORBID_CONTENTS&&(Me===Be&&(Me=C(Me)),_(Me,e.FORBID_CONTENTS,et)),Ue&&(me["#text"]=!0),Ne&&_(me,["html","head","body"]),me.table&&(_(me,["tbody"]),delete be.tbody),e.TRUSTED_TYPES_POLICY){if("function"!=typeof e.TRUSTED_TYPES_POLICY.createHTML)throw w('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof e.TRUSTED_TYPES_POLICY.createScriptURL)throw w('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');Z=e.TRUSTED_TYPES_POLICY,Q=Z.createHTML("")}else void 0===Z&&(Z=W(D,a)),null!==Z&&"string"==typeof Q&&(Q=Z.createHTML(""));s&&s(e),tt=e}},st=_({},["mi","mo","mn","ms","mtext"]),ot=_({},["foreignobject","desc","title","annotation-xml"]),it=_({},["title","style","font","a","script"]),lt=_({},E);_(lt,L),_(lt,j);const ut=_({},F);_(ut,k);const ct=function(e){let t=Y(e);t&&t.tagName||(t={namespaceURI:Je,tagName:"template"});const n=f(e.tagName),r=f(t.tagName);return!!Ke[e.namespaceURI]&&(e.namespaceURI===Ge?t.namespaceURI===qe?"svg"===n:t.namespaceURI===Ve?"svg"===n&&("annotation-xml"===r||st[r]):Boolean(lt[n]):e.namespaceURI===Ve?t.namespaceURI===qe?"math"===n:t.namespaceURI===Ge?"math"===n&&ot[r]:Boolean(ut[n]):e.namespaceURI===qe?!(t.namespaceURI===Ge&&!ot[r])&&!(t.namespaceURI===Ve&&!st[r])&&!ut[n]&&(it[n]||!lt[n]):!("application/xhtml+xml"!==Ye||!Ke[e.namespaceURI]))},pt=function(e){d(n.removed,{element:e});try{e.parentNode.removeChild(e)}catch(t){e.remove()}},dt=function(e,t){try{d(n.removed,{attribute:t.getAttributeNode(e),from:t})}catch(e){d(n.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e&&!ge[e])if(je||Fe)try{pt(t)}catch(e){}else try{t.setAttribute(e,"")}catch(e){}},ft=function(e){let t,n;if(Le)e="<remove></remove>"+e;else{const t=h(e,/^[\r\n\t ]+/);n=t&&t[0]}"application/xhtml+xml"===Ye&&Je===qe&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");const r=Z?Z.createHTML(e):e;if(Je===qe)try{t=(new B).parseFromString(r,Ye)}catch(e){}if(!t||!t.documentElement){t=ee.createDocument(Je,"template",null);try{t.documentElement.innerHTML=We?Q:r}catch(e){}}const a=t.body||t.documentElement;return e&&n&&a.insertBefore(o.createTextNode(n),a.childNodes[0]||null),Je===qe?re.call(t,Ne?"html":"body")[0]:Ne?t.documentElement:a},mt=function(e){return te.call(e.ownerDocument||e,e,T.SHOW_ELEMENT|T.SHOW_COMMENT|T.SHOW_TEXT,null,!1)},ht=function(e){return e instanceof M&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||!(e.attributes instanceof I)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes)},gt=function(e){return"object"==typeof u?e instanceof u:e&&"object"==typeof e&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName},vt=function(e,t,r){se[e]&&c(se[e],(e=>{e.call(n,t,r,tt)}))},yt=function(e){let t;if(vt("beforeSanitizeElements",e,null),ht(e))return pt(e),!0;const r=et(e.nodeName);if(vt("uponSanitizeElement",e,{tagName:r,allowedTags:me}),e.hasChildNodes()&&!gt(e.firstElementChild)&&(!gt(e.content)||!gt(e.content.firstElementChild))&&b(/<[/\w]/g,e.innerHTML)&&b(/<[/\w]/g,e.textContent))return pt(e),!0;if(!me[r]||be[r]){if(!be[r]&&wt(r)){if(ye.tagNameCheck instanceof RegExp&&b(ye.tagNameCheck,r))return!1;if(ye.tagNameCheck instanceof Function&&ye.tagNameCheck(r))return!1}if(Ue&&!Me[r]){const t=Y(e)||e.parentNode,n=X(e)||e.childNodes;if(n&&t)for(let r=n.length-1;r>=0;--r)t.insertBefore(H(n[r],!0),V(e))}return pt(e),!0}return e instanceof x&&!ct(e)?(pt(e),!0):"noscript"!==r&&"noembed"!==r&&"noframes"!==r||!b(/<\/no(script|embed|frames)/i,e.innerHTML)?(Se&&3===e.nodeType&&(t=e.textContent,t=g(t,oe," "),t=g(t,ie," "),t=g(t,le," "),e.textContent!==t&&(d(n.removed,{element:e.cloneNode()}),e.textContent=t)),vt("afterSanitizeElements",e,null),!1):(pt(e),!0)},bt=function(e,t,n){if(Oe&&("id"===t||"name"===t)&&(n in o||n in nt))return!1;if(Te&&!we[t]&&b(ue,t));else if(xe&&b(ce,t));else if(!ge[t]||we[t]){if(!(wt(e)&&(ye.tagNameCheck instanceof RegExp&&b(ye.tagNameCheck,e)||ye.tagNameCheck instanceof Function&&ye.tagNameCheck(e))&&(ye.attributeNameCheck instanceof RegExp&&b(ye.attributeNameCheck,t)||ye.attributeNameCheck instanceof Function&&ye.attributeNameCheck(t))||"is"===t&&ye.allowCustomizedBuiltInElements&&(ye.tagNameCheck instanceof RegExp&&b(ye.tagNameCheck,n)||ye.tagNameCheck instanceof Function&&ye.tagNameCheck(n))))return!1}else if(ze[t]);else if(b(fe,g(n,de,"")));else if("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==v(n,"data:")||!De[e])if(_e&&!b(pe,g(n,de,"")));else if(n)return!1;return!0},wt=function(e){return e.indexOf("-")>0},xt=function(e){let t,r,a,s;vt("beforeSanitizeAttributes",e,null);const{attributes:o}=e;if(!o)return;const i={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ge};for(s=o.length;s--;){t=o[s];const{name:l,namespaceURI:u}=t;if(r="value"===l?t.value:y(t.value),a=et(l),i.attrName=a,i.attrValue=r,i.keepAttr=!0,i.forceKeepAttr=void 0,vt("uponSanitizeAttribute",e,i),r=i.attrValue,i.forceKeepAttr)continue;if(dt(l,e),!i.keepAttr)continue;if(!Ce&&b(/\/>/i,r)){dt(l,e);continue}Se&&(r=g(r,oe," "),r=g(r,ie," "),r=g(r,le," "));const c=et(e.nodeName);if(bt(c,a,r)){if(!Ae||"id"!==a&&"name"!==a||(dt(l,e),r=Pe+r),Z&&"object"==typeof D&&"function"==typeof D.getAttributeType)if(u);else switch(D.getAttributeType(c,a)){case"TrustedHTML":r=Z.createHTML(r);break;case"TrustedScriptURL":r=Z.createScriptURL(r)}try{u?e.setAttributeNS(u,l,r):e.setAttribute(l,r),p(n.removed)}catch(e){}}}vt("afterSanitizeAttributes",e,null)},Tt=function e(t){let n;const r=mt(t);for(vt("beforeSanitizeShadowDOM",t,null);n=r.nextNode();)vt("uponSanitizeShadowNode",n,null),yt(n)||(n.content instanceof i&&e(n.content),xt(n));vt("afterSanitizeShadowDOM",t,null)};return n.sanitize=function(e){let t,a,s,o,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(We=!e,We&&(e="\x3c!--\x3e"),"string"!=typeof e&&!gt(e)){if("function"!=typeof e.toString)throw w("toString is not a function");if("string"!=typeof(e=e.toString()))throw w("dirty is not a string, aborting")}if(!n.isSupported)return e;if(Ee||at(l),n.removed=[],"string"==typeof e&&(Re=!1),Re){if(e.nodeName){const t=et(e.nodeName);if(!me[t]||be[t])throw w("root node is forbidden and cannot be sanitized in-place")}}else if(e instanceof u)t=ft("\x3c!----\x3e"),a=t.ownerDocument.importNode(e,!0),1===a.nodeType&&"BODY"===a.nodeName||"HTML"===a.nodeName?t=a:t.appendChild(a);else{if(!je&&!Se&&!Ne&&-1===e.indexOf("<"))return Z&&ke?Z.createHTML(e):e;if(t=ft(e),!t)return je?null:ke?Q:""}t&&Le&&pt(t.firstChild);const c=mt(Re?e:t);for(;s=c.nextNode();)yt(s)||(s.content instanceof i&&Tt(s.content),xt(s));if(Re)return e;if(je){if(Fe)for(o=ne.call(t.ownerDocument);t.firstChild;)o.appendChild(t.firstChild);else o=t;return(ge.shadowroot||ge.shadowrootmode)&&(o=ae.call(r,o,!0)),o}let p=Ne?t.outerHTML:t.innerHTML;return Ne&&me["!doctype"]&&t.ownerDocument&&t.ownerDocument.doctype&&t.ownerDocument.doctype.name&&b(G,t.ownerDocument.doctype.name)&&(p="<!DOCTYPE "+t.ownerDocument.doctype.name+">\n"+p),Se&&(p=g(p,oe," "),p=g(p,ie," "),p=g(p,le," ")),Z&&ke?Z.createHTML(p):p},n.setConfig=function(e){at(e),Ee=!0},n.clearConfig=function(){tt=null,Ee=!1},n.isValidAttribute=function(e,t,n){tt||at({});const r=et(e),a=et(t);return bt(r,a,n)},n.addHook=function(e,t){"function"==typeof t&&(se[e]=se[e]||[],d(se[e],t))},n.removeHook=function(e){if(se[e])return p(se[e])},n.removeHooks=function(e){se[e]&&(se[e]=[])},n.removeAllHooks=function(){se={}},n}return K()}()},95573:e=>{"use strict";var t=/["'&<>]/;e.exports=function(e){var n,r=""+e,a=t.exec(r);if(!a)return r;var s="",o=0,i=0;for(o=a.index;o<r.length;o++){switch(r.charCodeAt(o)){case 34:n="&quot;";break;case 38:n="&amp;";break;case 39:n="&#39;";break;case 60:n="&lt;";break;case 62:n="&gt;";break;default:continue}i!==o&&(s+=r.substring(i,o)),i=o+1,s+=n}return i!==o?s+r.substring(i,o):s}},80645:(e,t)=>{t.read=function(e,t,n,r,a){var s,o,i=8*a-r-1,l=(1<<i)-1,u=l>>1,c=-7,p=n?a-1:0,d=n?-1:1,f=e[t+p];for(p+=d,s=f&(1<<-c)-1,f>>=-c,c+=i;c>0;s=256*s+e[t+p],p+=d,c-=8);for(o=s&(1<<-c)-1,s>>=-c,c+=r;c>0;o=256*o+e[t+p],p+=d,c-=8);if(0===s)s=1-u;else{if(s===l)return o?NaN:1/0*(f?-1:1);o+=Math.pow(2,r),s-=u}return(f?-1:1)*o*Math.pow(2,s-r)},t.write=function(e,t,n,r,a,s){var o,i,l,u=8*s-a-1,c=(1<<u)-1,p=c>>1,d=23===a?Math.pow(2,-24)-Math.pow(2,-77):0,f=r?0:s-1,m=r?1:-1,h=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(i=isNaN(t)?1:0,o=c):(o=Math.floor(Math.log(t)/Math.LN2),t*(l=Math.pow(2,-o))<1&&(o--,l*=2),(t+=o+p>=1?d/l:d*Math.pow(2,1-p))*l>=2&&(o++,l/=2),o+p>=c?(i=0,o=c):o+p>=1?(i=(t*l-1)*Math.pow(2,a),o+=p):(i=t*Math.pow(2,p-1)*Math.pow(2,a),o=0));a>=8;e[n+f]=255&i,f+=m,i/=256,a-=8);for(o=o<<a|i,u+=a;u>0;e[n+f]=255&o,f+=m,o/=256,u-=8);e[n+f-m]|=128*h}},29208:(e,t,n)=>{var r="__lodash_hash_undefined__",a=1/0,s="[object Function]",o="[object GeneratorFunction]",i="[object Symbol]",l=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,u=/^\w*$/,c=/^\./,p=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,d=/\\(\\)?/g,f=/^\[object .+?Constructor\]$/,m="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,h="object"==typeof self&&self&&self.Object===Object&&self,g=m||h||Function("return this")();var v,y=Array.prototype,b=Function.prototype,w=Object.prototype,x=g["__core-js_shared__"],T=(v=/[^.]+$/.exec(x&&x.keys&&x.keys.IE_PROTO||""))?"Symbol(src)_1."+v:"",_=b.toString,C=w.hasOwnProperty,S=w.toString,N=RegExp("^"+_.call(C).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),E=g.Symbol,L=y.splice,j=D(g,"Map"),F=D(Object,"create"),k=E?E.prototype:void 0,O=k?k.toString:void 0;function A(e){var t=-1,n=e?e.length:0;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function P(e){var t=-1,n=e?e.length:0;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function U(e){var t=-1,n=e?e.length:0;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function R(e,t){for(var n,r,a=e.length;a--;)if((n=e[a][0])===(r=t)||n!=n&&r!=r)return a;return-1}function I(e,t){var n;t=function(e,t){if(V(e))return!1;var n=typeof e;if("number"==n||"symbol"==n||"boolean"==n||null==e||q(e))return!0;return u.test(e)||!l.test(e)||null!=t&&e in Object(t)}(t,e)?[t]:V(n=t)?n:$(n);for(var r=0,a=t.length;null!=e&&r<a;)e=e[z(t[r++])];return r&&r==a?e:void 0}function M(e){if(!G(e)||(t=e,T&&T in t))return!1;var t,n=function(e){var t=G(e)?S.call(e):"";return t==s||t==o}(e)||function(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}(e)?N:f;return n.test(function(e){if(null!=e){try{return _.call(e)}catch(e){}try{return e+""}catch(e){}}return""}(e))}function B(e,t){var n,r,a=e.__data__;return("string"==(r=typeof(n=t))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?a["string"==typeof t?"string":"hash"]:a.map}function D(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return M(n)?n:void 0}A.prototype.clear=function(){this.__data__=F?F(null):{}},A.prototype.delete=function(e){return this.has(e)&&delete this.__data__[e]},A.prototype.get=function(e){var t=this.__data__;if(F){var n=t[e];return n===r?void 0:n}return C.call(t,e)?t[e]:void 0},A.prototype.has=function(e){var t=this.__data__;return F?void 0!==t[e]:C.call(t,e)},A.prototype.set=function(e,t){return this.__data__[e]=F&&void 0===t?r:t,this},P.prototype.clear=function(){this.__data__=[]},P.prototype.delete=function(e){var t=this.__data__,n=R(t,e);return!(n<0)&&(n==t.length-1?t.pop():L.call(t,n,1),!0)},P.prototype.get=function(e){var t=this.__data__,n=R(t,e);return n<0?void 0:t[n][1]},P.prototype.has=function(e){return R(this.__data__,e)>-1},P.prototype.set=function(e,t){var n=this.__data__,r=R(n,e);return r<0?n.push([e,t]):n[r][1]=t,this},U.prototype.clear=function(){this.__data__={hash:new A,map:new(j||P),string:new A}},U.prototype.delete=function(e){return B(this,e).delete(e)},U.prototype.get=function(e){return B(this,e).get(e)},U.prototype.has=function(e){return B(this,e).has(e)},U.prototype.set=function(e,t){return B(this,e).set(e,t),this};var $=H((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if(q(e))return O?O.call(e):"";var t=e+"";return"0"==t&&1/e==-a?"-0":t}(t);var n=[];return c.test(e)&&n.push(""),e.replace(p,(function(e,t,r,a){n.push(r?a.replace(d,"$1"):t||e)})),n}));function z(e){if("string"==typeof e||q(e))return e;var t=e+"";return"0"==t&&1/e==-a?"-0":t}function H(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,a=t?t.apply(this,r):r[0],s=n.cache;if(s.has(a))return s.get(a);var o=e.apply(this,r);return n.cache=s.set(a,o),o};return n.cache=new(H.Cache||U),n}H.Cache=U;var V=Array.isArray;function G(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function q(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&S.call(e)==i}e.exports=function(e,t,n){var r=null==e?void 0:I(e,t);return void 0===r?n:r}},57699:(e,t,n)=>{"use strict";var r=n(29208),a=n(44587);function s(e){e=e||{},this.catalogs={},this.locale="",this.domain="messages",this.listeners=[],this.sourceLocale="",e.sourceLocale&&("string"==typeof e.sourceLocale?this.sourceLocale=e.sourceLocale:this.warn("The `sourceLocale` option should be a string")),this.debug="debug"in e&&!0===e.debug}e.exports=s,s.prototype.on=function(e,t){this.listeners.push({eventName:e,callback:t})},s.prototype.off=function(e,t){this.listeners=this.listeners.filter((function(n){return!1==(n.eventName===e&&n.callback===t)}))},s.prototype.emit=function(e,t){for(var n=0;n<this.listeners.length;n++){var r=this.listeners[n];r.eventName===e&&r.callback(t)}},s.prototype.warn=function(e){this.debug&&console.warn(e),this.emit("error",new Error(e))},s.prototype.addTranslations=function(e,t,n){this.catalogs[e]||(this.catalogs[e]={}),this.catalogs[e][t]=n},s.prototype.setLocale=function(e){"string"==typeof e?(""===e.trim()&&this.warn("You called setLocale() with an empty value, which makes little sense."),e===this.sourceLocale||this.catalogs[e]||this.warn('You called setLocale() with "'+e+'", but no translations for that locale has been added.'),this.locale=e):this.warn("You called setLocale() with an argument of type "+typeof e+". The locale must be a string.")},s.prototype.setTextDomain=function(e){"string"==typeof e?(""===e.trim()&&this.warn("You called setTextDomain() with an empty `domain` value."),this.domain=e):this.warn("You called setTextDomain() with an argument of type "+typeof e+". The domain must be a string.")},s.prototype.gettext=function(e){return this.dnpgettext(this.domain,"",e)},s.prototype.dgettext=function(e,t){return this.dnpgettext(e,"",t)},s.prototype.ngettext=function(e,t,n){return this.dnpgettext(this.domain,"",e,t,n)},s.prototype.dngettext=function(e,t,n,r){return this.dnpgettext(e,"",t,n,r)},s.prototype.pgettext=function(e,t){return this.dnpgettext(this.domain,e,t)},s.prototype.dpgettext=function(e,t,n){return this.dnpgettext(e,t,n)},s.prototype.npgettext=function(e,t,n,r){return this.dnpgettext(this.domain,e,t,n,r)},s.prototype.dnpgettext=function(e,t,n,r,o){var i,l,u=n;if(t=t||"",isNaN(o)||1===o||(u=r||n),i=this._getTranslation(e,t,n)){if("number"==typeof o)"boolean"==typeof(l=(0,a[s.getLanguageCode(this.locale)].pluralsFunc)(o))&&(l=l?1:0);else l=0;return i.msgstr[l]||u}return this.sourceLocale&&this.locale===this.sourceLocale||this.warn('No translation was found for msgid "'+n+'" in msgctxt "'+t+'" and domain "'+e+'"'),u},s.prototype.getComment=function(e,t,n){var r;return(r=this._getTranslation(e,t,n))&&r.comments||{}},s.prototype._getTranslation=function(e,t,n){return t=t||"",r(this.catalogs,[this.locale,e,"translations",t,n])},s.getLanguageCode=function(e){return e.split(/[\-_]/)[0].toLowerCase()},s.prototype.textdomain=function(e){this.debug&&console.warn("textdomain(domain) was used to set locales in node-gettext v1. Make sure you are using it for domains, and switch to setLocale(locale) if you are not.\n\n To read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x\n\nThis warning will be removed in the final 2.0.0"),this.setTextDomain(e)},s.prototype.setlocale=function(e){this.setLocale(e)},s.prototype.addTextdomain=function(){console.error("addTextdomain() is deprecated.\n\n* To add translations, use addTranslations()\n* To set the default domain, use setTextDomain() (or its alias textdomain())\n\nTo read more about the migration from node-gettext v1 to v2, see https://github.com/alexanderwallin/node-gettext/#migrating-from-1x-to-2x")}},44587:e=>{"use strict";e.exports={ach:{name:"Acholi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},af:{name:"Afrikaans",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ak:{name:"Akan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},am:{name:"Amharic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},an:{name:"Aragonese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ar:{name:"Arabic",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2},{plural:3,sample:3},{plural:4,sample:11},{plural:5,sample:100}],nplurals:6,pluralsText:"nplurals = 6; plural = (n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5)",pluralsFunc:function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5}},arn:{name:"Mapudungun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},ast:{name:"Asturian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ay:{name:"Aymará",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},az:{name:"Azerbaijani",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},be:{name:"Belarusian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},bg:{name:"Bulgarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},bn:{name:"Bengali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},bo:{name:"Tibetan",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},br:{name:"Breton",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},brx:{name:"Bodo",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},bs:{name:"Bosnian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},ca:{name:"Catalan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},cgg:{name:"Chiga",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},cs:{name:"Czech",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e>=2&&e<=4?1:2}},csb:{name:"Kashubian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},cy:{name:"Welsh",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:8}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : (n !== 8 && n !== 11) ? 2 : 3)",pluralsFunc:function(e){return 1===e?0:2===e?1:8!==e&&11!==e?2:3}},da:{name:"Danish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},de:{name:"German",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},doi:{name:"Dogri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},dz:{name:"Dzongkha",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},el:{name:"Greek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},en:{name:"English",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},eo:{name:"Esperanto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},es:{name:"Spanish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},et:{name:"Estonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},eu:{name:"Basque",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fa:{name:"Persian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ff:{name:"Fulah",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fi:{name:"Finnish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fil:{name:"Filipino",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},fo:{name:"Faroese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fr:{name:"French",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},fur:{name:"Friulian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},fy:{name:"Frisian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ga:{name:"Irish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:7},{plural:4,sample:11}],nplurals:5,pluralsText:"nplurals = 5; plural = (n === 1 ? 0 : n === 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4)",pluralsFunc:function(e){return 1===e?0:2===e?1:e<7?2:e<11?3:4}},gd:{name:"Scottish Gaelic",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = ((n === 1 || n === 11) ? 0 : (n === 2 || n === 12) ? 1 : (n > 2 && n < 20) ? 2 : 3)",pluralsFunc:function(e){return 1===e||11===e?0:2===e||12===e?1:e>2&&e<20?2:3}},gl:{name:"Galician",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},gu:{name:"Gujarati",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},gun:{name:"Gun",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},ha:{name:"Hausa",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},he:{name:"Hebrew",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hi:{name:"Hindi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hne:{name:"Chhattisgarhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hr:{name:"Croatian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},hu:{name:"Hungarian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},hy:{name:"Armenian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},id:{name:"Indonesian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},is:{name:"Icelandic",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n % 10 !== 1 || n % 100 === 11)",pluralsFunc:function(e){return e%10!=1||e%100==11}},it:{name:"Italian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ja:{name:"Japanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jbo:{name:"Lojban",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},jv:{name:"Javanese",examples:[{plural:0,sample:0},{plural:1,sample:1}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 0)",pluralsFunc:function(e){return 0!==e}},ka:{name:"Georgian",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kk:{name:"Kazakh",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},km:{name:"Khmer",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},kn:{name:"Kannada",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ko:{name:"Korean",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ku:{name:"Kurdish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},kw:{name:"Cornish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:4}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 2 ? 1 : n === 3 ? 2 : 3)",pluralsFunc:function(e){return 1===e?0:2===e?1:3===e?2:3}},ky:{name:"Kyrgyz",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lb:{name:"Letzeburgesch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ln:{name:"Lingala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},lo:{name:"Lao",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},lt:{name:"Lithuanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:10}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2}},lv:{name:"Latvian",examples:[{plural:2,sample:0},{plural:0,sample:1},{plural:1,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n !== 0 ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:0!==e?1:2}},mai:{name:"Maithili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mfe:{name:"Mauritian Creole",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},mg:{name:"Malagasy",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},mi:{name:"Maori",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},mk:{name:"Macedonian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n === 1 || n % 10 === 1 ? 0 : 1)",pluralsFunc:function(e){return 1===e||e%10==1?0:1}},ml:{name:"Malayalam",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mn:{name:"Mongolian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mni:{name:"Manipuri",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},mnk:{name:"Mandinka",examples:[{plural:0,sample:0},{plural:1,sample:1},{plural:2,sample:2}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 0 ? 0 : n === 1 ? 1 : 2)",pluralsFunc:function(e){return 0===e?0:1===e?1:2}},mr:{name:"Marathi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ms:{name:"Malay",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},mt:{name:"Maltese",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:11},{plural:3,sample:20}],nplurals:4,pluralsText:"nplurals = 4; plural = (n === 1 ? 0 : n === 0 || ( n % 100 > 1 && n % 100 < 11) ? 1 : (n % 100 > 10 && n % 100 < 20 ) ? 2 : 3)",pluralsFunc:function(e){return 1===e?0:0===e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3}},my:{name:"Burmese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},nah:{name:"Nahuatl",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nap:{name:"Neapolitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nb:{name:"Norwegian Bokmal",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ne:{name:"Nepali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nl:{name:"Dutch",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nn:{name:"Norwegian Nynorsk",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},no:{name:"Norwegian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},nso:{name:"Northern Sotho",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},oc:{name:"Occitan",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},or:{name:"Oriya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pa:{name:"Punjabi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pap:{name:"Papiamento",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pl:{name:"Polish",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},pms:{name:"Piemontese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ps:{name:"Pashto",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},pt:{name:"Portuguese",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},rm:{name:"Romansh",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ro:{name:"Romanian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:20}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n === 0 || (n % 100 > 0 && n % 100 < 20)) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:0===e||e%100>0&&e%100<20?1:2}},ru:{name:"Russian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},rw:{name:"Kinyarwanda",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sah:{name:"Yakut",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sat:{name:"Santali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sco:{name:"Scots",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sd:{name:"Sindhi",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},se:{name:"Northern Sami",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},si:{name:"Sinhala",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sk:{name:"Slovak",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n === 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2)",pluralsFunc:function(e){return 1===e?0:e>=2&&e<=4?1:2}},sl:{name:"Slovenian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:3},{plural:3,sample:5}],nplurals:4,pluralsText:"nplurals = 4; plural = (n % 100 === 1 ? 0 : n % 100 === 2 ? 1 : n % 100 === 3 || n % 100 === 4 ? 2 : 3)",pluralsFunc:function(e){return e%100==1?0:e%100==2?1:e%100==3||e%100==4?2:3}},so:{name:"Somali",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},son:{name:"Songhay",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sq:{name:"Albanian",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sr:{name:"Serbian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},su:{name:"Sundanese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},sv:{name:"Swedish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},sw:{name:"Swahili",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},ta:{name:"Tamil",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},te:{name:"Telugu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},tg:{name:"Tajik",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},th:{name:"Thai",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ti:{name:"Tigrinya",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},tk:{name:"Turkmen",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},tr:{name:"Turkish",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},tt:{name:"Tatar",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},ug:{name:"Uyghur",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},uk:{name:"Ukrainian",examples:[{plural:0,sample:1},{plural:1,sample:2},{plural:2,sample:5}],nplurals:3,pluralsText:"nplurals = 3; plural = (n % 10 === 1 && n % 100 !== 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2)",pluralsFunc:function(e){return e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2}},ur:{name:"Urdu",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},uz:{name:"Uzbek",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},vi:{name:"Vietnamese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},wa:{name:"Walloon",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n > 1)",pluralsFunc:function(e){return e>1}},wo:{name:"Wolof",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}},yo:{name:"Yoruba",examples:[{plural:0,sample:1},{plural:1,sample:2}],nplurals:2,pluralsText:"nplurals = 2; plural = (n !== 1)",pluralsFunc:function(e){return 1!==e}},zh:{name:"Chinese",examples:[{plural:0,sample:1}],nplurals:1,pluralsText:"nplurals = 1; plural = 0",pluralsFunc:function(){return 0}}}},43935:(e,t,n)=>{"use strict";var r=n(34155);function a(e){if("string"!=typeof e)throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}function s(e,t){for(var n,r="",a=0,s=-1,o=0,i=0;i<=e.length;++i){if(i<e.length)n=e.charCodeAt(i);else{if(47===n)break;n=47}if(47===n){if(s===i-1||1===o);else if(s!==i-1&&2===o){if(r.length<2||2!==a||46!==r.charCodeAt(r.length-1)||46!==r.charCodeAt(r.length-2))if(r.length>2){var l=r.lastIndexOf("/");if(l!==r.length-1){-1===l?(r="",a=0):a=(r=r.slice(0,l)).length-1-r.lastIndexOf("/"),s=i,o=0;continue}}else if(2===r.length||1===r.length){r="",a=0,s=i,o=0;continue}t&&(r.length>0?r+="/..":r="..",a=2)}else r.length>0?r+="/"+e.slice(s+1,i):r=e.slice(s+1,i),a=i-s-1;s=i,o=0}else 46===n&&-1!==o?++o:o=-1}return r}var o={resolve:function(){for(var e,t="",n=!1,o=arguments.length-1;o>=-1&&!n;o--){var i;o>=0?i=arguments[o]:(void 0===e&&(e=r.cwd()),i=e),a(i),0!==i.length&&(t=i+"/"+t,n=47===i.charCodeAt(0))}return t=s(t,!n),n?t.length>0?"/"+t:"/":t.length>0?t:"."},normalize:function(e){if(a(e),0===e.length)return".";var t=47===e.charCodeAt(0),n=47===e.charCodeAt(e.length-1);return 0!==(e=s(e,!t)).length||t||(e="."),e.length>0&&n&&(e+="/"),t?"/"+e:e},isAbsolute:function(e){return a(e),e.length>0&&47===e.charCodeAt(0)},join:function(){if(0===arguments.length)return".";for(var e,t=0;t<arguments.length;++t){var n=arguments[t];a(n),n.length>0&&(void 0===e?e=n:e+="/"+n)}return void 0===e?".":o.normalize(e)},relative:function(e,t){if(a(e),a(t),e===t)return"";if((e=o.resolve(e))===(t=o.resolve(t)))return"";for(var n=1;n<e.length&&47===e.charCodeAt(n);++n);for(var r=e.length,s=r-n,i=1;i<t.length&&47===t.charCodeAt(i);++i);for(var l=t.length-i,u=s<l?s:l,c=-1,p=0;p<=u;++p){if(p===u){if(l>u){if(47===t.charCodeAt(i+p))return t.slice(i+p+1);if(0===p)return t.slice(i+p)}else s>u&&(47===e.charCodeAt(n+p)?c=p:0===p&&(c=0));break}var d=e.charCodeAt(n+p);if(d!==t.charCodeAt(i+p))break;47===d&&(c=p)}var f="";for(p=n+c+1;p<=r;++p)p!==r&&47!==e.charCodeAt(p)||(0===f.length?f+="..":f+="/..");return f.length>0?f+t.slice(i+c):(i+=c,47===t.charCodeAt(i)&&++i,t.slice(i))},_makeLong:function(e){return e},dirname:function(e){if(a(e),0===e.length)return".";for(var t=e.charCodeAt(0),n=47===t,r=-1,s=!0,o=e.length-1;o>=1;--o)if(47===(t=e.charCodeAt(o))){if(!s){r=o;break}}else s=!1;return-1===r?n?"/":".":n&&1===r?"//":e.slice(0,r)},basename:function(e,t){if(void 0!==t&&"string"!=typeof t)throw new TypeError('"ext" argument must be a string');a(e);var n,r=0,s=-1,o=!0;if(void 0!==t&&t.length>0&&t.length<=e.length){if(t.length===e.length&&t===e)return"";var i=t.length-1,l=-1;for(n=e.length-1;n>=0;--n){var u=e.charCodeAt(n);if(47===u){if(!o){r=n+1;break}}else-1===l&&(o=!1,l=n+1),i>=0&&(u===t.charCodeAt(i)?-1==--i&&(s=n):(i=-1,s=l))}return r===s?s=l:-1===s&&(s=e.length),e.slice(r,s)}for(n=e.length-1;n>=0;--n)if(47===e.charCodeAt(n)){if(!o){r=n+1;break}}else-1===s&&(o=!1,s=n+1);return-1===s?"":e.slice(r,s)},extname:function(e){a(e);for(var t=-1,n=0,r=-1,s=!0,o=0,i=e.length-1;i>=0;--i){var l=e.charCodeAt(i);if(47!==l)-1===r&&(s=!1,r=i+1),46===l?-1===t?t=i:1!==o&&(o=1):-1!==t&&(o=-1);else if(!s){n=i+1;break}}return-1===t||-1===r||0===o||1===o&&t===r-1&&t===n+1?"":e.slice(t,r)},format:function(e){if(null===e||"object"!=typeof e)throw new TypeError('The "pathObject" argument must be of type Object. Received type '+typeof e);return function(e,t){var n=t.dir||t.root,r=t.base||(t.name||"")+(t.ext||"");return n?n===t.root?n+r:n+e+r:r}("/",e)},parse:function(e){a(e);var t={root:"",dir:"",base:"",ext:"",name:""};if(0===e.length)return t;var n,r=e.charCodeAt(0),s=47===r;s?(t.root="/",n=1):n=0;for(var o=-1,i=0,l=-1,u=!0,c=e.length-1,p=0;c>=n;--c)if(47!==(r=e.charCodeAt(c)))-1===l&&(u=!1,l=c+1),46===r?-1===o?o=c:1!==p&&(p=1):-1!==o&&(p=-1);else if(!u){i=c+1;break}return-1===o||-1===l||0===p||1===p&&o===l-1&&o===i+1?-1!==l&&(t.base=t.name=0===i&&s?e.slice(1,l):e.slice(i,l)):(0===i&&s?(t.name=e.slice(1,o),t.base=e.slice(1,l)):(t.name=e.slice(i,o),t.base=e.slice(i,l)),t.ext=e.slice(o,l)),i>0?t.dir=e.slice(0,i-1):s&&(t.dir="/"),t},sep:"/",delimiter:":",win32:null,posix:null};o.posix=o,e.exports=o},34155:e=>{var t,n,r=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function o(e){if(t===setTimeout)return setTimeout(e,0);if((t===a||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(n){try{return t.call(null,e,0)}catch(n){return t.call(this,e,0)}}}!function(){try{t="function"==typeof setTimeout?setTimeout:a}catch(e){t=a}try{n="function"==typeof clearTimeout?clearTimeout:s}catch(e){n=s}}();var i,l=[],u=!1,c=-1;function p(){u&&i&&(u=!1,i.length?l=i.concat(l):c=-1,l.length&&d())}function d(){if(!u){var e=o(p);u=!0;for(var t=l.length;t;){for(i=l,l=[];++c<t;)i&&i[c].run();c=-1,t=l.length}i=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===s||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{return n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function f(e,t){this.fun=e,this.array=t}function m(){}r.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new f(e,t)),1!==l.length||u||o(d)},f.prototype.run=function(){this.fun.apply(null,this.array)},r.title="browser",r.browser=!0,r.env={},r.argv=[],r.version="",r.versions={},r.on=m,r.addListener=m,r.once=m,r.off=m,r.removeListener=m,r.removeAllListeners=m,r.emit=m,r.prependListener=m,r.prependOnceListener=m,r.listeners=function(e){return[]},r.binding=function(e){throw new Error("process.binding is not supported")},r.cwd=function(){return"/"},r.chdir=function(e){throw new Error("process.chdir is not supported")},r.umask=function(){return 0}},48588:function(e){var t,n;t=this,n=function(e){var t=function(e){return new t.lib.init(e)};function n(e,t){return t.offset[e]?isNaN(t.offset[e])?t.offset[e]:t.offset[e]+"px":"0px"}function r(e,t){return!(!e||"string"!=typeof t||!(e.className&&e.className.trim().split(/\s+/gi).indexOf(t)>-1))}return t.defaults={oldestFirst:!0,text:"Toastify is awesome!",node:void 0,duration:3e3,selector:void 0,callback:function(){},destination:void 0,newWindow:!1,close:!1,gravity:"toastify-top",positionLeft:!1,position:"",backgroundColor:"",avatar:"",className:"",stopOnFocus:!0,onClick:function(){},offset:{x:0,y:0},escapeMarkup:!0,ariaLive:"polite",style:{background:""}},t.lib=t.prototype={toastify:"1.12.0",constructor:t,init:function(e){return e||(e={}),this.options={},this.toastElement=null,this.options.text=e.text||t.defaults.text,this.options.node=e.node||t.defaults.node,this.options.duration=0===e.duration?0:e.duration||t.defaults.duration,this.options.selector=e.selector||t.defaults.selector,this.options.callback=e.callback||t.defaults.callback,this.options.destination=e.destination||t.defaults.destination,this.options.newWindow=e.newWindow||t.defaults.newWindow,this.options.close=e.close||t.defaults.close,this.options.gravity="bottom"===e.gravity?"toastify-bottom":t.defaults.gravity,this.options.positionLeft=e.positionLeft||t.defaults.positionLeft,this.options.position=e.position||t.defaults.position,this.options.backgroundColor=e.backgroundColor||t.defaults.backgroundColor,this.options.avatar=e.avatar||t.defaults.avatar,this.options.className=e.className||t.defaults.className,this.options.stopOnFocus=void 0===e.stopOnFocus?t.defaults.stopOnFocus:e.stopOnFocus,this.options.onClick=e.onClick||t.defaults.onClick,this.options.offset=e.offset||t.defaults.offset,this.options.escapeMarkup=void 0!==e.escapeMarkup?e.escapeMarkup:t.defaults.escapeMarkup,this.options.ariaLive=e.ariaLive||t.defaults.ariaLive,this.options.style=e.style||t.defaults.style,e.backgroundColor&&(this.options.style.background=e.backgroundColor),this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var e=document.createElement("div");for(var t in e.className="toastify on "+this.options.className,this.options.position?e.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(e.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):e.className+=" toastify-right",e.className+=" "+this.options.gravity,this.options.backgroundColor&&console.warn('DEPRECATION NOTICE: "backgroundColor" is being deprecated. Please use the "style.background" property.'),this.options.style)e.style[t]=this.options.style[t];if(this.options.ariaLive&&e.setAttribute("aria-live",this.options.ariaLive),this.options.node&&this.options.node.nodeType===Node.ELEMENT_NODE)e.appendChild(this.options.node);else if(this.options.escapeMarkup?e.innerText=this.options.text:e.innerHTML=this.options.text,""!==this.options.avatar){var r=document.createElement("img");r.src=this.options.avatar,r.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?e.appendChild(r):e.insertAdjacentElement("afterbegin",r)}if(!0===this.options.close){var a=document.createElement("button");a.type="button",a.setAttribute("aria-label","Close"),a.className="toast-close",a.innerHTML="&#10006;",a.addEventListener("click",function(e){e.stopPropagation(),this.removeElement(this.toastElement),window.clearTimeout(this.toastElement.timeOutValue)}.bind(this));var s=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&s>360?e.insertAdjacentElement("afterbegin",a):e.appendChild(a)}if(this.options.stopOnFocus&&this.options.duration>0){var o=this;e.addEventListener("mouseover",(function(t){window.clearTimeout(e.timeOutValue)})),e.addEventListener("mouseleave",(function(){e.timeOutValue=window.setTimeout((function(){o.removeElement(e)}),o.options.duration)}))}if(void 0!==this.options.destination&&e.addEventListener("click",function(e){e.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),"function"==typeof this.options.onClick&&void 0===this.options.destination&&e.addEventListener("click",function(e){e.stopPropagation(),this.options.onClick()}.bind(this)),"object"==typeof this.options.offset){var i=n("x",this.options),l=n("y",this.options),u="left"==this.options.position?i:"-"+i,c="toastify-top"==this.options.gravity?l:"-"+l;e.style.transform="translate("+u+","+c+")"}return e},showToast:function(){var e;if(this.toastElement=this.buildToast(),!(e="string"==typeof this.options.selector?document.getElementById(this.options.selector):this.options.selector instanceof HTMLElement||"undefined"!=typeof ShadowRoot&&this.options.selector instanceof ShadowRoot?this.options.selector:document.body))throw"Root element is not defined";var n=t.defaults.oldestFirst?e.firstChild:e.lastChild;return e.insertBefore(this.toastElement,n),t.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(e){e.className=e.className.replace(" on",""),window.setTimeout(function(){this.options.node&&this.options.node.parentNode&&this.options.node.parentNode.removeChild(this.options.node),e.parentNode&&e.parentNode.removeChild(e),this.options.callback.call(e),t.reposition()}.bind(this),400)}},t.reposition=function(){for(var e,t={top:15,bottom:15},n={top:15,bottom:15},a={top:15,bottom:15},s=document.getElementsByClassName("toastify"),o=0;o<s.length;o++){e=!0===r(s[o],"toastify-top")?"toastify-top":"toastify-bottom";var i=s[o].offsetHeight;e=e.substr(9,e.length-1),(window.innerWidth>0?window.innerWidth:screen.width)<=360?(s[o].style[e]=a[e]+"px",a[e]+=i+15):!0===r(s[o],"toastify-left")?(s[o].style[e]=t[e]+"px",t[e]+=i+15):(s[o].style[e]=n[e]+"px",n[e]+=i+15)}return this},t.lib.init.prototype=t.lib,t},e.exports?e.exports=n():t.Toastify=n()},20144:(e,t,n)=>{"use strict";n.r(t),n.d(t,{EffectScope:()=>Ct,computed:()=>dt,customRef:()=>rt,default:()=>ca,defineAsyncComponent:()=>Dn,defineComponent:()=>nr,del:()=>Ie,effectScope:()=>St,getCurrentInstance:()=>fe,getCurrentScope:()=>Nt,h:()=>_n,inject:()=>Ft,isProxy:()=>Ge,isReactive:()=>ze,isReadonly:()=>Ve,isRef:()=>Ke,isShallow:()=>He,markRaw:()=>Je,mergeDefaults:()=>hn,nextTick:()=>In,onActivated:()=>Wn,onBeforeMount:()=>zn,onBeforeUnmount:()=>qn,onBeforeUpdate:()=>Vn,onDeactivated:()=>Kn,onErrorCaptured:()=>er,onMounted:()=>Hn,onRenderTracked:()=>Yn,onRenderTriggered:()=>Zn,onScopeDispose:()=>Et,onServerPrefetch:()=>Xn,onUnmounted:()=>Jn,onUpdated:()=>Gn,provide:()=>Lt,proxyRefs:()=>tt,reactive:()=>Be,readonly:()=>lt,ref:()=>Xe,set:()=>Re,shallowReactive:()=>De,shallowReadonly:()=>pt,shallowRef:()=>Ye,toRaw:()=>qe,toRef:()=>st,toRefs:()=>at,triggerRef:()=>Qe,unref:()=>et,useAttrs:()=>dn,useCssModule:()=>Mn,useCssVars:()=>Bn,useListeners:()=>fn,useSlots:()=>pn,version:()=>tr,watch:()=>Tt,watchEffect:()=>vt,watchPostEffect:()=>yt,watchSyncEffect:()=>bt});var r=Object.freeze({}),a=Array.isArray;function s(e){return null==e}function o(e){return null!=e}function i(e){return!0===e}function l(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function u(e){return"function"==typeof e}function c(e){return null!==e&&"object"==typeof e}var p=Object.prototype.toString;function d(e){return"[object Object]"===p.call(e)}function f(e){return"[object RegExp]"===p.call(e)}function m(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function h(e){return o(e)&&"function"==typeof e.then&&"function"==typeof e.catch}function g(e){return null==e?"":Array.isArray(e)||d(e)&&e.toString===p?JSON.stringify(e,v,2):String(e)}function v(e,t){return t&&t.__v_isRef?t.value:t}function y(e){var t=parseFloat(e);return isNaN(t)?e:t}function b(e,t){for(var n=Object.create(null),r=e.split(","),a=0;a<r.length;a++)n[r[a]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}b("slot,component",!0);var w=b("key,ref,slot,slot-scope,is");function x(e,t){var n=e.length;if(n){if(t===e[n-1])return void(e.length=n-1);var r=e.indexOf(t);if(r>-1)return e.splice(r,1)}}var T=Object.prototype.hasOwnProperty;function _(e,t){return T.call(e,t)}function C(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var S=/-(\w)/g,N=C((function(e){return e.replace(S,(function(e,t){return t?t.toUpperCase():""}))})),E=C((function(e){return e.charAt(0).toUpperCase()+e.slice(1)})),L=/\B([A-Z])/g,j=C((function(e){return e.replace(L,"-$1").toLowerCase()}));var F=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n};function k(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function O(e,t){for(var n in t)e[n]=t[n];return e}function A(e){for(var t={},n=0;n<e.length;n++)e[n]&&O(t,e[n]);return t}function P(e,t,n){}var U=function(e,t,n){return!1},R=function(e){return e};function I(e,t){if(e===t)return!0;var n=c(e),r=c(t);if(!n||!r)return!n&&!r&&String(e)===String(t);try{var a=Array.isArray(e),s=Array.isArray(t);if(a&&s)return e.length===t.length&&e.every((function(e,n){return I(e,t[n])}));if(e instanceof Date&&t instanceof Date)return e.getTime()===t.getTime();if(a||s)return!1;var o=Object.keys(e),i=Object.keys(t);return o.length===i.length&&o.every((function(n){return I(e[n],t[n])}))}catch(e){return!1}}function M(e,t){for(var n=0;n<e.length;n++)if(I(e[n],t))return n;return-1}function B(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}function D(e,t){return e===t?0===e&&1/e!=1/t:e==e||t==t}var $="data-server-rendered",z=["component","directive","filter"],H=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch","renderTracked","renderTriggered"],V={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:U,isReservedAttr:U,isUnknownElement:U,getTagNamespace:P,parsePlatformTagName:R,mustUseProp:U,async:!0,_lifecycleHooks:H},G=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function q(e){var t=(e+"").charCodeAt(0);return 36===t||95===t}function J(e,t,n,r){Object.defineProperty(e,t,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var W=new RegExp("[^".concat(G.source,".$_\\d]"));var K="__proto__"in{},X="undefined"!=typeof window,Y=X&&window.navigator.userAgent.toLowerCase(),Z=Y&&/msie|trident/.test(Y),Q=Y&&Y.indexOf("msie 9.0")>0,ee=Y&&Y.indexOf("edge/")>0;Y&&Y.indexOf("android");var te=Y&&/iphone|ipad|ipod|ios/.test(Y);Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y);var ne,re=Y&&Y.match(/firefox\/(\d+)/),ae={}.watch,se=!1;if(X)try{var oe={};Object.defineProperty(oe,"passive",{get:function(){se=!0}}),window.addEventListener("test-passive",null,oe)}catch(e){}var ie=function(){return void 0===ne&&(ne=!X&&void 0!==n.g&&(n.g.process&&"server"===n.g.process.env.VUE_ENV)),ne},le=X&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ue(e){return"function"==typeof e&&/native code/.test(e.toString())}var ce,pe="undefined"!=typeof Symbol&&ue(Symbol)&&"undefined"!=typeof Reflect&&ue(Reflect.ownKeys);ce="undefined"!=typeof Set&&ue(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var de=null;function fe(){return de&&{proxy:de}}function me(e){void 0===e&&(e=null),e||de&&de._scope.off(),de=e,e&&e._scope.on()}var he=function(){function e(e,t,n,r,a,s,o,i){this.tag=e,this.data=t,this.children=n,this.text=r,this.elm=a,this.ns=void 0,this.context=s,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=o,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=i,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1}return Object.defineProperty(e.prototype,"child",{get:function(){return this.componentInstance},enumerable:!1,configurable:!0}),e}(),ge=function(e){void 0===e&&(e="");var t=new he;return t.text=e,t.isComment=!0,t};function ve(e){return new he(void 0,void 0,void 0,String(e))}function ye(e){var t=new he(e.tag,e.data,e.children&&e.children.slice(),e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.asyncMeta=e.asyncMeta,t.isCloned=!0,t}"function"==typeof SuppressedError&&SuppressedError;var be=0,we=[],xe=function(){for(var e=0;e<we.length;e++){var t=we[e];t.subs=t.subs.filter((function(e){return e})),t._pending=!1}we.length=0},Te=function(){function e(){this._pending=!1,this.id=be++,this.subs=[]}return e.prototype.addSub=function(e){this.subs.push(e)},e.prototype.removeSub=function(e){this.subs[this.subs.indexOf(e)]=null,this._pending||(this._pending=!0,we.push(this))},e.prototype.depend=function(t){e.target&&e.target.addDep(this)},e.prototype.notify=function(e){var t=this.subs.filter((function(e){return e}));for(var n=0,r=t.length;n<r;n++){0,t[n].update()}},e}();Te.target=null;var _e=[];function Ce(e){_e.push(e),Te.target=e}function Se(){_e.pop(),Te.target=_e[_e.length-1]}var Ne=Array.prototype,Ee=Object.create(Ne);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(e){var t=Ne[e];J(Ee,e,(function(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var a,s=t.apply(this,n),o=this.__ob__;switch(e){case"push":case"unshift":a=n;break;case"splice":a=n.slice(2)}return a&&o.observeArray(a),o.dep.notify(),s}))}));var Le=Object.getOwnPropertyNames(Ee),je={},Fe=!0;function ke(e){Fe=e}var Oe={notify:P,depend:P,addSub:P,removeSub:P},Ae=function(){function e(e,t,n){if(void 0===t&&(t=!1),void 0===n&&(n=!1),this.value=e,this.shallow=t,this.mock=n,this.dep=n?Oe:new Te,this.vmCount=0,J(e,"__ob__",this),a(e)){if(!n)if(K)e.__proto__=Ee;else for(var r=0,s=Le.length;r<s;r++){J(e,i=Le[r],Ee[i])}t||this.observeArray(e)}else{var o=Object.keys(e);for(r=0;r<o.length;r++){var i;Ue(e,i=o[r],je,void 0,t,n)}}}return e.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)Pe(e[t],!1,this.mock)},e}();function Pe(e,t,n){return e&&_(e,"__ob__")&&e.__ob__ instanceof Ae?e.__ob__:!Fe||!n&&ie()||!a(e)&&!d(e)||!Object.isExtensible(e)||e.__v_skip||Ke(e)||e instanceof he?void 0:new Ae(e,t,n)}function Ue(e,t,n,r,s,o,i){void 0===i&&(i=!1);var l=new Te,u=Object.getOwnPropertyDescriptor(e,t);if(!u||!1!==u.configurable){var c=u&&u.get,p=u&&u.set;c&&!p||n!==je&&2!==arguments.length||(n=e[t]);var d=s?n&&n.__ob__:Pe(n,!1,o);return Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=c?c.call(e):n;return Te.target&&(l.depend(),d&&(d.dep.depend(),a(t)&&Me(t))),Ke(t)&&!s?t.value:t},set:function(t){var r=c?c.call(e):n;if(D(r,t)){if(p)p.call(e,t);else{if(c)return;if(!s&&Ke(r)&&!Ke(t))return void(r.value=t);n=t}d=s?t&&t.__ob__:Pe(t,!1,o),l.notify()}}}),l}}function Re(e,t,n){if(!Ve(e)){var r=e.__ob__;return a(e)&&m(t)?(e.length=Math.max(e.length,t),e.splice(t,1,n),r&&!r.shallow&&r.mock&&Pe(n,!1,!0),n):t in e&&!(t in Object.prototype)?(e[t]=n,n):e._isVue||r&&r.vmCount?n:r?(Ue(r.value,t,n,void 0,r.shallow,r.mock),r.dep.notify(),n):(e[t]=n,n)}}function Ie(e,t){if(a(e)&&m(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||Ve(e)||_(e,t)&&(delete e[t],n&&n.dep.notify())}}function Me(e){for(var t=void 0,n=0,r=e.length;n<r;n++)(t=e[n])&&t.__ob__&&t.__ob__.dep.depend(),a(t)&&Me(t)}function Be(e){return $e(e,!1),e}function De(e){return $e(e,!0),J(e,"__v_isShallow",!0),e}function $e(e,t){if(!Ve(e)){Pe(e,t,ie());0}}function ze(e){return Ve(e)?ze(e.__v_raw):!(!e||!e.__ob__)}function He(e){return!(!e||!e.__v_isShallow)}function Ve(e){return!(!e||!e.__v_isReadonly)}function Ge(e){return ze(e)||Ve(e)}function qe(e){var t=e&&e.__v_raw;return t?qe(t):e}function Je(e){return Object.isExtensible(e)&&J(e,"__v_skip",!0),e}var We="__v_isRef";function Ke(e){return!(!e||!0!==e.__v_isRef)}function Xe(e){return Ze(e,!1)}function Ye(e){return Ze(e,!0)}function Ze(e,t){if(Ke(e))return e;var n={};return J(n,We,!0),J(n,"__v_isShallow",t),J(n,"dep",Ue(n,"value",e,null,t,ie())),n}function Qe(e){e.dep&&e.dep.notify()}function et(e){return Ke(e)?e.value:e}function tt(e){if(ze(e))return e;for(var t={},n=Object.keys(e),r=0;r<n.length;r++)nt(t,e,n[r]);return t}function nt(e,t,n){Object.defineProperty(e,n,{enumerable:!0,configurable:!0,get:function(){var e=t[n];if(Ke(e))return e.value;var r=e&&e.__ob__;return r&&r.dep.depend(),e},set:function(e){var r=t[n];Ke(r)&&!Ke(e)?r.value=e:t[n]=e}})}function rt(e){var t=new Te,n=e((function(){t.depend()}),(function(){t.notify()})),r=n.get,a=n.set,s={get value(){return r()},set value(e){a(e)}};return J(s,We,!0),s}function at(e){var t=a(e)?new Array(e.length):{};for(var n in e)t[n]=st(e,n);return t}function st(e,t,n){var r=e[t];if(Ke(r))return r;var a={get value(){var r=e[t];return void 0===r?n:r},set value(n){e[t]=n}};return J(a,We,!0),a}var ot="__v_rawToReadonly",it="__v_rawToShallowReadonly";function lt(e){return ut(e,!1)}function ut(e,t){if(!d(e))return e;if(Ve(e))return e;var n=t?it:ot,r=e[n];if(r)return r;var a=Object.create(Object.getPrototypeOf(e));J(e,n,a),J(a,"__v_isReadonly",!0),J(a,"__v_raw",e),Ke(e)&&J(a,We,!0),(t||He(e))&&J(a,"__v_isShallow",!0);for(var s=Object.keys(e),o=0;o<s.length;o++)ct(a,e,s[o],t);return a}function ct(e,t,n,r){Object.defineProperty(e,n,{enumerable:!0,configurable:!0,get:function(){var e=t[n];return r||!d(e)?e:lt(e)},set:function(){}})}function pt(e){return ut(e,!0)}function dt(e,t){var n,r,a=u(e);a?(n=e,r=P):(n=e.get,r=e.set);var s=ie()?null:new lr(de,n,P,{lazy:!0});var o={effect:s,get value(){return s?(s.dirty&&s.evaluate(),Te.target&&s.depend(),s.value):n()},set value(e){r(e)}};return J(o,We,!0),J(o,"__v_isReadonly",a),o}var ft="watcher",mt="".concat(ft," callback"),ht="".concat(ft," getter"),gt="".concat(ft," cleanup");function vt(e,t){return _t(e,null,t)}function yt(e,t){return _t(e,null,{flush:"post"})}function bt(e,t){return _t(e,null,{flush:"sync"})}var wt,xt={};function Tt(e,t,n){return _t(e,t,n)}function _t(e,t,n){var s=void 0===n?r:n,o=s.immediate,i=s.deep,l=s.flush,c=void 0===l?"pre":l;s.onTrack,s.onTrigger;var p,d,f=de,m=function(e,t,n){void 0===n&&(n=null);var r=Sn(e,null,n,f,t);return i&&r&&r.__ob__&&r.__ob__.dep.depend(),r},h=!1,g=!1;if(Ke(e)?(p=function(){return e.value},h=He(e)):ze(e)?(p=function(){return e.__ob__.dep.depend(),e},i=!0):a(e)?(g=!0,h=e.some((function(e){return ze(e)||He(e)})),p=function(){return e.map((function(e){return Ke(e)?e.value:ze(e)?(e.__ob__.dep.depend(),ar(e)):u(e)?m(e,ht):void 0}))}):p=u(e)?t?function(){return m(e,ht)}:function(){if(!f||!f._isDestroyed)return d&&d(),m(e,ft,[y])}:P,t&&i){var v=p;p=function(){return ar(v())}}var y=function(e){d=b.onStop=function(){m(e,gt)}};if(ie())return y=P,t?o&&m(t,mt,[p(),g?[]:void 0,y]):p(),P;var b=new lr(de,p,P,{lazy:!0});b.noRecurse=!t;var w=g?[]:xt;return b.run=function(){if(b.active)if(t){var e=b.get();(i||h||(g?e.some((function(e,t){return D(e,w[t])})):D(e,w)))&&(d&&d(),m(t,mt,[e,w===xt?void 0:w,y]),w=e)}else b.get()},"sync"===c?b.update=b.run:"post"===c?(b.post=!0,b.update=function(){return Fr(b)}):b.update=function(){if(f&&f===de&&!f._isMounted){var e=f._preWatchers||(f._preWatchers=[]);e.indexOf(b)<0&&e.push(b)}else Fr(b)},t?o?b.run():w=b.get():"post"===c&&f?f.$once("hook:mounted",(function(){return b.get()})):b.get(),function(){b.teardown()}}var Ct=function(){function e(e){void 0===e&&(e=!1),this.detached=e,this.active=!0,this.effects=[],this.cleanups=[],this.parent=wt,!e&&wt&&(this.index=(wt.scopes||(wt.scopes=[])).push(this)-1)}return e.prototype.run=function(e){if(this.active){var t=wt;try{return wt=this,e()}finally{wt=t}}else 0},e.prototype.on=function(){wt=this},e.prototype.off=function(){wt=this.parent},e.prototype.stop=function(e){if(this.active){var t=void 0,n=void 0;for(t=0,n=this.effects.length;t<n;t++)this.effects[t].teardown();for(t=0,n=this.cleanups.length;t<n;t++)this.cleanups[t]();if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].stop(!0);if(!this.detached&&this.parent&&!e){var r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this.active=!1}},e}();function St(e){return new Ct(e)}function Nt(){return wt}function Et(e){wt&&wt.cleanups.push(e)}function Lt(e,t){de&&(jt(de)[e]=t)}function jt(e){var t=e._provided,n=e.$parent&&e.$parent._provided;return n===t?e._provided=Object.create(n):t}function Ft(e,t,n){void 0===n&&(n=!1);var r=de;if(r){var a=r.$parent&&r.$parent._provided;if(a&&e in a)return a[e];if(arguments.length>1)return n&&u(t)?t.call(r):t}else 0}var kt=C((function(e){var t="&"===e.charAt(0),n="~"===(e=t?e.slice(1):e).charAt(0),r="!"===(e=n?e.slice(1):e).charAt(0);return{name:e=r?e.slice(1):e,once:n,capture:r,passive:t}}));function Ot(e,t){function n(){var e=n.fns;if(!a(e))return Sn(e,null,arguments,t,"v-on handler");for(var r=e.slice(),s=0;s<r.length;s++)Sn(r[s],null,arguments,t,"v-on handler")}return n.fns=e,n}function At(e,t,n,r,a,o){var l,u,c,p;for(l in e)u=e[l],c=t[l],p=kt(l),s(u)||(s(c)?(s(u.fns)&&(u=e[l]=Ot(u,o)),i(p.once)&&(u=e[l]=a(p.name,u,p.capture)),n(p.name,u,p.capture,p.passive,p.params)):u!==c&&(c.fns=u,e[l]=c));for(l in t)s(e[l])&&r((p=kt(l)).name,t[l],p.capture)}function Pt(e,t,n){var r;e instanceof he&&(e=e.data.hook||(e.data.hook={}));var a=e[t];function l(){n.apply(this,arguments),x(r.fns,l)}s(a)?r=Ot([l]):o(a.fns)&&i(a.merged)?(r=a).fns.push(l):r=Ot([a,l]),r.merged=!0,e[t]=r}function Ut(e,t,n,r,a){if(o(t)){if(_(t,n))return e[n]=t[n],a||delete t[n],!0;if(_(t,r))return e[n]=t[r],a||delete t[r],!0}return!1}function Rt(e){return l(e)?[ve(e)]:a(e)?Mt(e):void 0}function It(e){return o(e)&&o(e.text)&&!1===e.isComment}function Mt(e,t){var n,r,u,c,p=[];for(n=0;n<e.length;n++)s(r=e[n])||"boolean"==typeof r||(c=p[u=p.length-1],a(r)?r.length>0&&(It((r=Mt(r,"".concat(t||"","_").concat(n)))[0])&&It(c)&&(p[u]=ve(c.text+r[0].text),r.shift()),p.push.apply(p,r)):l(r)?It(c)?p[u]=ve(c.text+r):""!==r&&p.push(ve(r)):It(r)&&It(c)?p[u]=ve(c.text+r.text):(i(e._isVList)&&o(r.tag)&&s(r.key)&&o(t)&&(r.key="__vlist".concat(t,"_").concat(n,"__")),p.push(r)));return p}function Bt(e,t){var n,r,s,i,l=null;if(a(e)||"string"==typeof e)for(l=new Array(e.length),n=0,r=e.length;n<r;n++)l[n]=t(e[n],n);else if("number"==typeof e)for(l=new Array(e),n=0;n<e;n++)l[n]=t(n+1,n);else if(c(e))if(pe&&e[Symbol.iterator]){l=[];for(var u=e[Symbol.iterator](),p=u.next();!p.done;)l.push(t(p.value,l.length)),p=u.next()}else for(s=Object.keys(e),l=new Array(s.length),n=0,r=s.length;n<r;n++)i=s[n],l[n]=t(e[i],i,n);return o(l)||(l=[]),l._isVList=!0,l}function Dt(e,t,n,r){var a,s=this.$scopedSlots[e];s?(n=n||{},r&&(n=O(O({},r),n)),a=s(n)||(u(t)?t():t)):a=this.$slots[e]||(u(t)?t():t);var o=n&&n.slot;return o?this.$createElement("template",{slot:o},a):a}function $t(e){return Wr(this.$options,"filters",e,!0)||R}function zt(e,t){return a(e)?-1===e.indexOf(t):e!==t}function Ht(e,t,n,r,a){var s=V.keyCodes[t]||n;return a&&r&&!V.keyCodes[t]?zt(a,r):s?zt(s,e):r?j(r)!==t:void 0===e}function Vt(e,t,n,r,s){if(n)if(c(n)){a(n)&&(n=A(n));var o=void 0,i=function(a){if("class"===a||"style"===a||w(a))o=e;else{var i=e.attrs&&e.attrs.type;o=r||V.mustUseProp(t,i,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}var l=N(a),u=j(a);l in o||u in o||(o[a]=n[a],s&&((e.on||(e.on={}))["update:".concat(a)]=function(e){n[a]=e}))};for(var l in n)i(l)}else;return e}function Gt(e,t){var n=this._staticTrees||(this._staticTrees=[]),r=n[e];return r&&!t||Jt(r=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,this._c,this),"__static__".concat(e),!1),r}function qt(e,t,n){return Jt(e,"__once__".concat(t).concat(n?"_".concat(n):""),!0),e}function Jt(e,t,n){if(a(e))for(var r=0;r<e.length;r++)e[r]&&"string"!=typeof e[r]&&Wt(e[r],"".concat(t,"_").concat(r),n);else Wt(e,t,n)}function Wt(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function Kt(e,t){if(t)if(d(t)){var n=e.on=e.on?O({},e.on):{};for(var r in t){var a=n[r],s=t[r];n[r]=a?[].concat(a,s):s}}else;return e}function Xt(e,t,n,r){t=t||{$stable:!n};for(var s=0;s<e.length;s++){var o=e[s];a(o)?Xt(o,t,n):o&&(o.proxy&&(o.fn.proxy=!0),t[o.key]=o.fn)}return r&&(t.$key=r),t}function Yt(e,t){for(var n=0;n<t.length;n+=2){var r=t[n];"string"==typeof r&&r&&(e[t[n]]=t[n+1])}return e}function Zt(e,t){return"string"==typeof e?t+e:e}function Qt(e){e._o=qt,e._n=y,e._s=g,e._l=Bt,e._t=Dt,e._q=I,e._i=M,e._m=Gt,e._f=$t,e._k=Ht,e._b=Vt,e._v=ve,e._e=ge,e._u=Xt,e._g=Kt,e._d=Yt,e._p=Zt}function en(e,t){if(!e||!e.length)return{};for(var n={},r=0,a=e.length;r<a;r++){var s=e[r],o=s.data;if(o&&o.attrs&&o.attrs.slot&&delete o.attrs.slot,s.context!==t&&s.fnContext!==t||!o||null==o.slot)(n.default||(n.default=[])).push(s);else{var i=o.slot,l=n[i]||(n[i]=[]);"template"===s.tag?l.push.apply(l,s.children||[]):l.push(s)}}for(var u in n)n[u].every(tn)&&delete n[u];return n}function tn(e){return e.isComment&&!e.asyncFactory||" "===e.text}function nn(e){return e.isComment&&e.asyncFactory}function rn(e,t,n,a){var s,o=Object.keys(n).length>0,i=t?!!t.$stable:!o,l=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(i&&a&&a!==r&&l===a.$key&&!o&&!a.$hasNormal)return a;for(var u in s={},t)t[u]&&"$"!==u[0]&&(s[u]=an(e,n,u,t[u]))}else s={};for(var c in n)c in s||(s[c]=sn(n,c));return t&&Object.isExtensible(t)&&(t._normalized=s),J(s,"$stable",i),J(s,"$key",l),J(s,"$hasNormal",o),s}function an(e,t,n,r){var s=function(){var t=de;me(e);var n=arguments.length?r.apply(null,arguments):r({}),s=(n=n&&"object"==typeof n&&!a(n)?[n]:Rt(n))&&n[0];return me(t),n&&(!s||1===n.length&&s.isComment&&!nn(s))?void 0:n};return r.proxy&&Object.defineProperty(t,n,{get:s,enumerable:!0,configurable:!0}),s}function sn(e,t){return function(){return e[t]}}function on(e){return{get attrs(){if(!e._attrsProxy){var t=e._attrsProxy={};J(t,"_v_attr_proxy",!0),ln(t,e.$attrs,r,e,"$attrs")}return e._attrsProxy},get listeners(){e._listenersProxy||ln(e._listenersProxy={},e.$listeners,r,e,"$listeners");return e._listenersProxy},get slots(){return function(e){e._slotsProxy||cn(e._slotsProxy={},e.$scopedSlots);return e._slotsProxy}(e)},emit:F(e.$emit,e),expose:function(t){t&&Object.keys(t).forEach((function(n){return nt(e,t,n)}))}}}function ln(e,t,n,r,a){var s=!1;for(var o in t)o in e?t[o]!==n[o]&&(s=!0):(s=!0,un(e,o,r,a));for(var o in e)o in t||(s=!0,delete e[o]);return s}function un(e,t,n,r){Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){return n[r][t]}})}function cn(e,t){for(var n in t)e[n]=t[n];for(var n in e)n in t||delete e[n]}function pn(){return mn().slots}function dn(){return mn().attrs}function fn(){return mn().listeners}function mn(){var e=de;return e._setupContext||(e._setupContext=on(e))}function hn(e,t){var n=a(e)?e.reduce((function(e,t){return e[t]={},e}),{}):e;for(var r in t){var s=n[r];s?a(s)||u(s)?n[r]={type:s,default:t[r]}:s.default=t[r]:null===s&&(n[r]={default:t[r]})}return n}var gn=null;function vn(e,t){return(e.__esModule||pe&&"Module"===e[Symbol.toStringTag])&&(e=e.default),c(e)?t.extend(e):e}function yn(e){if(a(e))for(var t=0;t<e.length;t++){var n=e[t];if(o(n)&&(o(n.componentOptions)||nn(n)))return n}}var bn=1,wn=2;function xn(e,t,n,r,s,p){return(a(n)||l(n))&&(s=r,r=n,n=void 0),i(p)&&(s=wn),function(e,t,n,r,s){if(o(n)&&o(n.__ob__))return ge();o(n)&&o(n.is)&&(t=n.is);if(!t)return ge();0;a(r)&&u(r[0])&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);s===wn?r=Rt(r):s===bn&&(r=function(e){for(var t=0;t<e.length;t++)if(a(e[t]))return Array.prototype.concat.apply([],e);return e}(r));var i,l;if("string"==typeof t){var p=void 0;l=e.$vnode&&e.$vnode.ns||V.getTagNamespace(t),i=V.isReservedTag(t)?new he(V.parsePlatformTagName(t),n,r,void 0,void 0,e):n&&n.pre||!o(p=Wr(e.$options,"components",t))?new he(t,n,r,void 0,void 0,e):Mr(p,n,e,r,t)}else i=Mr(t,n,e,r);return a(i)?i:o(i)?(o(l)&&Tn(i,l),o(n)&&function(e){c(e.style)&&ar(e.style);c(e.class)&&ar(e.class)}(n),i):ge()}(e,t,n,r,s)}function Tn(e,t,n){if(e.ns=t,"foreignObject"===e.tag&&(t=void 0,n=!0),o(e.children))for(var r=0,a=e.children.length;r<a;r++){var l=e.children[r];o(l.tag)&&(s(l.ns)||i(n)&&"svg"!==l.tag)&&Tn(l,t,n)}}function _n(e,t,n){return xn(de,e,t,n,2,!0)}function Cn(e,t,n){Ce();try{if(t)for(var r=t;r=r.$parent;){var a=r.$options.errorCaptured;if(a)for(var s=0;s<a.length;s++)try{if(!1===a[s].call(r,e,t,n))return}catch(e){Nn(e,r,"errorCaptured hook")}}Nn(e,t,n)}finally{Se()}}function Sn(e,t,n,r,a){var s;try{(s=n?e.apply(t,n):e.call(t))&&!s._isVue&&h(s)&&!s._handled&&(s.catch((function(e){return Cn(e,r,a+" (Promise/async)")})),s._handled=!0)}catch(e){Cn(e,r,a)}return s}function Nn(e,t,n){if(V.errorHandler)try{return V.errorHandler.call(null,e,t,n)}catch(t){t!==e&&En(t,null,"config.errorHandler")}En(e,t,n)}function En(e,t,n){if(!X||"undefined"==typeof console)throw e;console.error(e)}var Ln,jn=!1,Fn=[],kn=!1;function On(){kn=!1;var e=Fn.slice(0);Fn.length=0;for(var t=0;t<e.length;t++)e[t]()}if("undefined"!=typeof Promise&&ue(Promise)){var An=Promise.resolve();Ln=function(){An.then(On),te&&setTimeout(P)},jn=!0}else if(Z||"undefined"==typeof MutationObserver||!ue(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())Ln="undefined"!=typeof setImmediate&&ue(setImmediate)?function(){setImmediate(On)}:function(){setTimeout(On,0)};else{var Pn=1,Un=new MutationObserver(On),Rn=document.createTextNode(String(Pn));Un.observe(Rn,{characterData:!0}),Ln=function(){Pn=(Pn+1)%2,Rn.data=String(Pn)},jn=!0}function In(e,t){var n;if(Fn.push((function(){if(e)try{e.call(t)}catch(e){Cn(e,t,"nextTick")}else n&&n(t)})),kn||(kn=!0,Ln()),!e&&"undefined"!=typeof Promise)return new Promise((function(e){n=e}))}function Mn(e){if(void 0===e&&(e="$style"),!de)return r;var t=de[e];return t||r}function Bn(e){if(X){var t=de;t&&yt((function(){var n=t.$el,r=e(t,t._setupProxy);if(n&&1===n.nodeType){var a=n.style;for(var s in r)a.setProperty("--".concat(s),r[s])}}))}}function Dn(e){u(e)&&(e={loader:e});var t=e.loader,n=e.loadingComponent,r=e.errorComponent,a=e.delay,s=void 0===a?200:a,o=e.timeout,i=(e.suspensible,e.onError);var l=null,c=0,p=function(){var e;return l||(e=l=t().catch((function(e){if(e=e instanceof Error?e:new Error(String(e)),i)return new Promise((function(t,n){i(e,(function(){return t((c++,l=null,p()))}),(function(){return n(e)}),c+1)}));throw e})).then((function(t){return e!==l&&l?l:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),t)})))};return function(){return{component:p(),delay:s,timeout:o,error:r,loading:n}}}function $n(e){return function(t,n){if(void 0===n&&(n=de),n)return function(e,t,n){var r=e.$options;r[t]=Vr(r[t],n)}(n,e,t)}}var zn=$n("beforeMount"),Hn=$n("mounted"),Vn=$n("beforeUpdate"),Gn=$n("updated"),qn=$n("beforeDestroy"),Jn=$n("destroyed"),Wn=$n("activated"),Kn=$n("deactivated"),Xn=$n("serverPrefetch"),Yn=$n("renderTracked"),Zn=$n("renderTriggered"),Qn=$n("errorCaptured");function er(e,t){void 0===t&&(t=de),Qn(e,t)}var tr="2.7.16";function nr(e){return e}var rr=new ce;function ar(e){return sr(e,rr),rr.clear(),e}function sr(e,t){var n,r,s=a(e);if(!(!s&&!c(e)||e.__v_skip||Object.isFrozen(e)||e instanceof he)){if(e.__ob__){var o=e.__ob__.dep.id;if(t.has(o))return;t.add(o)}if(s)for(n=e.length;n--;)sr(e[n],t);else if(Ke(e))sr(e.value,t);else for(n=(r=Object.keys(e)).length;n--;)sr(e[r[n]],t)}}var or,ir=0,lr=function(){function e(e,t,n,r,a){var s,o;s=this,void 0===(o=wt&&!wt._vm?wt:e?e._scope:void 0)&&(o=wt),o&&o.active&&o.effects.push(s),(this.vm=e)&&a&&(e._watcher=this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++ir,this.active=!0,this.post=!1,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ce,this.newDepIds=new ce,this.expression="",u(t)?this.getter=t:(this.getter=function(e){if(!W.test(e)){var t=e.split(".");return function(e){for(var n=0;n<t.length;n++){if(!e)return;e=e[t[n]]}return e}}}(t),this.getter||(this.getter=P)),this.value=this.lazy?void 0:this.get()}return e.prototype.get=function(){var e;Ce(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;Cn(e,t,'getter for watcher "'.concat(this.expression,'"'))}finally{this.deep&&ar(e),Se(),this.cleanupDeps()}return e},e.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},e.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},e.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():Fr(this)},e.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||c(e)||this.deep){var t=this.value;if(this.value=e,this.user){var n='callback for watcher "'.concat(this.expression,'"');Sn(this.cb,this.vm,[e,t],this.vm,n)}else this.cb.call(this.vm,e,t)}}},e.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},e.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},e.prototype.teardown=function(){if(this.vm&&!this.vm._isBeingDestroyed&&x(this.vm._scope.effects,this),this.active){for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1,this.onStop&&this.onStop()}},e}();function ur(e,t){or.$on(e,t)}function cr(e,t){or.$off(e,t)}function pr(e,t){var n=or;return function r(){null!==t.apply(null,arguments)&&n.$off(e,r)}}function dr(e,t,n){or=e,At(t,n||{},ur,cr,pr,e),or=void 0}var fr=null;function mr(e){var t=fr;return fr=e,function(){fr=t}}function hr(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function gr(e,t){if(t){if(e._directInactive=!1,hr(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)gr(e.$children[n]);yr(e,"activated")}}function vr(e,t){if(!(t&&(e._directInactive=!0,hr(e))||e._inactive)){e._inactive=!0;for(var n=0;n<e.$children.length;n++)vr(e.$children[n]);yr(e,"deactivated")}}function yr(e,t,n,r){void 0===r&&(r=!0),Ce();var a=de,s=Nt();r&&me(e);var o=e.$options[t],i="".concat(t," hook");if(o)for(var l=0,u=o.length;l<u;l++)Sn(o[l],e,n||null,e,i);e._hasHookEvent&&e.$emit("hook:"+t),r&&(me(a),s&&s.on()),Se()}var br=[],wr=[],xr={},Tr=!1,_r=!1,Cr=0;var Sr=0,Nr=Date.now;if(X&&!Z){var Er=window.performance;Er&&"function"==typeof Er.now&&Nr()>document.createEvent("Event").timeStamp&&(Nr=function(){return Er.now()})}var Lr=function(e,t){if(e.post){if(!t.post)return 1}else if(t.post)return-1;return e.id-t.id};function jr(){var e,t;for(Sr=Nr(),_r=!0,br.sort(Lr),Cr=0;Cr<br.length;Cr++)(e=br[Cr]).before&&e.before(),t=e.id,xr[t]=null,e.run();var n=wr.slice(),r=br.slice();Cr=br.length=wr.length=0,xr={},Tr=_r=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,gr(e[t],!0)}(n),function(e){var t=e.length;for(;t--;){var n=e[t],r=n.vm;r&&r._watcher===n&&r._isMounted&&!r._isDestroyed&&yr(r,"updated")}}(r),xe(),le&&V.devtools&&le.emit("flush")}function Fr(e){var t=e.id;if(null==xr[t]&&(e!==Te.target||!e.noRecurse)){if(xr[t]=!0,_r){for(var n=br.length-1;n>Cr&&br[n].id>e.id;)n--;br.splice(n+1,0,e)}else br.push(e);Tr||(Tr=!0,In(jr))}}function kr(e,t){if(e){for(var n=Object.create(null),r=pe?Reflect.ownKeys(e):Object.keys(e),a=0;a<r.length;a++){var s=r[a];if("__ob__"!==s){var o=e[s].from;if(o in t._provided)n[s]=t._provided[o];else if("default"in e[s]){var i=e[s].default;n[s]=u(i)?i.call(t):i}else 0}}return n}}function Or(e,t,n,s,o){var l,u=this,c=o.options;_(s,"_uid")?(l=Object.create(s))._original=s:(l=s,s=s._original);var p=i(c._compiled),d=!p;this.data=e,this.props=t,this.children=n,this.parent=s,this.listeners=e.on||r,this.injections=kr(c.inject,s),this.slots=function(){return u.$slots||rn(s,e.scopedSlots,u.$slots=en(n,s)),u.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return rn(s,e.scopedSlots,this.slots())}}),p&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=rn(s,e.scopedSlots,this.$slots)),c._scopeId?this._c=function(e,t,n,r){var o=xn(l,e,t,n,r,d);return o&&!a(o)&&(o.fnScopeId=c._scopeId,o.fnContext=s),o}:this._c=function(e,t,n,r){return xn(l,e,t,n,r,d)}}function Ar(e,t,n,r,a){var s=ye(e);return s.fnContext=n,s.fnOptions=r,t.slot&&((s.data||(s.data={})).slot=t.slot),s}function Pr(e,t){for(var n in t)e[N(n)]=t[n]}function Ur(e){return e.name||e.__name||e._componentTag}Qt(Or.prototype);var Rr={init:function(e,t){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var n=e;Rr.prepatch(n,n)}else{(e.componentInstance=function(e,t){var n={_isComponent:!0,_parentVnode:e,parent:t},r=e.data.inlineTemplate;o(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new e.componentOptions.Ctor(n)}(e,fr)).$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,a,s){var o=a.data.scopedSlots,i=e.$scopedSlots,l=!!(o&&!o.$stable||i!==r&&!i.$stable||o&&e.$scopedSlots.$key!==o.$key||!o&&e.$scopedSlots.$key),u=!!(s||e.$options._renderChildren||l),c=e.$vnode;e.$options._parentVnode=a,e.$vnode=a,e._vnode&&(e._vnode.parent=a),e.$options._renderChildren=s;var p=a.data.attrs||r;e._attrsProxy&&ln(e._attrsProxy,p,c.data&&c.data.attrs||r,e,"$attrs")&&(u=!0),e.$attrs=p,n=n||r;var d=e.$options._parentListeners;if(e._listenersProxy&&ln(e._listenersProxy,n,d||r,e,"$listeners"),e.$listeners=e.$options._parentListeners=n,dr(e,n,d),t&&e.$options.props){ke(!1);for(var f=e._props,m=e.$options._propKeys||[],h=0;h<m.length;h++){var g=m[h],v=e.$options.props;f[g]=Kr(g,v,t,e)}ke(!0),e.$options.propsData=t}u&&(e.$slots=en(s,a.context),e.$forceUpdate())}(t.componentInstance=e.componentInstance,n.propsData,n.listeners,t,n.children)},insert:function(e){var t,n=e.context,r=e.componentInstance;r._isMounted||(r._isMounted=!0,yr(r,"mounted")),e.data.keepAlive&&(n._isMounted?((t=r)._inactive=!1,wr.push(t)):gr(r,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?vr(t,!0):t.$destroy())}},Ir=Object.keys(Rr);function Mr(e,t,n,l,u){if(!s(e)){var p=n.$options._base;if(c(e)&&(e=p.extend(e)),"function"==typeof e){var d;if(s(e.cid)&&(e=function(e,t){if(i(e.error)&&o(e.errorComp))return e.errorComp;if(o(e.resolved))return e.resolved;var n=gn;if(n&&o(e.owners)&&-1===e.owners.indexOf(n)&&e.owners.push(n),i(e.loading)&&o(e.loadingComp))return e.loadingComp;if(n&&!o(e.owners)){var r=e.owners=[n],a=!0,l=null,u=null;n.$on("hook:destroyed",(function(){return x(r,n)}));var p=function(e){for(var t=0,n=r.length;t<n;t++)r[t].$forceUpdate();e&&(r.length=0,null!==l&&(clearTimeout(l),l=null),null!==u&&(clearTimeout(u),u=null))},d=B((function(n){e.resolved=vn(n,t),a?r.length=0:p(!0)})),f=B((function(t){o(e.errorComp)&&(e.error=!0,p(!0))})),m=e(d,f);return c(m)&&(h(m)?s(e.resolved)&&m.then(d,f):h(m.component)&&(m.component.then(d,f),o(m.error)&&(e.errorComp=vn(m.error,t)),o(m.loading)&&(e.loadingComp=vn(m.loading,t),0===m.delay?e.loading=!0:l=setTimeout((function(){l=null,s(e.resolved)&&s(e.error)&&(e.loading=!0,p(!1))}),m.delay||200)),o(m.timeout)&&(u=setTimeout((function(){u=null,s(e.resolved)&&f(null)}),m.timeout)))),a=!1,e.loading?e.loadingComp:e.resolved}}(d=e,p),void 0===e))return function(e,t,n,r,a){var s=ge();return s.asyncFactory=e,s.asyncMeta={data:t,context:n,children:r,tag:a},s}(d,t,n,l,u);t=t||{},ua(e),o(t.model)&&function(e,t){var n=e.model&&e.model.prop||"value",r=e.model&&e.model.event||"input";(t.attrs||(t.attrs={}))[n]=t.model.value;var s=t.on||(t.on={}),i=s[r],l=t.model.callback;o(i)?(a(i)?-1===i.indexOf(l):i!==l)&&(s[r]=[l].concat(i)):s[r]=l}(e.options,t);var f=function(e,t,n){var r=t.options.props;if(!s(r)){var a={},i=e.attrs,l=e.props;if(o(i)||o(l))for(var u in r){var c=j(u);Ut(a,l,u,c,!0)||Ut(a,i,u,c,!1)}return a}}(t,e);if(i(e.options.functional))return function(e,t,n,s,i){var l=e.options,u={},c=l.props;if(o(c))for(var p in c)u[p]=Kr(p,c,t||r);else o(n.attrs)&&Pr(u,n.attrs),o(n.props)&&Pr(u,n.props);var d=new Or(n,u,i,s,e),f=l.render.call(null,d._c,d);if(f instanceof he)return Ar(f,n,d.parent,l);if(a(f)){for(var m=Rt(f)||[],h=new Array(m.length),g=0;g<m.length;g++)h[g]=Ar(m[g],n,d.parent,l);return h}}(e,f,t,n,l);var m=t.on;if(t.on=t.nativeOn,i(e.options.abstract)){var g=t.slot;t={},g&&(t.slot=g)}!function(e){for(var t=e.hook||(e.hook={}),n=0;n<Ir.length;n++){var r=Ir[n],a=t[r],s=Rr[r];a===s||a&&a._merged||(t[r]=a?Br(s,a):s)}}(t);var v=Ur(e.options)||u;return new he("vue-component-".concat(e.cid).concat(v?"-".concat(v):""),t,void 0,void 0,void 0,n,{Ctor:e,propsData:f,listeners:m,tag:u,children:l},d)}}}function Br(e,t){var n=function(n,r){e(n,r),t(n,r)};return n._merged=!0,n}var Dr=P,$r=V.optionMergeStrategies;function zr(e,t,n){if(void 0===n&&(n=!0),!t)return e;for(var r,a,s,o=pe?Reflect.ownKeys(t):Object.keys(t),i=0;i<o.length;i++)"__ob__"!==(r=o[i])&&(a=e[r],s=t[r],n&&_(e,r)?a!==s&&d(a)&&d(s)&&zr(a,s):Re(e,r,s));return e}function Hr(e,t,n){return n?function(){var r=u(t)?t.call(n,n):t,a=u(e)?e.call(n,n):e;return r?zr(r,a):a}:t?e?function(){return zr(u(t)?t.call(this,this):t,u(e)?e.call(this,this):e)}:t:e}function Vr(e,t){var n=t?e?e.concat(t):a(t)?t:[t]:e;return n?function(e){for(var t=[],n=0;n<e.length;n++)-1===t.indexOf(e[n])&&t.push(e[n]);return t}(n):n}function Gr(e,t,n,r){var a=Object.create(e||null);return t?O(a,t):a}$r.data=function(e,t,n){return n?Hr(e,t,n):t&&"function"!=typeof t?e:Hr(e,t)},H.forEach((function(e){$r[e]=Vr})),z.forEach((function(e){$r[e+"s"]=Gr})),$r.watch=function(e,t,n,r){if(e===ae&&(e=void 0),t===ae&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var s={};for(var o in O(s,e),t){var i=s[o],l=t[o];i&&!a(i)&&(i=[i]),s[o]=i?i.concat(l):a(l)?l:[l]}return s},$r.props=$r.methods=$r.inject=$r.computed=function(e,t,n,r){if(!e)return t;var a=Object.create(null);return O(a,e),t&&O(a,t),a},$r.provide=function(e,t){return e?function(){var n=Object.create(null);return zr(n,u(e)?e.call(this):e),t&&zr(n,u(t)?t.call(this):t,!1),n}:t};var qr=function(e,t){return void 0===t?e:t};function Jr(e,t,n){if(u(t)&&(t=t.options),function(e,t){var n=e.props;if(n){var r,s,o={};if(a(n))for(r=n.length;r--;)"string"==typeof(s=n[r])&&(o[N(s)]={type:null});else if(d(n))for(var i in n)s=n[i],o[N(i)]=d(s)?s:{type:s};e.props=o}}(t),function(e,t){var n=e.inject;if(n){var r=e.inject={};if(a(n))for(var s=0;s<n.length;s++)r[n[s]]={from:n[s]};else if(d(n))for(var o in n){var i=n[o];r[o]=d(i)?O({from:o},i):{from:i}}}}(t),function(e){var t=e.directives;if(t)for(var n in t){var r=t[n];u(r)&&(t[n]={bind:r,update:r})}}(t),!t._base&&(t.extends&&(e=Jr(e,t.extends,n)),t.mixins))for(var r=0,s=t.mixins.length;r<s;r++)e=Jr(e,t.mixins[r],n);var o,i={};for(o in e)l(o);for(o in t)_(e,o)||l(o);function l(r){var a=$r[r]||qr;i[r]=a(e[r],t[r],n,r)}return i}function Wr(e,t,n,r){if("string"==typeof n){var a=e[t];if(_(a,n))return a[n];var s=N(n);if(_(a,s))return a[s];var o=E(s);return _(a,o)?a[o]:a[n]||a[s]||a[o]}}function Kr(e,t,n,r){var a=t[e],s=!_(n,e),o=n[e],i=Qr(Boolean,a.type);if(i>-1)if(s&&!_(a,"default"))o=!1;else if(""===o||o===j(e)){var l=Qr(String,a.type);(l<0||i<l)&&(o=!0)}if(void 0===o){o=function(e,t,n){if(!_(t,"default"))return;var r=t.default;0;if(e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n])return e._props[n];return u(r)&&"Function"!==Yr(t.type)?r.call(e):r}(r,a,e);var c=Fe;ke(!0),Pe(o),ke(c)}return o}var Xr=/^\s*function (\w+)/;function Yr(e){var t=e&&e.toString().match(Xr);return t?t[1]:""}function Zr(e,t){return Yr(e)===Yr(t)}function Qr(e,t){if(!a(t))return Zr(t,e)?0:-1;for(var n=0,r=t.length;n<r;n++)if(Zr(t[n],e))return n;return-1}var ea={enumerable:!0,configurable:!0,get:P,set:P};function ta(e,t,n){ea.get=function(){return this[t][n]},ea.set=function(e){this[t][n]=e},Object.defineProperty(e,n,ea)}function na(e){var t=e.$options;if(t.props&&function(e,t){var n=e.$options.propsData||{},r=e._props=De({}),a=e.$options._propKeys=[],s=!e.$parent;s||ke(!1);var o=function(s){a.push(s);var o=Kr(s,t,n,e);Ue(r,s,o,void 0,!0),s in e||ta(e,"_props",s)};for(var i in t)o(i);ke(!0)}(e,t.props),function(e){var t=e.$options,n=t.setup;if(n){var r=e._setupContext=on(e);me(e),Ce();var a=Sn(n,null,[e._props||De({}),r],e,"setup");if(Se(),me(),u(a))t.render=a;else if(c(a))if(e._setupState=a,a.__sfc){var s=e._setupProxy={};for(var o in a)"__sfc"!==o&&nt(s,a,o)}else for(var o in a)q(o)||nt(e,a,o)}}(e),t.methods&&function(e,t){e.$options.props;for(var n in t)e[n]="function"!=typeof t[n]?P:F(t[n],e)}(e,t.methods),t.data)!function(e){var t=e.$options.data;t=e._data=u(t)?function(e,t){Ce();try{return e.call(t,t)}catch(e){return Cn(e,t,"data()"),{}}finally{Se()}}(t,e):t||{},d(t)||(t={});var n=Object.keys(t),r=e.$options.props,a=(e.$options.methods,n.length);for(;a--;){var s=n[a];0,r&&_(r,s)||q(s)||ta(e,"_data",s)}var o=Pe(t);o&&o.vmCount++}(e);else{var n=Pe(e._data={});n&&n.vmCount++}t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),r=ie();for(var a in t){var s=t[a],o=u(s)?s:s.get;0,r||(n[a]=new lr(e,o||P,P,ra)),a in e||aa(e,a,s)}}(e,t.computed),t.watch&&t.watch!==ae&&function(e,t){for(var n in t){var r=t[n];if(a(r))for(var s=0;s<r.length;s++)ia(e,n,r[s]);else ia(e,n,r)}}(e,t.watch)}var ra={lazy:!0};function aa(e,t,n){var r=!ie();u(n)?(ea.get=r?sa(t):oa(n),ea.set=P):(ea.get=n.get?r&&!1!==n.cache?sa(t):oa(n.get):P,ea.set=n.set||P),Object.defineProperty(e,t,ea)}function sa(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),Te.target&&t.depend(),t.value}}function oa(e){return function(){return e.call(this,this)}}function ia(e,t,n,r){return d(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,r)}var la=0;function ua(e){var t=e.options;if(e.super){var n=ua(e.super);if(n!==e.superOptions){e.superOptions=n;var r=function(e){var t,n=e.options,r=e.sealedOptions;for(var a in n)n[a]!==r[a]&&(t||(t={}),t[a]=n[a]);return t}(e);r&&O(e.extendOptions,r),(t=e.options=Jr(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function ca(e){this._init(e)}function pa(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,a=e._Ctor||(e._Ctor={});if(a[r])return a[r];var s=Ur(e)||Ur(n.options);var o=function(e){this._init(e)};return(o.prototype=Object.create(n.prototype)).constructor=o,o.cid=t++,o.options=Jr(n.options,e),o.super=n,o.options.props&&function(e){var t=e.options.props;for(var n in t)ta(e.prototype,"_props",n)}(o),o.options.computed&&function(e){var t=e.options.computed;for(var n in t)aa(e.prototype,n,t[n])}(o),o.extend=n.extend,o.mixin=n.mixin,o.use=n.use,z.forEach((function(e){o[e]=n[e]})),s&&(o.options.components[s]=o),o.superOptions=n.options,o.extendOptions=e,o.sealedOptions=O({},o.options),a[r]=o,o}}function da(e){return e&&(Ur(e.Ctor.options)||e.tag)}function fa(e,t){return a(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:!!f(e)&&e.test(t)}function ma(e,t){var n=e.cache,r=e.keys,a=e._vnode,s=e.$vnode;for(var o in n){var i=n[o];if(i){var l=i.name;l&&!t(l)&&ha(n,o,r,a)}}s.componentOptions.children=void 0}function ha(e,t,n,r){var a=e[t];!a||r&&a.tag===r.tag||a.componentInstance.$destroy(),e[t]=null,x(n,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=la++,t._isVue=!0,t.__v_skip=!0,t._scope=new Ct(!0),t._scope.parent=void 0,t._scope._vm=!0,e&&e._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),r=t._parentVnode;n.parent=t.parent,n._parentVnode=r;var a=r.componentOptions;n.propsData=a.propsData,n._parentListeners=a.listeners,n._renderChildren=a.children,n._componentTag=a.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(t,e):t.$options=Jr(ua(t.constructor),e||{},t),t._renderProxy=t,t._self=t,function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._provided=n?n._provided:Object.create(null),e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(t),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&&dr(e,t)}(t),function(e){e._vnode=null,e._staticTrees=null;var t=e.$options,n=e.$vnode=t._parentVnode,a=n&&n.context;e.$slots=en(t._renderChildren,a),e.$scopedSlots=n?rn(e.$parent,n.data.scopedSlots,e.$slots):r,e._c=function(t,n,r,a){return xn(e,t,n,r,a,!1)},e.$createElement=function(t,n,r,a){return xn(e,t,n,r,a,!0)};var s=n&&n.data;Ue(e,"$attrs",s&&s.attrs||r,null,!0),Ue(e,"$listeners",t._parentListeners||r,null,!0)}(t),yr(t,"beforeCreate",void 0,!1),function(e){var t=kr(e.$options.inject,e);t&&(ke(!1),Object.keys(t).forEach((function(n){Ue(e,n,t[n])})),ke(!0))}(t),na(t),function(e){var t=e.$options.provide;if(t){var n=u(t)?t.call(e):t;if(!c(n))return;for(var r=jt(e),a=pe?Reflect.ownKeys(n):Object.keys(n),s=0;s<a.length;s++){var o=a[s];Object.defineProperty(r,o,Object.getOwnPropertyDescriptor(n,o))}}}(t),yr(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(ca),function(e){var t={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",n),e.prototype.$set=Re,e.prototype.$delete=Ie,e.prototype.$watch=function(e,t,n){var r=this;if(d(t))return ia(r,e,t,n);(n=n||{}).user=!0;var a=new lr(r,e,t,n);if(n.immediate){var s='callback for immediate watcher "'.concat(a.expression,'"');Ce(),Sn(t,r,[a.value],r,s),Se()}return function(){a.teardown()}}}(ca),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){var r=this;if(a(e))for(var s=0,o=e.length;s<o;s++)r.$on(e[s],n);else(r._events[e]||(r._events[e]=[])).push(n),t.test(e)&&(r._hasHookEvent=!0);return r},e.prototype.$once=function(e,t){var n=this;function r(){n.$off(e,r),t.apply(n,arguments)}return r.fn=t,n.$on(e,r),n},e.prototype.$off=function(e,t){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(a(e)){for(var r=0,s=e.length;r<s;r++)n.$off(e[r],t);return n}var o,i=n._events[e];if(!i)return n;if(!t)return n._events[e]=null,n;for(var l=i.length;l--;)if((o=i[l])===t||o.fn===t){i.splice(l,1);break}return n},e.prototype.$emit=function(e){var t=this,n=t._events[e];if(n){n=n.length>1?k(n):n;for(var r=k(arguments,1),a='event handler for "'.concat(e,'"'),s=0,o=n.length;s<o;s++)Sn(n[s],t,r,t,a)}return t}}(ca),function(e){e.prototype._update=function(e,t){var n=this,r=n.$el,a=n._vnode,s=mr(n);n._vnode=e,n.$el=a?n.__patch__(a,e):n.__patch__(n.$el,e,t,!1),s(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n);for(var o=n;o&&o.$vnode&&o.$parent&&o.$vnode===o.$parent._vnode;)o.$parent.$el=o.$el,o=o.$parent},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){yr(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||x(t.$children,e),e._scope.stop(),e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),yr(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(ca),function(e){Qt(e.prototype),e.prototype.$nextTick=function(e){return In(e,this)},e.prototype._render=function(){var e=this,t=e.$options,n=t.render,r=t._parentVnode;r&&e._isMounted&&(e.$scopedSlots=rn(e.$parent,r.data.scopedSlots,e.$slots,e.$scopedSlots),e._slotsProxy&&cn(e._slotsProxy,e.$scopedSlots)),e.$vnode=r;var s,o=de,i=gn;try{me(e),gn=e,s=n.call(e._renderProxy,e.$createElement)}catch(t){Cn(t,e,"render"),s=e._vnode}finally{gn=i,me(o)}return a(s)&&1===s.length&&(s=s[0]),s instanceof he||(s=ge()),s.parent=r,s}}(ca);var ga=[String,RegExp,Array],va={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:ga,exclude:ga,max:[String,Number]},methods:{cacheVNode:function(){var e=this,t=e.cache,n=e.keys,r=e.vnodeToCache,a=e.keyToCache;if(r){var s=r.tag,o=r.componentInstance,i=r.componentOptions;t[a]={name:da(i),tag:s,componentInstance:o},n.push(a),this.max&&n.length>parseInt(this.max)&&ha(t,n[0],n,this._vnode),this.vnodeToCache=null}}},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)ha(this.cache,e,this.keys)},mounted:function(){var e=this;this.cacheVNode(),this.$watch("include",(function(t){ma(e,(function(e){return fa(t,e)}))})),this.$watch("exclude",(function(t){ma(e,(function(e){return!fa(t,e)}))}))},updated:function(){this.cacheVNode()},render:function(){var e=this.$slots.default,t=yn(e),n=t&&t.componentOptions;if(n){var r=da(n),a=this.include,s=this.exclude;if(a&&(!r||!fa(a,r))||s&&r&&fa(s,r))return t;var o=this.cache,i=this.keys,l=null==t.key?n.Ctor.cid+(n.tag?"::".concat(n.tag):""):t.key;o[l]?(t.componentInstance=o[l].componentInstance,x(i,l),i.push(l)):(this.vnodeToCache=t,this.keyToCache=l),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return V}};Object.defineProperty(e,"config",t),e.util={warn:Dr,extend:O,mergeOptions:Jr,defineReactive:Ue},e.set=Re,e.delete=Ie,e.nextTick=In,e.observable=function(e){return Pe(e),e},e.options=Object.create(null),z.forEach((function(t){e.options[t+"s"]=Object.create(null)})),e.options._base=e,O(e.options.components,va),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=k(arguments,1);return n.unshift(this),u(e.install)?e.install.apply(e,n):u(e)&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=Jr(this.options,e),this}}(e),pa(e),function(e){z.forEach((function(t){e[t]=function(e,n){return n?("component"===t&&d(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&u(n)&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}}))}(e)}(ca),Object.defineProperty(ca.prototype,"$isServer",{get:ie}),Object.defineProperty(ca.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(ca,"FunctionalRenderContext",{value:Or}),ca.version=tr;var ya=b("style,class"),ba=b("input,textarea,option,select,progress"),wa=b("contenteditable,draggable,spellcheck"),xa=b("events,caret,typing,plaintext-only"),Ta=function(e,t){return Ea(t)||"false"===t?"false":"contenteditable"===e&&xa(t)?t:"true"},_a=b("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),Ca="http://www.w3.org/1999/xlink",Sa=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},Na=function(e){return Sa(e)?e.slice(6,e.length):""},Ea=function(e){return null==e||!1===e};function La(e){for(var t=e.data,n=e,r=e;o(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(t=ja(r.data,t));for(;o(n=n.parent);)n&&n.data&&(t=ja(t,n.data));return function(e,t){if(o(e)||o(t))return Fa(e,ka(t));return""}(t.staticClass,t.class)}function ja(e,t){return{staticClass:Fa(e.staticClass,t.staticClass),class:o(e.class)?[e.class,t.class]:t.class}}function Fa(e,t){return e?t?e+" "+t:e:t||""}function ka(e){return Array.isArray(e)?function(e){for(var t,n="",r=0,a=e.length;r<a;r++)o(t=ka(e[r]))&&""!==t&&(n&&(n+=" "),n+=t);return n}(e):c(e)?function(e){var t="";for(var n in e)e[n]&&(t&&(t+=" "),t+=n);return t}(e):"string"==typeof e?e:""}var Oa={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Aa=b("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Pa=b("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignobject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ua=function(e){return Aa(e)||Pa(e)};var Ra=Object.create(null);var Ia=b("text,number,password,search,email,tel,url");var Ma=Object.freeze({__proto__:null,createElement:function(e,t){var n=document.createElement(e);return"select"!==e||t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n},createElementNS:function(e,t){return document.createElementNS(Oa[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,"")}}),Ba={create:function(e,t){Da(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Da(e,!0),Da(t))},destroy:function(e){Da(e,!0)}};function Da(e,t){var n=e.data.ref;if(o(n)){var r=e.context,s=e.componentInstance||e.elm,i=t?null:s,l=t?void 0:s;if(u(n))Sn(n,r,[i],r,"template ref function");else{var c=e.data.refInFor,p="string"==typeof n||"number"==typeof n,d=Ke(n),f=r.$refs;if(p||d)if(c){var m=p?f[n]:n.value;t?a(m)&&x(m,s):a(m)?m.includes(s)||m.push(s):p?(f[n]=[s],$a(r,n,f[n])):n.value=[s]}else if(p){if(t&&f[n]!==s)return;f[n]=l,$a(r,n,i)}else if(d){if(t&&n.value!==s)return;n.value=i}else 0}}}function $a(e,t,n){var r=e._setupState;r&&_(r,t)&&(Ke(r[t])?r[t].value=n:r[t]=n)}var za=new he("",{},[]),Ha=["create","activate","update","remove","destroy"];function Va(e,t){return e.key===t.key&&e.asyncFactory===t.asyncFactory&&(e.tag===t.tag&&e.isComment===t.isComment&&o(e.data)===o(t.data)&&function(e,t){if("input"!==e.tag)return!0;var n,r=o(n=e.data)&&o(n=n.attrs)&&n.type,a=o(n=t.data)&&o(n=n.attrs)&&n.type;return r===a||Ia(r)&&Ia(a)}(e,t)||i(e.isAsyncPlaceholder)&&s(t.asyncFactory.error))}function Ga(e,t,n){var r,a,s={};for(r=t;r<=n;++r)o(a=e[r].key)&&(s[a]=r);return s}var qa={create:Ja,update:Ja,destroy:function(e){Ja(e,za)}};function Ja(e,t){(e.data.directives||t.data.directives)&&function(e,t){var n,r,a,s=e===za,o=t===za,i=Ka(e.data.directives,e.context),l=Ka(t.data.directives,t.context),u=[],c=[];for(n in l)r=i[n],a=l[n],r?(a.oldValue=r.value,a.oldArg=r.arg,Ya(a,"update",t,e),a.def&&a.def.componentUpdated&&c.push(a)):(Ya(a,"bind",t,e),a.def&&a.def.inserted&&u.push(a));if(u.length){var p=function(){for(var n=0;n<u.length;n++)Ya(u[n],"inserted",t,e)};s?Pt(t,"insert",p):p()}c.length&&Pt(t,"postpatch",(function(){for(var n=0;n<c.length;n++)Ya(c[n],"componentUpdated",t,e)}));if(!s)for(n in i)l[n]||Ya(i[n],"unbind",e,e,o)}(e,t)}var Wa=Object.create(null);function Ka(e,t){var n,r,a=Object.create(null);if(!e)return a;for(n=0;n<e.length;n++){if((r=e[n]).modifiers||(r.modifiers=Wa),a[Xa(r)]=r,t._setupState&&t._setupState.__sfc){var s=r.def||Wr(t,"_setupState","v-"+r.name);r.def="function"==typeof s?{bind:s,update:s}:s}r.def=r.def||Wr(t.$options,"directives",r.name)}return a}function Xa(e){return e.rawName||"".concat(e.name,".").concat(Object.keys(e.modifiers||{}).join("."))}function Ya(e,t,n,r,a){var s=e.def&&e.def[t];if(s)try{s(n.elm,e,n,r,a)}catch(r){Cn(r,n.context,"directive ".concat(e.name," ").concat(t," hook"))}}var Za=[Ba,qa];function Qa(e,t){var n=t.componentOptions;if(!(o(n)&&!1===n.Ctor.options.inheritAttrs||s(e.data.attrs)&&s(t.data.attrs))){var r,a,l=t.elm,u=e.data.attrs||{},c=t.data.attrs||{};for(r in(o(c.__ob__)||i(c._v_attr_proxy))&&(c=t.data.attrs=O({},c)),c)a=c[r],u[r]!==a&&es(l,r,a,t.data.pre);for(r in(Z||ee)&&c.value!==u.value&&es(l,"value",c.value),u)s(c[r])&&(Sa(r)?l.removeAttributeNS(Ca,Na(r)):wa(r)||l.removeAttribute(r))}}function es(e,t,n,r){r||e.tagName.indexOf("-")>-1?ts(e,t,n):_a(t)?Ea(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):wa(t)?e.setAttribute(t,Ta(t,n)):Sa(t)?Ea(n)?e.removeAttributeNS(Ca,Na(t)):e.setAttributeNS(Ca,t,n):ts(e,t,n)}function ts(e,t,n){if(Ea(n))e.removeAttribute(t);else{if(Z&&!Q&&"TEXTAREA"===e.tagName&&"placeholder"===t&&""!==n&&!e.__ieph){var r=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",r)};e.addEventListener("input",r),e.__ieph=!0}e.setAttribute(t,n)}}var ns={create:Qa,update:Qa};function rs(e,t){var n=t.elm,r=t.data,a=e.data;if(!(s(r.staticClass)&&s(r.class)&&(s(a)||s(a.staticClass)&&s(a.class)))){var i=La(t),l=n._transitionClasses;o(l)&&(i=Fa(i,ka(l))),i!==n._prevClass&&(n.setAttribute("class",i),n._prevClass=i)}}var as,ss={create:rs,update:rs},os="__r",is="__c";function ls(e,t,n){var r=as;return function a(){null!==t.apply(null,arguments)&&ps(e,a,n,r)}}var us=jn&&!(re&&Number(re[1])<=53);function cs(e,t,n,r){if(us){var a=Sr,s=t;t=s._wrapper=function(e){if(e.target===e.currentTarget||e.timeStamp>=a||e.timeStamp<=0||e.target.ownerDocument!==document)return s.apply(this,arguments)}}as.addEventListener(e,t,se?{capture:n,passive:r}:n)}function ps(e,t,n,r){(r||as).removeEventListener(e,t._wrapper||t,n)}function ds(e,t){if(!s(e.data.on)||!s(t.data.on)){var n=t.data.on||{},r=e.data.on||{};as=t.elm||e.elm,function(e){if(o(e[os])){var t=Z?"change":"input";e[t]=[].concat(e[os],e[t]||[]),delete e[os]}o(e[is])&&(e.change=[].concat(e[is],e.change||[]),delete e[is])}(n),At(n,r,cs,ps,ls,t.context),as=void 0}}var fs,ms={create:ds,update:ds,destroy:function(e){return ds(e,za)}};function hs(e,t){if(!s(e.data.domProps)||!s(t.data.domProps)){var n,r,a=t.elm,l=e.data.domProps||{},u=t.data.domProps||{};for(n in(o(u.__ob__)||i(u._v_attr_proxy))&&(u=t.data.domProps=O({},u)),l)n in u||(a[n]="");for(n in u){if(r=u[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),r===l[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var c=s(r)?"":String(r);gs(a,c)&&(a.value=c)}else if("innerHTML"===n&&Pa(a.tagName)&&s(a.innerHTML)){(fs=fs||document.createElement("div")).innerHTML="<svg>".concat(r,"</svg>");for(var p=fs.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;p.firstChild;)a.appendChild(p.firstChild)}else if(r!==l[n])try{a[n]=r}catch(e){}}}}function gs(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(e,t)||function(e,t){var n=e.value,r=e._vModifiers;if(o(r)){if(r.number)return y(n)!==y(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(e,t))}var vs={create:hs,update:hs},ys=C((function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach((function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}})),t}));function bs(e){var t=ws(e.style);return e.staticStyle?O(e.staticStyle,t):t}function ws(e){return Array.isArray(e)?A(e):"string"==typeof e?ys(e):e}var xs,Ts=/^--/,_s=/\s*!important$/,Cs=function(e,t,n){if(Ts.test(t))e.style.setProperty(t,n);else if(_s.test(n))e.style.setProperty(j(t),n.replace(_s,""),"important");else{var r=Ns(t);if(Array.isArray(n))for(var a=0,s=n.length;a<s;a++)e.style[r]=n[a];else e.style[r]=n}},Ss=["Webkit","Moz","ms"],Ns=C((function(e){if(xs=xs||document.createElement("div").style,"filter"!==(e=N(e))&&e in xs)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<Ss.length;n++){var r=Ss[n]+t;if(r in xs)return r}}));function Es(e,t){var n=t.data,r=e.data;if(!(s(n.staticStyle)&&s(n.style)&&s(r.staticStyle)&&s(r.style))){var a,i,l=t.elm,u=r.staticStyle,c=r.normalizedStyle||r.style||{},p=u||c,d=ws(t.data.style)||{};t.data.normalizedStyle=o(d.__ob__)?O({},d):d;var f=function(e,t){var n,r={};if(t)for(var a=e;a.componentInstance;)(a=a.componentInstance._vnode)&&a.data&&(n=bs(a.data))&&O(r,n);(n=bs(e.data))&&O(r,n);for(var s=e;s=s.parent;)s.data&&(n=bs(s.data))&&O(r,n);return r}(t,!0);for(i in p)s(f[i])&&Cs(l,i,"");for(i in f)a=f[i],Cs(l,i,null==a?"":a)}}var Ls={create:Es,update:Es},js=/\s+/;function Fs(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(js).forEach((function(t){return e.classList.add(t)})):e.classList.add(t);else{var n=" ".concat(e.getAttribute("class")||""," ");n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function ks(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(js).forEach((function(t){return e.classList.remove(t)})):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" ".concat(e.getAttribute("class")||""," "),r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function Os(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&O(t,As(e.name||"v")),O(t,e),t}return"string"==typeof e?As(e):void 0}}var As=C((function(e){return{enterClass:"".concat(e,"-enter"),enterToClass:"".concat(e,"-enter-to"),enterActiveClass:"".concat(e,"-enter-active"),leaveClass:"".concat(e,"-leave"),leaveToClass:"".concat(e,"-leave-to"),leaveActiveClass:"".concat(e,"-leave-active")}})),Ps=X&&!Q,Us="transition",Rs="animation",Is="transition",Ms="transitionend",Bs="animation",Ds="animationend";Ps&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Is="WebkitTransition",Ms="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Bs="WebkitAnimation",Ds="webkitAnimationEnd"));var $s=X?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function zs(e){$s((function(){$s(e)}))}function Hs(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),Fs(e,t))}function Vs(e,t){e._transitionClasses&&x(e._transitionClasses,t),ks(e,t)}function Gs(e,t,n){var r=Js(e,t),a=r.type,s=r.timeout,o=r.propCount;if(!a)return n();var i=a===Us?Ms:Ds,l=0,u=function(){e.removeEventListener(i,c),n()},c=function(t){t.target===e&&++l>=o&&u()};setTimeout((function(){l<o&&u()}),s+1),e.addEventListener(i,c)}var qs=/\b(transform|all)(,|$)/;function Js(e,t){var n,r=window.getComputedStyle(e),a=(r[Is+"Delay"]||"").split(", "),s=(r[Is+"Duration"]||"").split(", "),o=Ws(a,s),i=(r[Bs+"Delay"]||"").split(", "),l=(r[Bs+"Duration"]||"").split(", "),u=Ws(i,l),c=0,p=0;return t===Us?o>0&&(n=Us,c=o,p=s.length):t===Rs?u>0&&(n=Rs,c=u,p=l.length):p=(n=(c=Math.max(o,u))>0?o>u?Us:Rs:null)?n===Us?s.length:l.length:0,{type:n,timeout:c,propCount:p,hasTransform:n===Us&&qs.test(r[Is+"Property"])}}function Ws(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map((function(t,n){return Ks(t)+Ks(e[n])})))}function Ks(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}function Xs(e,t){var n=e.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=Os(e.data.transition);if(!s(r)&&!o(n._enterCb)&&1===n.nodeType){for(var a=r.css,i=r.type,l=r.enterClass,p=r.enterToClass,d=r.enterActiveClass,f=r.appearClass,m=r.appearToClass,h=r.appearActiveClass,g=r.beforeEnter,v=r.enter,b=r.afterEnter,w=r.enterCancelled,x=r.beforeAppear,T=r.appear,_=r.afterAppear,C=r.appearCancelled,S=r.duration,N=fr,E=fr.$vnode;E&&E.parent;)N=E.context,E=E.parent;var L=!N._isMounted||!e.isRootInsert;if(!L||T||""===T){var j=L&&f?f:l,F=L&&h?h:d,k=L&&m?m:p,O=L&&x||g,A=L&&u(T)?T:v,P=L&&_||b,U=L&&C||w,R=y(c(S)?S.enter:S);0;var I=!1!==a&&!Q,M=Qs(A),D=n._enterCb=B((function(){I&&(Vs(n,k),Vs(n,F)),D.cancelled?(I&&Vs(n,j),U&&U(n)):P&&P(n),n._enterCb=null}));e.data.show||Pt(e,"insert",(function(){var t=n.parentNode,r=t&&t._pending&&t._pending[e.key];r&&r.tag===e.tag&&r.elm._leaveCb&&r.elm._leaveCb(),A&&A(n,D)})),O&&O(n),I&&(Hs(n,j),Hs(n,F),zs((function(){Vs(n,j),D.cancelled||(Hs(n,k),M||(Zs(R)?setTimeout(D,R):Gs(n,i,D)))}))),e.data.show&&(t&&t(),A&&A(n,D)),I||M||D()}}}function Ys(e,t){var n=e.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=Os(e.data.transition);if(s(r)||1!==n.nodeType)return t();if(!o(n._leaveCb)){var a=r.css,i=r.type,l=r.leaveClass,u=r.leaveToClass,p=r.leaveActiveClass,d=r.beforeLeave,f=r.leave,m=r.afterLeave,h=r.leaveCancelled,g=r.delayLeave,v=r.duration,b=!1!==a&&!Q,w=Qs(f),x=y(c(v)?v.leave:v);0;var T=n._leaveCb=B((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[e.key]=null),b&&(Vs(n,u),Vs(n,p)),T.cancelled?(b&&Vs(n,l),h&&h(n)):(t(),m&&m(n)),n._leaveCb=null}));g?g(_):_()}function _(){T.cancelled||(!e.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[e.key]=e),d&&d(n),b&&(Hs(n,l),Hs(n,p),zs((function(){Vs(n,l),T.cancelled||(Hs(n,u),w||(Zs(x)?setTimeout(T,x):Gs(n,i,T)))}))),f&&f(n,T),b||w||T())}}function Zs(e){return"number"==typeof e&&!isNaN(e)}function Qs(e){if(s(e))return!1;var t=e.fns;return o(t)?Qs(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function eo(e,t){!0!==t.data.show&&Xs(t)}var to=function(e){var t,n,r={},u=e.modules,c=e.nodeOps;for(t=0;t<Ha.length;++t)for(r[Ha[t]]=[],n=0;n<u.length;++n)o(u[n][Ha[t]])&&r[Ha[t]].push(u[n][Ha[t]]);function p(e){var t=c.parentNode(e);o(t)&&c.removeChild(t,e)}function d(e,t,n,a,s,l,u){if(o(e.elm)&&o(l)&&(e=l[u]=ye(e)),e.isRootInsert=!s,!function(e,t,n,a){var s=e.data;if(o(s)){var l=o(e.componentInstance)&&s.keepAlive;if(o(s=s.hook)&&o(s=s.init)&&s(e,!1),o(e.componentInstance))return f(e,t),m(n,e.elm,a),i(l)&&function(e,t,n,a){var s,i=e;for(;i.componentInstance;)if(o(s=(i=i.componentInstance._vnode).data)&&o(s=s.transition)){for(s=0;s<r.activate.length;++s)r.activate[s](za,i);t.push(i);break}m(n,e.elm,a)}(e,t,n,a),!0}}(e,t,n,a)){var p=e.data,d=e.children,g=e.tag;o(g)?(e.elm=e.ns?c.createElementNS(e.ns,g):c.createElement(g,e),y(e),h(e,d,t),o(p)&&v(e,t),m(n,e.elm,a)):i(e.isComment)?(e.elm=c.createComment(e.text),m(n,e.elm,a)):(e.elm=c.createTextNode(e.text),m(n,e.elm,a))}}function f(e,t){o(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,g(e)?(v(e,t),y(e)):(Da(e),t.push(e))}function m(e,t,n){o(e)&&(o(n)?c.parentNode(n)===e&&c.insertBefore(e,t,n):c.appendChild(e,t))}function h(e,t,n){if(a(t)){0;for(var r=0;r<t.length;++r)d(t[r],n,e.elm,null,!0,t,r)}else l(e.text)&&c.appendChild(e.elm,c.createTextNode(String(e.text)))}function g(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return o(e.tag)}function v(e,n){for(var a=0;a<r.create.length;++a)r.create[a](za,e);o(t=e.data.hook)&&(o(t.create)&&t.create(za,e),o(t.insert)&&n.push(e))}function y(e){var t;if(o(t=e.fnScopeId))c.setStyleScope(e.elm,t);else for(var n=e;n;)o(t=n.context)&&o(t=t.$options._scopeId)&&c.setStyleScope(e.elm,t),n=n.parent;o(t=fr)&&t!==e.context&&t!==e.fnContext&&o(t=t.$options._scopeId)&&c.setStyleScope(e.elm,t)}function w(e,t,n,r,a,s){for(;r<=a;++r)d(n[r],s,e,t,!1,n,r)}function x(e){var t,n,a=e.data;if(o(a))for(o(t=a.hook)&&o(t=t.destroy)&&t(e),t=0;t<r.destroy.length;++t)r.destroy[t](e);if(o(t=e.children))for(n=0;n<e.children.length;++n)x(e.children[n])}function T(e,t,n){for(;t<=n;++t){var r=e[t];o(r)&&(o(r.tag)?(_(r),x(r)):p(r.elm))}}function _(e,t){if(o(t)||o(e.data)){var n,a=r.remove.length+1;for(o(t)?t.listeners+=a:t=function(e,t){function n(){0==--n.listeners&&p(e)}return n.listeners=t,n}(e.elm,a),o(n=e.componentInstance)&&o(n=n._vnode)&&o(n.data)&&_(n,t),n=0;n<r.remove.length;++n)r.remove[n](e,t);o(n=e.data.hook)&&o(n=n.remove)?n(e,t):t()}else p(e.elm)}function C(e,t,n,r){for(var a=n;a<r;a++){var s=t[a];if(o(s)&&Va(e,s))return a}}function S(e,t,n,a,l,u){if(e!==t){o(t.elm)&&o(a)&&(t=a[l]=ye(t));var p=t.elm=e.elm;if(i(e.isAsyncPlaceholder))o(t.asyncFactory.resolved)?L(e.elm,t,n):t.isAsyncPlaceholder=!0;else if(i(t.isStatic)&&i(e.isStatic)&&t.key===e.key&&(i(t.isCloned)||i(t.isOnce)))t.componentInstance=e.componentInstance;else{var f,m=t.data;o(m)&&o(f=m.hook)&&o(f=f.prepatch)&&f(e,t);var h=e.children,v=t.children;if(o(m)&&g(t)){for(f=0;f<r.update.length;++f)r.update[f](e,t);o(f=m.hook)&&o(f=f.update)&&f(e,t)}s(t.text)?o(h)&&o(v)?h!==v&&function(e,t,n,r,a){var i,l,u,p=0,f=0,m=t.length-1,h=t[0],g=t[m],v=n.length-1,y=n[0],b=n[v],x=!a;for(;p<=m&&f<=v;)s(h)?h=t[++p]:s(g)?g=t[--m]:Va(h,y)?(S(h,y,r,n,f),h=t[++p],y=n[++f]):Va(g,b)?(S(g,b,r,n,v),g=t[--m],b=n[--v]):Va(h,b)?(S(h,b,r,n,v),x&&c.insertBefore(e,h.elm,c.nextSibling(g.elm)),h=t[++p],b=n[--v]):Va(g,y)?(S(g,y,r,n,f),x&&c.insertBefore(e,g.elm,h.elm),g=t[--m],y=n[++f]):(s(i)&&(i=Ga(t,p,m)),s(l=o(y.key)?i[y.key]:C(y,t,p,m))?d(y,r,e,h.elm,!1,n,f):Va(u=t[l],y)?(S(u,y,r,n,f),t[l]=void 0,x&&c.insertBefore(e,u.elm,h.elm)):d(y,r,e,h.elm,!1,n,f),y=n[++f]);p>m?w(e,s(n[v+1])?null:n[v+1].elm,n,f,v,r):f>v&&T(t,p,m)}(p,h,v,n,u):o(v)?(o(e.text)&&c.setTextContent(p,""),w(p,null,v,0,v.length-1,n)):o(h)?T(h,0,h.length-1):o(e.text)&&c.setTextContent(p,""):e.text!==t.text&&c.setTextContent(p,t.text),o(m)&&o(f=m.hook)&&o(f=f.postpatch)&&f(e,t)}}}function N(e,t,n){if(i(n)&&o(e.parent))e.parent.data.pendingInsert=t;else for(var r=0;r<t.length;++r)t[r].data.hook.insert(t[r])}var E=b("attrs,class,staticClass,staticStyle,key");function L(e,t,n,r){var a,s=t.tag,l=t.data,u=t.children;if(r=r||l&&l.pre,t.elm=e,i(t.isComment)&&o(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(o(l)&&(o(a=l.hook)&&o(a=a.init)&&a(t,!0),o(a=t.componentInstance)))return f(t,n),!0;if(o(s)){if(o(u))if(e.hasChildNodes())if(o(a=l)&&o(a=a.domProps)&&o(a=a.innerHTML)){if(a!==e.innerHTML)return!1}else{for(var c=!0,p=e.firstChild,d=0;d<u.length;d++){if(!p||!L(p,u[d],n,r)){c=!1;break}p=p.nextSibling}if(!c||p)return!1}else h(t,u,n);if(o(l)){var m=!1;for(var g in l)if(!E(g)){m=!0,v(t,n);break}!m&&l.class&&ar(l.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,n,a){if(!s(t)){var l,u=!1,p=[];if(s(e))u=!0,d(t,p);else{var f=o(e.nodeType);if(!f&&Va(e,t))S(e,t,p,null,null,a);else{if(f){if(1===e.nodeType&&e.hasAttribute($)&&(e.removeAttribute($),n=!0),i(n)&&L(e,t,p))return N(t,p,!0),e;l=e,e=new he(c.tagName(l).toLowerCase(),{},[],void 0,l)}var m=e.elm,h=c.parentNode(m);if(d(t,p,m._leaveCb?null:h,c.nextSibling(m)),o(t.parent))for(var v=t.parent,y=g(t);v;){for(var b=0;b<r.destroy.length;++b)r.destroy[b](v);if(v.elm=t.elm,y){for(var w=0;w<r.create.length;++w)r.create[w](za,v);var _=v.data.hook.insert;if(_.merged)for(var C=_.fns.slice(1),E=0;E<C.length;E++)C[E]()}else Da(v);v=v.parent}o(h)?T([e],0,0):o(e.tag)&&x(e)}}return N(t,p,u),t.elm}o(e)&&x(e)}}({nodeOps:Ma,modules:[ns,ss,ms,vs,Ls,X?{create:eo,activate:eo,remove:function(e,t){!0!==e.data.show?Ys(e,t):t()}}:{}].concat(Za)});Q&&document.addEventListener("selectionchange",(function(){var e=document.activeElement;e&&e.vmodel&&uo(e,"input")}));var no={inserted:function(e,t,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?Pt(n,"postpatch",(function(){no.componentUpdated(e,t,n)})):ro(e,t,n.context),e._vOptions=[].map.call(e.options,oo)):("textarea"===n.tag||Ia(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",io),e.addEventListener("compositionend",lo),e.addEventListener("change",lo),Q&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){ro(e,t,n.context);var r=e._vOptions,a=e._vOptions=[].map.call(e.options,oo);if(a.some((function(e,t){return!I(e,r[t])})))(e.multiple?t.value.some((function(e){return so(e,a)})):t.value!==t.oldValue&&so(t.value,a))&&uo(e,"change")}}};function ro(e,t,n){ao(e,t,n),(Z||ee)&&setTimeout((function(){ao(e,t,n)}),0)}function ao(e,t,n){var r=t.value,a=e.multiple;if(!a||Array.isArray(r)){for(var s,o,i=0,l=e.options.length;i<l;i++)if(o=e.options[i],a)s=M(r,oo(o))>-1,o.selected!==s&&(o.selected=s);else if(I(oo(o),r))return void(e.selectedIndex!==i&&(e.selectedIndex=i));a||(e.selectedIndex=-1)}}function so(e,t){return t.every((function(t){return!I(t,e)}))}function oo(e){return"_value"in e?e._value:e.value}function io(e){e.target.composing=!0}function lo(e){e.target.composing&&(e.target.composing=!1,uo(e.target,"input"))}function uo(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function co(e){return!e.componentInstance||e.data&&e.data.transition?e:co(e.componentInstance._vnode)}var po={bind:function(e,t,n){var r=t.value,a=(n=co(n)).data&&n.data.transition,s=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&a?(n.data.show=!0,Xs(n,(function(){e.style.display=s}))):e.style.display=r?s:"none"},update:function(e,t,n){var r=t.value;!r!=!t.oldValue&&((n=co(n)).data&&n.data.transition?(n.data.show=!0,r?Xs(n,(function(){e.style.display=e.__vOriginalDisplay})):Ys(n,(function(){e.style.display="none"}))):e.style.display=r?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,r,a){a||(e.style.display=e.__vOriginalDisplay)}},fo={model:no,show:po},mo={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ho(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?ho(yn(t.children)):e}function go(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var a=n._parentListeners;for(var r in a)t[N(r)]=a[r];return t}function vo(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var yo=function(e){return e.tag||nn(e)},bo=function(e){return"show"===e.name},wo={name:"transition",props:mo,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(yo)).length){0;var r=this.mode;0;var a=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return a;var s=ho(a);if(!s)return a;if(this._leaving)return vo(e,a);var o="__transition-".concat(this._uid,"-");s.key=null==s.key?s.isComment?o+"comment":o+s.tag:l(s.key)?0===String(s.key).indexOf(o)?s.key:o+s.key:s.key;var i=(s.data||(s.data={})).transition=go(this),u=this._vnode,c=ho(u);if(s.data.directives&&s.data.directives.some(bo)&&(s.data.show=!0),c&&c.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(s,c)&&!nn(c)&&(!c.componentInstance||!c.componentInstance._vnode.isComment)){var p=c.data.transition=O({},i);if("out-in"===r)return this._leaving=!0,Pt(p,"afterLeave",(function(){t._leaving=!1,t.$forceUpdate()})),vo(e,a);if("in-out"===r){if(nn(s))return u;var d,f=function(){d()};Pt(i,"afterEnter",f),Pt(i,"enterCancelled",f),Pt(p,"delayLeave",(function(e){d=e}))}}return a}}},xo=O({tag:String,moveClass:String},mo);delete xo.mode;var To={props:xo,beforeMount:function(){var e=this,t=this._update;this._update=function(n,r){var a=mr(e);e.__patch__(e._vnode,e.kept,!1,!0),e._vnode=e.kept,a(),t.call(e,n,r)}},render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,a=this.$slots.default||[],s=this.children=[],o=go(this),i=0;i<a.length;i++){if((c=a[i]).tag)if(null!=c.key&&0!==String(c.key).indexOf("__vlist"))s.push(c),n[c.key]=c,(c.data||(c.data={})).transition=o;else;}if(r){var l=[],u=[];for(i=0;i<r.length;i++){var c;(c=r[i]).data.transition=o,c.data.pos=c.elm.getBoundingClientRect(),n[c.key]?l.push(c):u.push(c)}this.kept=e(t,null,l),this.removed=u}return e(t,null,s)},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(_o),e.forEach(Co),e.forEach(So),this._reflow=document.body.offsetHeight,e.forEach((function(e){if(e.data.moved){var n=e.elm,r=n.style;Hs(n,t),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Ms,n._moveCb=function e(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Ms,e),n._moveCb=null,Vs(n,t))})}})))},methods:{hasMove:function(e,t){if(!Ps)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach((function(e){ks(n,e)})),Fs(n,t),n.style.display="none",this.$el.appendChild(n);var r=Js(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function _o(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Co(e){e.data.newPos=e.elm.getBoundingClientRect()}function So(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,a=t.top-n.top;if(r||a){e.data.moved=!0;var s=e.elm.style;s.transform=s.WebkitTransform="translate(".concat(r,"px,").concat(a,"px)"),s.transitionDuration="0s"}}var No={Transition:wo,TransitionGroup:To};ca.config.mustUseProp=function(e,t,n){return"value"===n&&ba(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},ca.config.isReservedTag=Ua,ca.config.isReservedAttr=ya,ca.config.getTagNamespace=function(e){return Pa(e)?"svg":"math"===e?"math":void 0},ca.config.isUnknownElement=function(e){if(!X)return!0;if(Ua(e))return!1;if(e=e.toLowerCase(),null!=Ra[e])return Ra[e];var t=document.createElement(e);return e.indexOf("-")>-1?Ra[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Ra[e]=/HTMLUnknownElement/.test(t.toString())},O(ca.options.directives,fo),O(ca.options.components,No),ca.prototype.__patch__=X?to:P,ca.prototype.$mount=function(e,t){return function(e,t,n){var r;e.$el=t,e.$options.render||(e.$options.render=ge),yr(e,"beforeMount"),r=function(){e._update(e._render(),n)},new lr(e,r,P,{before:function(){e._isMounted&&!e._isDestroyed&&yr(e,"beforeUpdate")}},!0),n=!1;var a=e._preWatchers;if(a)for(var s=0;s<a.length;s++)a[s].run();return null==e.$vnode&&(e._isMounted=!0,yr(e,"mounted")),e}(this,e=e&&X?function(e){if("string"==typeof e){return document.querySelector(e)||document.createElement("div")}return e}(e):void 0,t)},X&&setTimeout((function(){V.devtools&&le&&le.emit("init",ca)}),0)},20629:(e,t,n)=>{"use strict";n.d(t,{Se:()=>_,ZP:()=>O,nv:()=>C,rn:()=>x,yh:()=>d});var r=("undefined"!=typeof window?window:void 0!==n.g?n.g:{}).__VUE_DEVTOOLS_GLOBAL_HOOK__;function a(e,t){if(void 0===t&&(t=[]),null===e||"object"!=typeof e)return e;var n,r=(n=function(t){return t.original===e},t.filter(n)[0]);if(r)return r.copy;var s=Array.isArray(e)?[]:{};return t.push({original:e,copy:s}),Object.keys(e).forEach((function(n){s[n]=a(e[n],t)})),s}function s(e,t){Object.keys(e).forEach((function(n){return t(e[n],n)}))}function o(e){return null!==e&&"object"==typeof e}var i=function(e,t){this.runtime=t,this._children=Object.create(null),this._rawModule=e;var n=e.state;this.state=("function"==typeof n?n():n)||{}},l={namespaced:{configurable:!0}};l.namespaced.get=function(){return!!this._rawModule.namespaced},i.prototype.addChild=function(e,t){this._children[e]=t},i.prototype.removeChild=function(e){delete this._children[e]},i.prototype.getChild=function(e){return this._children[e]},i.prototype.hasChild=function(e){return e in this._children},i.prototype.update=function(e){this._rawModule.namespaced=e.namespaced,e.actions&&(this._rawModule.actions=e.actions),e.mutations&&(this._rawModule.mutations=e.mutations),e.getters&&(this._rawModule.getters=e.getters)},i.prototype.forEachChild=function(e){s(this._children,e)},i.prototype.forEachGetter=function(e){this._rawModule.getters&&s(this._rawModule.getters,e)},i.prototype.forEachAction=function(e){this._rawModule.actions&&s(this._rawModule.actions,e)},i.prototype.forEachMutation=function(e){this._rawModule.mutations&&s(this._rawModule.mutations,e)},Object.defineProperties(i.prototype,l);var u=function(e){this.register([],e,!1)};function c(e,t,n){if(t.update(n),n.modules)for(var r in n.modules){if(!t.getChild(r))return void 0;c(e.concat(r),t.getChild(r),n.modules[r])}}u.prototype.get=function(e){return e.reduce((function(e,t){return e.getChild(t)}),this.root)},u.prototype.getNamespace=function(e){var t=this.root;return e.reduce((function(e,n){return e+((t=t.getChild(n)).namespaced?n+"/":"")}),"")},u.prototype.update=function(e){c([],this.root,e)},u.prototype.register=function(e,t,n){var r=this;void 0===n&&(n=!0);var a=new i(t,n);0===e.length?this.root=a:this.get(e.slice(0,-1)).addChild(e[e.length-1],a);t.modules&&s(t.modules,(function(t,a){r.register(e.concat(a),t,n)}))},u.prototype.unregister=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1],r=t.getChild(n);r&&r.runtime&&t.removeChild(n)},u.prototype.isRegistered=function(e){var t=this.get(e.slice(0,-1)),n=e[e.length-1];return!!t&&t.hasChild(n)};var p;var d=function(e){var t=this;void 0===e&&(e={}),!p&&"undefined"!=typeof window&&window.Vue&&w(window.Vue);var n=e.plugins;void 0===n&&(n=[]);var a=e.strict;void 0===a&&(a=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new u(e),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new p,this._makeLocalGettersCache=Object.create(null);var s=this,o=this.dispatch,i=this.commit;this.dispatch=function(e,t){return o.call(s,e,t)},this.commit=function(e,t,n){return i.call(s,e,t,n)},this.strict=a;var l=this._modules.root.state;v(this,l,[],this._modules.root),g(this,l),n.forEach((function(e){return e(t)})),(void 0!==e.devtools?e.devtools:p.config.devtools)&&function(e){r&&(e._devtoolHook=r,r.emit("vuex:init",e),r.on("vuex:travel-to-state",(function(t){e.replaceState(t)})),e.subscribe((function(e,t){r.emit("vuex:mutation",e,t)}),{prepend:!0}),e.subscribeAction((function(e,t){r.emit("vuex:action",e,t)}),{prepend:!0}))}(this)},f={state:{configurable:!0}};function m(e,t,n){return t.indexOf(e)<0&&(n&&n.prepend?t.unshift(e):t.push(e)),function(){var n=t.indexOf(e);n>-1&&t.splice(n,1)}}function h(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var n=e.state;v(e,n,[],e._modules.root,!0),g(e,n,t)}function g(e,t,n){var r=e._vm;e.getters={},e._makeLocalGettersCache=Object.create(null);var a=e._wrappedGetters,o={};s(a,(function(t,n){o[n]=function(e,t){return function(){return e(t)}}(t,e),Object.defineProperty(e.getters,n,{get:function(){return e._vm[n]},enumerable:!0})}));var i=p.config.silent;p.config.silent=!0,e._vm=new p({data:{$$state:t},computed:o}),p.config.silent=i,e.strict&&function(e){e._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}(e),r&&(n&&e._withCommit((function(){r._data.$$state=null})),p.nextTick((function(){return r.$destroy()})))}function v(e,t,n,r,a){var s=!n.length,o=e._modules.getNamespace(n);if(r.namespaced&&(e._modulesNamespaceMap[o],e._modulesNamespaceMap[o]=r),!s&&!a){var i=y(t,n.slice(0,-1)),l=n[n.length-1];e._withCommit((function(){p.set(i,l,r.state)}))}var u=r.context=function(e,t,n){var r=""===t,a={dispatch:r?e.dispatch:function(n,r,a){var s=b(n,r,a),o=s.payload,i=s.options,l=s.type;return i&&i.root||(l=t+l),e.dispatch(l,o)},commit:r?e.commit:function(n,r,a){var s=b(n,r,a),o=s.payload,i=s.options,l=s.type;i&&i.root||(l=t+l),e.commit(l,o,i)}};return Object.defineProperties(a,{getters:{get:r?function(){return e.getters}:function(){return function(e,t){if(!e._makeLocalGettersCache[t]){var n={},r=t.length;Object.keys(e.getters).forEach((function(a){if(a.slice(0,r)===t){var s=a.slice(r);Object.defineProperty(n,s,{get:function(){return e.getters[a]},enumerable:!0})}})),e._makeLocalGettersCache[t]=n}return e._makeLocalGettersCache[t]}(e,t)}},state:{get:function(){return y(e.state,n)}}}),a}(e,o,n);r.forEachMutation((function(t,n){!function(e,t,n,r){var a=e._mutations[t]||(e._mutations[t]=[]);a.push((function(t){n.call(e,r.state,t)}))}(e,o+n,t,u)})),r.forEachAction((function(t,n){var r=t.root?n:o+n,a=t.handler||t;!function(e,t,n,r){var a=e._actions[t]||(e._actions[t]=[]);a.push((function(t){var a=n.call(e,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:e.getters,rootState:e.state},t);return function(e){return e&&"function"==typeof e.then}(a)||(a=Promise.resolve(a)),e._devtoolHook?a.catch((function(t){throw e._devtoolHook.emit("vuex:error",t),t})):a}))}(e,r,a,u)})),r.forEachGetter((function(t,n){!function(e,t,n,r){if(e._wrappedGetters[t])return void 0;e._wrappedGetters[t]=function(e){return n(r.state,r.getters,e.state,e.getters)}}(e,o+n,t,u)})),r.forEachChild((function(r,s){v(e,t,n.concat(s),r,a)}))}function y(e,t){return t.reduce((function(e,t){return e[t]}),e)}function b(e,t,n){return o(e)&&e.type&&(n=t,t=e,e=e.type),{type:e,payload:t,options:n}}function w(e){p&&e===p||function(e){if(Number(e.version.split(".")[0])>=2)e.mixin({beforeCreate:n});else{var t=e.prototype._init;e.prototype._init=function(e){void 0===e&&(e={}),e.init=e.init?[n].concat(e.init):n,t.call(this,e)}}function n(){var e=this.$options;e.store?this.$store="function"==typeof e.store?e.store():e.store:e.parent&&e.parent.$store&&(this.$store=e.parent.$store)}}(p=e)}f.state.get=function(){return this._vm._data.$$state},f.state.set=function(e){0},d.prototype.commit=function(e,t,n){var r=this,a=b(e,t,n),s=a.type,o=a.payload,i=(a.options,{type:s,payload:o}),l=this._mutations[s];l&&(this._withCommit((function(){l.forEach((function(e){e(o)}))})),this._subscribers.slice().forEach((function(e){return e(i,r.state)})))},d.prototype.dispatch=function(e,t){var n=this,r=b(e,t),a=r.type,s=r.payload,o={type:a,payload:s},i=this._actions[a];if(i){try{this._actionSubscribers.slice().filter((function(e){return e.before})).forEach((function(e){return e.before(o,n.state)}))}catch(e){0}var l=i.length>1?Promise.all(i.map((function(e){return e(s)}))):i[0](s);return new Promise((function(e,t){l.then((function(t){try{n._actionSubscribers.filter((function(e){return e.after})).forEach((function(e){return e.after(o,n.state)}))}catch(e){0}e(t)}),(function(e){try{n._actionSubscribers.filter((function(e){return e.error})).forEach((function(t){return t.error(o,n.state,e)}))}catch(e){0}t(e)}))}))}},d.prototype.subscribe=function(e,t){return m(e,this._subscribers,t)},d.prototype.subscribeAction=function(e,t){return m("function"==typeof e?{before:e}:e,this._actionSubscribers,t)},d.prototype.watch=function(e,t,n){var r=this;return this._watcherVM.$watch((function(){return e(r.state,r.getters)}),t,n)},d.prototype.replaceState=function(e){var t=this;this._withCommit((function(){t._vm._data.$$state=e}))},d.prototype.registerModule=function(e,t,n){void 0===n&&(n={}),"string"==typeof e&&(e=[e]),this._modules.register(e,t),v(this,this.state,e,this._modules.get(e),n.preserveState),g(this,this.state)},d.prototype.unregisterModule=function(e){var t=this;"string"==typeof e&&(e=[e]),this._modules.unregister(e),this._withCommit((function(){var n=y(t.state,e.slice(0,-1));p.delete(n,e[e.length-1])})),h(this)},d.prototype.hasModule=function(e){return"string"==typeof e&&(e=[e]),this._modules.isRegistered(e)},d.prototype.hotUpdate=function(e){this._modules.update(e),h(this,!0)},d.prototype._withCommit=function(e){var t=this._committing;this._committing=!0,e(),this._committing=t},Object.defineProperties(d.prototype,f);var x=N((function(e,t){var n={};return S(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){var t=this.$store.state,n=this.$store.getters;if(e){var r=E(this.$store,"mapState",e);if(!r)return;t=r.context.state,n=r.context.getters}return"function"==typeof a?a.call(this,t,n):t[a]},n[r].vuex=!0})),n})),T=N((function(e,t){var n={};return S(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];var r=this.$store.commit;if(e){var s=E(this.$store,"mapMutations",e);if(!s)return;r=s.context.commit}return"function"==typeof a?a.apply(this,[r].concat(t)):r.apply(this.$store,[a].concat(t))}})),n})),_=N((function(e,t){var n={};return S(t).forEach((function(t){var r=t.key,a=t.val;a=e+a,n[r]=function(){if(!e||E(this.$store,"mapGetters",e))return this.$store.getters[a]},n[r].vuex=!0})),n})),C=N((function(e,t){var n={};return S(t).forEach((function(t){var r=t.key,a=t.val;n[r]=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];var r=this.$store.dispatch;if(e){var s=E(this.$store,"mapActions",e);if(!s)return;r=s.context.dispatch}return"function"==typeof a?a.apply(this,[r].concat(t)):r.apply(this.$store,[a].concat(t))}})),n}));function S(e){return function(e){return Array.isArray(e)||o(e)}(e)?Array.isArray(e)?e.map((function(e){return{key:e,val:e}})):Object.keys(e).map((function(t){return{key:t,val:e[t]}})):[]}function N(e){return function(t,n){return"string"!=typeof t?(n=t,t=""):"/"!==t.charAt(t.length-1)&&(t+="/"),e(t,n)}}function E(e,t,n){return e._modulesNamespaceMap[n]}function L(e,t,n){var r=n?e.groupCollapsed:e.group;try{r.call(e,t)}catch(n){e.log(t)}}function j(e){try{e.groupEnd()}catch(t){e.log("—— log end ——")}}function F(){var e=new Date;return" @ "+k(e.getHours(),2)+":"+k(e.getMinutes(),2)+":"+k(e.getSeconds(),2)+"."+k(e.getMilliseconds(),3)}function k(e,t){return n="0",r=t-e.toString().length,new Array(r+1).join(n)+e;var n,r}const O={Store:d,install:w,version:"3.6.2",mapState:x,mapMutations:T,mapGetters:_,mapActions:C,createNamespacedHelpers:function(e){return{mapState:x.bind(null,e),mapGetters:_.bind(null,e),mapMutations:T.bind(null,e),mapActions:C.bind(null,e)}},createLogger:function(e){void 0===e&&(e={});var t=e.collapsed;void 0===t&&(t=!0);var n=e.filter;void 0===n&&(n=function(e,t,n){return!0});var r=e.transformer;void 0===r&&(r=function(e){return e});var s=e.mutationTransformer;void 0===s&&(s=function(e){return e});var o=e.actionFilter;void 0===o&&(o=function(e,t){return!0});var i=e.actionTransformer;void 0===i&&(i=function(e){return e});var l=e.logMutations;void 0===l&&(l=!0);var u=e.logActions;void 0===u&&(u=!0);var c=e.logger;return void 0===c&&(c=console),function(e){var p=a(e.state);void 0!==c&&(l&&e.subscribe((function(e,o){var i=a(o);if(n(e,p,i)){var l=F(),u=s(e),d="mutation "+e.type+l;L(c,d,t),c.log("%c prev state","color: #9E9E9E; font-weight: bold",r(p)),c.log("%c mutation","color: #03A9F4; font-weight: bold",u),c.log("%c next state","color: #4CAF50; font-weight: bold",r(i)),j(c)}p=i})),u&&e.subscribeAction((function(e,n){if(o(e,n)){var r=F(),a=i(e),s="action "+e.type+r;L(c,s,t),c.log("%c action","color: #03A9F4; font-weight: bold",a),j(c)}})))}}}},19611:e=>{"use strict";e.exports='<svg xmlns="http://www.w3.org/2000/svg" id="mdi-file-plus" viewBox="0 0 24 24"><path d="M14 2H6C4.89 2 4 2.89 4 4V20C4 21.11 4.89 22 6 22H13.81C13.28 21.09 13 20.05 13 19C13 15.69 15.69 13 19 13C19.34 13 19.67 13.03 20 13.08V8L14 2M13 9V3.5L18.5 9H13M23 20H20V23H18V20H15V18H18V15H20V18H23V20Z" /></svg>'},57888:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(77907),a=n(92426);function s(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var o=s(r),i=s(a),l=function(){function e(e){"function"==typeof e.getVersion&&o.default(e.getVersion())?i.default(e.getVersion())!==i.default(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}return e.prototype.getVersion=function(){return"3.1.0"},e.prototype.subscribe=function(e,t){this.bus.subscribe(e,t)},e.prototype.unsubscribe=function(e,t){this.bus.unsubscribe(e,t)},e.prototype.emit=function(e,t){this.bus.emit(e,t)},e}(),u=function(){function e(){this.handlers=new Map}return e.prototype.getVersion=function(){return"3.1.0"},e.prototype.subscribe=function(e,t){this.handlers.set(e,(this.handlers.get(e)||[]).concat(t))},e.prototype.unsubscribe=function(e,t){this.handlers.set(e,(this.handlers.get(e)||[]).filter((function(e){return e!=t})))},e.prototype.emit=function(e,t){(this.handlers.get(e)||[]).forEach((function(e){try{e(t)}catch(e){console.error("could not invoke event listener",e)}}))},e}(),c=null;function p(){return null!==c?c:"undefined"==typeof window?new Proxy({},{get:function(){return function(){return console.error("Window not available, EventBus can not be established!")}}}):(void 0!==window.OC&&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),c=void 0!==(null===window||void 0===window?void 0:window._nc_event_bus)?new l(window._nc_event_bus):window._nc_event_bus=new u)}t.ProxyBus=l,t.SimpleBus=u,t.emit=function(e,t){p().emit(e,t)},t.subscribe=function(e,t){p().subscribe(e,t)},t.unsubscribe=function(e,t){p().unsubscribe(e,t)}},77958:(e,t,n)=>{"use strict";n.d(t,{IH:()=>o,_S:()=>i,ts:()=>c});var r=n(69183);let a;const s=[];function o(){if(void 0===a){const e=document?.getElementsByTagName("head")[0];a=e?e.getAttribute("data-requesttoken"):null}return a}function i(e){s.push(e)}(0,r.Ld)("csrf-token-update",(e=>{a=e.token,s.forEach((t=>{try{t(e.token)}catch(e){console.error("error updating CSRF token observer",e)}}))}));const l=(e,t)=>e?e.getAttribute(t):null;let u;function c(){if(void 0!==u)return u;const e=document?.getElementsByTagName("head")[0];if(!e)return null;const t=l(e,"data-user");return null===t?(u=null,u):(u={uid:t,displayName:l(e,"data-user-displayname"),isAdmin:!!window._oc_isadmin},u)}},47845:(e,t,n)=>{"use strict";n.d(t,{Z:()=>at});var r={};function a(e,t){return function(){return e.apply(t,arguments)}}n.r(r),n.d(r,{hasBrowserEnv:()=>ae,hasStandardBrowserEnv:()=>se,hasStandardBrowserWebWorkerEnv:()=>ie});const{toString:s}=Object.prototype,{getPrototypeOf:o}=Object,i=(l=Object.create(null),e=>{const t=s.call(e);return l[t]||(l[t]=t.slice(8,-1).toLowerCase())});var l;const u=e=>(e=e.toLowerCase(),t=>i(t)===e),c=e=>t=>typeof t===e,{isArray:p}=Array,d=c("undefined");const f=u("ArrayBuffer");const m=c("string"),h=c("function"),g=c("number"),v=e=>null!==e&&"object"==typeof e,y=e=>{if("object"!==i(e))return!1;const t=o(e);return!(null!==t&&t!==Object.prototype&&null!==Object.getPrototypeOf(t)||Symbol.toStringTag in e||Symbol.iterator in e)},b=u("Date"),w=u("File"),x=u("Blob"),T=u("FileList"),_=u("URLSearchParams");function C(e,t,{allOwnKeys:n=!1}={}){if(null==e)return;let r,a;if("object"!=typeof e&&(e=[e]),p(e))for(r=0,a=e.length;r<a;r++)t.call(null,e[r],r,e);else{const a=n?Object.getOwnPropertyNames(e):Object.keys(e),s=a.length;let o;for(r=0;r<s;r++)o=a[r],t.call(null,e[o],o,e)}}function S(e,t){t=t.toLowerCase();const n=Object.keys(e);let r,a=n.length;for(;a-- >0;)if(r=n[a],t===r.toLowerCase())return r;return null}const N="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:global,E=e=>!d(e)&&e!==N;const L=(j="undefined"!=typeof Uint8Array&&o(Uint8Array),e=>j&&e instanceof j);var j;const F=u("HTMLFormElement"),k=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),O=u("RegExp"),A=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};C(n,((n,a)=>{let s;!1!==(s=t(n,a,e))&&(r[a]=s||n)})),Object.defineProperties(e,r)},P="abcdefghijklmnopqrstuvwxyz",U="0123456789",R={DIGIT:U,ALPHA:P,ALPHA_DIGIT:P+P.toUpperCase()+U};const I=u("AsyncFunction"),M={isArray:p,isArrayBuffer:f,isBuffer:function(e){return null!==e&&!d(e)&&null!==e.constructor&&!d(e.constructor)&&h(e.constructor.isBuffer)&&e.constructor.isBuffer(e)},isFormData:e=>{let t;return e&&("function"==typeof FormData&&e instanceof FormData||h(e.append)&&("formdata"===(t=i(e))||"object"===t&&h(e.toString)&&"[object FormData]"===e.toString()))},isArrayBufferView:function(e){let t;return t="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&f(e.buffer),t},isString:m,isNumber:g,isBoolean:e=>!0===e||!1===e,isObject:v,isPlainObject:y,isUndefined:d,isDate:b,isFile:w,isBlob:x,isRegExp:O,isFunction:h,isStream:e=>v(e)&&h(e.pipe),isURLSearchParams:_,isTypedArray:L,isFileList:T,forEach:C,merge:function e(){const{caseless:t}=E(this)&&this||{},n={},r=(r,a)=>{const s=t&&S(n,a)||a;y(n[s])&&y(r)?n[s]=e(n[s],r):y(r)?n[s]=e({},r):p(r)?n[s]=r.slice():n[s]=r};for(let e=0,t=arguments.length;e<t;e++)arguments[e]&&C(arguments[e],r);return n},extend:(e,t,n,{allOwnKeys:r}={})=>(C(t,((t,r)=>{n&&h(t)?e[r]=a(t,n):e[r]=t}),{allOwnKeys:r}),e),trim:e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,""),stripBOM:e=>(65279===e.charCodeAt(0)&&(e=e.slice(1)),e),inherits:(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},toFlatObject:(e,t,n,r)=>{let a,s,i;const l={};if(t=t||{},null==e)return t;do{for(a=Object.getOwnPropertyNames(e),s=a.length;s-- >0;)i=a[s],r&&!r(i,e,t)||l[i]||(t[i]=e[i],l[i]=!0);e=!1!==n&&o(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},kindOf:i,kindOfTest:u,endsWith:(e,t,n)=>{e=String(e),(void 0===n||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return-1!==r&&r===n},toArray:e=>{if(!e)return null;if(p(e))return e;let t=e.length;if(!g(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},forEachEntry:(e,t)=>{const n=(e&&e[Symbol.iterator]).call(e);let r;for(;(r=n.next())&&!r.done;){const n=r.value;t.call(e,n[0],n[1])}},matchAll:(e,t)=>{let n;const r=[];for(;null!==(n=e.exec(t));)r.push(n);return r},isHTMLForm:F,hasOwnProperty:k,hasOwnProp:k,reduceDescriptors:A,freezeMethods:e=>{A(e,((t,n)=>{if(h(e)&&-1!==["arguments","caller","callee"].indexOf(n))return!1;const r=e[n];h(r)&&(t.enumerable=!1,"writable"in t?t.writable=!1:t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")}))}))},toObjectSet:(e,t)=>{const n={},r=e=>{e.forEach((e=>{n[e]=!0}))};return p(e)?r(e):r(String(e).split(t)),n},toCamelCase:e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,(function(e,t,n){return t.toUpperCase()+n})),noop:()=>{},toFiniteNumber:(e,t)=>(e=+e,Number.isFinite(e)?e:t),findKey:S,global:N,isContextDefined:E,ALPHABET:R,generateString:(e=16,t=R.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n},isSpecCompliantForm:function(e){return!!(e&&h(e.append)&&"FormData"===e[Symbol.toStringTag]&&e[Symbol.iterator])},toJSONObject:e=>{const t=new Array(10),n=(e,r)=>{if(v(e)){if(t.indexOf(e)>=0)return;if(!("toJSON"in e)){t[r]=e;const a=p(e)?[]:{};return C(e,((e,t)=>{const s=n(e,r+1);!d(s)&&(a[t]=s)})),t[r]=void 0,a}}return e};return n(e,0)},isAsyncFn:I,isThenable:e=>e&&(v(e)||h(e))&&h(e.then)&&h(e.catch)};function B(e,t,n,r,a){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),a&&(this.response=a)}M.inherits(B,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:M.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const D=B.prototype,$={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach((e=>{$[e]={value:e}})),Object.defineProperties(B,$),Object.defineProperty(D,"isAxiosError",{value:!0}),B.from=(e,t,n,r,a,s)=>{const o=Object.create(D);return M.toFlatObject(e,o,(function(e){return e!==Error.prototype}),(e=>"isAxiosError"!==e)),B.call(o,e.message,t,n,r,a),o.cause=e,o.name=e.name,s&&Object.assign(o,s),o};const z=B;var H=n(48764).lW;function V(e){return M.isPlainObject(e)||M.isArray(e)}function G(e){return M.endsWith(e,"[]")?e.slice(0,-2):e}function q(e,t,n){return e?e.concat(t).map((function(e,t){return e=G(e),!n&&t?"["+e+"]":e})).join(n?".":""):t}const J=M.toFlatObject(M,{},null,(function(e){return/^is[A-Z]/.test(e)}));const W=function(e,t,n){if(!M.isObject(e))throw new TypeError("target must be an object");t=t||new FormData;const r=(n=M.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,(function(e,t){return!M.isUndefined(t[e])}))).metaTokens,a=n.visitor||u,s=n.dots,o=n.indexes,i=(n.Blob||"undefined"!=typeof Blob&&Blob)&&M.isSpecCompliantForm(t);if(!M.isFunction(a))throw new TypeError("visitor must be a function");function l(e){if(null===e)return"";if(M.isDate(e))return e.toISOString();if(!i&&M.isBlob(e))throw new z("Blob is not supported. Use a Buffer instead.");return M.isArrayBuffer(e)||M.isTypedArray(e)?i&&"function"==typeof Blob?new Blob([e]):H.from(e):e}function u(e,n,a){let i=e;if(e&&!a&&"object"==typeof e)if(M.endsWith(n,"{}"))n=r?n:n.slice(0,-2),e=JSON.stringify(e);else if(M.isArray(e)&&function(e){return M.isArray(e)&&!e.some(V)}(e)||(M.isFileList(e)||M.endsWith(n,"[]"))&&(i=M.toArray(e)))return n=G(n),i.forEach((function(e,r){!M.isUndefined(e)&&null!==e&&t.append(!0===o?q([n],r,s):null===o?n:n+"[]",l(e))})),!1;return!!V(e)||(t.append(q(a,n,s),l(e)),!1)}const c=[],p=Object.assign(J,{defaultVisitor:u,convertValue:l,isVisitable:V});if(!M.isObject(e))throw new TypeError("data must be an object");return function e(n,r){if(!M.isUndefined(n)){if(-1!==c.indexOf(n))throw Error("Circular reference detected in "+r.join("."));c.push(n),M.forEach(n,(function(n,s){!0===(!(M.isUndefined(n)||null===n)&&a.call(t,n,M.isString(s)?s.trim():s,r,p))&&e(n,r?r.concat(s):[s])})),c.pop()}}(e),t};function K(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,(function(e){return t[e]}))}function X(e,t){this._pairs=[],e&&W(e,this,t)}const Y=X.prototype;Y.append=function(e,t){this._pairs.push([e,t])},Y.toString=function(e){const t=e?function(t){return e.call(this,t,K)}:K;return this._pairs.map((function(e){return t(e[0])+"="+t(e[1])}),"").join("&")};const Z=X;function Q(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function ee(e,t,n){if(!t)return e;const r=n&&n.encode||Q,a=n&&n.serialize;let s;if(s=a?a(t,n):M.isURLSearchParams(t)?t.toString():new Z(t,n).toString(r),s){const t=e.indexOf("#");-1!==t&&(e=e.slice(0,t)),e+=(-1===e.indexOf("?")?"?":"&")+s}return e}const te=class{constructor(){this.handlers=[]}use(e,t,n){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!n&&n.synchronous,runWhen:n?n.runWhen:null}),this.handlers.length-1}eject(e){this.handlers[e]&&(this.handlers[e]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(e){M.forEach(this.handlers,(function(t){null!==t&&e(t)}))}},ne={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},re={isBrowser:!0,classes:{URLSearchParams:"undefined"!=typeof URLSearchParams?URLSearchParams:Z,FormData:"undefined"!=typeof FormData?FormData:null,Blob:"undefined"!=typeof Blob?Blob:null},protocols:["http","https","file","blob","url","data"]},ae="undefined"!=typeof window&&"undefined"!=typeof document,se=(oe="undefined"!=typeof navigator&&navigator.product,ae&&["ReactNative","NativeScript","NS"].indexOf(oe)<0);var oe;const ie="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&"function"==typeof self.importScripts,le={...r,...re};const ue=function(e){function t(e,n,r,a){let s=e[a++];const o=Number.isFinite(+s),i=a>=e.length;if(s=!s&&M.isArray(r)?r.length:s,i)return M.hasOwnProp(r,s)?r[s]=[r[s],n]:r[s]=n,!o;r[s]&&M.isObject(r[s])||(r[s]=[]);return t(e,n,r[s],a)&&M.isArray(r[s])&&(r[s]=function(e){const t={},n=Object.keys(e);let r;const a=n.length;let s;for(r=0;r<a;r++)s=n[r],t[s]=e[s];return t}(r[s])),!o}if(M.isFormData(e)&&M.isFunction(e.entries)){const n={};return M.forEachEntry(e,((e,r)=>{t(function(e){return M.matchAll(/\w+|\[(\w*)]/g,e).map((e=>"[]"===e[0]?"":e[1]||e[0]))}(e),r,n,0)})),n}return null};const ce={transitional:ne,adapter:["xhr","http"],transformRequest:[function(e,t){const n=t.getContentType()||"",r=n.indexOf("application/json")>-1,a=M.isObject(e);a&&M.isHTMLForm(e)&&(e=new FormData(e));if(M.isFormData(e))return r&&r?JSON.stringify(ue(e)):e;if(M.isArrayBuffer(e)||M.isBuffer(e)||M.isStream(e)||M.isFile(e)||M.isBlob(e))return e;if(M.isArrayBufferView(e))return e.buffer;if(M.isURLSearchParams(e))return t.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),e.toString();let s;if(a){if(n.indexOf("application/x-www-form-urlencoded")>-1)return function(e,t){return W(e,new le.classes.URLSearchParams,Object.assign({visitor:function(e,t,n,r){return le.isNode&&M.isBuffer(e)?(this.append(t,e.toString("base64")),!1):r.defaultVisitor.apply(this,arguments)}},t))}(e,this.formSerializer).toString();if((s=M.isFileList(e))||n.indexOf("multipart/form-data")>-1){const t=this.env&&this.env.FormData;return W(s?{"files[]":e}:e,t&&new t,this.formSerializer)}}return a||r?(t.setContentType("application/json",!1),function(e,t,n){if(M.isString(e))try{return(t||JSON.parse)(e),M.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(n||JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){const t=this.transitional||ce.transitional,n=t&&t.forcedJSONParsing,r="json"===this.responseType;if(e&&M.isString(e)&&(n&&!this.responseType||r)){const n=!(t&&t.silentJSONParsing)&&r;try{return JSON.parse(e)}catch(e){if(n){if("SyntaxError"===e.name)throw z.from(e,z.ERR_BAD_RESPONSE,this,null,this.response);throw e}}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:le.classes.FormData,Blob:le.classes.Blob},validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};M.forEach(["delete","get","head","post","put","patch"],(e=>{ce.headers[e]={}}));const pe=ce,de=M.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),fe=Symbol("internals");function me(e){return e&&String(e).trim().toLowerCase()}function he(e){return!1===e||null==e?e:M.isArray(e)?e.map(he):String(e)}function ge(e,t,n,r,a){return M.isFunction(r)?r.call(this,t,n):(a&&(t=n),M.isString(t)?M.isString(r)?-1!==t.indexOf(r):M.isRegExp(r)?r.test(t):void 0:void 0)}class ve{constructor(e){e&&this.set(e)}set(e,t,n){const r=this;function a(e,t,n){const a=me(t);if(!a)throw new Error("header name must be a non-empty string");const s=M.findKey(r,a);(!s||void 0===r[s]||!0===n||void 0===n&&!1!==r[s])&&(r[s||t]=he(e))}const s=(e,t)=>M.forEach(e,((e,n)=>a(e,n,t)));return M.isPlainObject(e)||e instanceof this.constructor?s(e,t):M.isString(e)&&(e=e.trim())&&!/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim())?s((e=>{const t={};let n,r,a;return e&&e.split("\n").forEach((function(e){a=e.indexOf(":"),n=e.substring(0,a).trim().toLowerCase(),r=e.substring(a+1).trim(),!n||t[n]&&de[n]||("set-cookie"===n?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)})),t})(e),t):null!=e&&a(t,e,n),this}get(e,t){if(e=me(e)){const n=M.findKey(this,e);if(n){const e=this[n];if(!t)return e;if(!0===t)return function(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}(e);if(M.isFunction(t))return t.call(this,e,n);if(M.isRegExp(t))return t.exec(e);throw new TypeError("parser must be boolean|regexp|function")}}}has(e,t){if(e=me(e)){const n=M.findKey(this,e);return!(!n||void 0===this[n]||t&&!ge(0,this[n],n,t))}return!1}delete(e,t){const n=this;let r=!1;function a(e){if(e=me(e)){const a=M.findKey(n,e);!a||t&&!ge(0,n[a],a,t)||(delete n[a],r=!0)}}return M.isArray(e)?e.forEach(a):a(e),r}clear(e){const t=Object.keys(this);let n=t.length,r=!1;for(;n--;){const a=t[n];e&&!ge(0,this[a],a,e,!0)||(delete this[a],r=!0)}return r}normalize(e){const t=this,n={};return M.forEach(this,((r,a)=>{const s=M.findKey(n,a);if(s)return t[s]=he(r),void delete t[a];const o=e?function(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,((e,t,n)=>t.toUpperCase()+n))}(a):String(a).trim();o!==a&&delete t[a],t[o]=he(r),n[o]=!0})),this}concat(...e){return this.constructor.concat(this,...e)}toJSON(e){const t=Object.create(null);return M.forEach(this,((n,r)=>{null!=n&&!1!==n&&(t[r]=e&&M.isArray(n)?n.join(", "):n)})),t}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map((([e,t])=>e+": "+t)).join("\n")}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(e){return e instanceof this?e:new this(e)}static concat(e,...t){const n=new this(e);return t.forEach((e=>n.set(e))),n}static accessor(e){const t=(this[fe]=this[fe]={accessors:{}}).accessors,n=this.prototype;function r(e){const r=me(e);t[r]||(!function(e,t){const n=M.toCamelCase(" "+t);["get","set","has"].forEach((r=>{Object.defineProperty(e,r+n,{value:function(e,n,a){return this[r].call(this,t,e,n,a)},configurable:!0})}))}(n,e),t[r]=!0)}return M.isArray(e)?e.forEach(r):r(e),this}}ve.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]),M.reduceDescriptors(ve.prototype,(({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(e){this[n]=e}}})),M.freezeMethods(ve);const ye=ve;function be(e,t){const n=this||pe,r=t||n,a=ye.from(r.headers);let s=r.data;return M.forEach(e,(function(e){s=e.call(n,s,a.normalize(),t?t.status:void 0)})),a.normalize(),s}function we(e){return!(!e||!e.__CANCEL__)}function xe(e,t,n){z.call(this,null==e?"canceled":e,z.ERR_CANCELED,t,n),this.name="CanceledError"}M.inherits(xe,z,{__CANCEL__:!0});const Te=xe;const _e=le.hasStandardBrowserEnv?{write:function(e,t,n,r,a,s){const o=[];o.push(e+"="+encodeURIComponent(t)),M.isNumber(n)&&o.push("expires="+new Date(n).toGMTString()),M.isString(r)&&o.push("path="+r),M.isString(a)&&o.push("domain="+a),!0===s&&o.push("secure"),document.cookie=o.join("; ")},read:function(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}};function Ce(e,t){return e&&!/^([a-z][a-z\d+\-.]*:)?\/\//i.test(t)?function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}(e,t):t}const Se=le.hasStandardBrowserEnv?function(){const e=/(msie|trident)/i.test(navigator.userAgent),t=document.createElement("a");let n;function r(n){let r=n;return e&&(t.setAttribute("href",r),r=t.href),t.setAttribute("href",r),{href:t.href,protocol:t.protocol?t.protocol.replace(/:$/,""):"",host:t.host,search:t.search?t.search.replace(/^\?/,""):"",hash:t.hash?t.hash.replace(/^#/,""):"",hostname:t.hostname,port:t.port,pathname:"/"===t.pathname.charAt(0)?t.pathname:"/"+t.pathname}}return n=r(window.location.href),function(e){const t=M.isString(e)?r(e):e;return t.protocol===n.protocol&&t.host===n.host}}():function(){return!0};const Ne=function(e,t){e=e||10;const n=new Array(e),r=new Array(e);let a,s=0,o=0;return t=void 0!==t?t:1e3,function(i){const l=Date.now(),u=r[o];a||(a=l),n[s]=i,r[s]=l;let c=o,p=0;for(;c!==s;)p+=n[c++],c%=e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),l-a<t)return;const d=u&&l-u;return d?Math.round(1e3*p/d):void 0}};function Ee(e,t){let n=0;const r=Ne(50,250);return a=>{const s=a.loaded,o=a.lengthComputable?a.total:void 0,i=s-n,l=r(i);n=s;const u={loaded:s,total:o,progress:o?s/o:void 0,bytes:i,rate:l||void 0,estimated:l&&o&&s<=o?(o-s)/l:void 0,event:a};u[t?"download":"upload"]=!0,e(u)}}const Le={http:null,xhr:"undefined"!=typeof XMLHttpRequest&&function(e){return new Promise((function(t,n){let r=e.data;const a=ye.from(e.headers).normalize(),s=e.responseType;let o,i;function l(){e.cancelToken&&e.cancelToken.unsubscribe(o),e.signal&&e.signal.removeEventListener("abort",o)}if(M.isFormData(r))if(le.hasStandardBrowserEnv||le.hasStandardBrowserWebWorkerEnv)a.setContentType(!1);else if(!1!==(i=a.getContentType())){const[e,...t]=i?i.split(";").map((e=>e.trim())).filter(Boolean):[];a.setContentType([e||"multipart/form-data",...t].join("; "))}let u=new XMLHttpRequest;if(e.auth){const t=e.auth.username||"",n=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";a.set("Authorization","Basic "+btoa(t+":"+n))}const c=Ce(e.baseURL,e.url);function p(){if(!u)return;const r=ye.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders());!function(e,t,n){const r=n.config.validateStatus;n.status&&r&&!r(n.status)?t(new z("Request failed with status code "+n.status,[z.ERR_BAD_REQUEST,z.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n)):e(n)}((function(e){t(e),l()}),(function(e){n(e),l()}),{data:s&&"text"!==s&&"json"!==s?u.response:u.responseText,status:u.status,statusText:u.statusText,headers:r,config:e,request:u}),u=null}if(u.open(e.method.toUpperCase(),ee(c,e.params,e.paramsSerializer),!0),u.timeout=e.timeout,"onloadend"in u?u.onloadend=p:u.onreadystatechange=function(){u&&4===u.readyState&&(0!==u.status||u.responseURL&&0===u.responseURL.indexOf("file:"))&&setTimeout(p)},u.onabort=function(){u&&(n(new z("Request aborted",z.ECONNABORTED,e,u)),u=null)},u.onerror=function(){n(new z("Network Error",z.ERR_NETWORK,e,u)),u=null},u.ontimeout=function(){let t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const r=e.transitional||ne;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),n(new z(t,r.clarifyTimeoutError?z.ETIMEDOUT:z.ECONNABORTED,e,u)),u=null},le.hasStandardBrowserEnv){const t=Se(c)&&e.xsrfCookieName&&_e.read(e.xsrfCookieName);t&&a.set(e.xsrfHeaderName,t)}void 0===r&&a.setContentType(null),"setRequestHeader"in u&&M.forEach(a.toJSON(),(function(e,t){u.setRequestHeader(t,e)})),M.isUndefined(e.withCredentials)||(u.withCredentials=!!e.withCredentials),s&&"json"!==s&&(u.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&u.addEventListener("progress",Ee(e.onDownloadProgress,!0)),"function"==typeof e.onUploadProgress&&u.upload&&u.upload.addEventListener("progress",Ee(e.onUploadProgress)),(e.cancelToken||e.signal)&&(o=t=>{u&&(n(!t||t.type?new Te(null,e,u):t),u.abort(),u=null)},e.cancelToken&&e.cancelToken.subscribe(o),e.signal&&(e.signal.aborted?o():e.signal.addEventListener("abort",o)));const d=function(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}(c);d&&-1===le.protocols.indexOf(d)?n(new z("Unsupported protocol "+d+":",z.ERR_BAD_REQUEST,e)):u.send(r||null)}))}};M.forEach(Le,((e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch(e){}Object.defineProperty(e,"adapterName",{value:t})}}));const je=e=>`- ${e}`,Fe=e=>M.isFunction(e)||null===e||!1===e,ke=e=>{e=M.isArray(e)?e:[e];const{length:t}=e;let n,r;const a={};for(let s=0;s<t;s++){let t;if(n=e[s],r=n,!Fe(n)&&(r=Le[(t=String(n)).toLowerCase()],void 0===r))throw new z(`Unknown adapter '${t}'`);if(r)break;a[t||"#"+s]=r}if(!r){const e=Object.entries(a).map((([e,t])=>`adapter ${e} `+(!1===t?"is not supported by the environment":"is not available in the build")));let n=t?e.length>1?"since :\n"+e.map(je).join("\n"):" "+je(e[0]):"as no adapter specified";throw new z("There is no suitable adapter to dispatch the request "+n,"ERR_NOT_SUPPORT")}return r};function Oe(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new Te(null,e)}function Ae(e){Oe(e),e.headers=ye.from(e.headers),e.data=be.call(e,e.transformRequest),-1!==["post","put","patch"].indexOf(e.method)&&e.headers.setContentType("application/x-www-form-urlencoded",!1);return ke(e.adapter||pe.adapter)(e).then((function(t){return Oe(e),t.data=be.call(e,e.transformResponse,t),t.headers=ye.from(t.headers),t}),(function(t){return we(t)||(Oe(e),t&&t.response&&(t.response.data=be.call(e,e.transformResponse,t.response),t.response.headers=ye.from(t.response.headers))),Promise.reject(t)}))}const Pe=e=>e instanceof ye?e.toJSON():e;function Ue(e,t){t=t||{};const n={};function r(e,t,n){return M.isPlainObject(e)&&M.isPlainObject(t)?M.merge.call({caseless:n},e,t):M.isPlainObject(t)?M.merge({},t):M.isArray(t)?t.slice():t}function a(e,t,n){return M.isUndefined(t)?M.isUndefined(e)?void 0:r(void 0,e,n):r(e,t,n)}function s(e,t){if(!M.isUndefined(t))return r(void 0,t)}function o(e,t){return M.isUndefined(t)?M.isUndefined(e)?void 0:r(void 0,e):r(void 0,t)}function i(n,a,s){return s in t?r(n,a):s in e?r(void 0,n):void 0}const l={url:s,method:s,data:s,baseURL:o,transformRequest:o,transformResponse:o,paramsSerializer:o,timeout:o,timeoutMessage:o,withCredentials:o,adapter:o,responseType:o,xsrfCookieName:o,xsrfHeaderName:o,onUploadProgress:o,onDownloadProgress:o,decompress:o,maxContentLength:o,maxBodyLength:o,beforeRedirect:o,transport:o,httpAgent:o,httpsAgent:o,cancelToken:o,socketPath:o,responseEncoding:o,validateStatus:i,headers:(e,t)=>a(Pe(e),Pe(t),!0)};return M.forEach(Object.keys(Object.assign({},e,t)),(function(r){const s=l[r]||a,o=s(e[r],t[r],r);M.isUndefined(o)&&s!==i||(n[r]=o)})),n}const Re="1.6.1",Ie={};["object","boolean","number","function","string","symbol"].forEach(((e,t)=>{Ie[e]=function(n){return typeof n===e||"a"+(t<1?"n ":" ")+e}}));const Me={};Ie.transitional=function(e,t,n){function r(e,t){return"[Axios v1.6.1] Transitional option '"+e+"'"+t+(n?". "+n:"")}return(n,a,s)=>{if(!1===e)throw new z(r(a," has been removed"+(t?" in "+t:"")),z.ERR_DEPRECATED);return t&&!Me[a]&&(Me[a]=!0,console.warn(r(a," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(n,a,s)}};const Be={assertOptions:function(e,t,n){if("object"!=typeof e)throw new z("options must be an object",z.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let a=r.length;for(;a-- >0;){const s=r[a],o=t[s];if(o){const t=e[s],n=void 0===t||o(t,s,e);if(!0!==n)throw new z("option "+s+" must be "+n,z.ERR_BAD_OPTION_VALUE)}else if(!0!==n)throw new z("Unknown option "+s,z.ERR_BAD_OPTION)}},validators:Ie},De=Be.validators;class $e{constructor(e){this.defaults=e,this.interceptors={request:new te,response:new te}}request(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{},t=Ue(this.defaults,t);const{transitional:n,paramsSerializer:r,headers:a}=t;void 0!==n&&Be.assertOptions(n,{silentJSONParsing:De.transitional(De.boolean),forcedJSONParsing:De.transitional(De.boolean),clarifyTimeoutError:De.transitional(De.boolean)},!1),null!=r&&(M.isFunction(r)?t.paramsSerializer={serialize:r}:Be.assertOptions(r,{encode:De.function,serialize:De.function},!0)),t.method=(t.method||this.defaults.method||"get").toLowerCase();let s=a&&M.merge(a.common,a[t.method]);a&&M.forEach(["delete","get","head","post","put","patch","common"],(e=>{delete a[e]})),t.headers=ye.concat(s,a);const o=[];let i=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(i=i&&e.synchronous,o.unshift(e.fulfilled,e.rejected))}));const l=[];let u;this.interceptors.response.forEach((function(e){l.push(e.fulfilled,e.rejected)}));let c,p=0;if(!i){const e=[Ae.bind(this),void 0];for(e.unshift.apply(e,o),e.push.apply(e,l),c=e.length,u=Promise.resolve(t);p<c;)u=u.then(e[p++],e[p++]);return u}c=o.length;let d=t;for(p=0;p<c;){const e=o[p++],t=o[p++];try{d=e(d)}catch(e){t.call(this,e);break}}try{u=Ae.call(this,d)}catch(e){return Promise.reject(e)}for(p=0,c=l.length;p<c;)u=u.then(l[p++],l[p++]);return u}getUri(e){return ee(Ce((e=Ue(this.defaults,e)).baseURL,e.url),e.params,e.paramsSerializer)}}M.forEach(["delete","get","head","options"],(function(e){$e.prototype[e]=function(t,n){return this.request(Ue(n||{},{method:e,url:t,data:(n||{}).data}))}})),M.forEach(["post","put","patch"],(function(e){function t(t){return function(n,r,a){return this.request(Ue(a||{},{method:e,headers:t?{"Content-Type":"multipart/form-data"}:{},url:n,data:r}))}}$e.prototype[e]=t(),$e.prototype[e+"Form"]=t(!0)}));const ze=$e;class He{constructor(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");let t;this.promise=new Promise((function(e){t=e}));const n=this;this.promise.then((e=>{if(!n._listeners)return;let t=n._listeners.length;for(;t-- >0;)n._listeners[t](e);n._listeners=null})),this.promise.then=e=>{let t;const r=new Promise((e=>{n.subscribe(e),t=e})).then(e);return r.cancel=function(){n.unsubscribe(t)},r},e((function(e,r,a){n.reason||(n.reason=new Te(e,r,a),t(n.reason))}))}throwIfRequested(){if(this.reason)throw this.reason}subscribe(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]}unsubscribe(e){if(!this._listeners)return;const t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}static source(){let e;return{token:new He((function(t){e=t})),cancel:e}}}const Ve=He;const Ge={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Ge).forEach((([e,t])=>{Ge[t]=e}));const qe=Ge;const Je=function e(t){const n=new ze(t),r=a(ze.prototype.request,n);return M.extend(r,ze.prototype,n,{allOwnKeys:!0}),M.extend(r,n,null,{allOwnKeys:!0}),r.create=function(n){return e(Ue(t,n))},r}(pe);Je.Axios=ze,Je.CanceledError=Te,Je.CancelToken=Ve,Je.isCancel=we,Je.VERSION=Re,Je.toFormData=W,Je.AxiosError=z,Je.Cancel=Je.CanceledError,Je.all=function(e){return Promise.all(e)},Je.spread=function(e){return function(t){return e.apply(null,t)}},Je.isAxiosError=function(e){return M.isObject(e)&&!0===e.isAxiosError},Je.mergeConfig=Ue,Je.AxiosHeaders=ye,Je.formToJSON=e=>ue(M.isHTMLForm(e)?new FormData(e):e),Je.getAdapter=ke,Je.HttpStatusCode=qe,Je.default=Je;const We=Je;var Ke=n(77958),Xe=n(79753),Ye=function(){return Ye=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var a in t=arguments[n])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},Ye.apply(this,arguments)};function Ze(e,t,n,r){return new(n||(n=Promise))((function(a,s){function o(e){try{l(r.next(e))}catch(e){s(e)}}function i(e){try{l(r.throw(e))}catch(e){s(e)}}function l(e){var t;e.done?a(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(o,i)}l((r=r.apply(e,t||[])).next())}))}function Qe(e,t){var n,r,a,s,o={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return s={next:i(0),throw:i(1),return:i(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function i(i){return function(l){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;s&&(s=0,i[0]&&(o=0)),o;)try{if(n=1,r&&(a=2&i[0]?r.return:i[0]?r.throw||((a=r.return)&&a.call(r),0):r.next)&&!(a=a.call(r,i[1])).done)return a;switch(r=0,a&&(i=[2&i[0],a.value]),i[0]){case 0:case 1:a=i;break;case 4:return o.label++,{value:i[1],done:!1};case 5:o.label++,r=i[1],i=[0];continue;case 7:i=o.ops.pop(),o.trys.pop();continue;default:if(!(a=o.trys,(a=a.length>0&&a[a.length-1])||6!==i[0]&&2!==i[0])){o=0;continue}if(3===i[0]&&(!a||i[1]>a[0]&&i[1]<a[3])){o.label=i[1];break}if(6===i[0]&&o.label<a[1]){o.label=a[1],a=i;break}if(a&&o.label<a[2]){o.label=a[2],o.ops.push(i);break}a[2]&&o.ops.pop(),o.trys.pop();continue}i=t.call(e,o)}catch(e){i=[6,e],r=0}finally{n=a=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,l])}}}"function"==typeof SuppressedError&&SuppressedError;var et,tt=Symbol("csrf-retry"),nt=Symbol("retryDelay"),rt=We.create({headers:{requesttoken:null!==(et=(0,Ke.IH)())&&void 0!==et?et:""}}),at=Object.assign(rt,{CancelToken:We.CancelToken,isCancel:We.isCancel});at.interceptors.response.use((function(e){return e}),function(e){return function(t){return Ze(void 0,void 0,void 0,(function(){var n,r,a,s,o,i,l;return Qe(this,(function(u){switch(u.label){case 0:return n=t.config,r=t.response,a=t.request,s=null==a?void 0:a.responseURL,412!==(null==r?void 0:r.status)||"CSRF check failed"!==(null===(l=null==r?void 0:r.data)||void 0===l?void 0:l.message)||void 0!==n[tt]?[3,2]:(console.warn("Request to ".concat(s," failed because of a CSRF mismatch. Fetching a new token")),[4,e.get((0,Xe.nu)("/csrftoken"))]);case 1:return o=u.sent().data.token,console.debug("New request token ".concat(o," fetched")),e.defaults.headers.requesttoken=o,[2,e(Ye(Ye({},n),(i={headers:Ye(Ye({},n.headers),{requesttoken:o})},i[tt]=!0,i)))];case 2:return[2,Promise.reject(t)]}}))}))}}(at)),at.interceptors.response.use((function(e){return e}),function(e){return function(t){return Ze(void 0,void 0,void 0,(function(){var n,r,a,s,o,i,l,u,c;return Qe(this,(function(p){switch(p.label){case 0:return n=t.config,r=t.response,a=t.request,s=null==a?void 0:a.responseURL,o=null==r?void 0:r.status,i=null==r?void 0:r.headers,503===o&&"1"===i["x-nextcloud-maintenance-mode"]&&n.retryIfMaintenanceMode&&(!n[nt]||n[nt]<=32)?(l=2*(null!==(c=n[nt])&&void 0!==c?c:1),console.warn("Request to ".concat(s," failed because of maintenance mode. Retrying in ").concat(l,"s")),[4,new Promise((function(e){setTimeout(e,1e3*l)}))]):[3,2];case 1:return p.sent(),[2,e(Ye(Ye({},n),(u={},u[nt]=l,u)))];case 2:return[2,Promise.reject(t)]}}))}))}}(at)),at.interceptors.response.use((function(e){return e}),(function(e){return Ze(void 0,void 0,void 0,(function(){var t,n,r,a,s;return Qe(this,(function(o){return t=e.config,n=e.response,r=e.request,a=null==r?void 0:r.responseURL,401===(null==n?void 0:n.status)&&"Current user is not logged in"===(null===(s=null==n?void 0:n.data)||void 0===s?void 0:s.message)&&t.reloadExpiredSession&&(null===window||void 0===window?void 0:window.location)&&(console.error("Request to ".concat(a," failed because the user session expired. Reloading the page …")),window.location.reload()),[2,Promise.reject(e)]}))}))})),(0,Ke._S)((function(e){rt.defaults.headers.requesttoken=e}))},76474:(e,t,n)=>{"use strict";n.d(t,{h:()=>d,k:()=>p,n:()=>o,t:()=>i});var r=n(48588);const a=(0,n(48264).H)().detectLocale();[{locale:"af",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)","Content-Type":"text/plain; charset=UTF-8",Language:"af","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Afrikaans (https://app.transifex.com/nextcloud/teams/64236/af/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: af\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"ar",json:{charset:"utf-8",headers:{"Last-Translator":"Ali <alimahwer@yahoo.com>, 2023","Language-Team":"Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)","Content-Type":"text/plain; charset=UTF-8",Language:"ar","Plural-Forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAli <alimahwer@yahoo.com>, 2023\n"},msgstr:["Last-Translator: Ali <alimahwer@yahoo.com>, 2023\nLanguage-Team: Arabic (https://app.transifex.com/nextcloud/teams/64236/ar/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ar\nPlural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" لا يصلح كاسم مجلد.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" غير مسموح به كاسم مجلد']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" غير مسموح به داخل اسم مجلد.']},"All files":{msgid:"All files",msgstr:["كل الملفات"]},Choose:{msgid:"Choose",msgstr:["إختَر"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["إختَر {file}"]},Copy:{msgid:"Copy",msgstr:["نسخ"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["نسخٌ إلى {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["تعذّر إنشاء المجلد الجديد"]},"Create directory":{msgid:"Create directory",msgstr:["أنشِيءْ مجلّداً"]},"Current view selector":{msgid:"Current view selector",msgstr:["مُنتقِي المنظور الحالي"]},Favorites:{msgid:"Favorites",msgstr:["المُفضَّلة"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["الملفات و المجلدات التي تُميِّزُها كمٌفضَّلة ستظهر هنا."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["الملفات و المجلدات التي قمت مؤخراً بتعديلها سوف تظهر هنا."]},"Filter file list":{msgid:"Filter file list",msgstr:["فلترة قائمة الملفات"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["اسم المجلد لا يمكن أن يكون فارغاً."]},Home:{msgid:"Home",msgstr:["البداية"]},Modified:{msgid:"Modified",msgstr:["مُعدَّل"]},Move:{msgid:"Move",msgstr:["أُنقُل"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["أُنقُل إلى {target}"]},Name:{msgid:"Name",msgstr:["الاسم"]},New:{msgid:"New",msgstr:["جديد"]},"New folder":{msgid:"New folder",msgstr:["مٌجلّد جديد"]},"New folder name":{msgid:"New folder name",msgstr:["اسم المجلد الجديد"]},"No files in here":{msgid:"No files in here",msgstr:["لا توجد ملفات هنا"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["لا توجد ملفات تتطابق مع الفلتر الذي وضعته"]},"No matching files":{msgid:"No matching files",msgstr:["لا توجد ملفات مُطابِقة"]},Recent:{msgid:"Recent",msgstr:["الحالي"]},"Select all entries":{msgid:"Select all entries",msgstr:["حدِّد كل المداخل"]},"Select entry":{msgid:"Select entry",msgstr:["إختَر المدخل"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["إختر سطر الـ {nodename}"]},Size:{msgid:"Size",msgstr:["الحجم"]},Undo:{msgid:"Undo",msgstr:["تراجع"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["قُم برفع محتوىً أو قُم بمزامنة أجهزتك!"]}}}}},{locale:"ast",json:{charset:"utf-8",headers:{"Last-Translator":"enolp <enolp@softastur.org>, 2023","Language-Team":"Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)","Content-Type":"text/plain; charset=UTF-8",Language:"ast","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nenolp <enolp@softastur.org>, 2023\n"},msgstr:["Last-Translator: enolp <enolp@softastur.org>, 2023\nLanguage-Team: Asturian (https://app.transifex.com/nextcloud/teams/64236/ast/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ast\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["«{name}» ye un nome de carpeta inválidu."]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["«{name}» ye un nome de carpeta inválidu"]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["Nun se permite'l caráuter «/» dientro'l nome de les carpetes."]},"All files":{msgid:"All files",msgstr:["Tolos ficheros"]},Choose:{msgid:"Choose",msgstr:["Escoyer"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escoyer «{ficheru}»"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar en: {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Nun se pudo crear la carpeta"]},"Create directory":{msgid:"Create directory",msgstr:["Crear un direutoriu"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de la vista actual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Equí apaecen los ficheros y les carpetes que metas en Favoritos."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Equí apaecen los fichero y les carpetes que modificares apocayá."]},"Filter file list":{msgid:"Filter file list",msgstr:["Peñerar la llista de ficheros"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["El nome de la carpeta nun pue tar baleru."]},Home:{msgid:"Home",msgstr:["Aniciu"]},Modified:{msgid:"Modified",msgstr:["Modificóse"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover a {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Nuevu"]},"New folder":{msgid:"New folder",msgstr:["Carpeta nueva"]},"New folder name":{msgid:"New folder name",msgstr:["Nome de carpeta nuevu"]},"No files in here":{msgid:"No files in here",msgstr:["Equí nun hai nengún ficheru"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nun s'atopó nengún ficheru que concasare cola peñera."]},"No matching files":{msgid:"No matching files",msgstr:["Nun hai nengún ficheru que concase"]},Recent:{msgid:"Recent",msgstr:["De recién"]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleicionar toles entraes"]},"Select entry":{msgid:"Select entry",msgstr:["Seleicionar la entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleicionar la filera de: {nodename}"]},Size:{msgid:"Size",msgstr:["Tamañu"]},Undo:{msgid:"Undo",msgstr:["Desfacer"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["¡Xubi dalgún elementu o sincroniza colos tos preseos!"]}}}}},{locale:"az",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)","Content-Type":"text/plain; charset=UTF-8",Language:"az","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Azerbaijani (https://app.transifex.com/nextcloud/teams/64236/az/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: az\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"be",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)","Content-Type":"text/plain; charset=UTF-8",Language:"be","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Belarusian (https://app.transifex.com/nextcloud/teams/64236/be/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: be\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"bg_BG",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)","Content-Type":"text/plain; charset=UTF-8",Language:"bg_BG","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Bulgarian (Bulgaria) (https://app.transifex.com/nextcloud/teams/64236/bg_BG/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bg_BG\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"bn_BD",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)","Content-Type":"text/plain; charset=UTF-8",Language:"bn_BD","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Bengali (Bangladesh) (https://app.transifex.com/nextcloud/teams/64236/bn_BD/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bn_BD\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"br",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Breton (https://app.transifex.com/nextcloud/teams/64236/br/)","Content-Type":"text/plain; charset=UTF-8",Language:"br","Plural-Forms":"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Breton (https://app.transifex.com/nextcloud/teams/64236/br/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: br\nPlural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Disober"]}}}}},{locale:"bs",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)","Content-Type":"text/plain; charset=UTF-8",Language:"bs","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Bosnian (https://app.transifex.com/nextcloud/teams/64236/bs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: bs\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"ca",json:{charset:"utf-8",headers:{"Last-Translator":"v v <e670006006@gmail.com>, 2024","Language-Team":"Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)","Content-Type":"text/plain; charset=UTF-8",Language:"ca","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nv v <e670006006@gmail.com>, 2024\n"},msgstr:["Last-Translator: v v <e670006006@gmail.com>, 2024\nLanguage-Team: Catalan (https://app.transifex.com/nextcloud/teams/64236/ca/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ca\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" és un nom de carpeta no vàlid.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no és permès en el nom de carpeta']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" no és permès en el nom de carpeta.']},"All files":{msgid:"All files",msgstr:["Tots els arxius"]},Choose:{msgid:"Choose",msgstr:["Triar"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Triar {file}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["No es pot crear la nova carpeta"]},"Create directory":{msgid:"Create directory",msgstr:["Crear directori"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de visualització actual"]},Favorites:{msgid:"Favorites",msgstr:["Favorits"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Els fitxers i les carpetes que marqueu com a favorits es mostraran aquí."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Els fitxers i les carpetes recentment modificats es mostraran aquí."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar llistat de fitxers"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["El nom de la carpeta no pot estar buit."]},Home:{msgid:"Home",msgstr:["Inici"]},Modified:{msgid:"Modified",msgstr:["Modificat"]},Move:{msgid:"Move",msgstr:["Moure"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["More a {target}"]},Name:{msgid:"Name",msgstr:["Nom"]},New:{msgid:"New",msgstr:["Nou"]},"New folder":{msgid:"New folder",msgstr:["Nova carpeta"]},"New folder name":{msgid:"New folder name",msgstr:["Nom de nova carpeta"]},"No files in here":{msgid:"No files in here",msgstr:["No hi ha arxius"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["No s'han trobat fitxers coincidents amb el vostre filtre."]},"No matching files":{msgid:"No matching files",msgstr:["Sense arxius coincidents"]},Recent:{msgid:"Recent",msgstr:["Recent"]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleccioneu totes les entrades"]},"Select entry":{msgid:"Select entry",msgstr:["Seleccionar entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleccioneu la fila per a {nodename}"]},Size:{msgid:"Size",msgstr:["Mida"]},Undo:{msgid:"Undo",msgstr:["Desfés"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Pengeu contingut o sincronitzeu-vos amb els vostres dispositius!"]}}}}},{locale:"cs",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2020","Language-Team":"Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nPavel Borecki <pavel.borecki@gmail.com>, 2020\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2020\nLanguage-Team: Czech (https://www.transifex.com/nextcloud/teams/64236/cs/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:187"},msgstr:["Zpět"]}}}}},{locale:"cs_CZ",json:{charset:"utf-8",headers:{"Last-Translator":"Pavel Borecki <pavel.borecki@gmail.com>, 2024","Language-Team":"Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)","Content-Type":"text/plain; charset=UTF-8",Language:"cs_CZ","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nPavel Borecki <pavel.borecki@gmail.com>, 2024\n"},msgstr:["Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>, 2024\nLanguage-Team: Czech (Czech Republic) (https://app.transifex.com/nextcloud/teams/64236/cs_CZ/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cs_CZ\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["„{name}“ není platný název složky."]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["„{name}“ není povolený název složky."]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["znak „/“ (dopředné lomítko) není možné použít v názvu složky."]},"All files":{msgid:"All files",msgstr:["Veškeré soubory"]},Choose:{msgid:"Choose",msgstr:["Zvolit"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Zvolit {file}"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Zvolte %n soubor","Zvolte %n soubory","Zvolte %n souborů","Zvolte %n soubory"]},Copy:{msgid:"Copy",msgstr:["Zkopírovat"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Zkopírovat do {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Novou složku se nepodařilo vytvořit"]},"Create directory":{msgid:"Create directory",msgstr:["Vytvořit složku"]},"Current view selector":{msgid:"Current view selector",msgstr:["Výběr stávajícího zobrazení"]},Favorites:{msgid:"Favorites",msgstr:["Oblíbené"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Zde se zobrazí soubory a složky, které označíte jako oblíbené."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Zde se zobrazí soubory a složky, které jste nedávno pozměnili."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrovat seznam souborů"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Složku je třeba nějak nazvat."]},Home:{msgid:"Home",msgstr:["Domů"]},Modified:{msgid:"Modified",msgstr:["Změněno"]},Move:{msgid:"Move",msgstr:["Přesounout"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Přesunout do {target}"]},Name:{msgid:"Name",msgstr:["Název"]},New:{msgid:"New",msgstr:["Nové"]},"New folder":{msgid:"New folder",msgstr:["Nová složka"]},"New folder name":{msgid:"New folder name",msgstr:["Název pro novou složku"]},"No files in here":{msgid:"No files in here",msgstr:["Nejsou zde žádné soubory"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nenalezeny žádné soubory odpovídající vašemu filtru"]},"No matching files":{msgid:"No matching files",msgstr:["Žádné odpovídající soubory"]},Recent:{msgid:"Recent",msgstr:["Nedávné"]},"Select all entries":{msgid:"Select all entries",msgstr:["Vybrat všechny položky"]},"Select entry":{msgid:"Select entry",msgstr:["Vybrat položku"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Vybrat řádek pro {nodename}"]},Size:{msgid:"Size",msgstr:["Velikost"]},Undo:{msgid:"Undo",msgstr:["Zpět"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Nahrajte nějaký obsah nebo proveďte synchronizaci se svými zařízeními!"]}}}}},{locale:"cy_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"cy_GB","Plural-Forms":"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Welsh (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/cy_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: cy_GB\nPlural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"da",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Danish (https://app.transifex.com/nextcloud/teams/64236/da/)","Content-Type":"text/plain; charset=UTF-8",Language:"da","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Danish (https://app.transifex.com/nextcloud/teams/64236/da/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: da\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Fortryd"]}}}}},{locale:"de",json:{charset:"utf-8",headers:{"Last-Translator":"Joachim Sokolowski, 2023","Language-Team":"German (https://app.transifex.com/nextcloud/teams/64236/de/)","Content-Type":"text/plain; charset=UTF-8",Language:"de","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMario Siegmann <mario_siegmann@web.de>, 2023\nMarkus Eckstein, 2023\nAndy Scherzinger <info@andy-scherzinger.de>, 2023\nJoachim Sokolowski, 2023\n"},msgstr:["Last-Translator: Joachim Sokolowski, 2023\nLanguage-Team: German (https://app.transifex.com/nextcloud/teams/64236/de/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" ist ein ungültiger Ordnername.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" ist kein zulässiger Ordnername']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" ist innerhalb eines Ordnernamens nicht zulässig.']},"All files":{msgid:"All files",msgstr:["Alle Dateien"]},Choose:{msgid:"Choose",msgstr:["Auswählen"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["{file} auswählen"]},Copy:{msgid:"Copy",msgstr:["Kopieren"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden."]},"Create directory":{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},"Current view selector":{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},Favorites:{msgid:"Favorites",msgstr:["Favoriten"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die du als Favorit markierst, werden hier angezeigt."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die du kürzlich geändert hast, werden hier angezeigt."]},"Filter file list":{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Der Ordnername darf nicht leer sein."]},Home:{msgid:"Home",msgstr:["Startseite"]},Modified:{msgid:"Modified",msgstr:["Geändert"]},Move:{msgid:"Move",msgstr:["Verschieben"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},Name:{msgid:"Name",msgstr:["Name"]},New:{msgid:"New",msgstr:["Neu"]},"New folder":{msgid:"New folder",msgstr:["Neuer Ordner"]},"New folder name":{msgid:"New folder name",msgstr:["Neuer Ordnername"]},"No files in here":{msgid:"No files in here",msgstr:["Keine Dateien vorhanden"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die deinem Filter entsprechen."]},"No matching files":{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},Recent:{msgid:"Recent",msgstr:["Jüngste"]},"Select all entries":{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},"Select entry":{msgid:"Select entry",msgstr:["Eintrag auswählen"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},Size:{msgid:"Size",msgstr:["Größe"]},Undo:{msgid:"Undo",msgstr:["Rückgängig"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Lade Inhalte hoch oder synchronisieren diese mit deinen Geräten!"]}}}}},{locale:"de_DE",json:{charset:"utf-8",headers:{"Last-Translator":"Mario Siegmann <mario_siegmann@web.de>, 2024","Language-Team":"German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)","Content-Type":"text/plain; charset=UTF-8",Language:"de_DE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMark Ziegler <mark.ziegler@rakekniven.de>, 2023\nMario Siegmann <mario_siegmann@web.de>, 2024\n"},msgstr:["Last-Translator: Mario Siegmann <mario_siegmann@web.de>, 2024\nLanguage-Team: German (Germany) (https://app.transifex.com/nextcloud/teams/64236/de_DE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: de_DE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" ist ein ungültiger Ordnername.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" ist kein zulässiger Ordnername']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" ist innerhalb eines Ordnernamens nicht zulässig.']},"All files":{msgid:"All files",msgstr:["Alle Dateien"]},Choose:{msgid:"Choose",msgstr:["Auswählen"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["{file} auswählen"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n Datei auswählen","%n Dateien auswählen"]},Copy:{msgid:"Copy",msgstr:["Kopieren"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Nach {target} kopieren"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Der neue Ordner konnte nicht erstellt werden"]},"Create directory":{msgid:"Create directory",msgstr:["Verzeichnis erstellen"]},"Current view selector":{msgid:"Current view selector",msgstr:["Aktuelle Ansichtsauswahl"]},Favorites:{msgid:"Favorites",msgstr:["Favoriten"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Dateien und Ordner, die Sie als Favorit markieren, werden hier angezeigt."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Dateien und Ordner, die Sie kürzlich geändert haben, werden hier angezeigt."]},"Filter file list":{msgid:"Filter file list",msgstr:["Dateiliste filtern"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Der Ordnername darf nicht leer sein."]},Home:{msgid:"Home",msgstr:["Home"]},Modified:{msgid:"Modified",msgstr:["Geändert"]},Move:{msgid:"Move",msgstr:["Verschieben"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Nach {target} verschieben"]},Name:{msgid:"Name",msgstr:["Name"]},New:{msgid:"New",msgstr:["Neu"]},"New folder":{msgid:"New folder",msgstr:["Neuer Ordner"]},"New folder name":{msgid:"New folder name",msgstr:["Neuer Ordnername"]},"No files in here":{msgid:"No files in here",msgstr:["Hier sind keine Dateien"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Es wurden keine Dateien gefunden, die Ihrem Filter entsprechen."]},"No matching files":{msgid:"No matching files",msgstr:["Keine passenden Dateien"]},Recent:{msgid:"Recent",msgstr:["Neueste"]},"Select all entries":{msgid:"Select all entries",msgstr:["Alle Einträge auswählen"]},"Select entry":{msgid:"Select entry",msgstr:["Eintrag auswählen"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Die Zeile für {nodename} auswählen."]},Size:{msgid:"Size",msgstr:["Größe"]},Undo:{msgid:"Undo",msgstr:["Rückgängig machen"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Laden Sie Inhalte hoch oder synchronisieren Sie diese mit Ihren Geräten!"]}}}}},{locale:"el",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Greek (https://app.transifex.com/nextcloud/teams/64236/el/)","Content-Type":"text/plain; charset=UTF-8",Language:"el","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Greek (https://app.transifex.com/nextcloud/teams/64236/el/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: el\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Αναίρεση"]}}}}},{locale:"en_GB",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)","Content-Type":"text/plain; charset=UTF-8",Language:"en_GB","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nAndi Chandler <andi@gowling.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: English (United Kingdom) (https://app.transifex.com/nextcloud/teams/64236/en_GB/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: en_GB\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:['"{name}" is an invalid file name.']},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:['"{name}" is not an allowed filetype']},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:['"/" is not allowed inside a file name.']},"All files":{msgid:"All files",msgstr:["All files"]},Choose:{msgid:"Choose",msgstr:["Choose"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Choose {file}"]},Copy:{msgid:"Copy",msgstr:["Copy"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copy to {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Could not create the new folder"]},"Create directory":{msgid:"Create directory",msgstr:["Create directory"]},"Current view selector":{msgid:"Current view selector",msgstr:["Current view selector"]},Favorites:{msgid:"Favorites",msgstr:["Favourites"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["File name cannot be empty."]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["Filepicker sections"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Files and folders you mark as favourite will show up here."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Files and folders you recently modified will show up here."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filter file list"]},Home:{msgid:"Home",msgstr:["Home"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME type {mime}"]},Modified:{msgid:"Modified",msgstr:["Modified"]},Move:{msgid:"Move",msgstr:["Move"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Move to {target}"]},Name:{msgid:"Name",msgstr:["Name"]},New:{msgid:"New",msgstr:["New"]},"New folder":{msgid:"New folder",msgstr:["New folder"]},"New folder name":{msgid:"New folder name",msgstr:["New folder name"]},"No files in here":{msgid:"No files in here",msgstr:["No files in here"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["No files matching your filter were found."]},"No matching files":{msgid:"No matching files",msgstr:["No matching files"]},Recent:{msgid:"Recent",msgstr:["Recent"]},"Select all entries":{msgid:"Select all entries",msgstr:["Select all entries"]},"Select entry":{msgid:"Select entry",msgstr:["Select entry"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Select the row for {nodename}"]},Size:{msgid:"Size",msgstr:["Size"]},Undo:{msgid:"Undo",msgstr:["Undo"]},unknown:{msgid:"unknown",msgstr:["unknown"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Upload some content or sync with your devices!"]}}}}},{locale:"eo",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)","Content-Type":"text/plain; charset=UTF-8",Language:"eo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Esperanto (https://app.transifex.com/nextcloud/teams/64236/eo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Malfari"]}}}}},{locale:"es",json:{charset:"utf-8",headers:{"Last-Translator":"Julio C. Ortega, 2024","Language-Team":"Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)","Content-Type":"text/plain; charset=UTF-8",Language:"es","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFranciscoFJ <dev-ooo@satel-sa.com>, 2023\nJulio C. Ortega, 2024\n"},msgstr:["Last-Translator: Julio C. Ortega, 2024\nLanguage-Team: Spanish (https://app.transifex.com/nextcloud/teams/64236/es/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{nombre}" es un nombre de carpeta no válido.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" no es un nombre de carpeta permitido']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" no está permitido dentro del nombre de una carpeta.']},"All files":{msgid:"All files",msgstr:["Todos los archivos"]},Choose:{msgid:"Choose",msgstr:["Escoger"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escoger {file}"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Elige %n archivo","Elige %n archivos","Elige %n archivos"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar a {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["No se pudo crear la carpeta nueva"]},"Create directory":{msgid:"Create directory",msgstr:["Crear directorio"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de vista actual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Los archivos y carpetas que marque como favoritos aparecerán aquí."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Los archivos y carpetas que modificó recientemente aparecerán aquí."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar lista de archivos"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["El nombre de la carpeta no puede estar vacío."]},Home:{msgid:"Home",msgstr:["Inicio"]},Modified:{msgid:"Modified",msgstr:["Modificado"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover a {target}"]},Name:{msgid:"Name",msgstr:["Nombre"]},New:{msgid:"New",msgstr:["Nuevo"]},"New folder":{msgid:"New folder",msgstr:[" Nueva carpeta"]},"New folder name":{msgid:"New folder name",msgstr:["Nuevo nombre de carpeta"]},"No files in here":{msgid:"No files in here",msgstr:["No hay archivos aquí"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["No se encontraron archivos que coincidiesen con su filtro."]},"No matching files":{msgid:"No matching files",msgstr:["No hay archivos coincidentes"]},Recent:{msgid:"Recent",msgstr:["Reciente"]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleccionar todas las entradas"]},"Select entry":{msgid:"Select entry",msgstr:["Seleccionar entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleccione la fila para {nodename}"]},Size:{msgid:"Size",msgstr:["Tamaño"]},Undo:{msgid:"Undo",msgstr:["Deshacer"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["¡Cargue algún contenido o sincronice con sus dispositivos!"]}}}}},{locale:"es_419",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_419","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Latin America) (https://app.transifex.com/nextcloud/teams/64236/es_419/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_419\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_AR",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_AR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Spanish (Argentina) (https://app.transifex.com/nextcloud/teams/64236/es_AR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_AR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Deshacer"]}}}}},{locale:"es_CL",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CL","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Chile) (https://app.transifex.com/nextcloud/teams/64236/es_CL/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CL\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_CO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Colombia) (https://app.transifex.com/nextcloud/teams/64236/es_CO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_CR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_CR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Costa Rica) (https://app.transifex.com/nextcloud/teams/64236/es_CR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_CR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_DO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_DO","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Dominican Republic) (https://app.transifex.com/nextcloud/teams/64236/es_DO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_DO\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_EC",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_EC","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Ecuador) (https://app.transifex.com/nextcloud/teams/64236/es_EC/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_EC\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_GT",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_GT","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Guatemala) (https://app.transifex.com/nextcloud/teams/64236/es_GT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_GT\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_HN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_HN","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Honduras) (https://app.transifex.com/nextcloud/teams/64236/es_HN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_HN\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_MX",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_MX","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Spanish (Mexico) (https://app.transifex.com/nextcloud/teams/64236/es_MX/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_MX\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Deshacer"]}}}}},{locale:"es_NI",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_NI","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Nicaragua) (https://app.transifex.com/nextcloud/teams/64236/es_NI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_NI\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_PA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PA","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Panama) (https://app.transifex.com/nextcloud/teams/64236/es_PA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PA\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_PE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PE","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Peru) (https://app.transifex.com/nextcloud/teams/64236/es_PE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PE\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_PR",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PR","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Puerto Rico) (https://app.transifex.com/nextcloud/teams/64236/es_PR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PR\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_PY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_PY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Paraguay) (https://app.transifex.com/nextcloud/teams/64236/es_PY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_PY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_SV",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_SV","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (El Salvador) (https://app.transifex.com/nextcloud/teams/64236/es_SV/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_SV\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"es_UY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)","Content-Type":"text/plain; charset=UTF-8",Language:"es_UY","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Spanish (Uruguay) (https://app.transifex.com/nextcloud/teams/64236/es_UY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: es_UY\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"et_EE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)","Content-Type":"text/plain; charset=UTF-8",Language:"et_EE","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Estonian (Estonia) (https://app.transifex.com/nextcloud/teams/64236/et_EE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: et_EE\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"eu",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)","Content-Type":"text/plain; charset=UTF-8",Language:"eu","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Basque (https://app.transifex.com/nextcloud/teams/64236/eu/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: eu\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Desegin"]}}}}},{locale:"fa",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)","Content-Type":"text/plain; charset=UTF-8",Language:"fa","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Persian (https://app.transifex.com/nextcloud/teams/64236/fa/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fa\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["بازگردانی"]}}}}},{locale:"fi_FI",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)","Content-Type":"text/plain; charset=UTF-8",Language:"fi_FI","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Finnish (Finland) (https://app.transifex.com/nextcloud/teams/64236/fi_FI/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fi_FI\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Kumoa"]}}}}},{locale:"fo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)","Content-Type":"text/plain; charset=UTF-8",Language:"fo","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Faroese (https://app.transifex.com/nextcloud/teams/64236/fo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fo\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"fr",json:{charset:"utf-8",headers:{"Last-Translator":"fleopaul thp, 2023","Language-Team":"French (https://app.transifex.com/nextcloud/teams/64236/fr/)","Content-Type":"text/plain; charset=UTF-8",Language:"fr","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nRémi LEBLOND, 2023\nMordecai, 2023\nfleopaul thp, 2023\n"},msgstr:["Last-Translator: fleopaul thp, 2023\nLanguage-Team: French (https://app.transifex.com/nextcloud/teams/64236/fr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: fr\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["« {name} » n'est pas un nom de dossier valide."]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["« {name} » n'est pas un nom de dossier autorisé."]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["Le caractère « / » n'est pas autorisé dans un nom de dossier."]},"All files":{msgid:"All files",msgstr:["Tous les fichiers"]},Choose:{msgid:"Choose",msgstr:["Choisir"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Choisir {file}"]},Copy:{msgid:"Copy",msgstr:["Copier"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copier vers {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Impossible de créer le nouveau dossier"]},"Create directory":{msgid:"Create directory",msgstr:["Créer un répertoire"]},"Current view selector":{msgid:"Current view selector",msgstr:["Sélecteur de vue courante"]},Favorites:{msgid:"Favorites",msgstr:["Favoris"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Les fichiers et répertoires marqués en favoris apparaîtront ici."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Les fichiers et répertoires modifiés récemment apparaîtront ici."]},"Filter file list":{msgid:"Filter file list",msgstr:["Liste de filtre de fichiers"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Le nom du dossier ne peut pas être vide."]},Home:{msgid:"Home",msgstr:["Accueil"]},Modified:{msgid:"Modified",msgstr:["Modifié"]},Move:{msgid:"Move",msgstr:["Déplacer"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Déplacer vers {target}"]},Name:{msgid:"Name",msgstr:["Nom"]},New:{msgid:"New",msgstr:["Nouveau"]},"New folder":{msgid:"New folder",msgstr:["Nouveau répertoire"]},"New folder name":{msgid:"New folder name",msgstr:["Nom du nouveau répertoire"]},"No files in here":{msgid:"No files in here",msgstr:["Aucun fichier ici"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Aucun fichier trouvé correspondant à votre filtre."]},"No matching files":{msgid:"No matching files",msgstr:["Aucun fichier trouvé"]},Recent:{msgid:"Recent",msgstr:["Récents"]},"Select all entries":{msgid:"Select all entries",msgstr:["Tous sélectionner"]},"Select entry":{msgid:"Select entry",msgstr:["Sélectionner une entrée"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Sélectionner l'enregistrement pour {nodename}"]},Size:{msgid:"Size",msgstr:["Taille"]},Undo:{msgid:"Undo",msgstr:["Rétablir"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Charger du contenu ou synchroniser avec vos équipements !"]}}}}},{locale:"gd",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)","Content-Type":"text/plain; charset=UTF-8",Language:"gd","Plural-Forms":"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Gaelic, Scottish (https://app.transifex.com/nextcloud/teams/64236/gd/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gd\nPlural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"gl",json:{charset:"utf-8",headers:{"Last-Translator":"Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023","Language-Team":"Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)","Content-Type":"text/plain; charset=UTF-8",Language:"gl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMiguel Anxo Bouzada <mbouzada@gmail.com>, 2023\n"},msgstr:["Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>, 2023\nLanguage-Team: Galician (https://app.transifex.com/nextcloud/teams/64236/gl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: gl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["«{name}» non é un nome de cartafol válido."]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["«{name}» non é un nome de cartafol permitido"]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["A «/» non está permitida no nome dun cartafol."]},"All files":{msgid:"All files",msgstr:["Todos os ficheiros"]},Choose:{msgid:"Choose",msgstr:["Escoller"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escoller {file}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar en {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Non foi posíbel crear o novo cartafol"]},"Create directory":{msgid:"Create directory",msgstr:["Crear un directorio"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selector de vista actual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os ficheiros e cartafoles que marque como favoritos aparecerán aquí."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Os ficheiros e cartafoles que modificou recentemente aparecerán aquí."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar a lista de ficheiros"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["O nome do cartafol non pode estar baleiro."]},Home:{msgid:"Home",msgstr:["Inicio"]},Modified:{msgid:"Modified",msgstr:["Modificado"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover cara a {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Novo"]},"New folder":{msgid:"New folder",msgstr:["Novo cartafol"]},"New folder name":{msgid:"New folder name",msgstr:["Novo nome do cartafol"]},"No files in here":{msgid:"No files in here",msgstr:["Aquí non hai ficheiros"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Non se atopou ningún ficheiro que coincida co filtro."]},"No matching files":{msgid:"No matching files",msgstr:["Non hai ficheiros coincidentes"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"Select all entries":{msgid:"Select all entries",msgstr:["Seleccionar todas as entradas"]},"Select entry":{msgid:"Select entry",msgstr:["Seleccionar a entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleccionar a fila para {nodename}"]},Size:{msgid:"Size",msgstr:["Tamaño"]},Undo:{msgid:"Undo",msgstr:["Desfacer"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Enviar algún contido ou sincronizalo cos seus dispositivos!"]}}}}},{locale:"he",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)","Content-Type":"text/plain; charset=UTF-8",Language:"he","Plural-Forms":"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Hebrew (https://app.transifex.com/nextcloud/teams/64236/he/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: he\nPlural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["ביטול"]}}}}},{locale:"hi_IN",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)","Content-Type":"text/plain; charset=UTF-8",Language:"hi_IN","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Hindi (India) (https://app.transifex.com/nextcloud/teams/64236/hi_IN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hi_IN\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"hr",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)","Content-Type":"text/plain; charset=UTF-8",Language:"hr","Plural-Forms":"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Croatian (https://app.transifex.com/nextcloud/teams/64236/hr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hr\nPlural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"hsb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)","Content-Type":"text/plain; charset=UTF-8",Language:"hsb","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Upper Sorbian (https://app.transifex.com/nextcloud/teams/64236/hsb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hsb\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"hu_HU",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)","Content-Type":"text/plain; charset=UTF-8",Language:"hu_HU","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Hungarian (Hungary) (https://app.transifex.com/nextcloud/teams/64236/hu_HU/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hu_HU\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Visszavonás"]}}}}},{locale:"hy",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)","Content-Type":"text/plain; charset=UTF-8",Language:"hy","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Armenian (https://app.transifex.com/nextcloud/teams/64236/hy/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: hy\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"ia",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)","Content-Type":"text/plain; charset=UTF-8",Language:"ia","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Interlingua (https://app.transifex.com/nextcloud/teams/64236/ia/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ia\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"id",json:{charset:"utf-8",headers:{"Last-Translator":"Linerly <linerly@proton.me>, 2023","Language-Team":"Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)","Content-Type":"text/plain; charset=UTF-8",Language:"id","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nLinerly <linerly@proton.me>, 2023\n"},msgstr:["Last-Translator: Linerly <linerly@proton.me>, 2023\nLanguage-Team: Indonesian (https://app.transifex.com/nextcloud/teams/64236/id/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: id\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" merupakan nama folder yang tidak valid.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" merupakan nama folder yang tidak diperbolehkan']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" tidak diperbolehkan di dalam nama folder.']},"All files":{msgid:"All files",msgstr:["Semua berkas"]},Choose:{msgid:"Choose",msgstr:["Pilih"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Pilih {file}"]},Copy:{msgid:"Copy",msgstr:["Salin"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Salin ke {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Tidak dapat membuat folder baru"]},"Create directory":{msgid:"Create directory",msgstr:["Buat direktori"]},"Current view selector":{msgid:"Current view selector",msgstr:["Pemilih tampilan saat ini"]},Favorites:{msgid:"Favorites",msgstr:["Favorit"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Berkas dan folder yang Anda tandai sebagai favorit akan muncul di sini."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Berkas dan folder yang Anda ubah baru-baru ini akan muncul di sini."]},"Filter file list":{msgid:"Filter file list",msgstr:["Saring daftar berkas"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Name berkas tidak dapat kosong."]},Home:{msgid:"Home",msgstr:["Beranda"]},Modified:{msgid:"Modified",msgstr:["Diubah"]},Move:{msgid:"Move",msgstr:["Pindahkan"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Pindahkan ke {target}"]},Name:{msgid:"Name",msgstr:["Nama"]},New:{msgid:"New",msgstr:["Baru"]},"New folder":{msgid:"New folder",msgstr:["Folder baru"]},"New folder name":{msgid:"New folder name",msgstr:["Nama folder baru"]},"No files in here":{msgid:"No files in here",msgstr:["Tidak ada berkas di sini"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Tidak ada berkas yang cocok dengan penyaringan Anda."]},"No matching files":{msgid:"No matching files",msgstr:["Tidak ada berkas yang cocok"]},Recent:{msgid:"Recent",msgstr:["Terkini"]},"Select all entries":{msgid:"Select all entries",msgstr:["Pilih semua entri"]},"Select entry":{msgid:"Select entry",msgstr:["Pilih entri"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Pilih baris untuk {nodename}"]},Size:{msgid:"Size",msgstr:["Ukuran"]},Undo:{msgid:"Undo",msgstr:["Tidak jadi"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Unggah beberapa konten atau sinkron dengan perangkat Anda!"]}}}}},{locale:"ig",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)","Content-Type":"text/plain; charset=UTF-8",Language:"ig","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Igbo (https://app.transifex.com/nextcloud/teams/64236/ig/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ig\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"is",json:{charset:"utf-8",headers:{"Last-Translator":"Sveinn í Felli <sv1@fellsnet.is>, 2023","Language-Team":"Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)","Content-Type":"text/plain; charset=UTF-8",Language:"is","Plural-Forms":"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nSveinn í Felli <sv1@fellsnet.is>, 2023\n"},msgstr:["Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2023\nLanguage-Team: Icelandic (https://app.transifex.com/nextcloud/teams/64236/is/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: is\nPlural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" er ógilt möppuheiti.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" er ekki leyfilegt möppuheiti']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" er er ekki leyfilegt innan í skráarheiti.']},"All files":{msgid:"All files",msgstr:["Allar skrár"]},Choose:{msgid:"Choose",msgstr:["Veldu"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Veldu {file}"]},Copy:{msgid:"Copy",msgstr:["Afrita"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Afrita í {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Get ekki búið til nýju möppuna"]},"Create directory":{msgid:"Create directory",msgstr:["Búa til möppu"]},"Current view selector":{msgid:"Current view selector",msgstr:["Núverandi val sýnar"]},Favorites:{msgid:"Favorites",msgstr:["Eftirlæti"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Skrár og möppur sem þú merkir sem eftirlæti birtast hér."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Skrár og möppur sem þú breyttir nýlega birtast hér."]},"Filter file list":{msgid:"Filter file list",msgstr:["Sía skráalista"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Möppuheiti má ekki vera tómt."]},Home:{msgid:"Home",msgstr:["Heim"]},Modified:{msgid:"Modified",msgstr:["Breytt"]},Move:{msgid:"Move",msgstr:["Færa"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Færa í {target}"]},Name:{msgid:"Name",msgstr:["Heiti"]},New:{msgid:"New",msgstr:["Nýtt"]},"New folder":{msgid:"New folder",msgstr:["Ný mappa"]},"New folder name":{msgid:"New folder name",msgstr:["Heiti nýrrar möppu"]},"No files in here":{msgid:"No files in here",msgstr:["Engar skrár hér"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Engar skrár fundust sem passa við síuna."]},"No matching files":{msgid:"No matching files",msgstr:["Engar samsvarandi skrár"]},Recent:{msgid:"Recent",msgstr:["Nýlegt"]},"Select all entries":{msgid:"Select all entries",msgstr:["Velja allar færslur"]},"Select entry":{msgid:"Select entry",msgstr:["Velja færslu"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Veldu röðina fyrir {nodename}"]},Size:{msgid:"Size",msgstr:["Stærð"]},Undo:{msgid:"Undo",msgstr:["Afturkalla"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Sendu inn eitthvað efni eða samstilltu við tækin þín!"]}}}}},{locale:"it",json:{charset:"utf-8",headers:{"Last-Translator":"Raffaele Silano <raffaelone@gmail.com>, 2024","Language-Team":"Italian (https://app.transifex.com/nextcloud/teams/64236/it/)","Content-Type":"text/plain; charset=UTF-8",Language:"it","Plural-Forms":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nClaudio Scandella, 2023\nRaffaele Silano <raffaelone@gmail.com>, 2024\n"},msgstr:["Last-Translator: Raffaele Silano <raffaelone@gmail.com>, 2024\nLanguage-Team: Italian (https://app.transifex.com/nextcloud/teams/64236/it/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: it\nPlural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" non è un nome di cartella valido.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" non è un nome di cartella ammesso']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" non è ammesso all\'interno del nome di una cartella.']},"All files":{msgid:"All files",msgstr:["Tutti i file"]},Choose:{msgid:"Choose",msgstr:["Scegli"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Scegli {file}"]},Copy:{msgid:"Copy",msgstr:["Copia"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copia in {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Impossibile creare la nuova cartella"]},"Create directory":{msgid:"Create directory",msgstr:["Crea directory"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selettore della vista corrente"]},Favorites:{msgid:"Favorites",msgstr:["Preferiti"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["I file e le cartelle contrassegnate come preferite saranno mostrate qui."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["I file e le cartelle che hai modificato di recente saranno mostrate qui."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtra elenco file"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Il nome della cartella non può essere vuoto."]},Home:{msgid:"Home",msgstr:["Home"]},Modified:{msgid:"Modified",msgstr:["Modificato"]},Move:{msgid:"Move",msgstr:["Sposta"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Sposta in {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Nuovo"]},"New folder":{msgid:"New folder",msgstr:["Nuova cartella"]},"New folder name":{msgid:"New folder name",msgstr:["Nuovo nome cartella"]},"No files in here":{msgid:"No files in here",msgstr:["Nessun file qui"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nessun file che corrisponde al tuo filtro è stato trovato."]},"No matching files":{msgid:"No matching files",msgstr:["Nessun file corrispondente"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"Select all entries":{msgid:"Select all entries",msgstr:["Scegli tutte le voci"]},"Select entry":{msgid:"Select entry",msgstr:["Seleziona la voce"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Seleziona la riga per {nodename}"]},Size:{msgid:"Size",msgstr:["Taglia/dimensioni"]},Undo:{msgid:"Undo",msgstr:["Annulla"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Carica qualche contenuto o sincronizza con i tuoi dispositivi!"]}}}}},{locale:"ja_JP",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)","Content-Type":"text/plain; charset=UTF-8",Language:"ja_JP","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Japanese (Japan) (https://app.transifex.com/nextcloud/teams/64236/ja_JP/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ja_JP\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["元に戻す"]}}}}},{locale:"ka",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Georgian (https://app.transifex.com/nextcloud/teams/64236/ka/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"ka_GE",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)","Content-Type":"text/plain; charset=UTF-8",Language:"ka_GE","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Georgian (Georgia) (https://app.transifex.com/nextcloud/teams/64236/ka_GE/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ka_GE\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"kab",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)","Content-Type":"text/plain; charset=UTF-8",Language:"kab","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Kabyle (https://app.transifex.com/nextcloud/teams/64236/kab/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kab\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Sefsex"]}}}}},{locale:"kk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)","Content-Type":"text/plain; charset=UTF-8",Language:"kk","Plural-Forms":"nplurals=2; plural=(n!=1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Kazakh (https://app.transifex.com/nextcloud/teams/64236/kk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kk\nPlural-Forms: nplurals=2; plural=(n!=1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"km",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)","Content-Type":"text/plain; charset=UTF-8",Language:"km","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Khmer (https://app.transifex.com/nextcloud/teams/64236/km/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: km\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"kn",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)","Content-Type":"text/plain; charset=UTF-8",Language:"kn","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Kannada (https://app.transifex.com/nextcloud/teams/64236/kn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: kn\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"ko",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)","Content-Type":"text/plain; charset=UTF-8",Language:"ko","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Korean (https://app.transifex.com/nextcloud/teams/64236/ko/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ko\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["되돌리기"]}}}}},{locale:"la",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Latin (https://app.transifex.com/nextcloud/teams/64236/la/)","Content-Type":"text/plain; charset=UTF-8",Language:"la","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Latin (https://app.transifex.com/nextcloud/teams/64236/la/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: la\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"lb",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)","Content-Type":"text/plain; charset=UTF-8",Language:"lb","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Luxembourgish (https://app.transifex.com/nextcloud/teams/64236/lb/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lb\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"lo",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)","Content-Type":"text/plain; charset=UTF-8",Language:"lo","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Lao (https://app.transifex.com/nextcloud/teams/64236/lo/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lo\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"lt_LT",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)","Content-Type":"text/plain; charset=UTF-8",Language:"lt_LT","Plural-Forms":"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Lithuanian (Lithuania) (https://app.transifex.com/nextcloud/teams/64236/lt_LT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lt_LT\nPlural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Atšaukti"]}}}}},{locale:"lv",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)","Content-Type":"text/plain; charset=UTF-8",Language:"lv","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Latvian (https://app.transifex.com/nextcloud/teams/64236/lv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: lv\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"mk",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)","Content-Type":"text/plain; charset=UTF-8",Language:"mk","Plural-Forms":"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Macedonian (https://app.transifex.com/nextcloud/teams/64236/mk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mk\nPlural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Врати"]}}}}},{locale:"mn",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)","Content-Type":"text/plain; charset=UTF-8",Language:"mn","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Mongolian (https://app.transifex.com/nextcloud/teams/64236/mn/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mn\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Буцаах"]}}}}},{locale:"mr",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)","Content-Type":"text/plain; charset=UTF-8",Language:"mr","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Marathi (https://app.transifex.com/nextcloud/teams/64236/mr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: mr\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["पूर्ववत करा"]}}}}},{locale:"ms_MY",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)","Content-Type":"text/plain; charset=UTF-8",Language:"ms_MY","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Malay (Malaysia) (https://app.transifex.com/nextcloud/teams/64236/ms_MY/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ms_MY\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"my",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)","Content-Type":"text/plain; charset=UTF-8",Language:"my","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Burmese (https://app.transifex.com/nextcloud/teams/64236/my/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: my\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["နဂိုအတိုင်းပြန်ထားရန်"]}}}}},{locale:"nb_NO",json:{charset:"utf-8",headers:{"Last-Translator":"D PE, 2023","Language-Team":"Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nb_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nD PE, 2023\n"},msgstr:["Last-Translator: D PE, 2023\nLanguage-Team: Norwegian Bokmål (Norway) (https://app.transifex.com/nextcloud/teams/64236/nb_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nb_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" er et ugyldig mappenavn.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" er ikke et tillatt mappenavn.']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" er ikke tillatt inne i et mappenavn.']},"All files":{msgid:"All files",msgstr:["Alle filer"]},Choose:{msgid:"Choose",msgstr:["Velg"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Velg {fil}"]},Copy:{msgid:"Copy",msgstr:["Kopier"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Kopier til {destinasjon}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Kunne ikke opprette den nye mappen"]},"Create directory":{msgid:"Create directory",msgstr:["Opprett mappe"]},"Current view selector":{msgid:"Current view selector",msgstr:["Nåværende visningsvelger"]},Favorites:{msgid:"Favorites",msgstr:["Favoritter"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer og mapper du markerer som favoritter vil vises her."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer og mapper du nylig har endret, vil vises her."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrer filliste"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Mappenavn kan ikke være tomt."]},Home:{msgid:"Home",msgstr:["Hjem"]},Modified:{msgid:"Modified",msgstr:["Modifisert"]},Move:{msgid:"Move",msgstr:["Flytt"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Flytt til {destinasjon}"]},Name:{msgid:"Name",msgstr:["Navn"]},New:{msgid:"New",msgstr:["Ny"]},"New folder":{msgid:"New folder",msgstr:["Ny mappe"]},"New folder name":{msgid:"New folder name",msgstr:["Nytt mappenavn"]},"No files in here":{msgid:"No files in here",msgstr:["Ingen filer her"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Ingen filer funnet med ditt filter."]},"No matching files":{msgid:"No matching files",msgstr:["Ingen treffende filer"]},Recent:{msgid:"Recent",msgstr:["Nylig"]},"Select all entries":{msgid:"Select all entries",msgstr:["Velg alle oppføringer"]},"Select entry":{msgid:"Select entry",msgstr:["Velg oppføring"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Velg raden for {nodenavn}"]},Size:{msgid:"Size",msgstr:["Størrelse"]},Undo:{msgid:"Undo",msgstr:["Angre"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Last opp innhold eller synkroniser med enhetene dine!"]}}}}},{locale:"ne",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)","Content-Type":"text/plain; charset=UTF-8",Language:"ne","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Nepali (https://app.transifex.com/nextcloud/teams/64236/ne/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ne\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"nl",json:{charset:"utf-8",headers:{"Last-Translator":"Jeroen Gui, 2023","Language-Team":"Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)","Content-Type":"text/plain; charset=UTF-8",Language:"nl","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nJoost <joho500@hotmail.com>, 2023\nJeroen Gui, 2023\n"},msgstr:["Last-Translator: Jeroen Gui, 2023\nLanguage-Team: Dutch (https://app.transifex.com/nextcloud/teams/64236/nl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nl\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" is een ongeldige mapnaam.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" is geen toegestane mapnaam']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" is niet toegestaan binnen een bestandsnaam']},"All files":{msgid:"All files",msgstr:["Alle bestanden"]},Choose:{msgid:"Choose",msgstr:["Kies"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Kies {file}"]},Copy:{msgid:"Copy",msgstr:["Kopieer"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Kopieer naar {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Kon de nieuwe map niet maken"]},"Create directory":{msgid:"Create directory",msgstr:["Maak map"]},"Current view selector":{msgid:"Current view selector",msgstr:["Huidige weergave keuze"]},Favorites:{msgid:"Favorites",msgstr:["Favorieten"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Bestanden en mappen die je favoriet maakt, worden hier getoond."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Bestanden en mappen die je recent hebt gewijzigd, worden hier getoond."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filter bestandslijst"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Mapnaam mag niet leeg zijn."]},Home:{msgid:"Home",msgstr:["Home"]},Modified:{msgid:"Modified",msgstr:["Gewijzigd"]},Move:{msgid:"Move",msgstr:["Verplaatsen"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Verplaats naar {target}"]},Name:{msgid:"Name",msgstr:["Naam"]},New:{msgid:"New",msgstr:["Nieuw"]},"New folder":{msgid:"New folder",msgstr:["Nieuwe map"]},"New folder name":{msgid:"New folder name",msgstr:["Nieuwe mapnaam"]},"No files in here":{msgid:"No files in here",msgstr:["Geen bestanden hier"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Geen bestanden gevonden die voldoen aan je filter."]},"No matching files":{msgid:"No matching files",msgstr:["Geen gevonden bestanden"]},Recent:{msgid:"Recent",msgstr:["Recent"]},"Select all entries":{msgid:"Select all entries",msgstr:["Selecteer alle invoer"]},"Select entry":{msgid:"Select entry",msgstr:["Selecteer invoer"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Selecteer de rij voor {nodename}"]},Size:{msgid:"Size",msgstr:["Grootte"]},Undo:{msgid:"Undo",msgstr:["Ongedaan maken"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Upload inhoud of synchroniseer met je apparaten!"]}}}}},{locale:"nn_NO",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)","Content-Type":"text/plain; charset=UTF-8",Language:"nn_NO","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Norwegian Nynorsk (Norway) (https://app.transifex.com/nextcloud/teams/64236/nn_NO/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: nn_NO\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"oc",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)","Content-Type":"text/plain; charset=UTF-8",Language:"oc","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Occitan (post 1500) (https://app.transifex.com/nextcloud/teams/64236/oc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: oc\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Anullar"]}}}}},{locale:"pl",json:{charset:"utf-8",headers:{"Last-Translator":"Valdnet, 2024","Language-Team":"Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)","Content-Type":"text/plain; charset=UTF-8",Language:"pl","Plural-Forms":"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nJUJER wtf, 2023\nM H <haincu@o2.pl>, 2023\nValdnet, 2024\n"},msgstr:["Last-Translator: Valdnet, 2024\nLanguage-Team: Polish (https://app.transifex.com/nextcloud/teams/64236/pl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pl\nPlural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" jest nieprawidłową nazwą folderu']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" nie jest dozwoloną nazwą folderu']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['Znak "/" nie jest dozwolony w nazwie folderu']},"All files":{msgid:"All files",msgstr:["Wszystkie pliki"]},Choose:{msgid:"Choose",msgstr:["Wybierz"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Wybierz {file}"]},Copy:{msgid:"Copy",msgstr:["Kopiuj"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Skopiuj do {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Nie można utworzyć nowego folderu"]},"Create directory":{msgid:"Create directory",msgstr:["Utwórz katalog"]},"Current view selector":{msgid:"Current view selector",msgstr:["Bieżący selektor widoku"]},Favorites:{msgid:"Favorites",msgstr:["Ulubione"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Pliki i foldery które oznaczysz jako ulubione będą wyświetlały się tutaj"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Pliki i foldery które ostatnio modyfikowałeś będą wyświetlały się tutaj"]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtruj listę plików"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Nazwa folderu nie może być pusta"]},Home:{msgid:"Home",msgstr:["Strona główna"]},Modified:{msgid:"Modified",msgstr:["Zmodyfikowano"]},Move:{msgid:"Move",msgstr:["Przenieś"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Przejdź do {target}"]},Name:{msgid:"Name",msgstr:["Nazwa"]},New:{msgid:"New",msgstr:["Nowy"]},"New folder":{msgid:"New folder",msgstr:["Nowy folder"]},"New folder name":{msgid:"New folder name",msgstr:["Nowa nazwa folderu"]},"No files in here":{msgid:"No files in here",msgstr:["Brak plików"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nie znaleziono plików spełniających warunki filtru"]},"No matching files":{msgid:"No matching files",msgstr:["Brak pasujących plików"]},Recent:{msgid:"Recent",msgstr:["Ostatni"]},"Select all entries":{msgid:"Select all entries",msgstr:["Wybierz wszystkie wpisy"]},"Select entry":{msgid:"Select entry",msgstr:["Wybierz wpis"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Wybierz wiersz dla {nodename}"]},Size:{msgid:"Size",msgstr:["Rozmiar"]},Undo:{msgid:"Undo",msgstr:["Cofnij"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Wyślij zawartość lub zsynchronizuj ze swoimi urządzeniami!"]}}}}},{locale:"ps",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)","Content-Type":"text/plain; charset=UTF-8",Language:"ps","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Pashto (https://app.transifex.com/nextcloud/teams/64236/ps/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ps\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"pt_BR",json:{charset:"utf-8",headers:{"Last-Translator":"Flávio Veras <flaviove@gmail.com>, 2023","Language-Team":"Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_BR","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nFlávio Veras <flaviove@gmail.com>, 2023\n"},msgstr:["Last-Translator: Flávio Veras <flaviove@gmail.com>, 2023\nLanguage-Team: Portuguese (Brazil) (https://app.transifex.com/nextcloud/teams/64236/pt_BR/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_BR\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" é um nome de pasta inválido.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" não é um nome de pasta permitido']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" não é permitido dentro de um nome de pasta.']},"All files":{msgid:"All files",msgstr:["Todos os arquivos"]},Choose:{msgid:"Choose",msgstr:["Escolher"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Escolher arquivo}"]},Copy:{msgid:"Copy",msgstr:["Copiar"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiar para {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Não foi possível criar a nova pasta"]},"Create directory":{msgid:"Create directory",msgstr:["Criar diretório"]},"Current view selector":{msgid:"Current view selector",msgstr:["Seletor de visualização atual"]},Favorites:{msgid:"Favorites",msgstr:["Favoritos"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Os arquivos e pastas marcados como favoritos aparecerão aqui."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Arquivos e pastas que você modificou recentemente aparecerão aqui."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrar lista de arquivos"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["O nome da pasta não pode ficar vazio."]},Home:{msgid:"Home",msgstr:["Home"]},Modified:{msgid:"Modified",msgstr:["Modificado"]},Move:{msgid:"Move",msgstr:["Mover"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mover para {target}"]},Name:{msgid:"Name",msgstr:["Nome"]},New:{msgid:"New",msgstr:["Novo"]},"New folder":{msgid:"New folder",msgstr:["Nova pasta"]},"New folder name":{msgid:"New folder name",msgstr:["Novo nome de pasta"]},"No files in here":{msgid:"No files in here",msgstr:["Nenhum arquivo aqui"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nenhum arquivo correspondente ao seu filtro foi encontrado."]},"No matching files":{msgid:"No matching files",msgstr:["Nenhum arquivo correspondente"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"Select all entries":{msgid:"Select all entries",msgstr:["Selecione todas as entradas"]},"Select entry":{msgid:"Select entry",msgstr:["Selecione a entrada"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Selecione a linha para {nodename}"]},Size:{msgid:"Size",msgstr:["Tamanho"]},Undo:{msgid:"Undo",msgstr:["Desfazer"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Carregue algum conteúdo ou sincronize com seus dispositivos!"]}}}}},{locale:"pt_PT",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)","Content-Type":"text/plain; charset=UTF-8",Language:"pt_PT","Plural-Forms":"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Portuguese (Portugal) (https://app.transifex.com/nextcloud/teams/64236/pt_PT/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: pt_PT\nPlural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Anular"]}}}}},{locale:"ro",json:{charset:"utf-8",headers:{"Last-Translator":"Daniel MD <dmihaidumitru@gmail.com>, 2023","Language-Team":"Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)","Content-Type":"text/plain; charset=UTF-8",Language:"ro","Plural-Forms":"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nDaniel MD <dmihaidumitru@gmail.com>, 2023\n"},msgstr:["Last-Translator: Daniel MD <dmihaidumitru@gmail.com>, 2023\nLanguage-Team: Romanian (https://app.transifex.com/nextcloud/teams/64236/ro/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ro\nPlural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" este un nume de director invalid.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" nu este un nume de director permis']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" nu este permis în numele unui director.']},"All files":{msgid:"All files",msgstr:["Toate fișierele"]},Choose:{msgid:"Choose",msgstr:["Alege"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Alege {file}"]},Copy:{msgid:"Copy",msgstr:["Copiază"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Copiază în {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Nu s-a putut crea noul director"]},"Create directory":{msgid:"Create directory",msgstr:["Creează director"]},"Current view selector":{msgid:"Current view selector",msgstr:["Selectorul curent al vizualizării"]},Favorites:{msgid:"Favorites",msgstr:["Favorite"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Fișiere și directoare pe care le marcați ca favorite vor apărea aici."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Fișiere și directoare pe care le-ați modificat recent vor apărea aici."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrează lista de fișiere"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Numele de director nu poate fi necompletat."]},Home:{msgid:"Home",msgstr:["Acasă"]},Modified:{msgid:"Modified",msgstr:["Modificat"]},Move:{msgid:"Move",msgstr:["Mută"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Mută către {target}"]},Name:{msgid:"Name",msgstr:["Nume"]},New:{msgid:"New",msgstr:["Nou"]},"New folder":{msgid:"New folder",msgstr:["Director nou"]},"New folder name":{msgid:"New folder name",msgstr:["Numele noului director"]},"No files in here":{msgid:"No files in here",msgstr:["Nu există fișiere"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Nu există fișiere potrivite pentru filtrul selectat"]},"No matching files":{msgid:"No matching files",msgstr:["Nu există fișiere potrivite"]},Recent:{msgid:"Recent",msgstr:["Recente"]},"Select all entries":{msgid:"Select all entries",msgstr:["Selectează toate înregistrările"]},"Select entry":{msgid:"Select entry",msgstr:["Selectează înregistrarea"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Selectează rândul pentru {nodename}"]},Size:{msgid:"Size",msgstr:["Mărime"]},Undo:{msgid:"Undo",msgstr:["Anulează"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Încărcați conținut sau sincronizați cu dispozitivele dumneavoastră!"]}}}}},{locale:"ru",json:{charset:"utf-8",headers:{"Last-Translator":"Alex <kekcuha@gmail.com>, 2024","Language-Team":"Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)","Content-Type":"text/plain; charset=UTF-8",Language:"ru","Plural-Forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMax Smith <sevinfolds@gmail.com>, 2023\nashed <craysy@gmail.com>, 2023\nAlex <kekcuha@gmail.com>, 2024\n"},msgstr:["Last-Translator: Alex <kekcuha@gmail.com>, 2024\nLanguage-Team: Russian (https://app.transifex.com/nextcloud/teams/64236/ru/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ru\nPlural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["«{name}» — недопустимое имя папки."]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["«{name}» не является разрешенным именем папки"]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["Символ «/» не допускается внутри имени папки."]},"All files":{msgid:"All files",msgstr:["Все файлы"]},Choose:{msgid:"Choose",msgstr:["Выбрать"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Выбрать {file}"]},Copy:{msgid:"Copy",msgstr:["Копировать"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Копировать в «{target}»"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Не удалось создать новую папку"]},"Create directory":{msgid:"Create directory",msgstr:["Создать папку"]},"Current view selector":{msgid:"Current view selector",msgstr:["Переключатель текущего вида"]},Favorites:{msgid:"Favorites",msgstr:["Избранное"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Здесь появятся файлы и папки, которые вы пометили как избранные."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Здесь будут отображаться файлы и папки, которые вы недавно изменили."]},"Filter file list":{msgid:"Filter file list",msgstr:["Фильтровать список файлов"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Имя папки не может быть пустым."]},Home:{msgid:"Home",msgstr:["Home"]},Modified:{msgid:"Modified",msgstr:["Модифицированный"]},Move:{msgid:"Move",msgstr:["Переместить"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Перейти к {target}"]},Name:{msgid:"Name",msgstr:["Имя"]},New:{msgid:"New",msgstr:["Новый"]},"New folder":{msgid:"New folder",msgstr:["Новая папка"]},"New folder name":{msgid:"New folder name",msgstr:["Новое имя папки"]},"No files in here":{msgid:"No files in here",msgstr:["Здесь нет файлов"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Файлы, соответствующие вашему фильтру, не найдены."]},"No matching files":{msgid:"No matching files",msgstr:["Нет подходящих файлов"]},Recent:{msgid:"Recent",msgstr:["Недавний"]},"Select all entries":{msgid:"Select all entries",msgstr:["Выбрать все записи"]},"Select entry":{msgid:"Select entry",msgstr:["Выберите запись"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Выберите строку для {nodename}"]},Size:{msgid:"Size",msgstr:["Размер"]},Undo:{msgid:"Undo",msgstr:["Отменить"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Загрузите контент или синхронизируйте его со своими устройствами!"]}}}}},{locale:"sc",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)","Content-Type":"text/plain; charset=UTF-8",Language:"sc","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Sardinian (https://app.transifex.com/nextcloud/teams/64236/sc/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sc\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"si",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)","Content-Type":"text/plain; charset=UTF-8",Language:"si","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Sinhala (https://app.transifex.com/nextcloud/teams/64236/si/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: si\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["පෙරසේ"]}}}}},{locale:"sk_SK",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)","Content-Type":"text/plain; charset=UTF-8",Language:"sk_SK","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Slovak (Slovakia) (https://app.transifex.com/nextcloud/teams/64236/sk_SK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sk_SK\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Späť"]}}}}},{locale:"sl",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)","Content-Type":"text/plain; charset=UTF-8",Language:"sl","Plural-Forms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Slovenian (https://app.transifex.com/nextcloud/teams/64236/sl/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sl\nPlural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Razveljavi"]}}}}},{locale:"sq",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)","Content-Type":"text/plain; charset=UTF-8",Language:"sq","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Albanian (https://app.transifex.com/nextcloud/teams/64236/sq/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sq\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"sr",json:{charset:"utf-8",headers:{"Last-Translator":"Иван Пешић, 2024","Language-Team":"Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nИван Пешић, 2024\n"},msgstr:["Last-Translator: Иван Пешић, 2024\nLanguage-Team: Serbian (https://app.transifex.com/nextcloud/teams/64236/sr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["„{name}” није исправно име фолдера."]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["„{name}” није дозвољено име за фолдер."]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["„/” није дозвољено унутар имена фолдера."]},"All files":{msgid:"All files",msgstr:["Сви фајлови"]},Choose:{msgid:"Choose",msgstr:["Изаберите"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Изаберите {file}"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Изаберите %n фајл","Изаберите %n фајла","Изаберите %n фајлова"]},Copy:{msgid:"Copy",msgstr:["Копирај"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Копирај у {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Није могао да се креира нови фолдер"]},"Create directory":{msgid:"Create directory",msgstr:["Креирај директоријум"]},"Current view selector":{msgid:"Current view selector",msgstr:["Бирач тренутног приказа"]},Favorites:{msgid:"Favorites",msgstr:["Омиљено"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Овде ће се појавити фајлови и фолдери које сте означили као омиљене."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Овде ће се појавити фајлови и фолдери који се се недавно изменили."]},"Filter file list":{msgid:"Filter file list",msgstr:["Фитрирање листе фајлова"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Име фолдера не може бити празно."]},Home:{msgid:"Home",msgstr:["Почетак"]},Modified:{msgid:"Modified",msgstr:["Измењено"]},Move:{msgid:"Move",msgstr:["Премести"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Премести у {target}"]},Name:{msgid:"Name",msgstr:["Име"]},New:{msgid:"New",msgstr:["Ново"]},"New folder":{msgid:"New folder",msgstr:["Нови фолдер"]},"New folder name":{msgid:"New folder name",msgstr:["Име новог фолдера"]},"No files in here":{msgid:"No files in here",msgstr:["Овде нема фајлова"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Није пронађен ниједан фајл који задовољава ваш филтер."]},"No matching files":{msgid:"No matching files",msgstr:["Нема таквих фајлова"]},Recent:{msgid:"Recent",msgstr:["Скорашње"]},"Select all entries":{msgid:"Select all entries",msgstr:["Изаберите све ставке"]},"Select entry":{msgid:"Select entry",msgstr:["Изаберите ставку"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Изаберите ред за {nodename}"]},Size:{msgid:"Size",msgstr:["Величина"]},Undo:{msgid:"Undo",msgstr:["Поништи"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Отпремите нешто или синхронизујте са својим уређајима!"]}}}}},{locale:"sr@latin",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)","Content-Type":"text/plain; charset=UTF-8",Language:"sr@latin","Plural-Forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Serbian (Latin) (https://app.transifex.com/nextcloud/teams/64236/sr@latin/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sr@latin\nPlural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"sv",json:{charset:"utf-8",headers:{"Last-Translator":"Magnus Höglund, 2024","Language-Team":"Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)","Content-Type":"text/plain; charset=UTF-8",Language:"sv","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nMagnus Höglund, 2024\n"},msgstr:["Last-Translator: Magnus Höglund, 2024\nLanguage-Team: Swedish (https://app.transifex.com/nextcloud/teams/64236/sv/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sv\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" är ett ogiltigt mappnamn.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" är inte ett tillåtet mappnamn']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" är inte tillåtet i ett mappnamn.']},"All files":{msgid:"All files",msgstr:["Alla filer"]},Choose:{msgid:"Choose",msgstr:["Välj"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Välj {file}"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Välj %n fil","Välj %n filer"]},Copy:{msgid:"Copy",msgstr:["Kopiera"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Kopiera till {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Kunde inte skapa den nya mappen"]},"Create directory":{msgid:"Create directory",msgstr:["Skapa katalog"]},"Current view selector":{msgid:"Current view selector",msgstr:["Aktuell vyväljare"]},Favorites:{msgid:"Favorites",msgstr:["Favoriter"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Filer och mappar som du markerar som favorit kommer att visas här."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Filer och mappar som du nyligen ändrat kommer att visas här."]},"Filter file list":{msgid:"Filter file list",msgstr:["Filtrera fillistan"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Mappnamnet får inte vara tomt."]},Home:{msgid:"Home",msgstr:["Hem"]},Modified:{msgid:"Modified",msgstr:["Ändrad"]},Move:{msgid:"Move",msgstr:["Flytta"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Flytta till {target}"]},Name:{msgid:"Name",msgstr:["Namn"]},New:{msgid:"New",msgstr:["Ny"]},"New folder":{msgid:"New folder",msgstr:["Ny mapp"]},"New folder name":{msgid:"New folder name",msgstr:["Nytt mappnamn"]},"No files in here":{msgid:"No files in here",msgstr:["Inga filer här"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Inga filer som matchar ditt filter hittades."]},"No matching files":{msgid:"No matching files",msgstr:["Inga matchande filer"]},Recent:{msgid:"Recent",msgstr:["Nyligen"]},"Select all entries":{msgid:"Select all entries",msgstr:["Välj alla poster"]},"Select entry":{msgid:"Select entry",msgstr:["Välj post"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Välj raden för {nodename}"]},Size:{msgid:"Size",msgstr:["Storlek"]},Undo:{msgid:"Undo",msgstr:["Ångra"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Ladda upp lite innehåll eller synkronisera med dina enheter!"]}}}}},{locale:"sw",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)","Content-Type":"text/plain; charset=UTF-8",Language:"sw","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Swahili (https://app.transifex.com/nextcloud/teams/64236/sw/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: sw\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"ta",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)","Content-Type":"text/plain; charset=UTF-8",Language:"ta","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Tamil (https://app.transifex.com/nextcloud/teams/64236/ta/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ta\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["செயல்தவிர்"]}}}}},{locale:"th_TH",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)","Content-Type":"text/plain; charset=UTF-8",Language:"th_TH","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Thai (Thailand) (https://app.transifex.com/nextcloud/teams/64236/th_TH/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: th_TH\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["เลิกทำ"]}}}}},{locale:"tk",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)","Content-Type":"text/plain; charset=UTF-8",Language:"tk","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Turkmen (https://app.transifex.com/nextcloud/teams/64236/tk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tk\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"tr",json:{charset:"utf-8",headers:{"Last-Translator":"Kaya Zeren <kayazeren@gmail.com>, 2024","Language-Team":"Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)","Content-Type":"text/plain; charset=UTF-8",Language:"tr","Plural-Forms":"nplurals=2; plural=(n > 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nKaya Zeren <kayazeren@gmail.com>, 2024\n"},msgstr:["Last-Translator: Kaya Zeren <kayazeren@gmail.com>, 2024\nLanguage-Team: Turkish (https://app.transifex.com/nextcloud/teams/64236/tr/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: tr\nPlural-Forms: nplurals=2; plural=(n > 1);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" geçersiz bir klasör adı.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" izin verilen bir klasör adı değil']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" karakteri klasör adında kullanılamaz.']},"All files":{msgid:"All files",msgstr:["Tüm dosyalar"]},Choose:{msgid:"Choose",msgstr:["Seçin"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["{file} seçin"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["%n dosya seçin","%n dosya seçin"]},Copy:{msgid:"Copy",msgstr:["Kopyala"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["{target} üzerine kopyala"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Yeni klasör oluşturulamadı"]},"Create directory":{msgid:"Create directory",msgstr:["Klasör oluştur"]},"Current view selector":{msgid:"Current view selector",msgstr:["Geçerli görünüm seçici"]},Favorites:{msgid:"Favorites",msgstr:["Sık kullanılanlar"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Sık kullanılan olarak seçtiğiniz dosyalar burada görüntülenir."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Son zamanlarda değiştirdiğiniz dosya ve klasörler burada görüntülenir."]},"Filter file list":{msgid:"Filter file list",msgstr:["Dosya listesini süz"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Klasör adı boş olamaz."]},Home:{msgid:"Home",msgstr:["Giriş"]},Modified:{msgid:"Modified",msgstr:["Değiştirilme"]},Move:{msgid:"Move",msgstr:["Taşı"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["{target} üzerine taşı"]},Name:{msgid:"Name",msgstr:["Ad"]},New:{msgid:"New",msgstr:["Yeni"]},"New folder":{msgid:"New folder",msgstr:["Yeni klasör"]},"New folder name":{msgid:"New folder name",msgstr:["Yeni klasör adı"]},"No files in here":{msgid:"No files in here",msgstr:["Burada herhangi bir dosya yok"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Süzgece uyan bir dosya bulunamadı."]},"No matching files":{msgid:"No matching files",msgstr:["Eşleşen bir dosya yok"]},Recent:{msgid:"Recent",msgstr:["Son kullanılanlar"]},"Select all entries":{msgid:"Select all entries",msgstr:["Tüm kayıtları seç"]},"Select entry":{msgid:"Select entry",msgstr:["Kaydı seç"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["{nodename} satırını seçin"]},Size:{msgid:"Size",msgstr:["Boyut"]},Undo:{msgid:"Undo",msgstr:["Geri al"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Bazı içerikler yükleyin ya da aygıtlarınızla eşitleyin!"]}}}}},{locale:"ug",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)","Content-Type":"text/plain; charset=UTF-8",Language:"ug","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Uyghur (https://app.transifex.com/nextcloud/teams/64236/ug/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ug\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"uk",json:{charset:"utf-8",headers:{"Last-Translator":"O St <oleksiy.stasevych@gmail.com>, 2024","Language-Team":"Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)","Content-Type":"text/plain; charset=UTF-8",Language:"uk","Plural-Forms":"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nO St <oleksiy.stasevych@gmail.com>, 2024\n"},msgstr:["Last-Translator: O St <oleksiy.stasevych@gmail.com>, 2024\nLanguage-Team: Ukrainian (https://app.transifex.com/nextcloud/teams/64236/uk/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uk\nPlural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:['"{name}" є недійсною назвою для каталогу.']},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:['"{name}" не є дозволеною назвою для каталогу.']},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:['"/" не дозволено у назві каталогу.']},"All files":{msgid:"All files",msgstr:["Всі файли"]},Choose:{msgid:"Choose",msgstr:["Вибрати"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["Вибрати {file}"]},"Choose %n file":{msgid:"Choose %n file",msgid_plural:"Choose %n files",msgstr:["Вибрати %n файл","Вибрати %n файли","Вибрати %n файлів","Вибрати %n файлів"]},Copy:{msgid:"Copy",msgstr:["Копіювати"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["Копіювати до {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["Не вдалося створити новий каталог"]},"Create directory":{msgid:"Create directory",msgstr:["Створити каталог"]},"Current view selector":{msgid:"Current view selector",msgstr:["Вибір подання"]},Favorites:{msgid:"Favorites",msgstr:["Із зірочкою"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["Тут показуватимуться файли та каталоги, які ви позначите зірочкою."]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["Тут показуватимуться файли та каталоги, які було нещодавно змінено."]},"Filter file list":{msgid:"Filter file list",msgstr:["Фільтрувати список файлів"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["Ім'я каталогу не може бути порожнім."]},Home:{msgid:"Home",msgstr:["Домівка"]},Modified:{msgid:"Modified",msgstr:["Змінено"]},Move:{msgid:"Move",msgstr:["Перемістити"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["Перемістити до {target}"]},Name:{msgid:"Name",msgstr:["Ім'я"]},New:{msgid:"New",msgstr:["Новий"]},"New folder":{msgid:"New folder",msgstr:["Новий каталог"]},"New folder name":{msgid:"New folder name",msgstr:["Ім'я нового каталогу"]},"No files in here":{msgid:"No files in here",msgstr:["Тут відсутні файли"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["Відсутні збіги за фільтром."]},"No matching files":{msgid:"No matching files",msgstr:["Відсутні збіги файлів."]},Recent:{msgid:"Recent",msgstr:["Останні"]},"Select all entries":{msgid:"Select all entries",msgstr:["Вибрати всі записи"]},"Select entry":{msgid:"Select entry",msgstr:["Вибрати запис"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["Вибрати рядок для {nodename}"]},Size:{msgid:"Size",msgstr:["Розмір"]},Undo:{msgid:"Undo",msgstr:["Повернути"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["Завантажте вміст або синхронізуйте з вашим пристроєм!"]}}}}},{locale:"ur_PK",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)","Content-Type":"text/plain; charset=UTF-8",Language:"ur_PK","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Urdu (Pakistan) (https://app.transifex.com/nextcloud/teams/64236/ur_PK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: ur_PK\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"uz",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)","Content-Type":"text/plain; charset=UTF-8",Language:"uz","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Uzbek (https://app.transifex.com/nextcloud/teams/64236/uz/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: uz\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}},{locale:"vi",json:{charset:"utf-8",headers:{"Last-Translator":"Joas Schilling, 2023","Language-Team":"Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)","Content-Type":"text/plain; charset=UTF-8",Language:"vi","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJoas Schilling, 2023\n"},msgstr:["Last-Translator: Joas Schilling, 2023\nLanguage-Team: Vietnamese (https://app.transifex.com/nextcloud/teams/64236/vi/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: vi\nPlural-Forms: nplurals=1; plural=0;\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:["Hoàn tác"]}}}}},{locale:"zh_CN",json:{charset:"utf-8",headers:{"Last-Translator":"Eric, 2023","Language-Team":"Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_CN","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nken, 2023\nEric, 2023\n"},msgstr:["Last-Translator: Eric, 2023\nLanguage-Team: Chinese (China) (https://app.transifex.com/nextcloud/teams/64236/zh_CN/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_CN\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid folder name.':{msgid:'"{name}" is an invalid folder name.',msgstr:["“{name}”是无效的文件夹名称。"]},'"{name}" is not an allowed folder name':{msgid:'"{name}" is not an allowed folder name',msgstr:["“{name}”不是允许的文件夹名称"]},'"/" is not allowed inside a folder name.':{msgid:'"/" is not allowed inside a folder name.',msgstr:["文件夹名称中不允许包含“/”。"]},"All files":{msgid:"All files",msgstr:["所有文件"]},Choose:{msgid:"Choose",msgstr:["选择"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["选择 {file}"]},Copy:{msgid:"Copy",msgstr:["复制"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["复制到 {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["无法创建新文件夹"]},"Create directory":{msgid:"Create directory",msgstr:["创建目录"]},"Current view selector":{msgid:"Current view selector",msgstr:["当前视图选择器"]},Favorites:{msgid:"Favorites",msgstr:["最爱"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您标记为最爱的文件与文件夹会显示在这里"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的文件与文件夹会显示在这里"]},"Filter file list":{msgid:"Filter file list",msgstr:["过滤文件列表"]},"Folder name cannot be empty.":{msgid:"Folder name cannot be empty.",msgstr:["文件夹名称不能为空。"]},Home:{msgid:"Home",msgstr:["主目录"]},Modified:{msgid:"Modified",msgstr:["已修改"]},Move:{msgid:"Move",msgstr:["移动"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["移动至 {target}"]},Name:{msgid:"Name",msgstr:["名称"]},New:{msgid:"New",msgstr:["新"]},"New folder":{msgid:"New folder",msgstr:["新文件夹"]},"New folder name":{msgid:"New folder name",msgstr:["新文件夹名称"]},"No files in here":{msgid:"No files in here",msgstr:["此处无文件"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["找不到符合您过滤条件的文件"]},"No matching files":{msgid:"No matching files",msgstr:["无符合的文件"]},Recent:{msgid:"Recent",msgstr:["最近"]},"Select all entries":{msgid:"Select all entries",msgstr:["选择所有条目"]},"Select entry":{msgid:"Select entry",msgstr:["选择条目"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["选择 {nodename} 的列"]},Size:{msgid:"Size",msgstr:["大小"]},Undo:{msgid:"Undo",msgstr:[" 撤消"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["上传一些项目或与您的设备同步!"]}}}}},{locale:"zh_HK",json:{charset:"utf-8",headers:{"Last-Translator":"Café Tango, 2023","Language-Team":"Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_HK","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\nCafé Tango, 2023\n"},msgstr:["Last-Translator: Café Tango, 2023\nLanguage-Team: Chinese (Hong Kong) (https://app.transifex.com/nextcloud/teams/64236/zh_HK/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_HK\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:["「{name}」是無效的檔案名稱。"]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:["「{name}」並非允許的檔案類型"]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:['檔案名稱中不允許使用 "/"。']},"All files":{msgid:"All files",msgstr:["所有檔案"]},Choose:{msgid:"Choose",msgstr:["選擇"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["選擇 {file}"]},Copy:{msgid:"Copy",msgstr:["複製"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["複製到 {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["無法建立新資料夾"]},"Create directory":{msgid:"Create directory",msgstr:["建立目錄"]},"Current view selector":{msgid:"Current view selector",msgstr:["目前檢視選取器"]},Favorites:{msgid:"Favorites",msgstr:["最愛"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["檔案名稱不能為空。"]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["檔案挑選器部分"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您標記為最愛的檔案與資料夾將會顯示在此處。"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的檔案與資料夾將會顯示在此處。"]},"Filter file list":{msgid:"Filter file list",msgstr:["過濾檔案清單"]},Home:{msgid:"Home",msgstr:["首頁"]},"MIME type {mime}":{msgid:"MIME type {mime}",msgstr:["MIME 類型 {mime}"]},Modified:{msgid:"Modified",msgstr:["已修改"]},Move:{msgid:"Move",msgstr:["移動"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["移動至 {target}"]},Name:{msgid:"Name",msgstr:["名稱"]},New:{msgid:"New",msgstr:["新"]},"New folder":{msgid:"New folder",msgstr:["新資料夾"]},"New folder name":{msgid:"New folder name",msgstr:["新資料夾名稱"]},"No files in here":{msgid:"No files in here",msgstr:["此處無檔案"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["找不到符合您過濾條件的檔案。"]},"No matching files":{msgid:"No matching files",msgstr:["無符合的檔案"]},Recent:{msgid:"Recent",msgstr:["最近"]},"Select all entries":{msgid:"Select all entries",msgstr:["選取所有條目"]},"Select entry":{msgid:"Select entry",msgstr:["選取條目"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["選取 {nodename} 的列"]},Size:{msgid:"Size",msgstr:["大小"]},Undo:{msgid:"Undo",msgstr:["還原"]},unknown:{msgid:"unknown",msgstr:["不詳"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["上傳一些內容或與您的裝置同步"]}}}}},{locale:"zh_TW",json:{charset:"utf-8",headers:{"Last-Translator":"黃柏諺 <s8321414@gmail.com>, 2023","Language-Team":"Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)","Content-Type":"text/plain; charset=UTF-8",Language:"zh_TW","Plural-Forms":"nplurals=1; plural=0;"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nJohn Molakvoæ <skjnldsv@protonmail.com>, 2023\n黃柏諺 <s8321414@gmail.com>, 2023\n"},msgstr:["Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2023\nLanguage-Team: Chinese (Taiwan) (https://app.transifex.com/nextcloud/teams/64236/zh_TW/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zh_TW\nPlural-Forms: nplurals=1; plural=0;\n"]},'"{name}" is an invalid file name.':{msgid:'"{name}" is an invalid file name.',msgstr:["「{name}」是無效的檔案名稱。"]},'"{name}" is not an allowed filetype':{msgid:'"{name}" is not an allowed filetype',msgstr:["「{name}」並非允許的檔案類型"]},'"/" is not allowed inside a file name.':{msgid:'"/" is not allowed inside a file name.',msgstr:["檔案名稱中不允許使用「/」。"]},"All files":{msgid:"All files",msgstr:["所有檔案"]},Choose:{msgid:"Choose",msgstr:["選擇"]},"Choose {file}":{msgid:"Choose {file}",msgstr:["選擇 {file}"]},Copy:{msgid:"Copy",msgstr:["複製"]},"Copy to {target}":{msgid:"Copy to {target}",msgstr:["複製到 {target}"]},"Could not create the new folder":{msgid:"Could not create the new folder",msgstr:["無法建立新資料夾"]},"Create directory":{msgid:"Create directory",msgstr:["建立目錄"]},"Current view selector":{msgid:"Current view selector",msgstr:["目前檢視選取器"]},Favorites:{msgid:"Favorites",msgstr:["最愛"]},"File name cannot be empty.":{msgid:"File name cannot be empty.",msgstr:["檔案名稱不能為空。"]},"Filepicker sections":{msgid:"Filepicker sections",msgstr:["檔案挑選器選取"]},"Files and folders you mark as favorite will show up here.":{msgid:"Files and folders you mark as favorite will show up here.",msgstr:["您標記為最愛的檔案與資料夾將會顯示在此處。"]},"Files and folders you recently modified will show up here.":{msgid:"Files and folders you recently modified will show up here.",msgstr:["您最近修改的檔案與資料夾將會顯示在此處。"]},"Filter file list":{msgid:"Filter file list",msgstr:["過濾檔案清單"]},Home:{msgid:"Home",msgstr:["家"]},"Mime type {mime}":{msgid:"Mime type {mime}",msgstr:["Mime type {mime}"]},Modified:{msgid:"Modified",msgstr:["已修改"]},Move:{msgid:"Move",msgstr:["移動"]},"Move to {target}":{msgid:"Move to {target}",msgstr:["移動至 {target}"]},Name:{msgid:"Name",msgstr:["名稱"]},New:{msgid:"New",msgstr:["新"]},"New folder":{msgid:"New folder",msgstr:["新資料夾"]},"New folder name":{msgid:"New folder name",msgstr:["新資料夾名稱"]},"No files in here":{msgid:"No files in here",msgstr:["此處無檔案"]},"No files matching your filter were found.":{msgid:"No files matching your filter were found.",msgstr:["找不到符合您過濾條件的檔案。"]},"No matching files":{msgid:"No matching files",msgstr:["無符合的檔案"]},Recent:{msgid:"Recent",msgstr:["最近"]},"Select all entries":{msgid:"Select all entries",msgstr:["選取所有條目"]},"Select entry":{msgid:"Select entry",msgstr:["選取條目"]},"Select the row for {nodename}":{msgid:"Select the row for {nodename}",msgstr:["選取 {nodename} 的列"]},Size:{msgid:"Size",msgstr:["大小"]},Undo:{msgid:"Undo",msgstr:["復原"]},unknown:{msgid:"unknown",msgstr:["未知"]},"Upload some content or sync with your devices!":{msgid:"Upload some content or sync with your devices!",msgstr:["上傳一些內容或與您的裝置同步"]}}}}},{locale:"zu_ZA",json:{charset:"utf-8",headers:{"Last-Translator":"Transifex Bot <>, 2023","Language-Team":"Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)","Content-Type":"text/plain; charset=UTF-8",Language:"zu_ZA","Plural-Forms":"nplurals=2; plural=(n != 1);"},translations:{"":{"":{msgid:"",comments:{translator:"\nTranslators:\nTransifex Bot <>, 2023\n"},msgstr:["Last-Translator: Transifex Bot <>, 2023\nLanguage-Team: Zulu (South Africa) (https://app.transifex.com/nextcloud/teams/64236/zu_ZA/)\nContent-Type: text/plain; charset=UTF-8\nLanguage: zu_ZA\nPlural-Forms: nplurals=2; plural=(n != 1);\n"]},Undo:{msgid:"Undo",comments:{reference:"lib/toast.ts:223"},msgstr:[""]}}}}}].map((e=>a.addTranslation(e.locale,e.json)));const s=a.build(),o=s.ngettext.bind(s),i=s.gettext.bind(s);var l=(e=>(e[e.OFF="off"]="OFF",e[e.POLITE="polite"]="POLITE",e[e.ASSERTIVE="assertive"]="ASSERTIVE",e))(l||{});const u=7e3;function c(e,t){if(t=Object.assign({timeout:u,isHTML:!1,type:void 0,selector:void 0,onRemove:()=>{},onClick:void 0,close:!0},t),"string"==typeof e&&!t.isHTML){const t=document.createElement("div");t.innerHTML=e,e=t.innerText}let n=t.type??"";"function"==typeof t.onClick&&(n+=" toast-with-click ");const a=e instanceof Node;let s=l.POLITE;t.ariaLive?s=t.ariaLive:("toast-error"===t.type||"toast-undo"===t.type)&&(s=l.ASSERTIVE);const o=r({[a?"node":"text"]:e,duration:t.timeout,callback:t.onRemove,onClick:t.onClick,close:t.close,gravity:"top",selector:t.selector,position:"right",backgroundColor:"",className:"dialogs "+n,escapeMarkup:!t.isHTML,ariaLive:s});return o.showToast(),o}function p(e,t){return c(e,{...t,type:"toast-error"})}function d(e,t){return c(e,{...t,type:"toast-success"})}},64024:(e,t,n)=>{"use strict";n.d(t,{K9:()=>o,fn:()=>c,s$:()=>s.h,x2:()=>s.k});var r=n(43935),a=n(20144),s=n(76474);var o=(e=>(e[e.Choose=1]="Choose",e[e.Move=2]="Move",e[e.Copy=3]="Copy",e[e.CopyMove=4]="CopyMove",e[e.Custom=5]="Custom",e))(o||{});class i extends Error{}class l{title;multiSelect;mimeTypeFilter;directoriesAllowed;buttons;path;filter;container;constructor(e,t,n,r,a,s,o,i){this.title=e,this.multiSelect=t,this.mimeTypeFilter=n,this.directoriesAllowed=r,this.path=s,this.filter=o,this.buttons=a,this.container=i}async pick(){const{FilePickerVue:e}=await n.e("node_modules_nextcloud_dialogs_dist_chunks_index-1zThpkd0_mjs").then(n.bind(n,84720));return new Promise(((t,n)=>{((e,t,n=(()=>{}))=>{const r=document.createElement("div");(document.querySelector(t?.container)||document.body).appendChild(r);const s=new a.default({el:r,name:"VueDialogHelper",render:r=>r(e,{props:t,on:{close:(...e)=>{n(...e.map((e=>(0,a.toRaw)(e)))),s.$destroy()}}})})})(e,{allowPickDirectory:this.directoriesAllowed,buttons:this.buttons,container:this.container,name:this.title,path:this.path,mimetypeFilter:this.mimeTypeFilter,multiselect:this.multiSelect,filterFn:this.filter},((...e)=>{const[r]=e;Array.isArray(r)&&0!==r.length?this.multiSelect?t(r.map((e=>e.path))):t(r[0]?.path||"/"):n(new i("FilePicker: No nodes selected"))}))}))}}class u{title;multiSelect=!1;mimeTypeFilter=[];directoriesAllowed=!1;path;filter;buttons=[];container;constructor(e){this.title=e}setContainer(e){return this.container=e,this}setMultiSelect(e){return this.multiSelect=e,this}addMimeTypeFilter(e){return this.mimeTypeFilter.push(e),this}setMimeTypeFilter(e){return this.mimeTypeFilter=e,this}addButton(e){return"function"==typeof this.buttons&&(console.warn("FilePicker buttons were set to factory, now overwritten with button object."),this.buttons=[]),this.buttons.push(e),this}setButtonFactory(e){return this.buttons=e,this}setType(e){return this.buttons=(t,n)=>{const a=[],o=t?.[0]?.attributes?.displayName||t?.[0]?.basename,i=o||(0,r.basename)(n);if(1===e){let e=(0,s.t)("Choose");1===t.length?e=(0,s.t)("Choose {file}",{file:o}):this.multiSelect&&(e=(0,s.n)("Choose %n file","Choose %n files",t.length)),a.push({callback:()=>{},type:"primary",label:e})}return(4===e||3===e)&&a.push({callback:()=>{},label:i?(0,s.t)("Copy to {target}",{target:i}):(0,s.t)("Copy"),type:"primary",icon:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-folder-multiple" viewBox="0 0 24 24"><path d="M22,4H14L12,2H6A2,2 0 0,0 4,4V16A2,2 0 0,0 6,18H22A2,2 0 0,0 24,16V6A2,2 0 0,0 22,4M2,6H0V11H0V20A2,2 0 0,0 2,22H20V20H2V6Z" /></svg>'}),(2===e||4===e)&&a.push({callback:()=>{},label:i?(0,s.t)("Move to {target}",{target:i}):(0,s.t)("Move"),type:2===e?"primary":"secondary",icon:'<svg xmlns="http://www.w3.org/2000/svg" id="mdi-folder-move" viewBox="0 0 24 24"><path d="M14,18V15H10V11H14V8L19,13M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z" /></svg>'}),a},this}allowDirectories(e=!0){return this.directoriesAllowed=e,this}startAt(e){return this.path=e,this}setFilter(e){return this.filter=e,this}build(){return new l(this.title,this.multiSelect,this.mimeTypeFilter,this.directoriesAllowed,this.buttons,this.path,this.filter)}}function c(e){return new u(e)}},69183:(e,t,n)=>{"use strict";n.d(t,{Ld:()=>u,j8:()=>p,r1:()=>c});var r=n(77907),a=n(92426);class s{bus;constructor(e){"function"==typeof e.getVersion&&r(e.getVersion())?a(e.getVersion())!==a(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.1.0"}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 o{handlers=new Map;getVersion(){return"3.1.0"}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)}catch(e){console.error("could not invoke event listener",e)}}))}}let i=null;function l(){return null!==i?i:"undefined"==typeof window?new Proxy({},{get:()=>()=>console.error("Window not available, EventBus can not be established!")}):(void 0!==window.OC&&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),i=void 0!==window?._nc_event_bus?new s(window._nc_event_bus):window._nc_event_bus=new o,i)}function u(e,t){l().subscribe(e,t)}function c(e,t){l().unsubscribe(e,t)}function p(e,t){l().emit(e,t)}},5656:(e,t,n)=>{"use strict";n.d(t,{$B:()=>O,Qq:()=>y,RL:()=>M,Tv:()=>E,_o:()=>P,cd:()=>Se,h4:()=>v,h7:()=>S,pC:()=>I,qq:()=>T,rp:()=>R,sS:()=>g,tB:()=>N,y3:()=>b});var r=n(77958),a=n(17499),s=n(31352),o=n(43935),i=n(65358),l=n(79753),u=n(14596);const c=null===(p=(0,r.ts)())?(0,a.IY)().setApp("files").build():(0,a.IY)().setApp("files").setUid(p.uid).build();var p;class d{_entries=[];registerEntry(e){this.validateEntry(e),this._entries.push(e)}unregisterEntry(e){const t="string"==typeof e?this.getEntryIndex(e):this.getEntryIndex(e.id);-1!==t?this._entries.splice(t,1):c.warn("Entry not found, nothing removed",{entry:e,entries:this.getEntries()})}getEntries(e){return e?this._entries.filter((t=>"function"!=typeof t.enabled||t.enabled(e))):this._entries}getEntryIndex(e){return this._entries.findIndex((t=>t.id===e))}validateEntry(e){if(!e.id||!e.displayName||!e.iconSvgInline&&!e.iconClass||!e.handler)throw new Error("Invalid entry");if("string"!=typeof e.id||"string"!=typeof e.displayName)throw new Error("Invalid id or displayName property");if(e.iconClass&&"string"!=typeof e.iconClass||e.iconSvgInline&&"string"!=typeof e.iconSvgInline)throw new Error("Invalid icon provided");if(void 0!==e.enabled&&"function"!=typeof e.enabled)throw new Error("Invalid enabled property");if("function"!=typeof e.handler)throw new Error("Invalid handler property");if("order"in e&&"number"!=typeof e.order)throw new Error("Invalid order property");if(-1!==this.getEntryIndex(e.id))throw new Error("Duplicate entry")}}const f=function(){return typeof window._nc_newfilemenu>"u"&&(window._nc_newfilemenu=new d,c.debug("NewFileMenu initialized")),window._nc_newfilemenu},m=["B","KB","MB","GB","TB","PB"],h=["B","KiB","MiB","GiB","TiB","PiB"];function g(e,t=!1,n=!1,r=!1){n=n&&!r,"string"==typeof e&&(e=Number(e));let a=e>0?Math.floor(Math.log(e)/Math.log(r?1e3:1024)):0;a=Math.min((n?h.length:m.length)-1,a);const o=n?h[a]:m[a];let i=(e/Math.pow(r?1e3:1024,a)).toFixed(1);return!0===t&&0===a?("0.0"!==i?"< 1 ":"0 ")+(n?h[1]:m[1]):(i=a<2?parseFloat(i).toFixed(0):parseFloat(i).toLocaleString((0,s.aj)()),i+" "+o)}class v{_header;constructor(e){this.validateHeader(e),this._header=e}get id(){return this._header.id}get order(){return this._header.order}get enabled(){return this._header.enabled}get render(){return this._header.render}get updated(){return this._header.updated}validateHeader(e){if(!e.id||!e.render||!e.updated)throw new Error("Invalid header: id, render and updated are required");if("string"!=typeof e.id)throw new Error("Invalid id property");if(void 0!==e.enabled&&"function"!=typeof e.enabled)throw new Error("Invalid enabled property");if(e.render&&"function"!=typeof e.render)throw new Error("Invalid render property");if(e.updated&&"function"!=typeof e.updated)throw new Error("Invalid updated property")}}const y=function(e){typeof window._nc_filelistheader>"u"&&(window._nc_filelistheader=[],c.debug("FileListHeaders initialized")),window._nc_filelistheader.find((t=>t.id===e.id))?c.error(`Header ${e.id} already registered`,{header:e}):window._nc_filelistheader.push(e)};var b=(e=>(e[e.NONE=0]="NONE",e[e.CREATE=4]="CREATE",e[e.READ=1]="READ",e[e.UPDATE=2]="UPDATE",e[e.DELETE=8]="DELETE",e[e.SHARE=16]="SHARE",e[e.ALL=31]="ALL",e))(b||{});const w=["d:getcontentlength","d:getcontenttype","d:getetag","d:getlastmodified","d:quota-available-bytes","d:resourcetype","nc:has-preview","nc:is-encrypted","nc:mount-type","nc:share-attributes","oc:comments-unread","oc:favorite","oc:fileid","oc:owner-display-name","oc:owner-id","oc:permissions","oc:share-types","oc:size","ocs:share-permissions"],x={d:"DAV:",nc:"http://nextcloud.org/ns",oc:"http://owncloud.org/ns",ocs:"http://open-collaboration-services.org/ns"},T=function(e,t={nc:"http://nextcloud.org/ns"}){typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...w],window._nc_dav_namespaces={...x});const n={...window._nc_dav_namespaces,...t};if(window._nc_dav_properties.find((t=>t===e)))return c.error(`${e} already registered`,{prop:e}),!1;if(e.startsWith("<")||2!==e.split(":").length)return c.error(`${e} is not valid. See example: 'oc:fileid'`,{prop:e}),!1;return n[e.split(":")[0]]?(window._nc_dav_properties.push(e),window._nc_dav_namespaces=n,!0):(c.error(`${e} namespace unknown`,{prop:e,namespaces:n}),!1)},_=function(){return typeof window._nc_dav_properties>"u"&&(window._nc_dav_properties=[...w]),window._nc_dav_properties.map((e=>`<${e} />`)).join(" ")},C=function(){return typeof window._nc_dav_namespaces>"u"&&(window._nc_dav_namespaces={...x}),Object.keys(window._nc_dav_namespaces).map((e=>`xmlns:${e}="${window._nc_dav_namespaces?.[e]}"`)).join(" ")},S=function(){return`<?xml version="1.0"?>\n\t\t<d:propfind ${C()}>\n\t\t\t<d:prop>\n\t\t\t\t${_()}\n\t\t\t</d:prop>\n\t\t</d:propfind>`},N=function(e){return`<?xml version="1.0" encoding="UTF-8"?>\n<d:searchrequest ${C()}\n\txmlns:ns="https://github.com/icewind1991/SearchDAV/ns">\n\t<d:basicsearch>\n\t\t<d:select>\n\t\t\t<d:prop>\n\t\t\t\t${_()}\n\t\t\t</d:prop>\n\t\t</d:select>\n\t\t<d:from>\n\t\t\t<d:scope>\n\t\t\t\t<d:href>/files/${(0,r.ts)()?.uid}/</d:href>\n\t\t\t\t<d:depth>infinity</d:depth>\n\t\t\t</d:scope>\n\t\t</d:from>\n\t\t<d:where>\n\t\t\t<d:and>\n\t\t\t\t<d:or>\n\t\t\t\t\t<d:not>\n\t\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t\t<d:getcontenttype/>\n\t\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t\t<d:literal>httpd/unix-directory</d:literal>\n\t\t\t\t\t\t</d:eq>\n\t\t\t\t\t</d:not>\n\t\t\t\t\t<d:eq>\n\t\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t\t<oc:size/>\n\t\t\t\t\t\t</d:prop>\n\t\t\t\t\t\t<d:literal>0</d:literal>\n\t\t\t\t\t</d:eq>\n\t\t\t\t</d:or>\n\t\t\t\t<d:gt>\n\t\t\t\t\t<d:prop>\n\t\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t\t</d:prop>\n\t\t\t\t\t<d:literal>${e}</d:literal>\n\t\t\t\t</d:gt>\n\t\t\t</d:and>\n\t\t</d:where>\n\t\t<d:orderby>\n\t\t\t<d:order>\n\t\t\t\t<d:prop>\n\t\t\t\t\t<d:getlastmodified/>\n\t\t\t\t</d:prop>\n\t\t\t\t<d:descending/>\n\t\t\t</d:order>\n\t\t</d:orderby>\n\t\t<d:limit>\n\t\t\t<d:nresults>100</d:nresults>\n\t\t\t<ns:firstresult>0</ns:firstresult>\n\t\t</d:limit>\n\t</d:basicsearch>\n</d:searchrequest>`};var E=(e=>(e.Folder="folder",e.File="file",e))(E||{});const L=function(e,t){return null!==e.match(t)},j=(e,t)=>{if(e.id&&"number"!=typeof e.id)throw new Error("Invalid id type of value");if(!e.source)throw new Error("Missing mandatory source");try{new URL(e.source)}catch{throw new Error("Invalid source format, source must be a valid URL")}if(!e.source.startsWith("http"))throw new Error("Invalid source format, only http(s) is supported");if(e.mtime&&!(e.mtime instanceof Date))throw new Error("Invalid mtime type");if(e.crtime&&!(e.crtime instanceof Date))throw new Error("Invalid crtime type");if(!e.mime||"string"!=typeof e.mime||!e.mime.match(/^[-\w.]+\/[-+\w.]+$/gi))throw new Error("Missing or invalid mandatory mime");if("size"in e&&"number"!=typeof e.size&&void 0!==e.size)throw new Error("Invalid size type");if("permissions"in e&&void 0!==e.permissions&&!("number"==typeof e.permissions&&e.permissions>=b.NONE&&e.permissions<=b.ALL))throw new Error("Invalid permissions");if(e.owner&&null!==e.owner&&"string"!=typeof e.owner)throw new Error("Invalid owner type");if(e.attributes&&"object"!=typeof e.attributes)throw new Error("Invalid attributes type");if(e.root&&"string"!=typeof e.root)throw new Error("Invalid root type");if(e.root&&!e.root.startsWith("/"))throw new Error("Root must start with a leading slash");if(e.root&&!e.source.includes(e.root))throw new Error("Root must be part of the source");if(e.root&&L(e.source,t)){const n=e.source.match(t)[0];if(!e.source.includes((0,o.join)(n,e.root)))throw new Error("The root must be relative to the service. e.g /files/emma")}if(e.status&&!Object.values(F).includes(e.status))throw new Error("Status must be a valid NodeStatus")};var F=(e=>(e.NEW="new",e.FAILED="failed",e.LOADING="loading",e.LOCKED="locked",e))(F||{});class k{_data;_attributes;_knownDavService=/(remote|public)\.php\/(web)?dav/i;constructor(e,t){j(e,t||this._knownDavService),this._data=e;const n={set:(e,t,n)=>(this.updateMtime(),Reflect.set(e,t,n)),deleteProperty:(e,t)=>(this.updateMtime(),Reflect.deleteProperty(e,t))};this._attributes=new Proxy(e.attributes||{},n),delete this._data.attributes,t&&(this._knownDavService=t)}get source(){return this._data.source.replace(/\/$/i,"")}get encodedSource(){const{origin:e}=new URL(this.source);return e+(0,i.Ec)(this.source.slice(e.length))}get basename(){return(0,o.basename)(this.source)}get extension(){return(0,o.extname)(this.source)}get dirname(){if(this.root){let e=this.source;this.isDavRessource&&(e=e.split(this._knownDavService).pop());const t=e.indexOf(this.root),n=this.root.replace(/\/$/,"");return(0,o.dirname)(e.slice(t+n.length)||"/")}const e=new URL(this.source);return(0,o.dirname)(e.pathname)}get mime(){return this._data.mime}get mtime(){return this._data.mtime}get crtime(){return this._data.crtime}get size(){return this._data.size}get attributes(){return this._attributes}get permissions(){return null!==this.owner||this.isDavRessource?void 0!==this._data.permissions?this._data.permissions:b.NONE:b.READ}get owner(){return this.isDavRessource?this._data.owner:null}get isDavRessource(){return L(this.source,this._knownDavService)}get root(){return this._data.root?this._data.root.replace(/^(.+)\/$/,"$1"):this.isDavRessource&&(0,o.dirname)(this.source).split(this._knownDavService).pop()||null}get path(){if(this.root){let e=this.source;this.isDavRessource&&(e=e.split(this._knownDavService).pop());const t=e.indexOf(this.root),n=this.root.replace(/\/$/,"");return e.slice(t+n.length)||"/"}return(this.dirname+"/"+this.basename).replace(/\/\//g,"/")}get fileid(){return this._data?.id||this.attributes?.fileid}get status(){return this._data?.status}set status(e){this._data.status=e}move(e){j({...this._data,source:e},this._knownDavService),this._data.source=e,this.updateMtime()}rename(e){if(e.includes("/"))throw new Error("Invalid basename");this.move((0,o.dirname)(this.source)+"/"+e)}updateMtime(){this._data.mtime&&(this._data.mtime=new Date)}}class O extends k{get type(){return E.File}}class A extends k{constructor(e){super({...e,mime:"httpd/unix-directory"})}get type(){return E.Folder}get extension(){return null}get mime(){return"httpd/unix-directory"}}const P=`/files/${(0,r.ts)()?.uid}`,U=(0,l.c)("dav"),R=function(e=U,t={}){const n=(0,u.eI)(e,{headers:t});function a(e){n.setHeaders({...t,"X-Requested-With":"XMLHttpRequest",requesttoken:e??""})}return(0,r._S)(a),a((0,r.IH)()),(0,u.lD)().patch("fetch",((e,t)=>{const n=t.headers;return n?.method&&(t.method=n.method,delete n.method),fetch(e,t)})),n},I=async(e,t="/",n=P)=>(await e.getDirectoryContents(`${n}${t}`,{details:!0,data:`<?xml version="1.0"?>\n\t\t<oc:filter-files ${C()}>\n\t\t\t<d:prop>\n\t\t\t\t${_()}\n\t\t\t</d:prop>\n\t\t\t<oc:filter-rules>\n\t\t\t\t<oc:favorite>1</oc:favorite>\n\t\t\t</oc:filter-rules>\n\t\t</oc:filter-files>`,headers:{method:"REPORT"},includeSelf:!0})).data.filter((e=>e.filename!==t)).map((e=>M(e,n))),M=function(e,t=P,n=U){const a=e.props,s=function(e=""){let t=b.NONE;return e&&((e.includes("C")||e.includes("K"))&&(t|=b.CREATE),e.includes("G")&&(t|=b.READ),(e.includes("W")||e.includes("N")||e.includes("V"))&&(t|=b.UPDATE),e.includes("D")&&(t|=b.DELETE),e.includes("R")&&(t|=b.SHARE)),t}(a?.permissions),o=a?.["owner-id"]||(0,r.ts)()?.uid,i={id:a?.fileid||0,source:`${n}${e.filename}`,mtime:new Date(Date.parse(e.lastmod)),mime:e.mime,size:a?.size||Number.parseInt(a.getcontentlength||"0"),permissions:s,owner:o,root:t,attributes:{...e,...a,hasPreview:a?.["has-preview"]}};return delete i.attributes?.props,"file"===e.type?new O(i):new A(i)};var B={},D={};!function(e){const t=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",n="["+t+"]["+(t+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040")+"]*",r=new RegExp("^"+n+"$");e.isExist=function(e){return typeof e<"u"},e.isEmptyObject=function(e){return 0===Object.keys(e).length},e.merge=function(e,t,n){if(t){const r=Object.keys(t),a=r.length;for(let s=0;s<a;s++)e[r[s]]="strict"===n?[t[r[s]]]:t[r[s]]}},e.getValue=function(t){return e.isExist(t)?t:""},e.isName=function(e){const t=r.exec(e);return!(null===t||typeof t>"u")},e.getAllMatches=function(e,t){const n=[];let r=t.exec(e);for(;r;){const a=[];a.startIndex=t.lastIndex-r[0].length;const s=r.length;for(let e=0;e<s;e++)a.push(r[e]);n.push(a),r=t.exec(e)}return n},e.nameRegexp=n}(D);const $=D,z={allowBooleanAttributes:!1,unpairedTags:[]};function H(e){return" "===e||"\t"===e||"\n"===e||"\r"===e}function V(e,t){const n=t;for(;t<e.length;t++)if("?"==e[t]||" "==e[t]){const r=e.substr(n,t-n);if(t>5&&"xml"===r)return Z("InvalidXml","XML declaration allowed only at the start of the document.",te(e,t));if("?"==e[t]&&">"==e[t+1]){t++;break}continue}return t}function G(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t<e.length;t++)if("-"===e[t]&&"-"===e[t+1]&&">"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){let n=1;for(t+=8;t<e.length;t++)if("<"===e[t])n++;else if(">"===e[t]&&(n--,0===n))break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7])for(t+=8;t<e.length;t++)if("]"===e[t]&&"]"===e[t+1]&&">"===e[t+2]){t+=2;break}return t}B.validate=function(e,t){t=Object.assign({},z,t);const n=[];let r=!1,a=!1;"\ufeff"===e[0]&&(e=e.substr(1));for(let s=0;s<e.length;s++)if("<"===e[s]&&"?"===e[s+1]){if(s+=2,s=V(e,s),s.err)return s}else{if("<"!==e[s]){if(H(e[s]))continue;return Z("InvalidChar","char '"+e[s]+"' is not expected.",te(e,s))}{let o=s;if(s++,"!"===e[s]){s=G(e,s);continue}{let i=!1;"/"===e[s]&&(i=!0,s++);let l="";for(;s<e.length&&">"!==e[s]&&" "!==e[s]&&"\t"!==e[s]&&"\n"!==e[s]&&"\r"!==e[s];s++)l+=e[s];if(l=l.trim(),"/"===l[l.length-1]&&(l=l.substring(0,l.length-1),s--),!ee(l)){let t;return t=0===l.trim().length?"Invalid space after '<'.":"Tag '"+l+"' is an invalid name.",Z("InvalidTag",t,te(e,s))}const u=W(e,s);if(!1===u)return Z("InvalidAttr","Attributes for '"+l+"' have open quote.",te(e,s));let c=u.value;if(s=u.index,"/"===c[c.length-1]){const n=s-c.length;c=c.substring(0,c.length-1);const a=X(c,t);if(!0!==a)return Z(a.err.code,a.err.msg,te(e,n+a.err.line));r=!0}else if(i){if(!u.tagClosed)return Z("InvalidTag","Closing tag '"+l+"' doesn't have proper closing.",te(e,s));if(c.trim().length>0)return Z("InvalidTag","Closing tag '"+l+"' can't have attributes or invalid starting.",te(e,o));{const t=n.pop();if(l!==t.tagName){let n=te(e,t.tagStartPos);return Z("InvalidTag","Expected closing tag '"+t.tagName+"' (opened in line "+n.line+", col "+n.col+") instead of closing tag '"+l+"'.",te(e,o))}0==n.length&&(a=!0)}}else{const i=X(c,t);if(!0!==i)return Z(i.err.code,i.err.msg,te(e,s-c.length+i.err.line));if(!0===a)return Z("InvalidXml","Multiple possible root nodes found.",te(e,s));-1!==t.unpairedTags.indexOf(l)||n.push({tagName:l,tagStartPos:o}),r=!0}for(s++;s<e.length;s++)if("<"===e[s]){if("!"===e[s+1]){s++,s=G(e,s);continue}if("?"!==e[s+1])break;if(s=V(e,++s),s.err)return s}else if("&"===e[s]){const t=Y(e,s);if(-1==t)return Z("InvalidChar","char '&' is not expected.",te(e,s));s=t}else if(!0===a&&!H(e[s]))return Z("InvalidXml","Extra text at the end",te(e,s));"<"===e[s]&&s--}}}return r?1==n.length?Z("InvalidTag","Unclosed tag '"+n[0].tagName+"'.",te(e,n[0].tagStartPos)):!(n.length>0)||Z("InvalidXml","Invalid '"+JSON.stringify(n.map((e=>e.tagName)),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):Z("InvalidXml","Start tag expected.",1)};const q='"',J="'";function W(e,t){let n="",r="",a=!1;for(;t<e.length;t++){if(e[t]===q||e[t]===J)""===r?r=e[t]:r!==e[t]||(r="");else if(">"===e[t]&&""===r){a=!0;break}n+=e[t]}return""===r&&{value:n,index:t,tagClosed:a}}const K=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function X(e,t){const n=$.getAllMatches(e,K),r={};for(let e=0;e<n.length;e++){if(0===n[e][1].length)return Z("InvalidAttr","Attribute '"+n[e][2]+"' has no space in starting.",ne(n[e]));if(void 0!==n[e][3]&&void 0===n[e][4])return Z("InvalidAttr","Attribute '"+n[e][2]+"' is without value.",ne(n[e]));if(void 0===n[e][3]&&!t.allowBooleanAttributes)return Z("InvalidAttr","boolean attribute '"+n[e][2]+"' is not allowed.",ne(n[e]));const a=n[e][2];if(!Q(a))return Z("InvalidAttr","Attribute '"+a+"' is an invalid name.",ne(n[e]));if(r.hasOwnProperty(a))return Z("InvalidAttr","Attribute '"+a+"' is repeated.",ne(n[e]));r[a]=1}return!0}function Y(e,t){if(";"===e[++t])return-1;if("#"===e[t])return function(e,t){let n=/\d/;for("x"===e[t]&&(t++,n=/[\da-fA-F]/);t<e.length;t++){if(";"===e[t])return t;if(!e[t].match(n))break}return-1}(e,++t);let n=0;for(;t<e.length;t++,n++)if(!(e[t].match(/\w/)&&n<20)){if(";"===e[t])break;return-1}return t}function Z(e,t,n){return{err:{code:e,msg:t,line:n.line||n,col:n.col}}}function Q(e){return $.isName(e)}function ee(e){return $.isName(e)}function te(e,t){const n=e.substring(0,t).split(/\r?\n/);return{line:n.length,col:n[n.length-1].length+1}}function ne(e){return e.startIndex+e[1].length}var re={};const ae={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},stopNodes:[],alwaysCreateTextNode:!1,isArray:()=>!1,commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(e,t,n){return e}};re.buildOptions=function(e){return Object.assign({},ae,e)},re.defaultOptions=ae;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);const se=D;"<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,se.nameRegexp);new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");var oe={};function ie(e,t,n){let r;const a={};for(let s=0;s<e.length;s++){const o=e[s],i=le(o);let l="";if(l=void 0===n?i:n+"."+i,i===t.textNodeName)void 0===r?r=o[i]:r+=""+o[i];else{if(void 0===i)continue;if(o[i]){let e=ie(o[i],t,l);const n=ce(e,t);o[":@"]?ue(e,o[":@"],l,t):1!==Object.keys(e).length||void 0===e[t.textNodeName]||t.alwaysCreateTextNode?0===Object.keys(e).length&&(t.alwaysCreateTextNode?e[t.textNodeName]="":e=""):e=e[t.textNodeName],void 0!==a[i]&&a.hasOwnProperty(i)?(Array.isArray(a[i])||(a[i]=[a[i]]),a[i].push(e)):t.isArray(i,l,n)?a[i]=[e]:a[i]=e}}}return"string"==typeof r?r.length>0&&(a[t.textNodeName]=r):void 0!==r&&(a[t.textNodeName]=r),a}function le(e){const t=Object.keys(e);for(let e=0;e<t.length;e++){const n=t[e];if(":@"!==n)return n}}function ue(e,t,n,r){if(t){const a=Object.keys(t),s=a.length;for(let o=0;o<s;o++){const s=a[o];r.isArray(s,n+"."+s,!0,!0)?e[s]=[t[s]]:e[s]=t[s]}}}function ce(e,t){const{textNodeName:n}=t,r=Object.keys(e).length;return!(0!==r&&(1!==r||!e[n]&&"boolean"!=typeof e[n]&&0!==e[n]))}oe.prettify=function(e,t){return ie(e,t)};const{buildOptions:pe}=re,{prettify:de}=oe;function fe(e,t,n,r){let a="",s=!1;for(let o=0;o<e.length;o++){const i=e[o],l=me(i);if(void 0===l)continue;let u="";if(u=0===n.length?l:`${n}.${l}`,l===t.textNodeName){let e=i[l];ge(u,t)||(e=t.tagValueProcessor(l,e),e=ve(e,t)),s&&(a+=r),a+=e,s=!1;continue}if(l===t.cdataPropName){s&&(a+=r),a+=`<![CDATA[${i[l][0][t.textNodeName]}]]>`,s=!1;continue}if(l===t.commentPropName){a+=r+`\x3c!--${i[l][0][t.textNodeName]}--\x3e`,s=!0;continue}if("?"===l[0]){const e=he(i[":@"],t),n="?xml"===l?"":r;let o=i[l][0][t.textNodeName];o=0!==o.length?" "+o:"",a+=n+`<${l}${o}${e}?>`,s=!0;continue}let c=r;""!==c&&(c+=t.indentBy);const p=r+`<${l}${he(i[":@"],t)}`,d=fe(i[l],t,u,c);-1!==t.unpairedTags.indexOf(l)?t.suppressUnpairedNode?a+=p+">":a+=p+"/>":d&&0!==d.length||!t.suppressEmptyNode?d&&d.endsWith(">")?a+=p+`>${d}${r}</${l}>`:(a+=p+">",d&&""!==r&&(d.includes("/>")||d.includes("</"))?a+=r+t.indentBy+d+r:a+=d,a+=`</${l}>`):a+=p+"/>",s=!0}return a}function me(e){const t=Object.keys(e);for(let n=0;n<t.length;n++){const r=t[n];if(e.hasOwnProperty(r)&&":@"!==r)return r}}function he(e,t){let n="";if(e&&!t.ignoreAttributes)for(let r in e){if(!e.hasOwnProperty(r))continue;let a=t.attributeValueProcessor(r,e[r]);a=ve(a,t),!0===a&&t.suppressBooleanAttributes?n+=` ${r.substr(t.attributeNamePrefix.length)}`:n+=` ${r.substr(t.attributeNamePrefix.length)}="${a}"`}return n}function ge(e,t){let n=(e=e.substr(0,e.length-t.textNodeName.length-1)).substr(e.lastIndexOf(".")+1);for(let r in t.stopNodes)if(t.stopNodes[r]===e||t.stopNodes[r]==="*."+n)return!0;return!1}function ve(e,t){if(e&&e.length>0&&t.processEntities)for(let n=0;n<t.entities.length;n++){const r=t.entities[n];e=e.replace(r.regex,r.val)}return e}var ye=function(e,t){let n="";return t.format&&t.indentBy.length>0&&(n="\n"),fe(e,t,"",n)};const be=ye,we={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1};function xe(e){this.options=Object.assign({},we,e),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=Ce),this.processTextOrObjNode=Te,this.options.format?(this.indentate=_e,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function Te(e,t,n){const r=this.j2x(e,n+1);return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,r.attrStr,n):this.buildObjectNode(r.val,t,r.attrStr,n)}function _e(e){return this.options.indentBy.repeat(e)}function Ce(e){return!(!e.startsWith(this.options.attributeNamePrefix)||e===this.options.textNodeName)&&e.substr(this.attrPrefixLen)}xe.prototype.build=function(e){return this.options.preserveOrder?be(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e={[this.options.arrayNodeName]:e}),this.j2x(e,0).val)},xe.prototype.j2x=function(e,t){let n="",r="";for(let a in e)if(Object.prototype.hasOwnProperty.call(e,a))if(typeof e[a]>"u")this.isAttribute(a)&&(r+="");else if(null===e[a])this.isAttribute(a)?r+="":"?"===a[0]?r+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:r+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)r+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){const s=this.isAttribute(a);if(s)n+=this.buildAttrPairStr(s,""+e[a]);else if(a===this.options.textNodeName){let t=this.options.tagValueProcessor(a,""+e[a]);r+=this.replaceEntitiesValue(t)}else r+=this.buildTextValNode(e[a],a,"",t)}else if(Array.isArray(e[a])){const n=e[a].length;let s="";for(let o=0;o<n;o++){const n=e[a][o];typeof n>"u"||(null===n?"?"===a[0]?r+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:r+=this.indentate(t)+"<"+a+"/"+this.tagEndChar:"object"==typeof n?this.options.oneListGroup?s+=this.j2x(n,t+1).val:s+=this.processTextOrObjNode(n,a,t):s+=this.buildTextValNode(n,a,"",t))}this.options.oneListGroup&&(s=this.buildObjectNode(s,a,"",t)),r+=s}else if(this.options.attributesGroupName&&a===this.options.attributesGroupName){const t=Object.keys(e[a]),r=t.length;for(let s=0;s<r;s++)n+=this.buildAttrPairStr(t[s],""+e[a][t[s]])}else r+=this.processTextOrObjNode(e[a],a,t);return{attrStr:n,val:r}},xe.prototype.buildAttrPairStr=function(e,t){return t=this.options.attributeValueProcessor(e,""+t),t=this.replaceEntitiesValue(t),this.options.suppressBooleanAttributes&&"true"===t?" "+e:" "+e+'="'+t+'"'},xe.prototype.buildObjectNode=function(e,t,n,r){if(""===e)return"?"===t[0]?this.indentate(r)+"<"+t+n+"?"+this.tagEndChar:this.indentate(r)+"<"+t+n+this.closeTag(t)+this.tagEndChar;{let a="</"+t+this.tagEndChar,s="";return"?"===t[0]&&(s="?",a=""),!n&&""!==n||-1!==e.indexOf("<")?!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===s.length?this.indentate(r)+`\x3c!--${e}--\x3e`+this.newLine:this.indentate(r)+"<"+t+n+s+this.tagEndChar+e+this.indentate(r)+a:this.indentate(r)+"<"+t+n+s+">"+e+a}},xe.prototype.closeTag=function(e){let t="";return-1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":`></${e}`,t},xe.prototype.buildTextValNode=function(e,t,n,r){if(!1!==this.options.cdataPropName&&t===this.options.cdataPropName)return this.indentate(r)+`<![CDATA[${e}]]>`+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(r)+`\x3c!--${e}--\x3e`+this.newLine;if("?"===t[0])return this.indentate(r)+"<"+t+n+"?"+this.tagEndChar;{let a=this.options.tagValueProcessor(t,e);return a=this.replaceEntitiesValue(a),""===a?this.indentate(r)+"<"+t+n+this.closeTag(t)+this.tagEndChar:this.indentate(r)+"<"+t+n+">"+a+"</"+t+this.tagEndChar}},xe.prototype.replaceEntitiesValue=function(e){if(e&&e.length>0&&this.options.processEntities)for(let t=0;t<this.options.entities.length;t++){const n=this.options.entities[t];e=e.replace(n.regex,n.val)}return e};const Se=function(e){return f().registerEntry(e)}},43554:(e,t,n)=>{"use strict";function r(e,t,n){const r=document.querySelector(`#initial-state-${e}-${t}`);if(null===r){if(void 0!==n)return n;throw new Error(`Could not find initial state ${t} of ${e}`)}try{return JSON.parse(atob(r.value))}catch(n){throw new Error(`Could not parse initial state ${t} of ${e}`)}}n.d(t,{j:()=>r})},48264:(e,t,n)=>{"use strict";n.d(t,{H:()=>o});var r=n(57699);n(79753),n(27856),n(95573);class a{constructor(){this.translations={},this.debug=!1}setLanguage(e){return this.locale=e,this}detectLocale(){return this.setLanguage((document.documentElement.lang||"en").replace("-","_"))}addTranslation(e,t){return this.translations[e]=t,this}enableDebugMode(){return this.debug=!0,this}build(){return new s(this.locale||"en",this.translations,this.debug)}}class s{constructor(e,t,n){this.gt=new r({debug:n,sourceLocale:"en"});for(const e in t)this.gt.addTranslations(e,"messages",t[e]);this.gt.setLocale(e)}subtitudePlaceholders(e,t){return e.replace(/{([^{}]*)}/g,((e,n)=>{const r=t[n];return"string"==typeof r||"number"==typeof r?r.toString():e}))}gettext(e,t={}){return this.subtitudePlaceholders(this.gt.gettext(e),t)}ngettext(e,t,n,r={}){return this.subtitudePlaceholders(this.gt.ngettext(e,t,n).replace(/%n/g,n.toString()),r)}}function o(){return new a}},31352:(e,t,n)=>{"use strict";n.d(t,{A9:()=>i,G4:()=>u,Hd:()=>c,Iu:()=>m,Kd:()=>p,MT:()=>o,aS:()=>l,aj:()=>d,uN:()=>h,yo:()=>s});n(79753);var r=n(27856),a=n(95573);function s(){return void 0===window.firstDay?(console.warn("No firstDay found"),1):window.firstDay}function o(){return void 0===window.dayNames?(console.warn("No dayNames found"),["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]):window.dayNames}function i(){return void 0===window.dayNamesShort?(console.warn("No dayNamesShort found"),["Sun.","Mon.","Tue.","Wed.","Thu.","Fri.","Sat."]):window.dayNamesShort}function l(){return void 0===window.dayNamesMin?(console.warn("No dayNamesMin found"),["Su","Mo","Tu","We","Th","Fr","Sa"]):window.dayNamesMin}function u(){return void 0===window.monthNames?(console.warn("No monthNames found"),["January","February","March","April","May","June","July","August","September","October","November","December"]):window.monthNames}function c(){return void 0===window.monthNamesShort?(console.warn("No monthNamesShort found"),["Jan.","Feb.","Mar.","Apr.","May.","Jun.","Jul.","Aug.","Sep.","Oct.","Nov.","Dec."]):window.monthNamesShort}function p(){return document.documentElement.dataset.locale||"en"}function d(){return p().replace(/_/g,"-")}function f(e){var t,n,r,a;return{translations:null!==(n=null===(t=window._oc_l10n_registry_translations)||void 0===t?void 0:t[e])&&void 0!==n?n:{},pluralFunction:null!==(a=null===(r=window._oc_l10n_registry_plural_functions)||void 0===r?void 0:r[e])&&void 0!==a?a:e=>e}}function m(e,t,n,s,o){const i=Object.assign({},{escape:!0,sanitize:!0},o||{}),l=e=>e,u=i.sanitize?r.sanitize:l,c=i.escape?a:l;let p=f(e).translations[t]||t;return p=Array.isArray(p)?p[0]:p,u("object"==typeof n||void 0!==s?((e,t,n)=>e.replace(/%n/g,""+n).replace(/{([^{}]*)}/g,((e,n)=>{if(void 0===t||!(n in t))return u(e);const r=t[n];return u("string"==typeof r||"number"==typeof r?c(r):e)})))(p,n,s):p)}function h(e,t,n,r,a,s){const o="_"+t+"_::_"+n+"_",i=f(e),l=i.translations[o];if(void 0!==l){const t=l;if(Array.isArray(t)){return m(e,t[i.pluralFunction(r)],a,r,s)}}return m(e,1===r?t:n,a,r,s)}},14596:(e,t,n)=>{"use strict";n.d(t,{eI:()=>l,lD:()=>u});var r=n(34155),a={584:e=>{function t(e,t,a){e instanceof RegExp&&(e=n(e,a)),t instanceof RegExp&&(t=n(t,a));var s=r(e,t,a);return s&&{start:s[0],end:s[1],pre:a.slice(0,s[0]),body:a.slice(s[0]+e.length,s[1]),post:a.slice(s[1]+t.length)}}function n(e,t){var n=t.match(e);return n?n[0]:null}function r(e,t,n){var r,a,s,o,i,l=n.indexOf(e),u=n.indexOf(t,l+1),c=l;if(l>=0&&u>0){for(r=[],s=n.length;c>=0&&!i;)c==l?(r.push(c),l=n.indexOf(e,c+1)):1==r.length?i=[r.pop(),u]:((a=r.pop())<s&&(s=a,o=u),u=n.indexOf(t,c+1)),c=l<u&&l>=0?l:u;r.length&&(i=[s,o])}return i}e.exports=t,t.range=r},146:function(e,t,n){var r;function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}e=n.nmd(e),function(s){var o="object"==a(t)&&t,i="object"==a(e)&&e&&e.exports==o&&e,l="object"==("undefined"==typeof global?"undefined":a(global))&&global;l.global!==l&&l.window!==l||(s=l);var u=function(e){this.message=e};(u.prototype=new Error).name="InvalidCharacterError";var c=function(e){throw new u(e)},p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",d=/[\t\n\f\r ]/g,f={encode:function(e){e=String(e),/[^\0-\xFF]/.test(e)&&c("The string to be encoded contains characters outside of the Latin1 range.");for(var t,n,r,a,s=e.length%3,o="",i=-1,l=e.length-s;++i<l;)t=e.charCodeAt(i)<<16,n=e.charCodeAt(++i)<<8,r=e.charCodeAt(++i),o+=p.charAt((a=t+n+r)>>18&63)+p.charAt(a>>12&63)+p.charAt(a>>6&63)+p.charAt(63&a);return 2==s?(t=e.charCodeAt(i)<<8,n=e.charCodeAt(++i),o+=p.charAt((a=t+n)>>10)+p.charAt(a>>4&63)+p.charAt(a<<2&63)+"="):1==s&&(a=e.charCodeAt(i),o+=p.charAt(a>>2)+p.charAt(a<<4&63)+"=="),o},decode:function(e){var t=(e=String(e).replace(d,"")).length;t%4==0&&(t=(e=e.replace(/==?$/,"")).length),(t%4==1||/[^+a-zA-Z0-9/]/.test(e))&&c("Invalid character: the string to be decoded is not correctly encoded.");for(var n,r,a=0,s="",o=-1;++o<t;)r=p.indexOf(e.charAt(o)),n=a%4?64*n+r:r,a++%4&&(s+=String.fromCharCode(255&n>>(-2*a&6)));return s},version:"1.0.0"};if("object"==a(n.amdO)&&n.amdO)void 0===(r=function(){return f}.call(t,n,t,e))||(e.exports=r);else if(o&&!o.nodeType)if(i)i.exports=f;else for(var m in f)f.hasOwnProperty(m)&&(o[m]=f[m]);else s.base64=f}(this)},918:(e,t)=>{t.k=function(e){if(!e)return 0;for(var t=(e=e.toString()).length,n=e.length;n--;){var r=e.charCodeAt(n);56320<=r&&r<=57343&&n--,127<r&&r<=2047?t++:2047<r&&r<=65535&&(t+=2)}return t}},106:e=>{var t={utf8:{stringToBytes:function(e){return t.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(t.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n<e.length;n++)t.push(255&e.charCodeAt(n));return t},bytesToString:function(e){for(var t=[],n=0;n<e.length;n++)t.push(String.fromCharCode(e[n]));return t.join("")}}};e.exports=t},718:e=>{var t,n;t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n={rotl:function(e,t){return e<<t|e>>>32-t},rotr:function(e,t){return e<<32-t|e>>>t},endian:function(e){if(e.constructor==Number)return 16711935&n.rotl(e,8)|4278255360&n.rotl(e,24);for(var t=0;t<e.length;t++)e[t]=n.endian(e[t]);return e},randomBytes:function(e){for(var t=[];e>0;e--)t.push(Math.floor(256*Math.random()));return t},bytesToWords:function(e){for(var t=[],n=0,r=0;n<e.length;n++,r+=8)t[r>>>5]|=e[n]<<24-r%32;return t},wordsToBytes:function(e){for(var t=[],n=0;n<32*e.length;n+=8)t.push(e[n>>>5]>>>24-n%32&255);return t},bytesToHex:function(e){for(var t=[],n=0;n<e.length;n++)t.push((e[n]>>>4).toString(16)),t.push((15&e[n]).toString(16));return t.join("")},hexToBytes:function(e){for(var t=[],n=0;n<e.length;n+=2)t.push(parseInt(e.substr(n,2),16));return t},bytesToBase64:function(e){for(var n=[],r=0;r<e.length;r+=3)for(var a=e[r]<<16|e[r+1]<<8|e[r+2],s=0;s<4;s++)8*r+6*s<=8*e.length?n.push(t.charAt(a>>>6*(3-s)&63)):n.push("=");return n.join("")},base64ToBytes:function(e){e=e.replace(/[^A-Z0-9+\/]/gi,"");for(var n=[],r=0,a=0;r<e.length;a=++r%4)0!=a&&n.push((t.indexOf(e.charAt(r-1))&Math.pow(2,-2*a+8)-1)<<2*a|t.indexOf(e.charAt(r))>>>6-2*a);return n}},e.exports=n},5:(e,t,n)=>{var r=n(135),a=n(586),s=n(39);e.exports={XMLParser:a,XMLValidator:r,XMLBuilder:s}},410:(e,t)=>{var n=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",r="["+n+"]["+n+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*",a=new RegExp("^"+r+"$");t.isExist=function(e){return void 0!==e},t.isEmptyObject=function(e){return 0===Object.keys(e).length},t.merge=function(e,t,n){if(t)for(var r=Object.keys(t),a=r.length,s=0;s<a;s++)e[r[s]]="strict"===n?[t[r[s]]]:t[r[s]]},t.getValue=function(e){return t.isExist(e)?e:""},t.isName=function(e){return!(null==a.exec(e))},t.getAllMatches=function(e,t){for(var n=[],r=t.exec(e);r;){var a=[];a.startIndex=t.lastIndex-r[0].length;for(var s=r.length,o=0;o<s;o++)a.push(r[o]);n.push(a),r=t.exec(e)}return n},t.nameRegexp=r},135:(e,t,n)=>{var r=n(410),a={allowBooleanAttributes:!1,unpairedTags:[]};function s(e){return" "===e||"\t"===e||"\n"===e||"\r"===e}function o(e,t){for(var n=t;t<e.length;t++)if("?"!=e[t]&&" "!=e[t]);else{var r=e.substr(n,t-n);if(t>5&&"xml"===r)return m("InvalidXml","XML declaration allowed only at the start of the document.",g(e,t));if("?"==e[t]&&">"==e[t+1]){t++;break}}return t}function i(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t<e.length;t++)if("-"===e[t]&&"-"===e[t+1]&&">"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var n=1;for(t+=8;t<e.length;t++)if("<"===e[t])n++;else if(">"===e[t]&&0==--n)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7])for(t+=8;t<e.length;t++)if("]"===e[t]&&"]"===e[t+1]&&">"===e[t+2]){t+=2;break}return t}t.validate=function(e,t){t=Object.assign({},a,t);var n,l=[],u=!1,p=!1;"\ufeff"===e[0]&&(e=e.substr(1));for(var h=0;h<e.length;h++)if("<"===e[h]&&"?"===e[h+1]){if((h=o(e,h+=2)).err)return h}else{if("<"!==e[h]){if(s(e[h]))continue;return m("InvalidChar","char '"+e[h]+"' is not expected.",g(e,h))}var v=h;if("!"===e[++h]){h=i(e,h);continue}var y=!1;"/"===e[h]&&(y=!0,h++);for(var b="";h<e.length&&">"!==e[h]&&" "!==e[h]&&"\t"!==e[h]&&"\n"!==e[h]&&"\r"!==e[h];h++)b+=e[h];if("/"===(b=b.trim())[b.length-1]&&(b=b.substring(0,b.length-1),h--),n=b,!r.isName(n))return m("InvalidTag",0===b.trim().length?"Invalid space after '<'.":"Tag '"+b+"' is an invalid name.",g(e,h));var w=c(e,h);if(!1===w)return m("InvalidAttr","Attributes for '"+b+"' have open quote.",g(e,h));var x=w.value;if(h=w.index,"/"===x[x.length-1]){var T=h-x.length,_=d(x=x.substring(0,x.length-1),t);if(!0!==_)return m(_.err.code,_.err.msg,g(e,T+_.err.line));u=!0}else if(y){if(!w.tagClosed)return m("InvalidTag","Closing tag '"+b+"' doesn't have proper closing.",g(e,h));if(x.trim().length>0)return m("InvalidTag","Closing tag '"+b+"' can't have attributes or invalid starting.",g(e,v));var C=l.pop();if(b!==C.tagName){var S=g(e,C.tagStartPos);return m("InvalidTag","Expected closing tag '"+C.tagName+"' (opened in line "+S.line+", col "+S.col+") instead of closing tag '"+b+"'.",g(e,v))}0==l.length&&(p=!0)}else{var N=d(x,t);if(!0!==N)return m(N.err.code,N.err.msg,g(e,h-x.length+N.err.line));if(!0===p)return m("InvalidXml","Multiple possible root nodes found.",g(e,h));-1!==t.unpairedTags.indexOf(b)||l.push({tagName:b,tagStartPos:v}),u=!0}for(h++;h<e.length;h++)if("<"===e[h]){if("!"===e[h+1]){h=i(e,++h);continue}if("?"!==e[h+1])break;if((h=o(e,++h)).err)return h}else if("&"===e[h]){var E=f(e,h);if(-1==E)return m("InvalidChar","char '&' is not expected.",g(e,h));h=E}else if(!0===p&&!s(e[h]))return m("InvalidXml","Extra text at the end",g(e,h));"<"===e[h]&&h--}return u?1==l.length?m("InvalidTag","Unclosed tag '"+l[0].tagName+"'.",g(e,l[0].tagStartPos)):!(l.length>0)||m("InvalidXml","Invalid '"+JSON.stringify(l.map((function(e){return e.tagName})),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):m("InvalidXml","Start tag expected.",1)};var l='"',u="'";function c(e,t){for(var n="",r="",a=!1;t<e.length;t++){if(e[t]===l||e[t]===u)""===r?r=e[t]:r!==e[t]||(r="");else if(">"===e[t]&&""===r){a=!0;break}n+=e[t]}return""===r&&{value:n,index:t,tagClosed:a}}var p=new RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function d(e,t){for(var n=r.getAllMatches(e,p),a={},s=0;s<n.length;s++){if(0===n[s][1].length)return m("InvalidAttr","Attribute '"+n[s][2]+"' has no space in starting.",v(n[s]));if(void 0!==n[s][3]&&void 0===n[s][4])return m("InvalidAttr","Attribute '"+n[s][2]+"' is without value.",v(n[s]));if(void 0===n[s][3]&&!t.allowBooleanAttributes)return m("InvalidAttr","boolean attribute '"+n[s][2]+"' is not allowed.",v(n[s]));var o=n[s][2];if(!h(o))return m("InvalidAttr","Attribute '"+o+"' is an invalid name.",v(n[s]));if(a.hasOwnProperty(o))return m("InvalidAttr","Attribute '"+o+"' is repeated.",v(n[s]));a[o]=1}return!0}function f(e,t){if(";"===e[++t])return-1;if("#"===e[t])return function(e,t){var n=/\d/;for("x"===e[t]&&(t++,n=/[\da-fA-F]/);t<e.length;t++){if(";"===e[t])return t;if(!e[t].match(n))break}return-1}(e,++t);for(var n=0;t<e.length;t++,n++)if(!(e[t].match(/\w/)&&n<20)){if(";"===e[t])break;return-1}return t}function m(e,t,n){return{err:{code:e,msg:t,line:n.line||n,col:n.col}}}function h(e){return r.isName(e)}function g(e,t){var n=e.substring(0,t).split(/\r?\n/);return{line:n.length,col:n[n.length-1].length+1}}function v(e){return e.startIndex+e[1].length}},39:(e,t,n)=>{function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}var a=n(354),s={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:new RegExp("&","g"),val:"&amp;"},{regex:new RegExp(">","g"),val:"&gt;"},{regex:new RegExp("<","g"),val:"&lt;"},{regex:new RegExp("'","g"),val:"&apos;"},{regex:new RegExp('"',"g"),val:"&quot;"}],processEntities:!0,stopNodes:[],oneListGroup:!1};function o(e){this.options=Object.assign({},s,e),this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=u),this.processTextOrObjNode=i,this.options.format?(this.indentate=l,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function i(e,t,n){var r=this.j2x(e,n+1);return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,r.attrStr,n):this.buildObjectNode(r.val,t,r.attrStr,n)}function l(e){return this.options.indentBy.repeat(e)}function u(e){return!(!e.startsWith(this.options.attributeNamePrefix)||e===this.options.textNodeName)&&e.substr(this.attrPrefixLen)}o.prototype.build=function(e){return this.options.preserveOrder?a(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(t={},r=e,(n=this.options.arrayNodeName)in t?Object.defineProperty(t,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[n]=r,e=t),this.j2x(e,0).val);var t,n,r},o.prototype.j2x=function(e,t){var n="",a="";for(var s in e)if(void 0===e[s])this.isAttribute(s)&&(a+="");else if(null===e[s])this.isAttribute(s)?a+="":"?"===s[0]?a+=this.indentate(t)+"<"+s+"?"+this.tagEndChar:a+=this.indentate(t)+"<"+s+"/"+this.tagEndChar;else if(e[s]instanceof Date)a+=this.buildTextValNode(e[s],s,"",t);else if("object"!==r(e[s])){var o=this.isAttribute(s);if(o)n+=this.buildAttrPairStr(o,""+e[s]);else if(s===this.options.textNodeName){var i=this.options.tagValueProcessor(s,""+e[s]);a+=this.replaceEntitiesValue(i)}else a+=this.buildTextValNode(e[s],s,"",t)}else if(Array.isArray(e[s])){for(var l=e[s].length,u="",c=0;c<l;c++){var p=e[s][c];void 0===p||(null===p?"?"===s[0]?a+=this.indentate(t)+"<"+s+"?"+this.tagEndChar:a+=this.indentate(t)+"<"+s+"/"+this.tagEndChar:"object"===r(p)?this.options.oneListGroup?u+=this.j2x(p,t+1).val:u+=this.processTextOrObjNode(p,s,t):u+=this.buildTextValNode(p,s,"",t))}this.options.oneListGroup&&(u=this.buildObjectNode(u,s,"",t)),a+=u}else if(this.options.attributesGroupName&&s===this.options.attributesGroupName)for(var d=Object.keys(e[s]),f=d.length,m=0;m<f;m++)n+=this.buildAttrPairStr(d[m],""+e[s][d[m]]);else a+=this.processTextOrObjNode(e[s],s,t);return{attrStr:n,val:a}},o.prototype.buildAttrPairStr=function(e,t){return t=this.options.attributeValueProcessor(e,""+t),t=this.replaceEntitiesValue(t),this.options.suppressBooleanAttributes&&"true"===t?" "+e:" "+e+'="'+t+'"'},o.prototype.buildObjectNode=function(e,t,n,r){if(""===e)return"?"===t[0]?this.indentate(r)+"<"+t+n+"?"+this.tagEndChar:this.indentate(r)+"<"+t+n+this.closeTag(t)+this.tagEndChar;var a="</"+t+this.tagEndChar,s="";return"?"===t[0]&&(s="?",a=""),!n&&""!==n||-1!==e.indexOf("<")?!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===s.length?this.indentate(r)+"\x3c!--".concat(e,"--\x3e")+this.newLine:this.indentate(r)+"<"+t+n+s+this.tagEndChar+e+this.indentate(r)+a:this.indentate(r)+"<"+t+n+s+">"+e+a},o.prototype.closeTag=function(e){var t="";return-1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":"></".concat(e),t},o.prototype.buildTextValNode=function(e,t,n,r){if(!1!==this.options.cdataPropName&&t===this.options.cdataPropName)return this.indentate(r)+"<![CDATA[".concat(e,"]]>")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(r)+"\x3c!--".concat(e,"--\x3e")+this.newLine;if("?"===t[0])return this.indentate(r)+"<"+t+n+"?"+this.tagEndChar;var a=this.options.tagValueProcessor(t,e);return""===(a=this.replaceEntitiesValue(a))?this.indentate(r)+"<"+t+n+this.closeTag(t)+this.tagEndChar:this.indentate(r)+"<"+t+n+">"+a+"</"+t+this.tagEndChar},o.prototype.replaceEntitiesValue=function(e){if(e&&e.length>0&&this.options.processEntities)for(var t=0;t<this.options.entities.length;t++){var n=this.options.entities[t];e=e.replace(n.regex,n.val)}return e},e.exports=o},354:e=>{function t(e,o,i,l){for(var u="",c=!1,p=0;p<e.length;p++){var d,f=e[p],m=n(f);if(d=0===i.length?m:"".concat(i,".").concat(m),m!==o.textNodeName)if(m!==o.cdataPropName)if(m!==o.commentPropName)if("?"!==m[0]){var h=l;""!==h&&(h+=o.indentBy);var g=r(f[":@"],o),v=l+"<".concat(m).concat(g),y=t(f[m],o,d,h);-1!==o.unpairedTags.indexOf(m)?o.suppressUnpairedNode?u+=v+">":u+=v+"/>":y&&0!==y.length||!o.suppressEmptyNode?y&&y.endsWith(">")?u+=v+">".concat(y).concat(l,"</").concat(m,">"):(u+=v+">",y&&""!==l&&(y.includes("/>")||y.includes("</"))?u+=l+o.indentBy+y+l:u+=y,u+="</".concat(m,">")):u+=v+"/>",c=!0}else{var b=r(f[":@"],o),w="?xml"===m?"":l,x=f[m][0][o.textNodeName];x=0!==x.length?" "+x:"",u+=w+"<".concat(m).concat(x).concat(b,"?>"),c=!0}else u+=l+"\x3c!--".concat(f[m][0][o.textNodeName],"--\x3e"),c=!0;else c&&(u+=l),u+="<![CDATA[".concat(f[m][0][o.textNodeName],"]]>"),c=!1;else{var T=f[m];a(d,o)||(T=s(T=o.tagValueProcessor(m,T),o)),c&&(u+=l),u+=T,c=!1}}return u}function n(e){for(var t=Object.keys(e),n=0;n<t.length;n++){var r=t[n];if(":@"!==r)return r}}function r(e,t){var n="";if(e&&!t.ignoreAttributes)for(var r in e){var a=t.attributeValueProcessor(r,e[r]);!0===(a=s(a,t))&&t.suppressBooleanAttributes?n+=" ".concat(r.substr(t.attributeNamePrefix.length)):n+=" ".concat(r.substr(t.attributeNamePrefix.length),'="').concat(a,'"')}return n}function a(e,t){var n=(e=e.substr(0,e.length-t.textNodeName.length-1)).substr(e.lastIndexOf(".")+1);for(var r in t.stopNodes)if(t.stopNodes[r]===e||t.stopNodes[r]==="*."+n)return!0;return!1}function s(e,t){if(e&&e.length>0&&t.processEntities)for(var n=0;n<t.entities.length;n++){var r=t.entities[n];e=e.replace(r.regex,r.val)}return e}e.exports=function(e,n){var r="";return n.format&&n.indentBy.length>0&&(r="\n"),t(e,n,"",r)}},895:(e,t,n)=>{function r(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,s=[],o=!0,i=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(s.push(r.value),!t||s.length!==t);o=!0);}catch(e){i=!0,a=e}finally{try{o||null==n.return||n.return()}finally{if(i)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?a(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var s=n(410);function o(e,t){for(var n="";t<e.length&&"'"!==e[t]&&'"'!==e[t];t++)n+=e[t];if(-1!==(n=n.trim()).indexOf(" "))throw new Error("External entites are not supported");for(var r=e[t++],a="";t<e.length&&e[t]!==r;t++)a+=e[t];return[n,a,t]}function i(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}function l(e,t){return"!"===e[t+1]&&"E"===e[t+2]&&"N"===e[t+3]&&"T"===e[t+4]&&"I"===e[t+5]&&"T"===e[t+6]&&"Y"===e[t+7]}function u(e,t){return"!"===e[t+1]&&"E"===e[t+2]&&"L"===e[t+3]&&"E"===e[t+4]&&"M"===e[t+5]&&"E"===e[t+6]&&"N"===e[t+7]&&"T"===e[t+8]}function c(e,t){return"!"===e[t+1]&&"A"===e[t+2]&&"T"===e[t+3]&&"T"===e[t+4]&&"L"===e[t+5]&&"I"===e[t+6]&&"S"===e[t+7]&&"T"===e[t+8]}function p(e,t){return"!"===e[t+1]&&"N"===e[t+2]&&"O"===e[t+3]&&"T"===e[t+4]&&"A"===e[t+5]&&"T"===e[t+6]&&"I"===e[t+7]&&"O"===e[t+8]&&"N"===e[t+9]}function d(e){if(s.isName(e))return e;throw new Error("Invalid entity name ".concat(e))}e.exports=function(e,t){var n={};if("O"!==e[t+3]||"C"!==e[t+4]||"T"!==e[t+5]||"Y"!==e[t+6]||"P"!==e[t+7]||"E"!==e[t+8])throw new Error("Invalid Tag instead of DOCTYPE");t+=9;for(var a=1,s=!1,f=!1;t<e.length;t++)if("<"!==e[t]||f)if(">"===e[t]){if(f?"-"===e[t-1]&&"-"===e[t-2]&&(f=!1,a--):a--,0===a)break}else"["===e[t]?s=!0:e[t];else{if(s&&l(e,t)){var m=r(o(e,(t+=7)+1),3);entityName=m[0],val=m[1],t=m[2],-1===val.indexOf("&")&&(n[d(entityName)]={regx:RegExp("&".concat(entityName,";"),"g"),val})}else if(s&&u(e,t))t+=8;else if(s&&c(e,t))t+=8;else if(s&&p(e,t))t+=9;else{if(!i)throw new Error("Invalid DOCTYPE");f=!0}a++}if(0!==a)throw new Error("Unclosed DOCTYPE");return{entities:n,i:t}}},282:(e,t)=>{var n={preserveOrder:!1,attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,removeNSPrefix:!1,allowBooleanAttributes:!1,parseTagValue:!0,parseAttributeValue:!1,trimValues:!0,cdataPropName:!1,numberParseOptions:{hex:!0,leadingZeros:!0,eNotation:!0},tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},stopNodes:[],alwaysCreateTextNode:!1,isArray:function(){return!1},commentPropName:!1,unpairedTags:[],processEntities:!0,htmlEntities:!1,ignoreDeclaration:!1,ignorePiTags:!1,transformTagName:!1,transformAttributeName:!1,updateTag:function(e,t,n){return e}};t.buildOptions=function(e){return Object.assign({},n,e)},t.defaultOptions=n},502:(e,t,n)=>{function r(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function s(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}var o=n(410),i=n(961),l=n(895),u=n(512),c=("<((!\\[CDATA\\[([\\s\\S]*?)(]]>))|((NAME:)?(NAME))([^>]*)>|((\\/)(NAME)\\s*>))([^<]*)".replace(/NAME/g,o.nameRegexp),function(e,t,n){return t&&s(e.prototype,t),n&&s(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"}},this.addExternalEntities=p,this.parseXml=g,this.parseTextData=d,this.resolveNameSpace=f,this.buildAttributesMap=h,this.isItStopNode=w,this.replaceEntitiesValue=y,this.readStopNodeData=_,this.saveTextToParentTag=b,this.addChild=v})));function p(e){for(var t=Object.keys(e),n=0;n<t.length;n++){var r=t[n];this.lastEntities[r]={regex:new RegExp("&"+r+";","g"),val:e[r]}}}function d(e,t,n,r,s,o,i){if(void 0!==e&&(this.options.trimValues&&!r&&(e=e.trim()),e.length>0)){i||(e=this.replaceEntitiesValue(e));var l=this.options.tagValueProcessor(t,e,n,s,o);return null==l?e:a(l)!==a(e)||l!==e?l:this.options.trimValues||e.trim()===e?C(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function f(e){if(this.options.removeNSPrefix){var t=e.split(":"),n="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=n+t[1])}return e}var m=new RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function h(e,t,n){if(!this.options.ignoreAttributes&&"string"==typeof e){for(var r=o.getAllMatches(e,m),s=r.length,i={},l=0;l<s;l++){var u=this.resolveNameSpace(r[l][1]),c=r[l][4],p=this.options.attributeNamePrefix+u;if(u.length)if(this.options.transformAttributeName&&(p=this.options.transformAttributeName(p)),"__proto__"===p&&(p="#__proto__"),void 0!==c){this.options.trimValues&&(c=c.trim()),c=this.replaceEntitiesValue(c);var d=this.options.attributeValueProcessor(u,c,t);null==d?i[p]=c:a(d)!==a(c)||d!==c?i[p]=d:i[p]=C(c,this.options.parseAttributeValue,this.options.numberParseOptions)}else this.options.allowBooleanAttributes&&(i[p]=!0)}if(!Object.keys(i).length)return;if(this.options.attributesGroupName){var f={};return f[this.options.attributesGroupName]=i,f}return i}}var g=function(e){e=e.replace(/\r\n?/g,"\n");for(var t=new i("!xml"),n=t,a="",s="",o=0;o<e.length;o++)if("<"===e[o])if("/"===e[o+1]){var u=x(e,">",o,"Closing Tag is not closed."),c=e.substring(o+2,u).trim();if(this.options.removeNSPrefix){var p=c.indexOf(":");-1!==p&&(c=c.substr(p+1))}this.options.transformTagName&&(c=this.options.transformTagName(c)),n&&(a=this.saveTextToParentTag(a,n,s));var d=s.substring(s.lastIndexOf(".")+1);if(c&&-1!==this.options.unpairedTags.indexOf(c))throw new Error("Unpaired tag can not be used as closing tag: </".concat(c,">"));var f=0;d&&-1!==this.options.unpairedTags.indexOf(d)?(f=s.lastIndexOf(".",s.lastIndexOf(".")-1),this.tagsNodeStack.pop()):f=s.lastIndexOf("."),s=s.substring(0,f),n=this.tagsNodeStack.pop(),a="",o=u}else if("?"===e[o+1]){var m=T(e,o,!1,"?>");if(!m)throw new Error("Pi Tag is not closed.");if(a=this.saveTextToParentTag(a,n,s),this.options.ignoreDeclaration&&"?xml"===m.tagName||this.options.ignorePiTags);else{var h=new i(m.tagName);h.add(this.options.textNodeName,""),m.tagName!==m.tagExp&&m.attrExpPresent&&(h[":@"]=this.buildAttributesMap(m.tagExp,s,m.tagName)),this.addChild(n,h,s)}o=m.closeIndex+1}else if("!--"===e.substr(o+1,3)){var g=x(e,"--\x3e",o+4,"Comment is not closed.");if(this.options.commentPropName){var v=e.substring(o+4,g-2);a=this.saveTextToParentTag(a,n,s),n.add(this.options.commentPropName,[r({},this.options.textNodeName,v)])}o=g}else if("!D"===e.substr(o+1,2)){var y=l(e,o);this.docTypeEntities=y.entities,o=y.i}else if("!["===e.substr(o+1,2)){var b=x(e,"]]>",o,"CDATA is not closed.")-2,w=e.substring(o+9,b);if(a=this.saveTextToParentTag(a,n,s),this.options.cdataPropName)n.add(this.options.cdataPropName,[r({},this.options.textNodeName,w)]);else{var _=this.parseTextData(w,n.tagname,s,!0,!1,!0);null==_&&(_=""),n.add(this.options.textNodeName,_)}o=b+2}else{var C=T(e,o,this.options.removeNSPrefix),S=C.tagName,N=C.tagExp,E=C.attrExpPresent,L=C.closeIndex;this.options.transformTagName&&(S=this.options.transformTagName(S)),n&&a&&"!xml"!==n.tagname&&(a=this.saveTextToParentTag(a,n,s,!1));var j=n;if(j&&-1!==this.options.unpairedTags.indexOf(j.tagname)&&(n=this.tagsNodeStack.pop(),s=s.substring(0,s.lastIndexOf("."))),S!==t.tagname&&(s+=s?"."+S:S),this.isItStopNode(this.options.stopNodes,s,S)){var F="";if(N.length>0&&N.lastIndexOf("/")===N.length-1)o=C.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(S))o=C.closeIndex;else{var k=this.readStopNodeData(e,S,L+1);if(!k)throw new Error("Unexpected end of ".concat(S));o=k.i,F=k.tagContent}var O=new i(S);S!==N&&E&&(O[":@"]=this.buildAttributesMap(N,s,S)),F&&(F=this.parseTextData(F,S,s,!0,E,!0,!0)),s=s.substr(0,s.lastIndexOf(".")),O.add(this.options.textNodeName,F),this.addChild(n,O,s)}else{if(N.length>0&&N.lastIndexOf("/")===N.length-1){"/"===S[S.length-1]?(S=S.substr(0,S.length-1),s=s.substr(0,s.length-1),N=S):N=N.substr(0,N.length-1),this.options.transformTagName&&(S=this.options.transformTagName(S));var A=new i(S);S!==N&&E&&(A[":@"]=this.buildAttributesMap(N,s,S)),this.addChild(n,A,s),s=s.substr(0,s.lastIndexOf("."))}else{var P=new i(S);this.tagsNodeStack.push(n),S!==N&&E&&(P[":@"]=this.buildAttributesMap(N,s,S)),this.addChild(n,P,s),n=P}a="",o=L}}else a+=e[o];return t.child};function v(e,t,n){var r=this.options.updateTag(t.tagname,n,t[":@"]);!1===r||("string"==typeof r?(t.tagname=r,e.addChild(t)):e.addChild(t))}var y=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var n=this.docTypeEntities[t];e=e.replace(n.regx,n.val)}for(var r in this.lastEntities){var a=this.lastEntities[r];e=e.replace(a.regex,a.val)}if(this.options.htmlEntities)for(var s in this.htmlEntities){var o=this.htmlEntities[s];e=e.replace(o.regex,o.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function b(e,t,n,r){return e&&(void 0===r&&(r=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,n,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,r))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function w(e,t,n){var r="*."+n;for(var a in e){var s=e[a];if(r===s||t===s)return!0}return!1}function x(e,t,n,r){var a=e.indexOf(t,n);if(-1===a)throw new Error(r);return a+t.length-1}function T(e,t,n){var r=function(e,t){for(var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",a="",s=t;s<e.length;s++){var o=e[s];if(n)o===n&&(n="");else if('"'===o||"'"===o)n=o;else if(o===r[0]){if(!r[1])return{data:a,index:s};if(e[s+1]===r[1])return{data:a,index:s}}else"\t"===o&&(o=" ");a+=o}}(e,t+1,arguments.length>3&&void 0!==arguments[3]?arguments[3]:">");if(r){var a=r.data,s=r.index,o=a.search(/\s/),i=a,l=!0;if(-1!==o&&(i=a.substr(0,o).replace(/\s\s*$/,""),a=a.substr(o+1)),n){var u=i.indexOf(":");-1!==u&&(l=(i=i.substr(u+1))!==r.data.substr(u+1))}return{tagName:i,tagExp:a,closeIndex:s,attrExpPresent:l}}}function _(e,t,n){for(var r=n,a=1;n<e.length;n++)if("<"===e[n])if("/"===e[n+1]){var s=x(e,">",n,"".concat(t," is not closed"));if(e.substring(n+2,s).trim()===t&&0==--a)return{tagContent:e.substring(r,n),i:s};n=s}else if("?"===e[n+1])n=x(e,"?>",n+1,"StopNode is not closed.");else if("!--"===e.substr(n+1,3))n=x(e,"--\x3e",n+3,"StopNode is not closed.");else if("!["===e.substr(n+1,2))n=x(e,"]]>",n,"StopNode is not closed.")-2;else{var o=T(e,n,">");o&&((o&&o.tagName)===t&&"/"!==o.tagExp[o.tagExp.length-1]&&a++,n=o.closeIndex)}}function C(e,t,n){if(t&&"string"==typeof e){var r=e.trim();return"true"===r||"false"!==r&&u(e,n)}return o.isExist(e)?e:""}e.exports=c},586:(e,t,n)=>{var r=n(282).buildOptions,a=n(502),s=n(869).prettify,o=n(135),i=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.externalEntities={},this.options=r(t)}var t,n;return t=e,(n=[{key:"parse",value:function(e,t){if("string"==typeof e);else{if(!e.toString)throw new Error("XML data is accepted in String or Bytes[] form.");e=e.toString()}if(t){!0===t&&(t={});var n=o.validate(e,t);if(!0!==n)throw Error("".concat(n.err.msg,":").concat(n.err.line,":").concat(n.err.col))}var r=new a(this.options);r.addExternalEntities(this.externalEntities);var i=r.parseXml(e);return this.options.preserveOrder||void 0===i?i:s(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw new Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw new Error("An entity must be set without '&' and ';'. Eg. use '#xD' for '&#xD;'");if("&"===t)throw new Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}])&&function(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}();e.exports=i},869:(e,t)=>{function n(e,t,o){for(var i,l={},u=0;u<e.length;u++){var c,p=e[u],d=r(p);if(c=void 0===o?d:o+"."+d,d===t.textNodeName)void 0===i?i=p[d]:i+=""+p[d];else{if(void 0===d)continue;if(p[d]){var f=n(p[d],t,c),m=s(f,t);p[":@"]?a(f,p[":@"],c,t):1!==Object.keys(f).length||void 0===f[t.textNodeName]||t.alwaysCreateTextNode?0===Object.keys(f).length&&(t.alwaysCreateTextNode?f[t.textNodeName]="":f=""):f=f[t.textNodeName],void 0!==l[d]&&l.hasOwnProperty(d)?(Array.isArray(l[d])||(l[d]=[l[d]]),l[d].push(f)):t.isArray(d,c,m)?l[d]=[f]:l[d]=f}}}return"string"==typeof i?i.length>0&&(l[t.textNodeName]=i):void 0!==i&&(l[t.textNodeName]=i),l}function r(e){for(var t=Object.keys(e),n=0;n<t.length;n++){var r=t[n];if(":@"!==r)return r}}function a(e,t,n,r){if(t)for(var a=Object.keys(t),s=a.length,o=0;o<s;o++){var i=a[o];r.isArray(i,n+"."+i,!0,!0)?e[i]=[t[i]]:e[i]=t[i]}}function s(e,t){var n=t.textNodeName,r=Object.keys(e).length;return 0===r||!(1!==r||!e[n]&&"boolean"!=typeof e[n]&&0!==e[n])}t.prettify=function(e,t){return n(e,t)}},961:e=>{function t(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var n=function(){function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.tagname=t,this.child=[],this[":@"]={}}var n,r;return n=e,(r=[{key:"add",value:function(e,n){"__proto__"===e&&(e="#__proto__"),this.child.push(t({},e,n))}},{key:"addChild",value:function(e){var n;"__proto__"===e.tagname&&(e.tagname="#__proto__"),e[":@"]&&Object.keys(e[":@"]).length>0?this.child.push((t(n={},e.tagname,e.child),t(n,":@",e[":@"]),n)):this.child.push(t({},e.tagname,e.child))}}])&&function(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}(n.prototype,r),Object.defineProperty(n,"prototype",{writable:!1}),e}();e.exports=n},163:e=>{function t(e){return!!e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}e.exports=function(e){return null!=e&&(t(e)||function(e){return"function"==typeof e.readFloatLE&&"function"==typeof e.slice&&t(e.slice(0,0))}(e)||!!e._isBuffer)}},243:(e,t,n)=>{var r,a,s,o,i;r=n(718),a=n(106).utf8,s=n(163),o=n(106).bin,(i=function e(t,n){t.constructor==String?t=n&&"binary"===n.encoding?o.stringToBytes(t):a.stringToBytes(t):s(t)?t=Array.prototype.slice.call(t,0):Array.isArray(t)||t.constructor===Uint8Array||(t=t.toString());for(var i=r.bytesToWords(t),l=8*t.length,u=1732584193,c=-271733879,p=-1732584194,d=271733878,f=0;f<i.length;f++)i[f]=16711935&(i[f]<<8|i[f]>>>24)|4278255360&(i[f]<<24|i[f]>>>8);i[l>>>5]|=128<<l%32,i[14+(l+64>>>9<<4)]=l;var m=e._ff,h=e._gg,g=e._hh,v=e._ii;for(f=0;f<i.length;f+=16){var y=u,b=c,w=p,x=d;u=m(u,c,p,d,i[f+0],7,-680876936),d=m(d,u,c,p,i[f+1],12,-389564586),p=m(p,d,u,c,i[f+2],17,606105819),c=m(c,p,d,u,i[f+3],22,-1044525330),u=m(u,c,p,d,i[f+4],7,-176418897),d=m(d,u,c,p,i[f+5],12,1200080426),p=m(p,d,u,c,i[f+6],17,-1473231341),c=m(c,p,d,u,i[f+7],22,-45705983),u=m(u,c,p,d,i[f+8],7,1770035416),d=m(d,u,c,p,i[f+9],12,-1958414417),p=m(p,d,u,c,i[f+10],17,-42063),c=m(c,p,d,u,i[f+11],22,-1990404162),u=m(u,c,p,d,i[f+12],7,1804603682),d=m(d,u,c,p,i[f+13],12,-40341101),p=m(p,d,u,c,i[f+14],17,-1502002290),u=h(u,c=m(c,p,d,u,i[f+15],22,1236535329),p,d,i[f+1],5,-165796510),d=h(d,u,c,p,i[f+6],9,-1069501632),p=h(p,d,u,c,i[f+11],14,643717713),c=h(c,p,d,u,i[f+0],20,-373897302),u=h(u,c,p,d,i[f+5],5,-701558691),d=h(d,u,c,p,i[f+10],9,38016083),p=h(p,d,u,c,i[f+15],14,-660478335),c=h(c,p,d,u,i[f+4],20,-405537848),u=h(u,c,p,d,i[f+9],5,568446438),d=h(d,u,c,p,i[f+14],9,-1019803690),p=h(p,d,u,c,i[f+3],14,-187363961),c=h(c,p,d,u,i[f+8],20,1163531501),u=h(u,c,p,d,i[f+13],5,-1444681467),d=h(d,u,c,p,i[f+2],9,-51403784),p=h(p,d,u,c,i[f+7],14,1735328473),u=g(u,c=h(c,p,d,u,i[f+12],20,-1926607734),p,d,i[f+5],4,-378558),d=g(d,u,c,p,i[f+8],11,-2022574463),p=g(p,d,u,c,i[f+11],16,1839030562),c=g(c,p,d,u,i[f+14],23,-35309556),u=g(u,c,p,d,i[f+1],4,-1530992060),d=g(d,u,c,p,i[f+4],11,1272893353),p=g(p,d,u,c,i[f+7],16,-155497632),c=g(c,p,d,u,i[f+10],23,-1094730640),u=g(u,c,p,d,i[f+13],4,681279174),d=g(d,u,c,p,i[f+0],11,-358537222),p=g(p,d,u,c,i[f+3],16,-722521979),c=g(c,p,d,u,i[f+6],23,76029189),u=g(u,c,p,d,i[f+9],4,-640364487),d=g(d,u,c,p,i[f+12],11,-421815835),p=g(p,d,u,c,i[f+15],16,530742520),u=v(u,c=g(c,p,d,u,i[f+2],23,-995338651),p,d,i[f+0],6,-198630844),d=v(d,u,c,p,i[f+7],10,1126891415),p=v(p,d,u,c,i[f+14],15,-1416354905),c=v(c,p,d,u,i[f+5],21,-57434055),u=v(u,c,p,d,i[f+12],6,1700485571),d=v(d,u,c,p,i[f+3],10,-1894986606),p=v(p,d,u,c,i[f+10],15,-1051523),c=v(c,p,d,u,i[f+1],21,-2054922799),u=v(u,c,p,d,i[f+8],6,1873313359),d=v(d,u,c,p,i[f+15],10,-30611744),p=v(p,d,u,c,i[f+6],15,-1560198380),c=v(c,p,d,u,i[f+13],21,1309151649),u=v(u,c,p,d,i[f+4],6,-145523070),d=v(d,u,c,p,i[f+11],10,-1120210379),p=v(p,d,u,c,i[f+2],15,718787259),c=v(c,p,d,u,i[f+9],21,-343485551),u=u+y>>>0,c=c+b>>>0,p=p+w>>>0,d=d+x>>>0}return r.endian([u,c,p,d])})._ff=function(e,t,n,r,a,s,o){var i=e+(t&n|~t&r)+(a>>>0)+o;return(i<<s|i>>>32-s)+t},i._gg=function(e,t,n,r,a,s,o){var i=e+(t&r|n&~r)+(a>>>0)+o;return(i<<s|i>>>32-s)+t},i._hh=function(e,t,n,r,a,s,o){var i=e+(t^n^r)+(a>>>0)+o;return(i<<s|i>>>32-s)+t},i._ii=function(e,t,n,r,a,s,o){var i=e+(n^(t|~r))+(a>>>0)+o;return(i<<s|i>>>32-s)+t},i._blocksize=16,i._digestsize=16,e.exports=function(e,t){if(null==e)throw new Error("Illegal argument "+e);var n=r.wordsToBytes(i(e,t));return t&&t.asBytes?n:t&&t.asString?o.bytesToString(n):r.bytesToHex(n)}},637:(e,t,n)=>{var r=n(584);e.exports=function(e){return e?("{}"===e.substr(0,2)&&(e="\\{\\}"+e.substr(2)),g(function(e){return e.split("\\\\").join(a).split("\\{").join(s).split("\\}").join(o).split("\\,").join(i).split("\\.").join(l)}(e),!0).map(c)):[]};var a="\0SLASH"+Math.random()+"\0",s="\0OPEN"+Math.random()+"\0",o="\0CLOSE"+Math.random()+"\0",i="\0COMMA"+Math.random()+"\0",l="\0PERIOD"+Math.random()+"\0";function u(e){return parseInt(e,10)==e?parseInt(e,10):e.charCodeAt(0)}function c(e){return e.split(a).join("\\").split(s).join("{").split(o).join("}").split(i).join(",").split(l).join(".")}function p(e){if(!e)return[""];var t=[],n=r("{","}",e);if(!n)return e.split(",");var a=n.pre,s=n.body,o=n.post,i=a.split(",");i[i.length-1]+="{"+s+"}";var l=p(o);return o.length&&(i[i.length-1]+=l.shift(),i.push.apply(i,l)),t.push.apply(t,i),t}function d(e){return"{"+e+"}"}function f(e){return/^-?0\d/.test(e)}function m(e,t){return e<=t}function h(e,t){return e>=t}function g(e,t){var n=[],a=r("{","}",e);if(!a)return[e];var s=a.pre,i=a.post.length?g(a.post,!1):[""];if(/\$$/.test(a.pre))for(var l=0;l<i.length;l++){var c=s+"{"+a.body+"}"+i[l];n.push(c)}else{var v,y,b=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(a.body),w=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(a.body),x=b||w,T=a.body.indexOf(",")>=0;if(!x&&!T)return a.post.match(/,.*\}/)?g(e=a.pre+"{"+a.body+o+a.post):[e];if(x)v=a.body.split(/\.\./);else if(1===(v=p(a.body)).length&&1===(v=g(v[0],!1).map(d)).length)return i.map((function(e){return a.pre+v[0]+e}));if(x){var _=u(v[0]),C=u(v[1]),S=Math.max(v[0].length,v[1].length),N=3==v.length?Math.abs(u(v[2])):1,E=m;C<_&&(N*=-1,E=h);var L=v.some(f);y=[];for(var j=_;E(j,C);j+=N){var F;if(w)"\\"===(F=String.fromCharCode(j))&&(F="");else if(F=String(j),L){var k=S-F.length;if(k>0){var O=new Array(k+1).join("0");F=j<0?"-"+O+F.slice(1):O+F}}y.push(F)}}else{y=[];for(var A=0;A<v.length;A++)y.push.apply(y,g(v[A],!1))}for(A=0;A<y.length;A++)for(l=0;l<i.length;l++)c=s+y[A]+i[l],(!t||x||c)&&n.push(c)}return n}},421:e=>{function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t(e)}function n(e){var t="function"==typeof Map?new Map:void 0;return n=function(e){if(null===e||(n=e,-1===Function.toString.call(n).indexOf("[native code]")))return e;var n;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,o)}function o(){return r(e,arguments,s(this).constructor)}return o.prototype=Object.create(e.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),a(o,e)},n(e)}function r(e,t,n){return r=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}()?Reflect.construct:function(e,t,n){var r=[null];r.push.apply(r,t);var s=new(Function.bind.apply(e,r));return n&&a(s,n.prototype),s},r.apply(null,arguments)}function a(e,t){return a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},a(e,t)}function s(e){return s=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},s(e)}var o=function(e){function n(e){var r;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,n),(r=function(e,n){return!n||"object"!==t(n)&&"function"!=typeof n?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):n}(this,s(n).call(this,e))).name="ObjectPrototypeMutationError",r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&a(e,t)}(n,e),n}(n(Error));function i(e,n){for(var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},a=n.split("."),s=a.length,o=function(t){var n=a[t];if(!e)return{v:void 0};if("+"===n){if(Array.isArray(e))return{v:e.map((function(n,s){var o=a.slice(t+1);return o.length>0?i(n,o.join("."),r):r(e,s,a,t)}))};var s=a.slice(0,t).join(".");throw new Error("Object at wildcard (".concat(s,") is not an array"))}e=r(e,n,a,t)},l=0;l<s;l++){var u=o(l);if("object"===t(u))return u.v}return e}function l(e,t){return e.length===t+1}e.exports={set:function(e,n,r){if("object"!=t(e)||null===e)return e;if(void 0===n)return e;if("number"==typeof n)return e[n]=r,e[n];try{return i(e,n,(function(e,t,n,a){if(e===Reflect.getPrototypeOf({}))throw new o("Attempting to mutate Object.prototype");if(!e[t]){var s=Number.isInteger(Number(n[a+1])),i="+"===n[a+1];e[t]=s||i?[]:{}}return l(n,a)&&(e[t]=r),e[t]}))}catch(t){if(t instanceof o)throw t;return e}},get:function(e,n){if("object"!=t(e)||null===e)return e;if(void 0===n)return e;if("number"==typeof n)return e[n];try{return i(e,n,(function(e,t){return e[t]}))}catch(t){return e}},has:function(e,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if("object"!=t(e)||null===e)return!1;if(void 0===n)return!1;if("number"==typeof n)return n in e;try{var a=!1;return i(e,n,(function(e,t,n,s){if(!l(n,s))return e&&e[t];a=r.own?e.hasOwnProperty(t):t in e})),a}catch(e){return!1}},hasOwn:function(e,t,n){return this.has(e,t,n||{own:!0})},isIn:function(e,n,r){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if("object"!=t(e)||null===e)return!1;if(void 0===n)return!1;try{var s=!1,o=!1;return i(e,n,(function(e,n,a,i){return s=s||e===r||!!e&&e[n]===r,o=l(a,i)&&"object"===t(e)&&n in e,e&&e[n]})),a.validPath?s&&o:s}catch(e){return!1}},ObjectPrototypeMutationError:o}},441:(e,t,n)=>{function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}var s=n(930),o=function(e){return"string"==typeof e};function i(e,t){for(var n=[],r=0;r<e.length;r++){var a=e[r];a&&"."!==a&&(".."===a?n.length&&".."!==n[n.length-1]?n.pop():t&&n.push(".."):n.push(a))}return n}var l=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,u={};function c(e){return l.exec(e).slice(1)}u.resolve=function(){for(var e="",t=!1,n=arguments.length-1;n>=-1&&!t;n--){var a=n>=0?arguments[n]:r.cwd();if(!o(a))throw new TypeError("Arguments to path.resolve must be strings");a&&(e=a+"/"+e,t="/"===a.charAt(0))}return(t?"/":"")+(e=i(e.split("/"),!t).join("/"))||"."},u.normalize=function(e){var t=u.isAbsolute(e),n="/"===e.substr(-1);return(e=i(e.split("/"),!t).join("/"))||t||(e="."),e&&n&&(e+="/"),(t?"/":"")+e},u.isAbsolute=function(e){return"/"===e.charAt(0)},u.join=function(){for(var e="",t=0;t<arguments.length;t++){var n=arguments[t];if(!o(n))throw new TypeError("Arguments to path.join must be strings");n&&(e+=e?"/"+n:n)}return u.normalize(e)},u.relative=function(e,t){function n(e){for(var t=0;t<e.length&&""===e[t];t++);for(var n=e.length-1;n>=0&&""===e[n];n--);return t>n?[]:e.slice(t,n+1)}e=u.resolve(e).substr(1),t=u.resolve(t).substr(1);for(var r=n(e.split("/")),a=n(t.split("/")),s=Math.min(r.length,a.length),o=s,i=0;i<s;i++)if(r[i]!==a[i]){o=i;break}var l=[];for(i=o;i<r.length;i++)l.push("..");return(l=l.concat(a.slice(o))).join("/")},u._makeLong=function(e){return e},u.dirname=function(e){var t=c(e),n=t[0],r=t[1];return n||r?(r&&(r=r.substr(0,r.length-1)),n+r):"."},u.basename=function(e,t){var n=c(e)[2];return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},u.extname=function(e){return c(e)[3]},u.format=function(e){if(!s.isObject(e))throw new TypeError("Parameter 'pathObject' must be an object, not "+a(e));var t=e.root||"";if(!o(t))throw new TypeError("'pathObject.root' must be a string or undefined, not "+a(e.root));return(e.dir?e.dir+u.sep:"")+(e.base||"")},u.parse=function(e){if(!o(e))throw new TypeError("Parameter 'pathString' must be a string, not "+a(e));var t=c(e);if(!t||4!==t.length)throw new TypeError("Invalid path '"+e+"'");return t[1]=t[1]||"",t[2]=t[2]||"",t[3]=t[3]||"",{root:t[0],dir:t[0]+t[1].slice(0,t[1].length-1),base:t[2],ext:t[3],name:t[2].slice(0,t[2].length-t[3].length)}},u.sep="/",u.delimiter=":",e.exports=u},361:(e,t)=>{var n=Object.prototype.hasOwnProperty;function r(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(e){return null}}function a(e){try{return encodeURIComponent(e)}catch(e){return null}}t.stringify=function(e,t){t=t||"";var r,s,o=[];for(s in"string"!=typeof t&&(t="?"),e)if(n.call(e,s)){if((r=e[s])||null!=r&&!isNaN(r)||(r=""),s=a(s),r=a(r),null===s||null===r)continue;o.push(s+"="+r)}return o.length?t+o.join("&"):""},t.parse=function(e){for(var t,n=/([^=?#&]+)=?([^&]*)/g,a={};t=n.exec(e);){var s=r(t[1]),o=r(t[2]);null===s||null===o||s in a||(a[s]=o)}return a}},620:e=>{e.exports=function(e,t){if(t=t.split(":")[0],!(e=+e))return!1;switch(t){case"http":case"ws":return 80!==e;case"https":case"wss":return 443!==e;case"ftp":return 21!==e;case"gopher":return 70!==e;case"file":return!1}return 0!==e}},512:e=>{var t=/^[-+]?0x[a-fA-F0-9]+$/,n=/^([\-\+])?(0*)(\.[0-9]+([eE]\-?[0-9]+)?|[0-9]+(\.[0-9]+([eE]\-?[0-9]+)?)?)$/;!Number.parseInt&&window.parseInt&&(Number.parseInt=window.parseInt),!Number.parseFloat&&window.parseFloat&&(Number.parseFloat=window.parseFloat);var r={hex:!0,leadingZeros:!0,decimalPoint:".",eNotation:!0};e.exports=function(e){var a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(a=Object.assign({},r,a),!e||"string"!=typeof e)return e;var s=e.trim();if(void 0!==a.skipLike&&a.skipLike.test(s))return e;if(a.hex&&t.test(s))return Number.parseInt(s,16);var o=n.exec(s);if(o){var i=o[1],l=o[2],u=function(e){return e&&-1!==e.indexOf(".")?("."===(e=e.replace(/0+$/,""))?e="0":"."===e[0]?e="0"+e:"."===e[e.length-1]&&(e=e.substr(0,e.length-1)),e):e}(o[3]),c=o[4]||o[6];if(!a.leadingZeros&&l.length>0&&i&&"."!==s[2])return e;if(!a.leadingZeros&&l.length>0&&!i&&"."!==s[1])return e;var p=Number(s),d=""+p;return-1!==d.search(/[eE]/)||c?a.eNotation?p:e:-1!==s.indexOf(".")?"0"===d&&""===u||d===u||i&&d==="-"+u?p:e:l?u===d||i+u===d?p:e:s===d||s===i+d?p:e}return e}},95:(e,t,n)=>{function r(e){return r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},r(e)}var a=n(620),s=n(361),o=/^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/,i=/[\n\r\t]/g,l=/^[A-Za-z][A-Za-z0-9+-.]*:\/\//,u=/:\d+$/,c=/^([a-z][a-z0-9.+-]*:)?(\/\/)?([\\/]+)?([\S\s]*)/i,p=/^[a-zA-Z]:/;function d(e){return(e||"").toString().replace(o,"")}var f=[["#","hash"],["?","query"],function(e,t){return g(t.protocol)?e.replace(/\\/g,"/"):e},["/","pathname"],["@","auth",1],[NaN,"host",void 0,1,1],[/:(\d*)$/,"port",void 0,1],[NaN,"hostname",void 0,1,1]],m={hash:1,query:1};function h(e){var t,n=("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{}).location||{},a={},s=r(e=e||n);if("blob:"===e.protocol)a=new y(unescape(e.pathname),{});else if("string"===s)for(t in a=new y(e,{}),m)delete a[t];else if("object"===s){for(t in e)t in m||(a[t]=e[t]);void 0===a.slashes&&(a.slashes=l.test(e.href))}return a}function g(e){return"file:"===e||"ftp:"===e||"http:"===e||"https:"===e||"ws:"===e||"wss:"===e}function v(e,t){e=(e=d(e)).replace(i,""),t=t||{};var n,r=c.exec(e),a=r[1]?r[1].toLowerCase():"",s=!!r[2],o=!!r[3],l=0;return s?o?(n=r[2]+r[3]+r[4],l=r[2].length+r[3].length):(n=r[2]+r[4],l=r[2].length):o?(n=r[3]+r[4],l=r[3].length):n=r[4],"file:"===a?l>=2&&(n=n.slice(2)):g(a)?n=r[4]:a?s&&(n=n.slice(2)):l>=2&&g(t.protocol)&&(n=r[4]),{protocol:a,slashes:s||g(a),slashesCount:l,rest:n}}function y(e,t,n){if(e=(e=d(e)).replace(i,""),!(this instanceof y))return new y(e,t,n);var o,l,u,c,m,b,w=f.slice(),x=r(t),T=this,_=0;for("object"!==x&&"string"!==x&&(n=t,t=null),n&&"function"!=typeof n&&(n=s.parse),o=!(l=v(e||"",t=h(t))).protocol&&!l.slashes,T.slashes=l.slashes||o&&t.slashes,T.protocol=l.protocol||t.protocol||"",e=l.rest,("file:"===l.protocol&&(2!==l.slashesCount||p.test(e))||!l.slashes&&(l.protocol||l.slashesCount<2||!g(T.protocol)))&&(w[3]=[/(.*)/,"pathname"]);_<w.length;_++)"function"!=typeof(c=w[_])?(u=c[0],b=c[1],u!=u?T[b]=e:"string"==typeof u?~(m="@"===u?e.lastIndexOf(u):e.indexOf(u))&&("number"==typeof c[2]?(T[b]=e.slice(0,m),e=e.slice(m+c[2])):(T[b]=e.slice(m),e=e.slice(0,m))):(m=u.exec(e))&&(T[b]=m[1],e=e.slice(0,m.index)),T[b]=T[b]||o&&c[3]&&t[b]||"",c[4]&&(T[b]=T[b].toLowerCase())):e=c(e,T);n&&(T.query=n(T.query)),o&&t.slashes&&"/"!==T.pathname.charAt(0)&&(""!==T.pathname||""!==t.pathname)&&(T.pathname=function(e,t){if(""===e)return t;for(var n=(t||"/").split("/").slice(0,-1).concat(e.split("/")),r=n.length,a=n[r-1],s=!1,o=0;r--;)"."===n[r]?n.splice(r,1):".."===n[r]?(n.splice(r,1),o++):o&&(0===r&&(s=!0),n.splice(r,1),o--);return s&&n.unshift(""),"."!==a&&".."!==a||n.push(""),n.join("/")}(T.pathname,t.pathname)),"/"!==T.pathname.charAt(0)&&g(T.protocol)&&(T.pathname="/"+T.pathname),a(T.port,T.protocol)||(T.host=T.hostname,T.port=""),T.username=T.password="",T.auth&&(~(m=T.auth.indexOf(":"))?(T.username=T.auth.slice(0,m),T.username=encodeURIComponent(decodeURIComponent(T.username)),T.password=T.auth.slice(m+1),T.password=encodeURIComponent(decodeURIComponent(T.password))):T.username=encodeURIComponent(decodeURIComponent(T.auth)),T.auth=T.password?T.username+":"+T.password:T.username),T.origin="file:"!==T.protocol&&g(T.protocol)&&T.host?T.protocol+"//"+T.host:"null",T.href=T.toString()}y.prototype={set:function(e,t,n){var r=this;switch(e){case"query":"string"==typeof t&&t.length&&(t=(n||s.parse)(t)),r[e]=t;break;case"port":r[e]=t,a(t,r.protocol)?t&&(r.host=r.hostname+":"+t):(r.host=r.hostname,r[e]="");break;case"hostname":r[e]=t,r.port&&(t+=":"+r.port),r.host=t;break;case"host":r[e]=t,u.test(t)?(t=t.split(":"),r.port=t.pop(),r.hostname=t.join(":")):(r.hostname=t,r.port="");break;case"protocol":r.protocol=t.toLowerCase(),r.slashes=!n;break;case"pathname":case"hash":if(t){var o="pathname"===e?"/":"#";r[e]=t.charAt(0)!==o?o+t:t}else r[e]=t;break;case"username":case"password":r[e]=encodeURIComponent(t);break;case"auth":var i=t.indexOf(":");~i?(r.username=t.slice(0,i),r.username=encodeURIComponent(decodeURIComponent(r.username)),r.password=t.slice(i+1),r.password=encodeURIComponent(decodeURIComponent(r.password))):r.username=encodeURIComponent(decodeURIComponent(t))}for(var l=0;l<f.length;l++){var c=f[l];c[4]&&(r[c[1]]=r[c[1]].toLowerCase())}return r.auth=r.password?r.username+":"+r.password:r.username,r.origin="file:"!==r.protocol&&g(r.protocol)&&r.host?r.protocol+"//"+r.host:"null",r.href=r.toString(),r},toString:function(e){e&&"function"==typeof e||(e=s.stringify);var t,n=this,a=n.host,o=n.protocol;o&&":"!==o.charAt(o.length-1)&&(o+=":");var i=o+(n.protocol&&n.slashes||g(n.protocol)?"//":"");return n.username?(i+=n.username,n.password&&(i+=":"+n.password),i+="@"):n.password?(i+=":"+n.password,i+="@"):"file:"!==n.protocol&&g(n.protocol)&&!a&&"/"!==n.pathname&&(i+="@"),(":"===a[a.length-1]||u.test(n.hostname)&&!n.port)&&(a+=":"),i+=a+n.pathname,(t="object"===r(n.query)?e(n.query):n.query)&&(i+="?"!==t.charAt(0)?"?"+t:t),n.hash&&(i+=n.hash),i}},y.extractProtocol=v,y.location=h,y.trimLeft=d,y.qs=s,e.exports=y},930:()=>{},227:()=>{},347:()=>{},724:()=>{}},s={};function o(e){var t=s[e];if(void 0!==t)return t.exports;var n=s[e]={id:e,loaded:!1,exports:{}};return a[e].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}o.amdO={},o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e);var i={};(()=>{o.d(i,{Gr:()=>O,jK:()=>A,cf:()=>R,HM:()=>I,eI:()=>Sn,lD:()=>G,yY:()=>Nt,sw:()=>Ct,np:()=>ht,_M:()=>Et});var e=o(95),t=o.n(e);function n(e){if(!a(e))throw new Error("Parameter was not an error")}function a(e){return"[object Error]"===(t=e,Object.prototype.toString.call(t))||e instanceof Error;var t}function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e){return l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},l(e)}function u(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function c(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p(e){var t="function"==typeof Map?new Map:void 0;return p=function(e){if(null===e||(n=e,-1===Function.toString.call(n).indexOf("[native code]")))return e;var n;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,r)}function r(){return d(e,arguments,h(this).constructor)}return r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),m(r,e)},p(e)}function d(e,t,n){return d=f()?Reflect.construct.bind():function(e,t,n){var r=[null];r.push.apply(r,t);var a=new(Function.bind.apply(e,r));return n&&m(a,n.prototype),a},d.apply(null,arguments)}function f(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function m(e,t){return m=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},m(e,t)}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}var g=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&m(e,t)}(g,e);var t,r,o,i,p,d=(i=g,p=f(),function(){var e,t=h(i);if(p){var n=h(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return function(e,t){if(t&&("object"===l(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return c(e)}(this,e)});function g(e,t){var n;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,g);var r=function(e){var t,n="";if(0===e.length)t={};else if(a(e[0]))t={cause:e[0]},n=e.slice(1).join(" ")||"";else if(e[0]&&"object"===s(e[0]))t=Object.assign({},e[0]),n=e.slice(1).join(" ")||"";else{if("string"!=typeof e[0])throw new Error("Invalid arguments passed to Layerr");t={},n=n=e.join(" ")||""}return{options:t,shortMessage:n}}(Array.prototype.slice.call(arguments)),o=r.options,i=r.shortMessage;if(o.cause&&(i="".concat(i,": ").concat(o.cause.message)),(n=d.call(this,i)).message=i,o.name&&"string"==typeof o.name?n.name=o.name:n.name="Layerr",o.cause&&Object.defineProperty(c(n),"_cause",{value:o.cause}),Object.defineProperty(c(n),"_info",{value:{}}),o.info&&"object"===l(o.info)&&Object.assign(n._info,o.info),Error.captureStackTrace){var u=o.constructorOpt||n.constructor;Error.captureStackTrace(c(n),u)}return n}return t=g,o=[{key:"cause",value:function(e){return n(e),e._cause&&a(e._cause)?e._cause:null}},{key:"fullStack",value:function(e){n(e);var t=g.cause(e);return t?"".concat(e.stack,"\ncaused by: ").concat(g.fullStack(t)):e.stack}},{key:"info",value:function(e){n(e);var t={},r=g.cause(e);return r&&Object.assign(t,g.info(r)),e._info&&Object.assign(t,e._info),t}}],(r=[{key:"cause",value:function(){return g.cause(this)}},{key:"toString",value:function(){var e=this.name||this.constructor.name||this.constructor.prototype.name;return this.message&&(e="".concat(e,": ").concat(this.message)),e}}])&&u(t.prototype,r),o&&u(t,o),Object.defineProperty(t,"prototype",{writable:!1}),g}(p(Error));function v(e){return v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}var y=o(441),b=o.n(y),w="__PATH_SEPARATOR_POSIX__",x="__PATH_SEPARATOR_WINDOWS__";function T(e){try{var t=e.replace(/\//g,w).replace(/\\\\/g,x);return encodeURIComponent(t).split(x).join("\\\\").split(w).join("/")}catch(e){throw new g(e,"Failed encoding path")}}function _(e){return e.startsWith("/")?e:"/"+e}function C(e){var t=e;return"/"!==t[0]&&(t="/"+t),/^.+\/$/.test(t)&&(t=t.substr(0,t.length-1)),t}function S(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(){return function(e){var t=[];if(0===e.length)return"";if("string"!=typeof e[0])throw new TypeError("Url must be a string. Received "+e[0]);if(e[0].match(/^[^/:]+:\/*$/)&&e.length>1){var n=e.shift();e[0]=n+e[0]}e[0].match(/^file:\/\/\//)?e[0]=e[0].replace(/^([^/:]+):\/*/,"$1:///"):e[0]=e[0].replace(/^([^/:]+):\/*/,"$1://");for(var r=0;r<e.length;r++){var a=e[r];if("string"!=typeof a)throw new TypeError("Url must be a string. Received "+a);""!==a&&(r>0&&(a=a.replace(/^[\/]+/,"")),a=r<e.length-1?a.replace(/[\/]+$/,""):a.replace(/[\/]+$/,"/"),t.push(a))}var s=t.join("/"),o=(s=s.replace(/\/(\?|&|#[^!])/g,"$1")).split("?");return o.shift()+(o.length>0?"?":"")+o.join("&")}("object"===v(arguments[0])?arguments[0]:[].slice.call(arguments))}(t.reduce((function(e,t,n){return(0===n||"/"!==t||"/"===t&&"/"!==e[e.length-1])&&e.push(t),e}),[]))}var N=o(243),E=o.n(N);function L(e,t){var n=e.url.replace("//",""),r=-1==n.indexOf("/")?"/":n.slice(n.indexOf("/")),a=e.method?e.method.toUpperCase():"GET",s=!!/(^|,)\s*auth\s*($|,)/.test(t.qop)&&"auth",o="00000000".concat(t.nc).slice(-8),i=function(e,t,n,r,a,s,o){var i=o||E()("".concat(t,":").concat(n,":").concat(r));return e&&"md5-sess"===e.toLowerCase()?E()("".concat(i,":").concat(a,":").concat(s)):i}(t.algorithm,t.username,t.realm,t.password,t.nonce,t.cnonce,t.ha1),l=E()("".concat(a,":").concat(r)),u=s?E()("".concat(i,":").concat(t.nonce,":").concat(o,":").concat(t.cnonce,":").concat(s,":").concat(l)):E()("".concat(i,":").concat(t.nonce,":").concat(l)),c={username:t.username,realm:t.realm,nonce:t.nonce,uri:r,qop:s,response:u,nc:o,cnonce:t.cnonce,algorithm:t.algorithm,opaque:t.opaque},p=[];for(var d in c)c[d]&&("qop"===d||"nc"===d||"algorithm"===d?p.push("".concat(d,"=").concat(c[d])):p.push("".concat(d,'="').concat(c[d],'"')));return"Digest ".concat(p.join(", "))}var j=o(146),F=o.n(j);function k(e){return F().decode(e)}var O,A,P="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:"undefined"!=typeof window?window:globalThis,U=P.fetch.bind(P),R=(P.Headers,P.Request),I=P.Response;function M(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];if(0===t.length)throw new Error("Failed creating sequence: No functions provided");return function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];for(var a=n;t.length>0;)a=[t.shift().apply(this,a)];return a[0]}}function B(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}!function(e){e.Digest="digest",e.None="none",e.Password="password",e.Token="token"}(O||(O={})),function(e){e.DataTypeNoLength="data-type-no-length",e.InvalidAuthType="invalid-auth-type",e.InvalidOutputFormat="invalid-output-format",e.LinkUnsupportedAuthType="link-unsupported-auth"}(A||(A={})),o(724);var D="@@HOTPATCHER",$=function(){};function z(e){return{original:e,methods:[e],final:!1}}var H=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this._configuration={registry:{},getEmptyAction:"null"},this.__type__=D}var t,n;return t=e,n=[{key:"configuration",get:function(){return this._configuration}},{key:"getEmptyAction",get:function(){return this.configuration.getEmptyAction},set:function(e){this.configuration.getEmptyAction=e}},{key:"control",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!e||e.__type__!==D)throw new Error("Failed taking control of target HotPatcher instance: Invalid type or object");return Object.keys(e.configuration.registry).forEach((function(r){t.configuration.registry.hasOwnProperty(r)?n&&(t.configuration.registry[r]=Object.assign({},e.configuration.registry[r])):t.configuration.registry[r]=Object.assign({},e.configuration.registry[r])})),e._configuration=this.configuration,this}},{key:"execute",value:function(e){for(var t=this.get(e)||$,n=arguments.length,r=new Array(n>1?n-1:0),a=1;a<n;a++)r[a-1]=arguments[a];return t.apply(void 0,r)}},{key:"get",value:function(e){var t,n=this.configuration.registry[e];if(!n)switch(this.getEmptyAction){case"null":return null;case"throw":throw new Error("Failed handling method request: No method provided for override: ".concat(e));default:throw new Error("Failed handling request which resulted in an empty method: Invalid empty-action specified: ".concat(this.getEmptyAction))}return M.apply(void 0,function(e){if(Array.isArray(e))return B(e)}(t=n.methods)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return B(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?B(e,t):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())}},{key:"isPatched",value:function(e){return!!this.configuration.registry[e]}},{key:"patch",value:function(e,t){var n=(arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).chain,r=void 0!==n&&n;if(this.configuration.registry[e]&&this.configuration.registry[e].final)throw new Error("Failed patching '".concat(e,"': Method marked as being final"));if("function"!=typeof t)throw new Error("Failed patching '".concat(e,"': Provided method is not a function"));if(r)this.configuration.registry[e]?this.configuration.registry[e].methods.push(t):this.configuration.registry[e]=z(t);else if(this.isPatched(e)){var a=this.configuration.registry[e].original;this.configuration.registry[e]=Object.assign(z(t),{original:a})}else this.configuration.registry[e]=z(t);return this}},{key:"patchInline",value:function(e,t){this.isPatched(e)||this.patch(e,t);for(var n=arguments.length,r=new Array(n>2?n-2:0),a=2;a<n;a++)r[a-2]=arguments[a];return this.execute.apply(this,[e].concat(r))}},{key:"plugin",value:function(e){for(var t=this,n=arguments.length,r=new Array(n>1?n-1:0),a=1;a<n;a++)r[a-1]=arguments[a];return r.forEach((function(n){t.patch(e,n,{chain:!0})})),this}},{key:"restore",value:function(e){if(!this.isPatched(e))throw new Error("Failed restoring method: No method present for key: ".concat(e));if("function"!=typeof this.configuration.registry[e].original)throw new Error("Failed restoring method: Original method not found or of invalid type for key: ".concat(e));return this.configuration.registry[e].methods=[this.configuration.registry[e].original],this}},{key:"setFinal",value:function(e){if(!this.configuration.registry.hasOwnProperty(e))throw new Error("Failed marking '".concat(e,"' as final: No method found for key"));return this.configuration.registry[e].final=!0,this}}],n&&function(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),e}(),V=null;function G(){return V||(V=new H),V}function q(e){return function(e){if(Array.isArray(e))return J(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return J(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?J(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function J(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function W(e){return W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},W(e)}function K(e){return function(e){if("object"!==W(e)||null===e||"[object Object]"!=Object.prototype.toString.call(e))return!1;if(null===Object.getPrototypeOf(e))return!0;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}(e)?Object.assign({},e):Object.setPrototypeOf(Object.assign({},e),Object.getPrototypeOf(e))}function X(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];for(var r=null,a=[].concat(t);a.length>0;){var s=a.shift();r=r?Y(r,s):K(s)}return r}function Y(e,t){var n=K(e);return Object.keys(t).forEach((function(e){n.hasOwnProperty(e)?Array.isArray(t[e])?n[e]=Array.isArray(n[e])?[].concat(q(n[e]),q(t[e])):q(t[e]):"object"===W(t[e])&&t[e]?n[e]="object"===W(n[e])&&n[e]?Y(n[e],t[e]):K(t[e]):n[e]=t[e]:n[e]=t[e]})),n}function Z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Q(e){var t,n={},r=function(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return Z(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Z(e,t):void 0}}(e))){n&&(e=n);var r=0,a=function(){};return{s:a,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var s,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,s=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw s}}}}(e.keys());try{for(r.s();!(t=r.n()).done;){var a=t.value;n[a]=e.get(a)}}catch(e){r.e(e)}finally{r.f()}return n}function ee(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];if(0===t.length)return{};var r={};return t.reduce((function(e,t){return Object.keys(t).forEach((function(n){var a=n.toLowerCase();r.hasOwnProperty(a)?e[r[a]]=t[n]:(r[a]=n,e[n]=t[n])})),e}),{})}o(347);var te="function"==typeof ArrayBuffer,ne=Object.prototype.toString;function re(e){return te&&(e instanceof ArrayBuffer||"[object ArrayBuffer]"===ne.call(e))}function ae(e){return null!=e&&null!=e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}function se(e){return se="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},se(e)}function oe(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}function ie(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function le(e){var t=G();return t.patchInline("request",(function(e){return t.patchInline("fetch",U,e.url,function(e){var t,n={},r={method:e.method};if(e.headers&&(n=ee(n,e.headers)),void 0!==e.data){var a=(t=function(e){if("string"==typeof e)return[e,{}];if(ae(e))return[e,{}];if(re(e))return[e,{}];if(e&&"object"===se(e))return[JSON.stringify(e),{"content-type":"application/json"}];throw new Error("Unable to convert request body: Unexpected body type: ".concat(se(e)))}(e.data),2,function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,s=[],o=!0,i=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(s.push(r.value),2!==s.length);o=!0);}catch(e){i=!0,a=e}finally{try{o||null==n.return||n.return()}finally{if(i)throw a}}return s}}(t)||function(e,t){if(e){if("string"==typeof e)return ie(e,2);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ie(e,2):void 0}}(t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),s=a[0],o=a[1];r.body=s,n=ee(n,o)}return e.signal&&(r.signal=e.signal),e.withCredentials&&(r.credentials="include"),r.headers=n,r}(e))}),e)}var ue,ce=(ue=function(e){if(!e._digest)return le(e);var t=e._digest;return delete e._digest,t.hasDigestAuth&&(e=X(e,{headers:{Authorization:L(e,t)}})),oe(le(e),(function(n){var r,a,s=!1;return r=function(e){return s?e:n},(a=function(){if(401==n.status)return t.hasDigestAuth=function(e,t){var n=e.headers&&e.headers.get("www-authenticate")||"";if("digest"!==n.split(/\s/)[0].toLowerCase())return!1;for(var r=/([a-z0-9_-]+)=(?:"([^"]+)"|([a-z0-9_-]+))/gi;;){var a=r.exec(n);if(!a)break;t[a[1]]=a[2]||a[3]}return t.nc+=1,t.cnonce=function(){for(var e="",t=0;t<32;++t)e="".concat(e).concat("abcdef0123456789"[Math.floor(16*Math.random())]);return e}(),!0}(n,t),function(){if(t.hasDigestAuth)return oe(le(e=X(e,{headers:{Authorization:L(e,t)}})),(function(e){return 401==e.status?t.hasDigestAuth=!1:t.nc++,s=!0,e}))}();t.nc++}())&&a.then?a.then(r):r(a)}))},function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];try{return Promise.resolve(ue.apply(this,e))}catch(e){return Promise.reject(e)}});function pe(e,t,n){var r=K(e);return r.headers=ee(t.headers,r.headers||{},n.headers||{}),void 0!==n.data&&(r.data=n.data),n.signal&&(r.signal=n.signal),t.httpAgent&&(r.httpAgent=t.httpAgent),t.httpsAgent&&(r.httpsAgent=t.httpsAgent),t.digest&&(r._digest=t.digest),"boolean"==typeof t.withCredentials&&(r.withCredentials=t.withCredentials),r}var de=o(637);function fe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,s=[],o=!0,i=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(s.push(r.value),!t||s.length!==t);o=!0);}catch(e){i=!0,a=e}finally{try{o||null==n.return||n.return()}finally{if(i)throw a}}return s}}(e,t)||function(e,t){if(e){if("string"==typeof e)return me(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?me(e,t):void 0}}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function me(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var he={"[:alnum:]":["\\p{L}\\p{Nl}\\p{Nd}",!0],"[:alpha:]":["\\p{L}\\p{Nl}",!0],"[:ascii:]":["\\x00-\\x7f",!1],"[:blank:]":["\\p{Zs}\\t",!0],"[:cntrl:]":["\\p{Cc}",!0],"[:digit:]":["\\p{Nd}",!0],"[:graph:]":["\\p{Z}\\p{C}",!0,!0],"[:lower:]":["\\p{Ll}",!0],"[:print:]":["\\p{C}",!0],"[:punct:]":["\\p{P}",!0],"[:space:]":["\\p{Z}\\t\\r\\n\\v\\f",!0],"[:upper:]":["\\p{Lu}",!0],"[:word:]":["\\p{L}\\p{Nl}\\p{Nd}\\p{Pc}",!0],"[:xdigit:]":["A-Fa-f0-9",!1]},ge=function(e){return e.replace(/[[\]\\-]/g,"\\$&")},ve=function(e){return e.join("")},ye=function(e,t){var n=t;if("["!==e.charAt(n))throw new Error("not in a brace expression");var r,a=[],s=[],o=n+1,i=!1,l=!1,u=!1,c=!1,p=n,d="";e:for(;o<e.length;){var f=e.charAt(o);if("!"!==f&&"^"!==f||o!==n+1){if("]"===f&&i&&!u){p=o+1;break}if(i=!0,"\\"!==f||u){if("["===f&&!u)for(var m=0,h=Object.entries(he);m<h.length;m++){var g=fe(h[m],2),v=g[0],y=fe(g[1],3),b=y[0],w=y[1],x=y[2];if(e.startsWith(v,o)){if(d)return["$.",!1,e.length-n,!0];o+=v.length,x?s.push(b):a.push(b),l=l||w;continue e}}u=!1,d?(f>d?a.push(ge(d)+"-"+ge(f)):f===d&&a.push(ge(f)),d="",o++):e.startsWith("-]",o+1)?(a.push(ge(f+"-")),o+=2):e.startsWith("-",o+1)?(d=f,o+=2):(a.push(ge(f)),o++)}else u=!0,o++}else c=!0,o++}if(p<o)return["",!1,0,!1];if(!a.length&&!s.length)return["$.",!1,e.length-n,!0];if(0===s.length&&1===a.length&&/^\\?.$/.test(a[0])&&!c)return[(r=2===a[0].length?a[0].slice(-1):a[0],r.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")),!1,p-n,!1];var T="["+(c?"^":"")+ve(a)+"]",_="["+(c?"":"^")+ve(s)+"]";return[a.length&&s.length?"("+T+"|"+_+")":a.length?T:_,l,p-n,!0]};function be(e){return function(e){if(Array.isArray(e))return Fe(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||je(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function we(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=je(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,a=function(){};return{s:a,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var s,o=!0,i=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return o=e.done,e},e:function(e){i=!0,s=e},f:function(){try{o||null==n.return||n.return()}finally{if(i)throw s}}}}function xe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Te(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ce(e,t,n){return t&&_e(e.prototype,t),n&&_e(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function Se(e,t){return Se=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Se(e,t)}function Ne(e){return Ne=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},Ne(e)}function Ee(e){return Ee="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ee(e)}function Le(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,s=[],o=!0,i=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(s.push(r.value),!t||s.length!==t);o=!0);}catch(e){i=!0,a=e}finally{try{o||null==n.return||n.return()}finally{if(i)throw a}}return s}}(e,t)||je(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function je(e,t){if(e){if("string"==typeof e)return Fe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Fe(e,t):void 0}}function Fe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ke=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return ut(t),!(!n.nocomment&&"#"===t.charAt(0))&&new dt(t,n).match(e)};const Oe=ke;var Ae=/^\*+([^+@!?\*\[\(]*)$/,Pe=function(e){return function(t){return!t.startsWith(".")&&t.endsWith(e)}},Ue=function(e){return function(t){return t.endsWith(e)}},Re=function(e){return e=e.toLowerCase(),function(t){return!t.startsWith(".")&&t.toLowerCase().endsWith(e)}},Ie=function(e){return e=e.toLowerCase(),function(t){return t.toLowerCase().endsWith(e)}},Me=/^\*+\.\*+$/,Be=function(e){return!e.startsWith(".")&&e.includes(".")},De=function(e){return"."!==e&&".."!==e&&e.includes(".")},$e=/^\.\*+$/,ze=function(e){return"."!==e&&".."!==e&&e.startsWith(".")},He=/^\*+$/,Ve=function(e){return 0!==e.length&&!e.startsWith(".")},Ge=function(e){return 0!==e.length&&"."!==e&&".."!==e},qe=/^\?+([^+@!?\*\[\(]*)?$/,Je=function(e){var t=Le(e,2),n=t[0],r=t[1],a=void 0===r?"":r,s=Ye([n]);return a?(a=a.toLowerCase(),function(e){return s(e)&&e.toLowerCase().endsWith(a)}):s},We=function(e){var t=Le(e,2),n=t[0],r=t[1],a=void 0===r?"":r,s=Ze([n]);return a?(a=a.toLowerCase(),function(e){return s(e)&&e.toLowerCase().endsWith(a)}):s},Ke=function(e){var t=Le(e,2),n=t[0],r=t[1],a=void 0===r?"":r,s=Ze([n]);return a?function(e){return s(e)&&e.endsWith(a)}:s},Xe=function(e){var t=Le(e,2),n=t[0],r=t[1],a=void 0===r?"":r,s=Ye([n]);return a?function(e){return s(e)&&e.endsWith(a)}:s},Ye=function(e){var t=Le(e,1)[0].length;return function(e){return e.length===t&&!e.startsWith(".")}},Ze=function(e){var t=Le(e,1)[0].length;return function(e){return e.length===t&&"."!==e&&".."!==e}},Qe="object"===(void 0===r?"undefined":Ee(r))&&r?"object"===Ee(r.env)&&r.env&&r.env.__MINIMATCH_TESTING_PLATFORM__||r.platform:"posix";ke.sep="win32"===Qe?"\\":"/";var et=Symbol("globstar **");ke.GLOBSTAR=et;var tt={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}},nt="[^/]",rt=nt+"*?",at=function(e){return e.split("").reduce((function(e,t){return e[t]=!0,e}),{})},st=at("().*{}+?[]^$\\!"),ot=at("[.(");ke.filter=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return function(n){return ke(n,e,t)}};var it=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Object.assign({},e,t)};ke.defaults=function(e){if(!e||"object"!==Ee(e)||!Object.keys(e).length)return ke;var t=ke;return Object.assign((function(n,r){return t(n,r,it(e,arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}))}),{Minimatch:function(n){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Se(e,t)}(o,n);var r,a,s=(r=o,a=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=Ne(r);if(a){var n=Ne(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return function(e,t){if(t&&("object"===Ee(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(this,e)});function o(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return Te(this,o),s.call(this,t,it(e,n))}return Ce(o,null,[{key:"defaults",value:function(n){return t.defaults(it(e,n)).Minimatch}}]),o}(t.Minimatch),unescape:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.unescape(n,it(e,r))},escape:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.escape(n,it(e,r))},filter:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.filter(n,it(e,r))},defaults:function(n){return t.defaults(it(e,n))},makeRe:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.makeRe(n,it(e,r))},braceExpand:function(n){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return t.braceExpand(n,it(e,r))},match:function(n,r){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.match(n,r,it(e,a))},sep:t.sep,GLOBSTAR:et})};var lt=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return ut(e),t.nobrace||!/\{(?:(?!\{).)*\}/.test(e)?[e]:de(e)};ke.braceExpand=lt;var ut=function(e){if("string"!=typeof e)throw new TypeError("invalid pattern");if(e.length>65536)throw new TypeError("pattern is too long")};ke.makeRe=function(e){return new dt(e,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).makeRe()},ke.match=function(e,t){var n=new dt(t,arguments.length>2&&void 0!==arguments[2]?arguments[2]:{});return e=e.filter((function(e){return n.match(e)})),n.options.nonull&&!e.length&&e.push(t),e};var ct=/[?*]|[+@!]\(.*?\)|\[|\]/,pt=function(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},dt=function(){function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Te(this,e),xe(this,"options",void 0),xe(this,"set",void 0),xe(this,"pattern",void 0),xe(this,"windowsPathsNoEscape",void 0),xe(this,"nonegate",void 0),xe(this,"negate",void 0),xe(this,"comment",void 0),xe(this,"empty",void 0),xe(this,"preserveMultipleSlashes",void 0),xe(this,"partial",void 0),xe(this,"globSet",void 0),xe(this,"globParts",void 0),xe(this,"nocase",void 0),xe(this,"isWindows",void 0),xe(this,"platform",void 0),xe(this,"windowsNoMagicRoot",void 0),xe(this,"regexp",void 0),ut(t),n=n||{},this.options=n,this.pattern=t,this.platform=n.platform||Qe,this.isWindows="win32"===this.platform,this.windowsPathsNoEscape=!!n.windowsPathsNoEscape||!1===n.allowWindowsEscape,this.windowsPathsNoEscape&&(this.pattern=this.pattern.replace(/\\/g,"/")),this.preserveMultipleSlashes=!!n.preserveMultipleSlashes,this.regexp=null,this.negate=!1,this.nonegate=!!n.nonegate,this.comment=!1,this.empty=!1,this.partial=!!n.partial,this.nocase=!!this.options.nocase,this.windowsNoMagicRoot=void 0!==n.windowsNoMagicRoot?n.windowsNoMagicRoot:!(!this.isWindows||!this.nocase),this.globSet=[],this.globParts=[],this.set=[],this.make()}return Ce(e,[{key:"hasMagic",value:function(){if(this.options.magicalBraces&&this.set.length>1)return!0;var e,t=we(this.set);try{for(t.s();!(e=t.n()).done;){var n,r=we(e.value);try{for(r.s();!(n=r.n()).done;)if("string"!=typeof n.value)return!0}catch(e){r.e(e)}finally{r.f()}}}catch(e){t.e(e)}finally{t.f()}return!1}},{key:"debug",value:function(){}},{key:"make",value:function(){var e=this,t=this.pattern,n=this.options;if(n.nocomment||"#"!==t.charAt(0))if(t){this.parseNegate(),this.globSet=be(new Set(this.braceExpand())),n.debug&&(this.debug=function(){var e;return(e=console).error.apply(e,arguments)}),this.debug(this.pattern,this.globSet);var r=this.globSet.map((function(t){return e.slashSplit(t)}));this.globParts=this.preprocess(r),this.debug(this.pattern,this.globParts);var a=this.globParts.map((function(t,n,r){if(e.isWindows&&e.windowsNoMagicRoot){var a=!(""!==t[0]||""!==t[1]||"?"!==t[2]&&ct.test(t[2])||ct.test(t[3])),s=/^[a-z]:/i.test(t[0]);if(a)return[].concat(be(t.slice(0,4)),be(t.slice(4).map((function(t){return e.parse(t)}))));if(s)return[t[0]].concat(be(t.slice(1).map((function(t){return e.parse(t)}))))}return t.map((function(t){return e.parse(t)}))}));if(this.debug(this.pattern,a),this.set=a.filter((function(e){return-1===e.indexOf(!1)})),this.isWindows)for(var s=0;s<this.set.length;s++){var o=this.set[s];""===o[0]&&""===o[1]&&"?"===this.globParts[s][2]&&"string"==typeof o[3]&&/^[a-z]:$/i.test(o[3])&&(o[2]="?")}this.debug(this.pattern,this.set)}else this.empty=!0;else this.comment=!0}},{key:"preprocess",value:function(e){if(this.options.noglobstar)for(var t=0;t<e.length;t++)for(var n=0;n<e[t].length;n++)"**"===e[t][n]&&(e[t][n]="*");var r=this.options.optimizationLevel,a=void 0===r?1:r;return a>=2?(e=this.firstPhasePreProcess(e),e=this.secondPhasePreProcess(e)):e=a>=1?this.levelOneOptimize(e):this.adjascentGlobstarOptimize(e),e}},{key:"adjascentGlobstarOptimize",value:function(e){return e.map((function(e){for(var t=-1;-1!==(t=e.indexOf("**",t+1));){for(var n=t;"**"===e[n+1];)n++;n!==t&&e.splice(t,n-t)}return e}))}},{key:"levelOneOptimize",value:function(e){return e.map((function(e){return 0===(e=e.reduce((function(e,t){var n=e[e.length-1];return"**"===t&&"**"===n?e:".."===t&&n&&".."!==n&&"."!==n&&"**"!==n?(e.pop(),e):(e.push(t),e)}),[])).length?[""]:e}))}},{key:"levelTwoFileOptimize",value:function(e){Array.isArray(e)||(e=this.slashSplit(e));var t=!1;do{if(t=!1,!this.preserveMultipleSlashes){for(var n=1;n<e.length-1;n++){var r=e[n];1===n&&""===r&&""===e[0]||"."!==r&&""!==r||(t=!0,e.splice(n,1),n--)}"."!==e[0]||2!==e.length||"."!==e[1]&&""!==e[1]||(t=!0,e.pop())}for(var a=0;-1!==(a=e.indexOf("..",a+1));){var s=e[a-1];s&&"."!==s&&".."!==s&&"**"!==s&&(t=!0,e.splice(a-1,2),a-=2)}}while(t);return 0===e.length?[""]:e}},{key:"firstPhasePreProcess",value:function(e){var t=!1;do{t=!1;var n,r=we(e);try{for(r.s();!(n=r.n()).done;){for(var a=n.value,s=-1;-1!==(s=a.indexOf("**",s+1));){for(var o=s;"**"===a[o+1];)o++;o>s&&a.splice(s+1,o-s);var i=a[s+1],l=a[s+2],u=a[s+3];if(".."===i&&l&&"."!==l&&".."!==l&&u&&"."!==u&&".."!==u){t=!0,a.splice(s,1);var c=a.slice(0);c[s]="**",e.push(c),s--}}if(!this.preserveMultipleSlashes){for(var p=1;p<a.length-1;p++){var d=a[p];1===p&&""===d&&""===a[0]||"."!==d&&""!==d||(t=!0,a.splice(p,1),p--)}"."!==a[0]||2!==a.length||"."!==a[1]&&""!==a[1]||(t=!0,a.pop())}for(var f=0;-1!==(f=a.indexOf("..",f+1));){var m=a[f-1];if(m&&"."!==m&&".."!==m&&"**"!==m){t=!0;var h=1===f&&"**"===a[f+1]?["."]:[];a.splice.apply(a,[f-1,2].concat(h)),0===a.length&&a.push(""),f-=2}}}}catch(e){r.e(e)}finally{r.f()}}while(t);return e}},{key:"secondPhasePreProcess",value:function(e){for(var t=0;t<e.length-1;t++)for(var n=t+1;n<e.length;n++){var r=this.partsMatch(e[t],e[n],!this.preserveMultipleSlashes);r&&(e[t]=r,e[n]=[])}return e.filter((function(e){return e.length}))}},{key:"partsMatch",value:function(e,t){for(var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=0,a=0,s=[],o="";r<e.length&&a<t.length;)if(e[r]===t[a])s.push("b"===o?t[a]:e[r]),r++,a++;else if(n&&"**"===e[r]&&t[a]===e[r+1])s.push(e[r]),r++;else if(n&&"**"===t[a]&&e[r]===t[a+1])s.push(t[a]),a++;else if("*"!==e[r]||!t[a]||!this.options.dot&&t[a].startsWith(".")||"**"===t[a]){if("*"!==t[a]||!e[r]||!this.options.dot&&e[r].startsWith(".")||"**"===e[r])return!1;if("a"===o)return!1;o="b",s.push(t[a]),r++,a++}else{if("b"===o)return!1;o="a",s.push(e[r]),r++,a++}return e.length===t.length&&s}},{key:"parseNegate",value:function(){if(!this.nonegate){for(var e=this.pattern,t=!1,n=0,r=0;r<e.length&&"!"===e.charAt(r);r++)t=!t,n++;n&&(this.pattern=e.slice(n)),this.negate=t}}},{key:"matchOne",value:function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=this.options;if(this.isWindows){var a=""===e[0]&&""===e[1]&&"?"===e[2]&&"string"==typeof e[3]&&/^[a-z]:$/i.test(e[3]),s=""===t[0]&&""===t[1]&&"?"===t[2]&&"string"==typeof t[3]&&/^[a-z]:$/i.test(t[3]);if(a&&s){var o=e[3],i=t[3];o.toLowerCase()===i.toLowerCase()&&(e[3]=i)}else if(s&&"string"==typeof e[0]){var l=t[3],u=e[0];l.toLowerCase()===u.toLowerCase()&&(t[3]=u,t=t.slice(3))}else if(a&&"string"==typeof t[0]){var c=e[3];c.toLowerCase()===t[0].toLowerCase()&&(t[0]=c,e=e.slice(3))}}var p=this.options.optimizationLevel;(void 0===p?1:p)>=2&&(e=this.levelTwoFileOptimize(e)),this.debug("matchOne",this,{file:e,pattern:t}),this.debug("matchOne",e.length,t.length);for(var d=0,f=0,m=e.length,h=t.length;d<m&&f<h;d++,f++){this.debug("matchOne loop");var g=t[f],v=e[d];if(this.debug(t,g,v),!1===g)return!1;if(g===et){this.debug("GLOBSTAR",[t,g,v]);var y=d,b=f+1;if(b===h){for(this.debug("** at the end");d<m;d++)if("."===e[d]||".."===e[d]||!r.dot&&"."===e[d].charAt(0))return!1;return!0}for(;y<m;){var w=e[y];if(this.debug("\nglobstar while",e,y,t,b,w),this.matchOne(e.slice(y),t.slice(b),n))return this.debug("globstar found match!",y,m,w),!0;if("."===w||".."===w||!r.dot&&"."===w.charAt(0)){this.debug("dot detected!",e,y,t,b);break}this.debug("globstar swallow a segment, and continue"),y++}return!(!n||(this.debug("\n>>> no match, partial?",e,y,t,b),y!==m))}var x=void 0;if("string"==typeof g?(x=v===g,this.debug("string match",g,v,x)):(x=g.test(v),this.debug("pattern match",g,v,x)),!x)return!1}if(d===m&&f===h)return!0;if(d===m)return n;if(f===h)return d===m-1&&""===e[d];throw new Error("wtf?")}},{key:"braceExpand",value:function(){return lt(this.pattern,this.options)}},{key:"parse",value:function(e){var t=this;ut(e);var n,r=this.options;if("**"===e)return et;if(""===e)return"";var a=null;(n=e.match(He))?a=r.dot?Ge:Ve:(n=e.match(Ae))?a=(r.nocase?r.dot?Ie:Re:r.dot?Ue:Pe)(n[1]):(n=e.match(qe))?a=(r.nocase?r.dot?We:Je:r.dot?Ke:Xe)(n):(n=e.match(Me))?a=r.dot?De:Be:(n=e.match($e))&&(a=ze);for(var s,o,i="",l=!1,u=!1,c=[],p=[],d=!1,f=!1,m="."===e.charAt(0),h=r.dot||m,g=function(e){return"."===e.charAt(0)?"":r.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)"},v=function(){if(d){switch(d){case"*":i+=rt,l=!0;break;case"?":i+=nt,l=!0;break;default:i+="\\"+d}t.debug("clearStateChar %j %j",d,i),d=!1}},y=0;y<e.length&&(o=e.charAt(y));y++)if(this.debug("%s\t%s %s %j",e,y,i,o),u){if("/"===o)return!1;st[o]&&(i+="\\"),i+=o,u=!1}else switch(o){case"/":return!1;case"\\":v(),u=!0;continue;case"?":case"*":case"+":case"@":case"!":this.debug("%s\t%s %s %j <-- stateChar",e,y,i,o),this.debug("call clearStateChar %j",d),v(),d=o,r.noext&&v();continue;case"(":if(!d){i+="\\(";continue}var b={type:d,start:y-1,reStart:i.length,open:tt[d].open,close:tt[d].close};this.debug(this.pattern,"\t",b),c.push(b),i+=b.open,0===b.start&&"!"!==b.type&&(m=!0,i+=g(e.slice(y+1))),this.debug("plType %j %j",d,i),d=!1;continue;case")":var w=c[c.length-1];if(!w){i+="\\)";continue}c.pop(),v(),l=!0,i+=(s=w).close,"!"===s.type&&p.push(Object.assign(s,{reEnd:i.length}));continue;case"|":var x=c[c.length-1];if(!x){i+="\\|";continue}v(),i+="|",0===x.start&&"!"!==x.type&&(m=!0,i+=g(e.slice(y+1)));continue;case"[":v();var T=Le(ye(e,y),4),_=T[0],C=T[1],S=T[2],N=T[3];S?(i+=_,f=f||C,y+=S-1,l=l||N):i+="\\[";continue;case"]":i+="\\"+o;continue;default:v(),i+=pt(o)}for(s=c.pop();s;s=c.pop()){var E=void 0;E=i.slice(s.reStart+s.open.length),this.debug(this.pattern,"setting tail",i,s),E=E.replace(/((?:\\{2}){0,64})(\\?)\|/g,(function(e,t,n){return n||(n="\\"),t+t+n+"|"})),this.debug("tail=%j\n %s",E,E,s,i);var L="*"===s.type?rt:"?"===s.type?nt:"\\"+s.type;l=!0,i=i.slice(0,s.reStart)+L+"\\("+E}v(),u&&(i+="\\\\");for(var j=ot[i.charAt(0)],F=p.length-1;F>-1;F--){for(var k=p[F],O=i.slice(0,k.reStart),A=i.slice(k.reStart,k.reEnd-8),P=i.slice(k.reEnd),U=i.slice(k.reEnd-8,k.reEnd)+P,R=O.split(")").length,I=O.split("(").length-R,M=P,B=0;B<I;B++)M=M.replace(/\)[+*?]?/,"");i=O+A+(P=M)+(""===P?"(?:$|\\/)":"")+U}if(""!==i&&l&&(i="(?=.)"+i),j&&(i=(m?"":h?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)")+i),!r.nocase||l||r.nocaseMagicOnly||(l=e.toUpperCase()!==e.toLowerCase()),!l)return i.replace(/\\(.)/g,"$1");var D=(r.nocase?"i":"")+(f?"u":"");try{var $=a?{_glob:e,_src:i,test:a}:{_glob:e,_src:i};return Object.assign(new RegExp("^"+i+"$",D),$)}catch(e){return this.debug("invalid regexp",e),new RegExp("$.")}}},{key:"makeRe",value:function(){if(this.regexp||!1===this.regexp)return this.regexp;var e=this.set;if(!e.length)return this.regexp=!1,this.regexp;var t=this.options,n=t.noglobstar?rt:t.dot?"(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?":"(?:(?!(?:\\/|^)\\.).)*?",r=t.nocase?"i":"",a=e.map((function(e){var t=e.map((function(e){return"string"==typeof e?pt(e):e===et?et:e._src}));return t.forEach((function(e,r){var a=t[r+1],s=t[r-1];e===et&&s!==et&&(void 0===s?void 0!==a&&a!==et?t[r+1]="(?:\\/|"+n+"\\/)?"+a:t[r]=n:void 0===a?t[r-1]=s+"(?:\\/|"+n+")?":a!==et&&(t[r-1]=s+"(?:\\/|\\/"+n+"\\/)"+a,t[r+1]=et))})),t.filter((function(e){return e!==et})).join("/")})).join("|");a="^(?:"+a+")$",this.negate&&(a="^(?!"+a+").*$");try{this.regexp=new RegExp(a,r)}catch(e){this.regexp=!1}return this.regexp}},{key:"slashSplit",value:function(e){return this.preserveMultipleSlashes?e.split("/"):this.isWindows&&/^\/\/[^\/]+/.test(e)?[""].concat(be(e.split(/\/+/))):e.split(/\/+/)}},{key:"match",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.partial;if(this.debug("match",e,this.pattern),this.comment)return!1;if(this.empty)return""===e;if("/"===e&&t)return!0;var n=this.options;this.isWindows&&(e=e.split("\\").join("/"));var r=this.slashSplit(e);this.debug(this.pattern,"split",r);var a=this.set;this.debug(this.pattern,"set",a);var s=r[r.length-1];if(!s)for(var o=r.length-2;!s&&o>=0;o--)s=r[o];for(var i=0;i<a.length;i++){var l=a[i],u=r;if(n.matchBase&&1===l.length&&(u=[s]),this.matchOne(u,l,t))return!!n.flipNegate||!this.negate}return!n.flipNegate&&this.negate}}],[{key:"defaults",value:function(e){return ke.defaults(e).Minimatch}}]),e}();function ft(e){var t=new Error("".concat(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"","Invalid response: ").concat(e.status," ").concat(e.statusText));return t.status=e.status,t.response=e,t}function mt(e,t){var n=t.status;if(401===n&&e.digest)return t;if(n>=400)throw ft(t);return t}function ht(e,t){return arguments.length>2&&void 0!==arguments[2]&&arguments[2]?{data:t,headers:e.headers?Q(e.headers):{},status:e.status,statusText:e.statusText}:t}ke.Minimatch=dt,ke.escape=function(e){var t=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).windowsPathsNoEscape;return void 0!==t&&t?e.replace(/[?*()[\]]/g,"[$&]"):e.replace(/[?*()[\]\\]/g,"\\$&")},ke.unescape=function(e){var t=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).windowsPathsNoEscape;return void 0!==t&&t?e.replace(/\[([^\/\\])\]/g,"$1"):e.replace(/((?!\\).|^)\[([^\/\\])\]/g,"$1$2").replace(/\\([^\/])/g,"$1")};var gt,vt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t,n){var r,a,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=pe({url:S(e.remoteURL,T(t)),method:"COPY",headers:{Destination:S(e.remoteURL,T(n))}},e,s);return a=function(t){mt(e,t)},(r=ce(o))&&r.then||(r=Promise.resolve(r)),a?r.then(a):r})),yt=o(5),bt=o(421),wt=o.n(bt);function xt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function Tt(e){return Tt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Tt(e)}function _t(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:gt.Original,r=wt().get(e,t);return"array"===n&&!1===Array.isArray(r)?[r]:"object"===n&&Array.isArray(r)?r[0]:r}function Ct(e){return new Promise((function(t){t(function(e){var t=e.multistatus;if(""===t)return{multistatus:{response:[]}};if(!t)throw new Error("Invalid response: No root multistatus found");var n={multistatus:Array.isArray(t)?t[0]:t};return wt().set(n,"multistatus.response",_t(n,"multistatus.response",gt.Array)),wt().set(n,"multistatus.response",wt().get(n,"multistatus.response").map((function(e){return function(e){var t=Object.assign({},e);return t.status?wt().set(t,"status",_t(t,"status",gt.Object)):(wt().set(t,"propstat",_t(t,"propstat",gt.Object)),wt().set(t,"propstat.prop",_t(t,"propstat.prop",gt.Object))),t}(e)}))),n}(new yt.XMLParser({removeNSPrefix:!0,numberParseOptions:{hex:!0,leadingZeros:!1}}).parse(e)))}))}function St(e,t){var n,r,a=arguments.length>2&&void 0!==arguments[2]&&arguments[2],s=e.getlastmodified,o=void 0===s?null:s,i=e.getcontentlength,l=void 0===i?"0":i,u=e.resourcetype,c=void 0===u?null:u,p=e.getcontenttype,d=void 0===p?null:p,f=e.getetag,m=void 0===f?null:f,h=c&&"object"===Tt(c)&&void 0!==c.collection?"directory":"file",g=(n=t,(r=document.createElement("textarea")).innerHTML=n,r.value),v={filename:g,basename:b().basename(g),lastmod:o,size:parseInt(l,10),type:h,etag:"string"==typeof m?m.replace(/"/g,""):null};return"file"===h&&(v.mime=d&&"string"==typeof d?d.split(";")[0]:""),a&&(v.props=e),v}function Nt(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=null;try{e.multistatus.response[0].propstat&&(r=e.multistatus.response[0])}catch(e){}if(!r)throw new Error("Failed getting item stat: bad response");var a,s=r.propstat,o=s.prop,i=(3,function(e){if(Array.isArray(e))return e}(a=s.status.split(" ",3))||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,s=[],o=!0,i=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(s.push(r.value),3!==s.length);o=!0);}catch(e){i=!0,a=e}finally{try{o||null==n.return||n.return()}finally{if(i)throw a}}return s}}(a)||function(e,t){if(e){if("string"==typeof e)return xt(e,3);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?xt(e,3):void 0}}(a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=(i[0],i[1]),u=i[2],c=parseInt(l,10);if(c>=400){var p=new Error("Invalid response: ".concat(c," ").concat(u));throw p.status=c,p}return St(o,C(t),n)}function Et(e){switch(e.toString()){case"-3":return"unlimited";case"-2":case"-1":return"unknown";default:return parseInt(e,10)}}function Lt(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}!function(e){e.Array="array",e.Object="object",e.Original="original"}(gt||(gt={}));var jt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.details,a=void 0!==r&&r,s=pe({url:S(e.remoteURL,T(t)),method:"PROPFIND",headers:{Accept:"text/plain,application/xml",Depth:"0"}},e,n);return Lt(ce(s),(function(n){return mt(e,n),Lt(n.text(),(function(e){return Lt(Ct(e),(function(e){var r=Nt(e,t,a);return ht(n,r,a)}))}))}))}));function Ft(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}function kt(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}function Ot(){}function At(e,t){if(!t)return e&&e.then?e.then(Ot):Promise.resolve()}var Pt="undefined"!=typeof Symbol?Symbol.iterator||(Symbol.iterator=Symbol("Symbol.iterator")):"@@iterator";function Ut(e,t,n){if(!e.s){if(n instanceof Rt){if(!n.s)return void(n.o=Ut.bind(null,e,t));1&t&&(t=n.s),n=n.v}if(n&&n.then)return void n.then(Ut.bind(null,e,t),Ut.bind(null,e,2));e.s=t,e.v=n;var r=e.o;r&&r(e)}}var Rt=function(){function e(){}return e.prototype.then=function(t,n){var r=new e,a=this.s;if(a){var s=1&a?t:n;if(s){try{Ut(r,1,s(this.v))}catch(e){Ut(r,2,e)}return r}return this}return this.o=function(e){try{var a=e.v;1&e.s?Ut(r,1,t?t(a):a):n?Ut(r,1,n(a)):Ut(r,2,a)}catch(e){Ut(r,2,e)}},r},e}();function It(e){return e instanceof Rt&&1&e.s}function Mt(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Bt(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Mt(Object(n),!0).forEach((function(t){Dt(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Mt(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Dt(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var $t=kt((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=function(e){if(!e||"/"===e)return[];var t=e,n=[];do{n.push(t),t=b().dirname(t)}while(t&&"/"!==t);return n}(C(t));r.sort((function(e,t){return e.length>t.length?1:t.length>e.length?-1:0}));var a=!1;return function(e,t,n){if("function"==typeof e[Pt]){var r,a,s,o=e[Pt]();if(function e(n){try{for(;!(r=o.next()).done;)if((n=t(r.value))&&n.then){if(!It(n))return void n.then(e,s||(s=Ut.bind(null,a=new Rt,2)));n=n.v}a?Ut(a,1,n):a=n}catch(e){Ut(a||(a=new Rt),2,e)}}(),o.return){var i=function(e){try{r.done||o.return()}catch(e){}return e};if(a&&a.then)return a.then(i,(function(e){throw i(e)}));i()}return a}if(!("length"in e))throw new TypeError("Object is not iterable");for(var l=[],u=0;u<e.length;u++)l.push(e[u]);return function(e,t,n){var r,a,s=-1;return function o(i){try{for(;++s<e.length&&(!n||!n());)if((i=t(s))&&i.then){if(!It(i))return void i.then(o,a||(a=Ut.bind(null,r=new Rt,2)));i=i.v}r?Ut(r,1,i):r=i}catch(e){Ut(r||(r=new Rt),2,e)}}(),r}(l,(function(e){return t(l[e])}),n)}(r,(function(r){return s=function(){return function(n,a){try{var s=Ft(jt(e,r),(function(e){if("directory"!==e.type)throw new Error("Path includes a file: ".concat(t))}))}catch(e){return a(e)}return s&&s.then?s.then(void 0,a):s}(0,(function(t){var s=t;return function(){if(404===s.status)return a=!0,At(zt(e,r,Bt(Bt({},n),{},{recursive:!1})));throw t}()}))},(o=function(){if(a)return At(zt(e,r,Bt(Bt({},n),{},{recursive:!1})))}())&&o.then?o.then(s):s();var s,o}),(function(){return!1}))})),zt=kt((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(!0===n.recursive)return $t(e,t,n);var r,a=pe({url:S(e.remoteURL,(r=T(t),r.endsWith("/")?r:r+"/")),method:"MKCOL"},e,n);return Ft(ce(a),(function(t){mt(e,t)}))})),Ht=o(227),Vt=o.n(Ht);function Gt(e){return Gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Gt(e)}var qt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r={};if("object"===Gt(n.range)&&"number"==typeof n.range.start){var a="bytes=".concat(n.range.start,"-");"number"==typeof n.range.end&&(a="".concat(a).concat(n.range.end)),r.Range=a}var s,o,i=pe({url:S(e.remoteURL,T(t)),method:"GET",headers:r},e,n);return o=function(t){if(mt(e,t),r.Range&&206!==t.status){var a=new Error("Invalid response code for partial request: ".concat(t.status));throw a.status=t.status,a}return n.callback&&setTimeout((function(){n.callback(t)}),0),t.body},(s=ce(i))&&s.then||(s=Promise.resolve(s)),o?s.then(o):s})),Jt=function(){},Wt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t,n){n.url||(n.url=S(e.remoteURL,T(t)));var r,a,s=pe(n,e,{});return a=function(t){return mt(e,t),t},(r=ce(s))&&r.then||(r=Promise.resolve(r)),a?r.then(a):r})),Kt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t){var n,r,a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},s=pe({url:S(e.remoteURL,T(t)),method:"DELETE"},e,a);return r=function(t){mt(e,t)},(n=ce(s))&&n.then||(n=Promise.resolve(n)),r?n.then(r):n})),Xt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return function(r,a){try{var s=(o=jt(e,t,n),i=function(){return!0},o&&o.then||(o=Promise.resolve(o)),i?o.then(i):o)}catch(e){return a(e)}var o,i;return s&&s.then?s.then(void 0,a):s}(0,(function(e){if(404===e.status)return!1;throw e}))}));function Yt(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}var Zt=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=pe({url:S(e.remoteURL,T(t),"/"),method:"PROPFIND",headers:{Accept:"text/plain,application/xml",Depth:n.deep?"infinity":"1"}},e,n);return Yt(ce(r),(function(r){return mt(e,r),Yt(r.text(),(function(a){if(!a)throw new Error("Failed parsing directory contents: Empty response");return Yt(Ct(a),(function(a){var s=_(t),o=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],a=arguments.length>4&&void 0!==arguments[4]&&arguments[4],s=b().join(t,"/"),o=e.multistatus.response.map((function(e){var t=function(e){try{return e.replace(/^https?:\/\/[^\/]+/,"")}catch(e){throw new g(e,"Failed normalising HREF")}}(e.href);return St(e.propstat.prop,"/"===s?decodeURIComponent(C(t)):C(b().relative(decodeURIComponent(s),decodeURIComponent(t))),r)}));return a?o:o.filter((function(e){return e.basename&&("file"===e.type||e.filename!==n.replace(/\/$/,""))}))}(a,_(e.remoteBasePath||e.remotePath),s,n.details,n.includeSelf);return n.glob&&(o=function(e,t){return e.filter((function(e){return Oe(e.filename,t,{matchBase:!0})}))}(o,n.glob)),ht(r,o,n.details)}))}))}))}));function Qt(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}var en=Qt((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=pe({url:S(e.remoteURL,T(t)),method:"GET",headers:{Accept:"text/plain"},transformResponse:[an]},e,n);return tn(ce(r),(function(t){return mt(e,t),tn(t.text(),(function(e){return ht(t,e,n.details)}))}))}));function tn(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}var nn=Qt((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=pe({url:S(e.remoteURL,T(t)),method:"GET"},e,n);return tn(ce(r),(function(t){var r;return mt(e,t),function(e,t){var n=e();return n&&n.then?n.then(t):t()}((function(){return tn(t.arrayBuffer(),(function(e){r=e}))}),(function(){return ht(t,r,n.details)}))}))})),rn=Qt((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.format,a=void 0===r?"binary":r;if("binary"!==a&&"text"!==a)throw new g({info:{code:A.InvalidOutputFormat}},"Invalid output format: ".concat(a));return"text"===a?en(e,t,n):nn(e,t,n)})),an=function(e){return e};function sn(e){return sn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},sn(e)}function on(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ln(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function un(e){return new yt.XMLBuilder({attributeNamePrefix:"@_",format:!0,ignoreAttributes:!1,suppressEmptyNode:!0}).build(cn({lockinfo:{"@_xmlns:d":"DAV:",lockscope:{exclusive:{}},locktype:{write:{}},owner:{href:e}}},"d"))}function cn(e,t){var n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?on(Object(n),!0).forEach((function(t){ln(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):on(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},e);for(var r in n)n.hasOwnProperty(r)&&(n[r]&&"object"===sn(n[r])&&-1===r.indexOf(":")?(n["".concat(t,":").concat(r)]=cn(n[r],t),delete n[r]):!1===/^@_/.test(r)&&(n["".concat(t,":").concat(r)]=n[r],delete n[r]));return n}function pn(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}function dn(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}var fn=dn((function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},a=pe({url:S(e.remoteURL,T(t)),method:"UNLOCK",headers:{"Lock-Token":n}},e,r);return pn(ce(a),(function(t){if(mt(e,t),204!==t.status&&200!==t.status)throw ft(t)}))})),mn=dn((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.refreshToken,a=n.timeout,s={Accept:"text/plain,application/xml",Timeout:void 0===a?hn:a};r&&(s.If=r);var o=pe({url:S(e.remoteURL,T(t)),method:"LOCK",headers:s,data:un(e.contactHref)},e,n);return pn(ce(o),(function(t){return mt(e,t),pn(t.text(),(function(e){var n,r=(n=e,new yt.XMLParser({removeNSPrefix:!0,parseAttributeValue:!0,parseTagValue:!0}).parse(n)),a=wt().get(r,"prop.lockdiscovery.activelock.locktoken.href"),s=wt().get(r,"prop.lockdiscovery.activelock.timeout");if(!a)throw ft(t,"No lock token received: ");return{token:a,serverTimeout:s}}))}))})),hn="Infinite, Second-4100000000";function gn(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function vn(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}var yn=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.path||"/",r=pe({url:S(e.remoteURL,n),method:"PROPFIND",headers:{Accept:"text/plain,application/xml",Depth:"0"}},e,t);return vn(ce(r),(function(n){return mt(e,n),vn(n.text(),(function(e){return vn(Ct(e),(function(e){var r=function(e){try{var t=(a=e.multistatus.response,1,function(e){if(Array.isArray(e))return e}(a)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,s=[],o=!0,i=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(s.push(r.value),1!==s.length);o=!0);}catch(e){i=!0,a=e}finally{try{o||null==n.return||n.return()}finally{if(i)throw a}}return s}}(a)||function(e,t){if(e){if("string"==typeof e)return gn(e,1);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?gn(e,1):void 0}}(a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}())[0].propstat.prop,n=t["quota-used-bytes"],r=t["quota-available-bytes"];return void 0!==n&&void 0!==r?{used:parseInt(n,10),available:Et(r)}:null}catch(e){}var a;return null}(e);return ht(n,r,t.details)}))}))}))}));function bn(e,t,n){return n?t?t(e):e:(e&&e.then||(e=Promise.resolve(e)),t?e.then(t):e)}var wn=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.details,a=void 0!==r&&r,s=pe({url:S(e.remoteURL,T(t)),method:"SEARCH",headers:{Accept:"text/plain,application/xml","Content-Type":e.headers["Content-Type"]||"application/xml; charset=utf-8"}},e,n);return bn(ce(s),(function(n){return mt(e,n),bn(n.text(),(function(e){return bn(Ct(e),(function(e){var r=function(e,t,n){var r={truncated:!1,results:[]};return r.truncated=e.multistatus.response.some((function(e){var n,r;return"507"===(null===(n=(e.status||(null===(r=e.propstat)||void 0===r?void 0:r.status)).split(" ",3))||void 0===n?void 0:n[1])&&e.href.replace(/\/$/,"").endsWith(T(t).replace(/\/$/,""))})),e.multistatus.response.forEach((function(e){if(void 0!==e.propstat){var t=e.href.split("/").map(decodeURIComponent).join("/");r.results.push(St(e.propstat.prop,t,n))}})),r}(e,t,a);return ht(n,r,a)}))}))}))})),xn=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t,n){var r,a,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=pe({url:S(e.remoteURL,T(t)),method:"MOVE",headers:{Destination:S(e.remoteURL,T(n))}},e,s);return a=function(t){mt(e,t)},(r=ce(o))&&r.then||(r=Promise.resolve(r)),a?r.then(a):r})),Tn=o(918),_n=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];try{return Promise.resolve(e.apply(this,t))}catch(e){return Promise.reject(e)}}}((function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},a=r.contentLength,s=void 0===a||a,o=r.overwrite,i=void 0===o||o,l={"Content-Type":"application/octet-stream"};!1===s||(l["Content-Length"]="".concat("number"==typeof s?s:function(e){if(re(e))return e.byteLength;if(ae(e))return e.length;if("string"==typeof e)return(0,Tn.k)(e);throw new g({info:{code:A.DataTypeNoLength}},"Cannot calculate data length: Invalid type")}(n))),i||(l["If-None-Match"]="*");var u,c,p=pe({url:S(e.remoteURL,T(t)),method:"PUT",headers:l,data:n},e,r);return c=function(t){try{mt(e,t)}catch(e){var n=e;if(412!==n.status||i)throw n;return!1}return!0},(u=ce(p))&&u.then||(u=Promise.resolve(u)),c?u.then(c):u})),Cn="https://github.com/perry-mitchell/webdav-client/blob/master/LOCK_CONTACT.md";function Sn(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=n.authType,a=void 0===r?null:r,s=n.remoteBasePath,o=n.contactHref,i=void 0===o?Cn:o,l=n.ha1,u=n.headers,c=void 0===u?{}:u,p=n.httpAgent,d=n.httpsAgent,f=n.password,m=n.token,h=n.username,v=n.withCredentials,y=a;y||(y=h||f?O.Password:O.None);var b,w,x={authType:y,remoteBasePath:s,contactHref:i,ha1:l,headers:Object.assign({},c),httpAgent:p,httpsAgent:d,password:f,remotePath:(b=e,w=new(t())(b).pathname,w.length<=0&&(w="/"),C(w)),remoteURL:e,token:m,username:h,withCredentials:v};return function(e,t,n,r,a){switch(e.authType){case O.Digest:e.digest=function(e,t,n){return{username:e,password:t,ha1:n,nc:0,algorithm:"md5",hasDigestAuth:!1}}(t,n,a);break;case O.None:break;case O.Password:e.headers.Authorization=function(e,t){var n,r=(n="".concat(e,":").concat(t),F().encode(n));return"Basic ".concat(r)}(t,n);break;case O.Token:e.headers.Authorization="".concat((s=r).token_type," ").concat(s.access_token);break;default:throw new g({info:{code:A.InvalidAuthType}},"Invalid auth type: ".concat(e.authType))}var s}(x,h,f,m,l),{copyFile:function(e,t,n){return vt(x,e,t,n)},createDirectory:function(e,t){return zt(x,e,t)},createReadStream:function(e,t){return function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=new(0,Vt().PassThrough);return qt(e,t,n).then((function(e){e.pipe(r)})).catch((function(e){r.emit("error",e)})),r}(x,e,t)},createWriteStream:function(e,t,n){return function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:Jt,a=new(0,Vt().PassThrough),s={};!1===n.overwrite&&(s["If-None-Match"]="*");var o=pe({url:S(e.remoteURL,T(t)),method:"PUT",headers:s,data:a,maxRedirects:0},e,n);return ce(o).then((function(t){return mt(e,t)})).then((function(e){setTimeout((function(){r(e)}),0)})).catch((function(e){a.emit("error",e)})),a}(x,e,t,n)},customRequest:function(e,t){return Wt(x,e,t)},deleteFile:function(e,t){return Kt(x,e,t)},exists:function(e,t){return Xt(x,e,t)},getDirectoryContents:function(e,t){return Zt(x,e,t)},getFileContents:function(e,t){return rn(x,e,t)},getFileDownloadLink:function(e){return function(e,t){var n=S(e.remoteURL,T(t)),r=/^https:/i.test(n)?"https":"http";switch(e.authType){case O.None:break;case O.Password:var a=k(e.headers.Authorization.replace(/^Basic /i,"").trim());n=n.replace(/^https?:\/\//,"".concat(r,"://").concat(a,"@"));break;default:throw new g({info:{code:A.LinkUnsupportedAuthType}},"Unsupported auth type for file link: ".concat(e.authType))}return n}(x,e)},getFileUploadLink:function(e){return function(e,t){var n="".concat(S(e.remoteURL,T(t)),"?Content-Type=application/octet-stream"),r=/^https:/i.test(n)?"https":"http";switch(e.authType){case O.None:break;case O.Password:var a=k(e.headers.Authorization.replace(/^Basic /i,"").trim());n=n.replace(/^https?:\/\//,"".concat(r,"://").concat(a,"@"));break;default:throw new g({info:{code:A.LinkUnsupportedAuthType}},"Unsupported auth type for file link: ".concat(e.authType))}return n}(x,e)},getHeaders:function(){return Object.assign({},x.headers)},getQuota:function(e){return yn(x,e)},lock:function(e,t){return mn(x,e,t)},moveFile:function(e,t,n){return xn(x,e,t,n)},putFileContents:function(e,t,n){return _n(x,e,t,n)},search:function(e,t){return wn(x,e,t)},setHeaders:function(e){x.headers=Object.assign({},e)},stat:function(e,t){return jt(x,e,t)},unlock:function(e,t,n){return fn(x,e,t,n)}}}})();var l=i.eI,u=i.lD}},o={};function i(e){var t=o[e];if(void 0!==t)return t.exports;var n=o[e]={id:e,loaded:!1,exports:{}};return s[e].call(n.exports,n,n.exports,i),n.loaded=!0,n.exports}i.m=s,i.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return i.d(t,{a:t}),t},n=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,i.t=function(t,r){if(1&r&&(t=this(t)),8&r)return t;if("object"==typeof t&&t){if(4&r&&t.__esModule)return t;if(16&r&&"function"==typeof t.then)return t}var a=Object.create(null);i.r(a);var s={};e=e||[null,n({}),n([]),n(n)];for(var o=2&r&&t;"object"==typeof o&&!~e.indexOf(o);o=n(o))Object.getOwnPropertyNames(o).forEach((e=>s[e]=()=>t[e]));return s.default=()=>t,i.d(a,s),a},i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.f={},i.e=e=>Promise.all(Object.keys(i.f).reduce(((t,n)=>(i.f[n](e,t),t)),[])),i.u=e=>e+".js?v="+{"vendors-node_modules_nextcloud_vue_dist_index_mjs":"c879caee2e62e8bb4121","files-modal":"4c14bcf70eb8deb9d62c",mermaid:"79dd7a6b39718f63613f","vendors-node_modules_braintree_sanitize-url_dist_index_js-node_modules_quartzy_markdown-it-me-01b328":"8566500d841dec8abdbe","src_extensions_index_js-src_components_Editor_EditorOutline_vue-data_image_svg_xml_3csvg_20xm-1ac8cb":"c3bee3f28b507d705bda","src_views_RichWorkspace_vue-node_modules_nextcloud_vue_dist_chunks_emoji-tllD0Rvt_mjs-node_mo-23061b":"4dd776a00eb757349b64","node_modules_nextcloud_dialogs_dist_chunks_index-1zThpkd0_mjs":"1506f448d0d08dc02deb","vendors-node_modules_nextcloud_paths_dist_index_js-node_modules_nextcloud_dialogs_dist_index_-6caa07":"f5ad9fa64244b48addfd","vendors-node_modules_nextcloud_dialogs_dist_chunks_toast-7xJhDYMn_mjs":"e883f69a95ab069bfaee","vendors-node_modules_path-normalize_lib_index_js-node_modules_proxy-polyfill_src_index_js-nod-598231":"0cbed9c9d6cdaa285205",editor:"254da8f5b876c3c66d1b","vendors-node_modules_dagre-d3-es_src_dagre_index_js":"71774679b7030d5fd0ad","vendors-node_modules_mdast-util-from-markdown_lib_index_js":"14222a390ba2fff4b48a","node_modules_dagre-d3-es_src_graphlib_json_js-node_modules_dagre-d3-es_src_index_js-node_modu-e535e5":"709a4d7b9f78025ffca1","node_modules_dagre-d3-es_src_dagre-js_label_add-html-label_js-node_modules_dagre-d3-es_src_gr-77e053":"e91ce96589a301f01744","node_modules_uuid_dist_esm-browser_v5_js":"22b0029b4a168558f125","node_modules_dayjs_plugin_advancedFormat_js-node_modules_dayjs_plugin_customParseFormat_js-no-96543d":"e4d85f32a50e1bbe8686","node_modules_dagre-d3-es_src_graphlib_json_js-_33010":"a7fb1c95d0dc699032f7","node_modules_dagre-d3-es_src_graphlib_json_js-_33011":"6fd73c4eb10eb3f25d21","vendors-node_modules_elkjs_lib_elk_bundled_js":"7d7b2fe00ae395ea9fc1","vendors-node_modules_cytoscape-cose-bilkent_cytoscape-cose-bilkent_js-node_modules_cytoscape_-439e91":"37ef7bb92904c966b27e","node_modules_d3-sankey_src_sankey_js-node_modules_d3-sankey_src_sankeyLinkHorizontal_js":"1aa2e55bfe9136b8de79","node_modules_dagre-d3-es_src_graphlib_index_js-node_modules_khroma_dist_methods_channel_js-no-824696":"a9425a98f366222558b9","data_image_svg_xml_3csvg_20xmlns_27http_www_w3_org_2000_svg_27_20width_2724_27_20height_2724_-f1ce30":"a8f4fe557b9b3b738002","highlight/1c":"60571dd821090b74b49a","highlight/1c-js-js":"a18235c16a0f83fd4a2e","highlight/abnf":"44cf17ebe24976f8f2ab","highlight/abnf-js-js":"0a560d0c3f6225367c4d","highlight/accesslog":"05db2409d6820132a5b1","highlight/accesslog-js-js":"88693c2e14bbbb21bfd9","highlight/actionscript":"afdd05f134db26336fc3","highlight/actionscript-js-js":"0660156cf517a9d29773","highlight/ada":"697757ceaf8f64eb69c2","highlight/ada-js-js":"c3ec68b231246b8667c0","highlight/angelscript":"7ff4f066064b9d2ce8a4","highlight/angelscript-js-js":"b09165ccb51638dc8f9c","highlight/apache":"d43f90aa96ace3cd1815","highlight/apache-js-js":"b17b629e9d1c904f3b78","highlight/applescript":"4991a2f667d50e1125bb","highlight/applescript-js-js":"1fdcb16efd151304f2e0","highlight/arcade":"1b70a83d56fd2dd93f6a","highlight/arcade-js-js":"8f337304df03e13c67fa","highlight/arduino":"35b8b786a278bac66ffd","highlight/arduino-js-js":"6faccd031f84a39d2f2d","highlight/armasm":"8f2076532df6bc1caf31","highlight/armasm-js-js":"a9d2a08c5a6f38d99763","highlight/asciidoc":"866bfbcf61e64001de70","highlight/asciidoc-js-js":"89faa1d03dfeea8ba2ba","highlight/aspectj":"2f3583863e11029fa645","highlight/aspectj-js-js":"0f1867b12a4f98bcb16e","highlight/autohotkey":"1fe97147aab3cbe9b85d","highlight/autohotkey-js-js":"32a4db01947d9fadf32c","highlight/autoit":"1375128c5f36bc4427f7","highlight/autoit-js-js":"ba4a51f3b9d14ac20a22","highlight/avrasm":"b5bf71c9023167381696","highlight/avrasm-js-js":"beec1745d307b0058020","highlight/awk":"e80fbced25d377e9cc7a","highlight/awk-js-js":"8dc8c015d8126605ede6","highlight/axapta":"f2d6b5d08178e6e2c8d2","highlight/axapta-js-js":"547ace127a92e6d17e60","highlight/bash":"bef1fea47a29b94e2d24","highlight/bash-js-js":"3896eb4375802768ad27","highlight/basic":"5543c98b4f3c195d870c","highlight/basic-js-js":"6d25168ad8e0a3ac22fd","highlight/bnf":"a019e5f6e6d8d06377f6","highlight/bnf-js-js":"6f3e71abdd1acc3d2567","highlight/brainfuck":"b8d18171fd45ebdf1af6","highlight/brainfuck-js-js":"fe6ed2589ba3f60c637d","highlight/c":"fd667cdba1ebc5761498","highlight/c-js-js":"22b97880c27b80df19eb","highlight/cal":"fe6f3589cca9b8768bd3","highlight/cal-js-js":"f4f730498fc71cee64c7","highlight/capnproto":"acfad201f522cefd478f","highlight/capnproto-js-js":"9d8acaf81f2fa1f7d31e","highlight/ceylon":"aeb093df62ce645df3a4","highlight/ceylon-js-js":"b40f8961becacc7bf657","highlight/clean":"c0a7e1e5a62cd7175777","highlight/clean-js-js":"f1d7adfb5357ca72edeb","highlight/clojure":"4e9fbb2f027d2c2c9a38","highlight/clojure-repl":"928da40b3b840e9b640d","highlight/clojure-repl-js-js":"2521e4c29d89218c6e25","highlight/clojure-js-js":"72c213aca7fd43963ef6","highlight/cmake":"96e774287755bcca7762","highlight/cmake-js-js":"cd3c7d247f4a757aabad","highlight/coffeescript":"28d5106628a554d6496d","highlight/coffeescript-js-js":"04fa5e21804e127bb9f8","highlight/coq":"1faf7321fda64444fd08","highlight/coq-js-js":"6882923d56a685b37888","highlight/cos":"e94a52d19123673cc449","highlight/cos-js-js":"6a95e3a3190114f89b33","highlight/cpp":"93252fd671d36d541228","highlight/cpp-js-js":"435c32c7b8d362212b14","highlight/crmsh":"1009e65959edf6b73430","highlight/crmsh-js-js":"94ff862dd8fca34932f0","highlight/crystal":"18e717c6e4bb14a0227a","highlight/crystal-js-js":"55db6bafd376a542dfe2","highlight/csharp":"ec799b85c573e8dd5aa9","highlight/csharp-js-js":"1da70325a63d23f15e0c","highlight/csp":"281dd2b6a5110d98a859","highlight/csp-js-js":"892daf8fcab81f876937","highlight/css":"cac3dd353ca818fa96e4","highlight/css-js-js":"dbf9c35cd040ef95f3cd","highlight/d":"52e92ed2119a66e005e7","highlight/d-js-js":"ceb818479a15c84da64c","highlight/dart":"6d59be2a53a27d3b6e67","highlight/dart-js-js":"18fe9b5ac7fcd353a0b6","highlight/delphi":"2dab2450dd369edfa4a3","highlight/delphi-js-js":"8513578f3ddfa6983e16","highlight/diff":"daa313846a32c6d3dcca","highlight/diff-js-js":"a4c85a25b066419e3d24","highlight/django":"f2d0628b3370a2bd76ff","highlight/django-js-js":"103f3085acae2044c3bc","highlight/dns":"732cd30b72a6b4ef7924","highlight/dns-js-js":"25ca0948aa1cd7d2c503","highlight/dockerfile":"2a8b647c9f93f89c0f16","highlight/dockerfile-js-js":"44ef18a86f5aaccd55f2","highlight/dos":"a8fc4e96310323cddb22","highlight/dos-js-js":"4ba4e7d65950a7f4380d","highlight/dsconfig":"40528f2c63f840e1a420","highlight/dsconfig-js-js":"93f8d986a8226db00f10","highlight/dts":"af5659be6cc84be5b841","highlight/dts-js-js":"0ebd1a59981ef472a787","highlight/dust":"0f77d529de2ef5de2d23","highlight/dust-js-js":"3c3776f3e006858b5832","highlight/ebnf":"d482a6496114392057e7","highlight/ebnf-js-js":"2b07c2a1dd25486f451d","highlight/elixir":"0f6ae88808bd1a31c9d3","highlight/elixir-js-js":"5f98b89b9ebf18ca6975","highlight/elm":"23e1f5a07af37b446f19","highlight/elm-js-js":"7a2a377792b1b2433fc8","highlight/erb":"af2e8b5238ed5877dea0","highlight/erb-js-js":"7ea2032a522e2b7749ea","highlight/erlang":"fe356a9e5c2e9b39b4d6","highlight/erlang-repl":"7b1a66b631fc314a68bd","highlight/erlang-repl-js-js":"93beea8dabff11f5c433","highlight/erlang-js-js":"fc95b9a68f5ed812347f","highlight/excel":"20611bc5219d14a50b96","highlight/excel-js-js":"5281f8400781a077d679","highlight/fix":"9c1dfd8ae09bacaf8be7","highlight/fix-js-js":"9801459fab8660aac565","highlight/flix":"2c44ba03732f1a292b0e","highlight/flix-js-js":"80b671b5c164e3b81dd8","highlight/fortran":"9e8d1cec0e82ac2197c9","highlight/fortran-js-js":"19e857d4c1249d094fef","highlight/fsharp":"a36f5d902959c55dc4bc","highlight/fsharp-js-js":"dd9666106c251c834cf0","highlight/gams":"35c6585dadad2f9392fe","highlight/gams-js-js":"4397d79709a5af0d4284","highlight/gauss":"51aea2a8aa68416e1b0d","highlight/gauss-js-js":"1f427eb0ebbd39a0189c","highlight/gcode":"a05bfe996ded2803dd90","highlight/gcode-js-js":"864dbdfe06cba7141ebe","highlight/gherkin":"86eefbfc3e3461d30b85","highlight/gherkin-js-js":"82eaff91c16df5c88577","highlight/glsl":"03c9c9e4b5d50c0ab49b","highlight/glsl-js-js":"a7661648b59704baeaa0","highlight/gml":"3f764eac3bb800e059e5","highlight/gml-js-js":"4e653f5c9ccb166a9c50","highlight/go":"fb1595b905683e2b19a1","highlight/go-js-js":"aa02802cc350f0153056","highlight/golo":"a221ff67c4fc5926b108","highlight/golo-js-js":"eb71bdef583e289a580e","highlight/gradle":"fe8a06a11ee412945f04","highlight/gradle-js-js":"7041fb7786ffcae3b234","highlight/graphql":"5ae245b71a423cc3241f","highlight/graphql-js-js":"0f0e98c4b7d7d36be688","highlight/groovy":"4e747e54608071de5a5e","highlight/groovy-js-js":"4dc3a184f5fecef89600","highlight/haml":"4914c9e47c186e2af33c","highlight/haml-js-js":"88f5a45299b44d9f7d00","highlight/handlebars":"6f91685f46331518d14e","highlight/handlebars-js-js":"0085aa34e1ea317a4948","highlight/haskell":"af9589f1a8263e86270d","highlight/haskell-js-js":"ebb8d92eb33cfeb47df0","highlight/haxe":"ff48fd202c4766f971ef","highlight/haxe-js-js":"e229b436cabd5eba7c38","highlight/hsp":"e2f56cfb5cea59bff4e3","highlight/hsp-js-js":"5b478084c6701dfab70b","highlight/http":"d0f6e0c64b99baba774d","highlight/http-js-js":"bde714de966410f48f57","highlight/hy":"4aa2e420aef64868991d","highlight/hy-js-js":"1322414b507747aaed44","highlight/inform7":"72abe11092f55c7a4fb0","highlight/inform7-js-js":"4e796776d182eaaad167","highlight/ini":"ceed225d7dfb4090ec3b","highlight/ini-js-js":"5334d58679eaeb2e3f9a","highlight/irpf90":"1b201d0aa0df390bc719","highlight/irpf90-js-js":"85d85e8beb44b067b961","highlight/isbl":"17bd0cb6d546f88872e1","highlight/isbl-js-js":"f9f95135165010cc1e7e","highlight/java":"4467ea7ba44234bb8f18","highlight/java-js-js":"4dd439877e4e03025ba7","highlight/javascript":"7f226331e004e0c8243d","highlight/javascript-js-js":"73924dc436bae51631f1","highlight/jboss-cli":"9a24f5d7fc1167b594b9","highlight/jboss-cli-js-js":"72f076f6fa95fc64b1fb","highlight/json":"c22594286a901c9359a6","highlight/json-js-js":"694d9d3df4cbb37a340e","highlight/julia":"61f1430ad08a4cfb13a9","highlight/julia-repl":"f5be4c2c71d99cf59924","highlight/julia-repl-js-js":"42d4e642dfedefe1847a","highlight/julia-js-js":"e318702e5b4064096a54","highlight/kotlin":"f55fef9c56d430faf593","highlight/kotlin-js-js":"4ec25479ca32a257c54e","highlight/lasso":"9a7025219ae37740e1ea","highlight/lasso-js-js":"0c6c709a339494dd244c","highlight/latex":"732f1c2c2453f95e563f","highlight/latex-js-js":"37bf2b4b2cb7dad8740d","highlight/ldif":"30b9e909df345090e89b","highlight/ldif-js-js":"774a2ecf547240f30ec5","highlight/leaf":"14475923520f17a3d110","highlight/leaf-js-js":"f3b8adb28806d9bdd3a9","highlight/less":"de94bd54588bf0cbd87f","highlight/less-js-js":"15fe11866136360710b2","highlight/lisp":"1b19597997064517e49c","highlight/lisp-js-js":"a150ada2ae872409a49b","highlight/livecodeserver":"20fc6459bbedc1d8436c","highlight/livecodeserver-js-js":"720b026ad544f5eaa63a","highlight/livescript":"86d8bd82be66c07ab3ba","highlight/livescript-js-js":"f5ecfff83c5121ba10af","highlight/llvm":"74bf320ee0fbdf890f13","highlight/llvm-js-js":"313d0319af75644f98d7","highlight/lsl":"2af2c1df03392f4a33e9","highlight/lsl-js-js":"3dad2ea0ee897050b163","highlight/lua":"2edea9e56c7cb67f6062","highlight/lua-js-js":"e7db269bab9fc22787c6","highlight/makefile":"3d1bcc5c4fabf65aa4b0","highlight/makefile-js-js":"f5a6e4189fc1505aa812","highlight/markdown":"745257a411111bf58283","highlight/markdown-js-js":"3d82f9ad347531708707","highlight/mathematica":"a89434791e07e8ee0038","highlight/mathematica-js-js":"1525019847ed970b92f5","highlight/matlab":"14293ec301a9a583cb48","highlight/matlab-js-js":"8a451a372fab581db523","highlight/maxima":"0a7f00ac948da692653d","highlight/maxima-js-js":"0f3d3dd9fb77bd53e823","highlight/mel":"ca72020c8220f29f6a5f","highlight/mel-js-js":"8573f84320dd6a909b15","highlight/mercury":"7e6c2687c9fc72e2055e","highlight/mercury-js-js":"f7393f66e73a29729c45","highlight/mipsasm":"1e1d57b5c23e57797042","highlight/mipsasm-js-js":"ccee091ed67246de6efd","highlight/mizar":"64e5dead9ff49a49cc6a","highlight/mizar-js-js":"ff24b8c6c86289c5853d","highlight/mojolicious":"ce4f373f8de79d99c17a","highlight/mojolicious-js-js":"c1e335e7b9af94137ee2","highlight/monkey":"c68e27eb0b4b0147a061","highlight/monkey-js-js":"ac0f01de33cfdbf4cbab","highlight/moonscript":"1d305fffb98da1277505","highlight/moonscript-js-js":"0e80dc67258ccf294c93","highlight/n1ql":"cd6a71861da62c03305b","highlight/n1ql-js-js":"a9d048c5e50375924a5f","highlight/nestedtext":"f4bd7b623e2a2974a5a1","highlight/nestedtext-js-js":"a059011de362e4f206a0","highlight/nginx":"874c90e91b1947f879ab","highlight/nginx-js-js":"f2de40c914da80e9f19a","highlight/nim":"e7a0961d9ce8015f3651","highlight/nim-js-js":"5bc7a12df4cf929bf57d","highlight/nix":"375922447fe2ed5878b6","highlight/nix-js-js":"31908755e85cef75c14f","highlight/node-repl":"3919d002ab5c0f76ac28","highlight/node-repl-js-js":"66724f391711306cc409","highlight/nsis":"ab143f22c1fa2eedb313","highlight/nsis-js-js":"b24d39ee04ee48ad8b18","highlight/objectivec":"f6c18728ae5b3782e6be","highlight/objectivec-js-js":"9e6a035ac64e262e37a2","highlight/ocaml":"6bcbade59cc829d5b0ca","highlight/ocaml-js-js":"602285d6c5d0d92444ec","highlight/openscad":"08af918b5dcbf017d2a8","highlight/openscad-js-js":"145c2dc15c7af0d8b2a0","highlight/oxygene":"b327fdb6d3f031bbb324","highlight/oxygene-js-js":"510375bc5c9285e968eb","highlight/parser3":"2ca70819cf766cb4be23","highlight/parser3-js-js":"6a7fcea2214f8bdc1e1a","highlight/perl":"33ddb573039a1accd731","highlight/perl-js-js":"5997b0b1fe9ee4ceba62","highlight/pf":"72430017af54982e3c58","highlight/pf-js-js":"f9788b99e81b3a5e19db","highlight/pgsql":"7e6e94cfdd73b7b36811","highlight/pgsql-js-js":"fe09f89438cbc7600d7b","highlight/php":"280972243ce0745fd755","highlight/php-template":"f85aea6129c23b1ff564","highlight/php-template-js-js":"6d2c5ff2ffcafe8d9cf3","highlight/php-js-js":"f29c4933709b7f32d8f7","highlight/plaintext":"81cb64e58d4cc0c02de8","highlight/plaintext-js-js":"88c16fd41ee4d517ee27","highlight/pony":"9d39ac3617ad4ef6da11","highlight/pony-js-js":"ac70c74510d50925b12d","highlight/powershell":"554ec3869c697ddc7fa5","highlight/powershell-js-js":"494c6c72c1116a12ed9d","highlight/processing":"cdc0b826a3a3376d3208","highlight/processing-js-js":"a5af8f6a5a21590c93c0","highlight/profile":"0876c5a989114488cbb7","highlight/profile-js-js":"76b0d805e29b6f3f447c","highlight/prolog":"43364cfe027a2a04cfde","highlight/prolog-js-js":"2f5853b2d0e98a5db346","highlight/properties":"84797cbf4ffc75a80792","highlight/properties-js-js":"bd8ed6d2813076bf60c0","highlight/protobuf":"9779eec65cfbaa78ab2f","highlight/protobuf-js-js":"1d55f9438c804ea021cd","highlight/puppet":"4ec200d0b2adca9684bb","highlight/puppet-js-js":"ef632fd3c18c1386fc96","highlight/purebasic":"09a25a18019fac1d2477","highlight/purebasic-js-js":"609305e0ad6bffaf00a5","highlight/python":"c8e7a5937fe1df120ca9","highlight/python-repl":"12b0dce7606bdb691553","highlight/python-repl-js-js":"fb68b94c05ba2b91a33c","highlight/python-js-js":"c992c1069639e3e85a04","highlight/q":"9c0f9770a2930898a8dc","highlight/q-js-js":"dec16396e5b1a95636cf","highlight/qml":"db23597a4c2892eb554e","highlight/qml-js-js":"451c3683cc59e6014082","highlight/r":"78a0ef9657e7eef99da9","highlight/r-js-js":"a8132170d8903352412a","highlight/reasonml":"3ecea3db878dbe6b8e4a","highlight/reasonml-js-js":"b94a6b5b386275c12c4f","highlight/rib":"fff01e1b5076e16d2b20","highlight/rib-js-js":"ba98744a3b502e81a06e","highlight/roboconf":"f268e6618eafc2730bc8","highlight/roboconf-js-js":"5e136b7998072d7816c2","highlight/routeros":"e873bbf705477bef4aa1","highlight/routeros-js-js":"0f803187d305afa78cdd","highlight/rsl":"10dbc5fa8b78325c003e","highlight/rsl-js-js":"d613a93d20e2a5c667bc","highlight/ruby":"4122f9e1d4087ee80341","highlight/ruby-js-js":"9288fcdccf146d866952","highlight/ruleslanguage":"4837fc84a2be9937688f","highlight/ruleslanguage-js-js":"f8c612fc2a105d3a7381","highlight/rust":"d0c79d151a761fda059c","highlight/rust-js-js":"afffdcb434d8a78ddc30","highlight/sas":"110880afbfdb3eb74b75","highlight/sas-js-js":"979fb17612b38e042343","highlight/scala":"54ade10d95ef1c974e41","highlight/scala-js-js":"25f2574e526b74034c6f","highlight/scheme":"935af4097c9c844fc1fd","highlight/scheme-js-js":"a9fea2e30f72b8bf9918","highlight/scilab":"331300247a8065bed3f7","highlight/scilab-js-js":"eb4d48a22ae99f51f472","highlight/scss":"e4a42a7a82660956c227","highlight/scss-js-js":"132e56b3a0e2f7a3a974","highlight/shell":"bfeada102b798e322778","highlight/shell-js-js":"4da6f365b2e861fd1c1f","highlight/smali":"d430b3d6604d21a1f1c4","highlight/smali-js-js":"09383a404cf096be76c1","highlight/smalltalk":"131b40f45aaede861ec0","highlight/smalltalk-js-js":"4f6d82ebcd3f3151782e","highlight/sml":"f20d523f6a103fa6005a","highlight/sml-js-js":"803cb176cf6079f9f34f","highlight/sqf":"2bceab15b818c1590f57","highlight/sqf-js-js":"aed29715b35ad86762aa","highlight/sql":"674155b4e27ab08f5c4e","highlight/sql-js-js":"669ba88b49e9e9d2ba1c","highlight/stan":"26df45a62b9dfa22ddf4","highlight/stan-js-js":"3bf189cf30dd06266de2","highlight/stata":"d361a10a63a992d9da33","highlight/stata-js-js":"52b717afd9ccb09ce432","highlight/step21":"e6d783f08b4321a208ad","highlight/step21-js-js":"4d83318eaa255061ae69","highlight/stylus":"967e33fd5867c8124412","highlight/stylus-js-js":"9461d90d6cb1f4f0f86e","highlight/subunit":"d4625b59f98d98e45f87","highlight/subunit-js-js":"7df5969b25ff01f70e70","highlight/swift":"c5e0c483084c602c8b6a","highlight/swift-js-js":"b3ff7f7052bd65db4683","highlight/taggerscript":"b96b06a2a35cfb14e4ce","highlight/taggerscript-js-js":"ef209cbad718ab53a6fe","highlight/tap":"31fdd1cad7f876e8ef52","highlight/tap-js-js":"12ec5ae895610fcfc1c1","highlight/tcl":"4d7f6850f8a7961c91c4","highlight/tcl-js-js":"6852ebd73228d6124b29","highlight/thrift":"fbc3f6ed61ead1d96c20","highlight/thrift-js-js":"70da475b520514ffdf5f","highlight/tp":"5773fd1f5bc6030b1d38","highlight/tp-js-js":"b0d2bd9846ba62d5a207","highlight/twig":"6d071ee63e048b530ef2","highlight/twig-js-js":"8bb0173ded17cbd46e4f","highlight/typescript":"87eb1da38d5a3e50c804","highlight/typescript-js-js":"25ed692ca8a45feba453","highlight/vala":"489c75cd554d0c95f1c5","highlight/vala-js-js":"9ab3f9f8f1db1c6e11a6","highlight/vbnet":"49aea9874a75a1254c25","highlight/vbnet-js-js":"da4e94a84e4c2f3d342f","highlight/vbscript":"e1c3ec26e283427c9de4","highlight/vbscript-html":"723014f14b777f1e4990","highlight/vbscript-html-js-js":"e89731c7c5a04f93e428","highlight/vbscript-js-js":"58d8b10d485c8d170175","highlight/verilog":"d6cef4ad645954666480","highlight/verilog-js-js":"1e559dc767415c184c53","highlight/vhdl":"f0c18e92cc9ac259e49f","highlight/vhdl-js-js":"c43b240156c5d9d3ba44","highlight/vim":"f2abc5971fe61cf36f65","highlight/vim-js-js":"3b43da5761a0c995e114","highlight/wasm":"4f615e0364d3b51fbb9d","highlight/wasm-js-js":"e1f4d8ab9a995229023d","highlight/wren":"843c06fe4376cbe484ad","highlight/wren-js-js":"374e503952ba1f5da908","highlight/x86asm":"b68ed945ddf729246b09","highlight/x86asm-js-js":"ca881ce2be642d0d236b","highlight/xl":"9979735063c70e38957a","highlight/xl-js-js":"3bf66fa2225439c7b401","highlight/xml":"69e66959eb444da5a27b","highlight/xml-js-js":"2748c34f96fac36c7ec9","highlight/xquery":"fd78bdc172974424c263","highlight/xquery-js-js":"25965de593bd827caccc","highlight/yaml":"faccced13cf7009a1d21","highlight/yaml-js-js":"55b7ef75ceb977135c7e","highlight/zephir":"573871ee1969f9de654a","highlight/zephir-js-js":"f4512f00b9ec1892245f","editor-collab":"108f1eb443df24e58fe7","editor-guest":"bcdea71371ba99706394"}[e],i.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r={},a="@nextcloud/text:",i.l=(e,t,n,s)=>{if(r[e])r[e].push(t);else{var o,l;if(void 0!==n)for(var u=document.getElementsByTagName("script"),c=0;c<u.length;c++){var p=u[c];if(p.getAttribute("src")==e||p.getAttribute("data-webpack")==a+n){o=p;break}}o||(l=!0,(o=document.createElement("script")).charset="utf-8",o.timeout=120,i.nc&&o.setAttribute("nonce",i.nc),o.setAttribute("data-webpack",a+n),o.src=e),r[e]=[t];var d=(t,n)=>{o.onerror=o.onload=null,clearTimeout(f);var a=r[e];if(delete r[e],o.parentNode&&o.parentNode.removeChild(o),a&&a.forEach((e=>e(n))),t)return t(n)},f=setTimeout(d.bind(null,void 0,{type:"timeout",target:o}),12e4);o.onerror=d.bind(null,o.onerror),o.onload=d.bind(null,o.onload),l&&document.head.appendChild(o)}},i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),i.j="init",i.p="/apps/text/js/",(()=>{i.b=document.baseURI||self.location.href;var e={init:0,"vendors-node_modules_vue_dist_vue_runtime_esm_js":0,src_store_index_js:0,"vendors-node_modules_nextcloud_axios_dist_index_es_mjs":0,"vendors-node_modules_nextcloud_paths_dist_index_js-node_modules_nextcloud_dialogs_dist_index_-6caa07":0,"vendors-node_modules_nextcloud_dialogs_dist_chunks_toast-7xJhDYMn_mjs":0,"vendors-node_modules_nextcloud_browser-storage_dist_index_js-node_modules_debounce_index_js-n-865519":0};i.f.j=(t,n)=>{var r=i.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var a=new Promise(((n,a)=>r=e[t]=[n,a]));n.push(r[2]=a);var s=i.p+i.u(t),o=new Error;i.l(s,(n=>{if(i.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var a=n&&("load"===n.type?"missing":n.type),s=n&&n.target&&n.target.src;o.message="Loading chunk "+t+" failed.\n("+a+": "+s+")",o.name="ChunkLoadError",o.type=a,o.request=s,r[1](o)}}),"chunk-"+t,t)}};var t=(t,n)=>{var r,a,[s,o,l]=n,u=0;if(s.some((t=>0!==e[t]))){for(r in o)i.o(o,r)&&(i.m[r]=o[r]);if(l)l(i)}for(t&&t(n);u<s.length;u++)a=s[u],i.o(e,a)&&e[a]&&e[a][0](),e[a]=0},n=self.webpackChunk_nextcloud_text=self.webpackChunk_nextcloud_text||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))})(),i.nc=void 0,(()=>{"use strict";var e=i(5656),t=i(43554),n=i(94091),r=i(79753);i.nc=window.btoa(OC.requestToken),i.p=(0,r.kZ)("text","js/");const a=(0,t.j)("text","workspace_available");(0,e.qq)("nc:rich-workspace",{nc:"http://nextcloud.org/ns"}),(0,e.qq)("nc:rich-workspace-file",{nc:"http://nextcloud.org/ns"}),a&&((0,n.U3)(),(0,e.Qq)(n.t_))})()})();
//# sourceMappingURL=text-init.js.map?v=c6ebec0bd165cbfcde32