nuxt-graphql-middleware 5.2.2 → 5.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/client/200.html +1 -1
- package/dist/client/404.html +1 -1
- package/dist/client/_nuxt/CqRv5mwS.js +2 -0
- package/dist/client/_nuxt/{DKGPmQRi.js → D95LLO0l.js} +1 -1
- package/dist/client/_nuxt/DZ-uq6Vd.js +1 -0
- package/dist/client/_nuxt/DrXVleME.js +4 -0
- package/dist/client/_nuxt/{CLvFsrJf.js → Dx-h1-qv.js} +1 -1
- package/dist/client/_nuxt/builds/latest.json +1 -1
- package/dist/client/_nuxt/builds/meta/f3f3372e-493e-4c8e-9dbd-18d4c5406f44.json +1 -0
- package/dist/client/_nuxt/{entry.DUAtNXP_.css → entry.Cyocd7ae.css} +1 -1
- package/dist/client/_nuxt/error-404.BLrjNXsr.css +1 -0
- package/dist/client/_nuxt/error-500.DLkAwcfL.css +1 -0
- package/dist/client/index.html +1 -1
- package/dist/module.d.mts +1 -1
- package/dist/module.json +3 -3
- package/dist/module.mjs +1526 -70
- package/dist/runtime/components/CodeFrame.d.vue.ts +8 -0
- package/dist/runtime/components/CodeFrame.vue.d.ts +2 -1
- package/dist/runtime/components/DevModeOverlay.d.vue.ts +4 -0
- package/dist/runtime/components/DevModeOverlay.vue +1 -1
- package/dist/runtime/components/DevModeOverlay.vue.d.ts +2 -1
- package/dist/runtime/components/ErrorExtensions.d.vue.ts +6 -0
- package/dist/runtime/components/ErrorExtensions.vue.d.ts +2 -1
- package/dist/runtime/components/ErrorGroup.d.vue.ts +10 -0
- package/dist/runtime/components/ErrorGroup.vue.d.ts +2 -1
- package/dist/runtime/css/output.css +1 -1
- package/dist/runtime/helpers/composables.d.ts +1 -40
- package/dist/runtime/helpers/composables.js +3 -12
- package/dist/runtime/helpers/shared-types.d.ts +40 -0
- package/dist/runtime/helpers/shared-types.js +12 -0
- package/dist/runtime/server/api/doRequest.d.ts +2 -0
- package/dist/runtime/server/api/doRequest.js +18 -0
- package/dist/runtime/server/helpers/index.js +1 -1
- package/dist/runtime/server/mcp/index.d.ts +2 -0
- package/dist/runtime/server/mcp/index.js +63 -0
- package/dist/runtime/server/mcp/resources/docs.d.ts +2 -0
- package/dist/runtime/server/mcp/resources/docs.js +36 -0
- package/dist/runtime/server/mcp/tools/fragments-get/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/fragments-get/index.js +35 -0
- package/dist/runtime/server/mcp/tools/fragments-get/types.d.ts +20 -0
- package/dist/runtime/server/mcp/tools/fragments-get/types.js +13 -0
- package/dist/runtime/server/mcp/tools/fragments-get-source/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/fragments-get-source/index.js +34 -0
- package/dist/runtime/server/mcp/tools/fragments-get-source/types.d.ts +10 -0
- package/dist/runtime/server/mcp/tools/fragments-get-source/types.js +9 -0
- package/dist/runtime/server/mcp/tools/fragments-list/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/fragments-list/index.js +36 -0
- package/dist/runtime/server/mcp/tools/fragments-list/types.d.ts +20 -0
- package/dist/runtime/server/mcp/tools/fragments-list/types.js +14 -0
- package/dist/runtime/server/mcp/tools/fragments-list-for-type/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/fragments-list-for-type/index.js +39 -0
- package/dist/runtime/server/mcp/tools/fragments-list-for-type/types.d.ts +31 -0
- package/dist/runtime/server/mcp/tools/fragments-list-for-type/types.js +23 -0
- package/dist/runtime/server/mcp/tools/graphql-execute/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/graphql-execute/index.js +59 -0
- package/dist/runtime/server/mcp/tools/module-get-config/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/module-get-config/index.js +23 -0
- package/dist/runtime/server/mcp/tools/module-get-config/types.d.ts +39 -0
- package/dist/runtime/server/mcp/tools/module-get-config/types.js +26 -0
- package/dist/runtime/server/mcp/tools/nitro-graphql-server-utils-example/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/nitro-graphql-server-utils-example/index.js +36 -0
- package/dist/runtime/server/mcp/tools/nitro-graphql-server-utils-example/types.d.ts +49 -0
- package/dist/runtime/server/mcp/tools/nitro-graphql-server-utils-example/types.js +24 -0
- package/dist/runtime/server/mcp/tools/operations-execute/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/operations-execute/index.js +63 -0
- package/dist/runtime/server/mcp/tools/operations-get/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/operations-get/index.js +40 -0
- package/dist/runtime/server/mcp/tools/operations-get/types.d.ts +32 -0
- package/dist/runtime/server/mcp/tools/operations-get/types.js +18 -0
- package/dist/runtime/server/mcp/tools/operations-get-field-usage/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/operations-get-field-usage/index.js +39 -0
- package/dist/runtime/server/mcp/tools/operations-get-field-usage/types.d.ts +38 -0
- package/dist/runtime/server/mcp/tools/operations-get-field-usage/types.js +19 -0
- package/dist/runtime/server/mcp/tools/operations-get-source/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/operations-get-source/index.js +39 -0
- package/dist/runtime/server/mcp/tools/operations-get-source/types.d.ts +10 -0
- package/dist/runtime/server/mcp/tools/operations-get-source/types.js +9 -0
- package/dist/runtime/server/mcp/tools/operations-list/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/operations-list/index.js +46 -0
- package/dist/runtime/server/mcp/tools/operations-list/types.d.ts +53 -0
- package/dist/runtime/server/mcp/tools/operations-list/types.js +33 -0
- package/dist/runtime/server/mcp/tools/schema-get-interface-implementors/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-get-interface-implementors/index.js +37 -0
- package/dist/runtime/server/mcp/tools/schema-get-interface-implementors/types.d.ts +24 -0
- package/dist/runtime/server/mcp/tools/schema-get-interface-implementors/types.js +16 -0
- package/dist/runtime/server/mcp/tools/schema-get-type/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-get-type/index.js +31 -0
- package/dist/runtime/server/mcp/tools/schema-get-type/types.d.ts +112 -0
- package/dist/runtime/server/mcp/tools/schema-get-type/types.js +45 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-definition/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-definition/index.js +33 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-definition/types.d.ts +10 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-definition/types.js +9 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-usage/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-usage/index.js +35 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-usage/types.d.ts +39 -0
- package/dist/runtime/server/mcp/tools/schema-get-type-usage/types.js +17 -0
- package/dist/runtime/server/mcp/tools/schema-get-union-members/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-get-union-members/index.js +35 -0
- package/dist/runtime/server/mcp/tools/schema-get-union-members/types.d.ts +24 -0
- package/dist/runtime/server/mcp/tools/schema-get-union-members/types.js +16 -0
- package/dist/runtime/server/mcp/tools/schema-list-types/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-list-types/index.js +37 -0
- package/dist/runtime/server/mcp/tools/schema-list-types/types.d.ts +53 -0
- package/dist/runtime/server/mcp/tools/schema-list-types/types.js +21 -0
- package/dist/runtime/server/mcp/tools/schema-validate-document/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/schema-validate-document/index.js +31 -0
- package/dist/runtime/server/mcp/tools/schema-validate-document/types.d.ts +26 -0
- package/dist/runtime/server/mcp/tools/schema-validate-document/types.js +21 -0
- package/dist/runtime/server/mcp/tools/vue-graphql-composable-example/index.d.ts +1 -0
- package/dist/runtime/server/mcp/tools/vue-graphql-composable-example/index.js +36 -0
- package/dist/runtime/server/mcp/tools/vue-graphql-composable-example/types.d.ts +49 -0
- package/dist/runtime/server/mcp/tools/vue-graphql-composable-example/types.js +24 -0
- package/dist/runtime/server/mcp/utils/index.d.ts +48 -0
- package/dist/runtime/server/mcp/utils/index.js +35 -0
- package/dist/runtime/server/utils/useGraphqlMutation.d.ts +1 -1
- package/dist/runtime/server/utils/useGraphqlMutation.js +1 -1
- package/dist/runtime/server/utils/useGraphqlQuery.d.ts +1 -1
- package/dist/runtime/server/utils/useGraphqlQuery.js +1 -1
- package/dist/runtime/types.d.ts +1 -1
- package/dist/shared/{nuxt-graphql-middleware.ct2xvPoD.d.mts → nuxt-graphql-middleware.COufMnWs.d.mts} +119 -2
- package/dist/utils.d.mts +1 -1
- package/docs/composables/useAsyncGraphqlQuery.md +313 -0
- package/docs/composables/useGraphqlMutation.md +29 -0
- package/docs/composables/useGraphqlQuery.md +73 -0
- package/docs/composables/useGraphqlState.md +58 -0
- package/docs/composables/useGraphqlUploadMutation.md +57 -0
- package/docs/configuration/client-options.md +121 -0
- package/docs/configuration/module-hooks.md +112 -0
- package/docs/configuration/module-utils.md +53 -0
- package/docs/configuration/module.md +415 -0
- package/docs/configuration/runtime-config.md +23 -0
- package/docs/configuration/server-options.md +230 -0
- package/package.json +102 -44
- package/dist/client/_nuxt/CKZE-Gmz.js +0 -2
- package/dist/client/_nuxt/CYCWsMRt.js +0 -1
- package/dist/client/_nuxt/DPP_zJIh.js +0 -25
- package/dist/client/_nuxt/builds/meta/1a5c6b94-502b-4ab8-a5c9-f955b10f2b06.json +0 -1
- package/dist/client/_nuxt/error-404.DlVPZ4GE.css +0 -1
- package/dist/client/_nuxt/error-500.DjyirMQI.css +0 -1
- package/dist/runtime/server/tsconfig.json +0 -3
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./CqRv5mwS.js","./index.B-PWu_0C.css","./D95LLO0l.js","./DZ-uq6Vd.js","./error-404.BLrjNXsr.css","./Dx-h1-qv.js","./error-500.DLkAwcfL.css"])))=>i.map(i=>d[i]);
|
|
2
|
+
(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))r(s);new MutationObserver(s=>{for(const o of s)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&r(i)}).observe(document,{childList:!0,subtree:!0});function n(s){const o={};return s.integrity&&(o.integrity=s.integrity),s.referrerPolicy&&(o.referrerPolicy=s.referrerPolicy),s.crossOrigin==="use-credentials"?o.credentials="include":s.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(s){if(s.ep)return;s.ep=!0;const o=n(s);fetch(s.href,o)}})();function zs(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;return n=>n in t}const ae={},dn=[],ct=()=>{},ll=()=>!1,Zn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Zs=e=>e.startsWith("onUpdate:"),Ee=Object.assign,eo=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Tc=Object.prototype.hasOwnProperty,se=(e,t)=>Tc.call(e,t),G=Array.isArray,hn=e=>kn(e)==="[object Map]",Pn=e=>kn(e)==="[object Set]",Io=e=>kn(e)==="[object Date]",Cc=e=>kn(e)==="[object RegExp]",Q=e=>typeof e=="function",pe=e=>typeof e=="string",Ze=e=>typeof e=="symbol",ie=e=>e!==null&&typeof e=="object",al=e=>(ie(e)||Q(e))&&Q(e.then)&&Q(e.catch),cl=Object.prototype.toString,kn=e=>cl.call(e),Sc=e=>kn(e).slice(8,-1),ul=e=>kn(e)==="[object Object]",jr=e=>pe(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,pn=zs(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Fr=e=>{const t=Object.create(null);return(n=>t[n]||(t[n]=e(n)))},Ac=/-\w/g,Ye=Fr(e=>e.replace(Ac,t=>t.slice(1).toUpperCase())),xc=/\B([A-Z])/g,nn=Fr(e=>e.replace(xc,"-$1").toLowerCase()),Br=Fr(e=>e.charAt(0).toUpperCase()+e.slice(1)),ns=Fr(e=>e?`on${Br(e)}`:""),Mt=(e,t)=>!Object.is(e,t),gn=(e,...t)=>{for(let n=0;n<e.length;n++)e[n](...t)},fl=(e,t,n,r=!1)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,writable:r,value:n})},Ur=e=>{const t=parseFloat(e);return isNaN(t)?e:t},dl=e=>{const t=pe(e)?Number(e):NaN;return isNaN(t)?e:t};let Mo;const $r=()=>Mo||(Mo=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function Vr(e){if(G(e)){const t={};for(let n=0;n<e.length;n++){const r=e[n],s=pe(r)?Nc(r):Vr(r);if(s)for(const o in s)t[o]=s[o]}return t}else if(pe(e)||ie(e))return e}const Pc=/;(?![^(]*\))/g,kc=/:([^]+)/,Oc=/\/\*[^]*?\*\//g;function Nc(e){const t={};return e.replace(Oc,"").split(Pc).forEach(n=>{if(n){const r=n.split(kc);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Wr(e){let t="";if(pe(e))t=e;else if(G(e))for(let n=0;n<e.length;n++){const r=Wr(e[n]);r&&(t+=r+" ")}else if(ie(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function Ic(e){if(!e)return null;let{class:t,style:n}=e;return t&&!pe(t)&&(e.class=Wr(t)),n&&(e.style=Vr(n)),e}const Mc="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",Lc=zs(Mc);function hl(e){return!!e||e===""}function Hc(e,t){if(e.length!==t.length)return!1;let n=!0;for(let r=0;n&&r<e.length;r++)n=zt(e[r],t[r]);return n}function zt(e,t){if(e===t)return!0;let n=Io(e),r=Io(t);if(n||r)return n&&r?e.getTime()===t.getTime():!1;if(n=Ze(e),r=Ze(t),n||r)return e===t;if(n=G(e),r=G(t),n||r)return n&&r?Hc(e,t):!1;if(n=ie(e),r=ie(t),n||r){if(!n||!r)return!1;const s=Object.keys(e).length,o=Object.keys(t).length;if(s!==o)return!1;for(const i in e){const l=e.hasOwnProperty(i),a=t.hasOwnProperty(i);if(l&&!a||!l&&a||!zt(e[i],t[i]))return!1}}return String(e)===String(t)}function to(e,t){return e.findIndex(n=>zt(n,t))}const pl=e=>!!(e&&e.__v_isRef===!0),Dc=e=>pe(e)?e:e==null?"":G(e)||ie(e)&&(e.toString===cl||!Q(e.toString))?pl(e)?Dc(e.value):JSON.stringify(e,gl,2):String(e),gl=(e,t)=>pl(t)?gl(e,t.value):hn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s],o)=>(n[rs(r,o)+" =>"]=s,n),{})}:Pn(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>rs(n))}:Ze(t)?rs(t):ie(t)&&!G(t)&&!ul(t)?String(t):t,rs=(e,t="")=>{var n;return Ze(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};let Le;class ml{constructor(t=!1){this.detached=t,this._active=!0,this._on=0,this.effects=[],this.cleanups=[],this._isPaused=!1,this.parent=Le,!t&&Le&&(this.index=(Le.scopes||(Le.scopes=[])).push(this)-1)}get active(){return this._active}pause(){if(this._active){this._isPaused=!0;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].pause();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].pause()}}resume(){if(this._active&&this._isPaused){this._isPaused=!1;let t,n;if(this.scopes)for(t=0,n=this.scopes.length;t<n;t++)this.scopes[t].resume();for(t=0,n=this.effects.length;t<n;t++)this.effects[t].resume()}}run(t){if(this._active){const n=Le;try{return Le=this,t()}finally{Le=n}}}on(){++this._on===1&&(this.prevScope=Le,Le=this)}off(){this._on>0&&--this._on===0&&(Le=this.prevScope,this.prevScope=void 0)}stop(t){if(this._active){this._active=!1;let n,r;for(n=0,r=this.effects.length;n<r;n++)this.effects[n].stop();for(this.effects.length=0,n=0,r=this.cleanups.length;n<r;n++)this.cleanups[n]();if(this.cleanups.length=0,this.scopes){for(n=0,r=this.scopes.length;n<r;n++)this.scopes[n].stop(!0);this.scopes.length=0}if(!this.detached&&this.parent&&!t){const s=this.parent.scopes.pop();s&&s!==this&&(this.parent.scopes[this.index]=s,s.index=this.index)}this.parent=void 0}}}function jc(e){return new ml(e)}function yl(){return Le}let ue;const ss=new WeakSet;class _l{constructor(t){this.fn=t,this.deps=void 0,this.depsTail=void 0,this.flags=5,this.next=void 0,this.cleanup=void 0,this.scheduler=void 0,Le&&Le.active&&Le.effects.push(this)}pause(){this.flags|=64}resume(){this.flags&64&&(this.flags&=-65,ss.has(this)&&(ss.delete(this),this.trigger()))}notify(){this.flags&2&&!(this.flags&32)||this.flags&8||vl(this)}run(){if(!(this.flags&1))return this.fn();this.flags|=2,Lo(this),wl(this);const t=ue,n=ze;ue=this,ze=!0;try{return this.fn()}finally{El(this),ue=t,ze=n,this.flags&=-3}}stop(){if(this.flags&1){for(let t=this.deps;t;t=t.nextDep)so(t);this.deps=this.depsTail=void 0,Lo(this),this.onStop&&this.onStop(),this.flags&=-2}}trigger(){this.flags&64?ss.add(this):this.scheduler?this.scheduler():this.runIfDirty()}runIfDirty(){Rs(this)&&this.run()}get dirty(){return Rs(this)}}let bl=0,Un,$n;function vl(e,t=!1){if(e.flags|=8,t){e.next=$n,$n=e;return}e.next=Un,Un=e}function no(){bl++}function ro(){if(--bl>0)return;if($n){let t=$n;for($n=void 0;t;){const n=t.next;t.next=void 0,t.flags&=-9,t=n}}let e;for(;Un;){let t=Un;for(Un=void 0;t;){const n=t.next;if(t.next=void 0,t.flags&=-9,t.flags&1)try{t.trigger()}catch(r){e||(e=r)}t=n}}if(e)throw e}function wl(e){for(let t=e.deps;t;t=t.nextDep)t.version=-1,t.prevActiveLink=t.dep.activeLink,t.dep.activeLink=t}function El(e){let t,n=e.depsTail,r=n;for(;r;){const s=r.prevDep;r.version===-1?(r===n&&(n=s),so(r),Fc(r)):t=r,r.dep.activeLink=r.prevActiveLink,r.prevActiveLink=void 0,r=s}e.deps=t,e.depsTail=n}function Rs(e){for(let t=e.deps;t;t=t.nextDep)if(t.dep.version!==t.version||t.dep.computed&&(Rl(t.dep.computed)||t.dep.version!==t.version))return!0;return!!e._dirty}function Rl(e){if(e.flags&4&&!(e.flags&16)||(e.flags&=-17,e.globalVersion===Gn)||(e.globalVersion=Gn,!e.isSSR&&e.flags&128&&(!e.deps&&!e._dirty||!Rs(e))))return;e.flags|=2;const t=e.dep,n=ue,r=ze;ue=e,ze=!0;try{wl(e);const s=e.fn(e._value);(t.version===0||Mt(s,e._value))&&(e.flags|=128,e._value=s,t.version++)}catch(s){throw t.version++,s}finally{ue=n,ze=r,El(e),e.flags&=-3}}function so(e,t=!1){const{dep:n,prevSub:r,nextSub:s}=e;if(r&&(r.nextSub=s,e.prevSub=void 0),s&&(s.prevSub=r,e.nextSub=void 0),n.subs===e&&(n.subs=r,!r&&n.computed)){n.computed.flags&=-5;for(let o=n.computed.deps;o;o=o.nextDep)so(o,!0)}!t&&!--n.sc&&n.map&&n.map.delete(n.key)}function Fc(e){const{prevDep:t,nextDep:n}=e;t&&(t.nextDep=n,e.prevDep=void 0),n&&(n.prevDep=t,e.nextDep=void 0)}let ze=!0;const Tl=[];function Et(){Tl.push(ze),ze=!1}function Rt(){const e=Tl.pop();ze=e===void 0?!0:e}function Lo(e){const{cleanup:t}=e;if(e.cleanup=void 0,t){const n=ue;ue=void 0;try{t()}finally{ue=n}}}let Gn=0;class Bc{constructor(t,n){this.sub=t,this.dep=n,this.version=n.version,this.nextDep=this.prevDep=this.nextSub=this.prevSub=this.prevActiveLink=void 0}}class oo{constructor(t){this.computed=t,this.version=0,this.activeLink=void 0,this.subs=void 0,this.map=void 0,this.key=void 0,this.sc=0,this.__v_skip=!0}track(t){if(!ue||!ze||ue===this.computed)return;let n=this.activeLink;if(n===void 0||n.sub!==ue)n=this.activeLink=new Bc(ue,this),ue.deps?(n.prevDep=ue.depsTail,ue.depsTail.nextDep=n,ue.depsTail=n):ue.deps=ue.depsTail=n,Cl(n);else if(n.version===-1&&(n.version=this.version,n.nextDep)){const r=n.nextDep;r.prevDep=n.prevDep,n.prevDep&&(n.prevDep.nextDep=r),n.prevDep=ue.depsTail,n.nextDep=void 0,ue.depsTail.nextDep=n,ue.depsTail=n,ue.deps===n&&(ue.deps=r)}return n}trigger(t){this.version++,Gn++,this.notify(t)}notify(t){no();try{for(let n=this.subs;n;n=n.prevSub)n.sub.notify()&&n.sub.dep.notify()}finally{ro()}}}function Cl(e){if(e.dep.sc++,e.sub.flags&4){const t=e.dep.computed;if(t&&!e.dep.subs){t.flags|=20;for(let r=t.deps;r;r=r.nextDep)Cl(r)}const n=e.dep.subs;n!==e&&(e.prevSub=n,n&&(n.nextSub=e)),e.dep.subs=e}}const vr=new WeakMap,Jt=Symbol(""),Ts=Symbol(""),Jn=Symbol("");function Ae(e,t,n){if(ze&&ue){let r=vr.get(e);r||vr.set(e,r=new Map);let s=r.get(n);s||(r.set(n,s=new oo),s.map=r,s.key=n),s.track()}}function yt(e,t,n,r,s,o){const i=vr.get(e);if(!i){Gn++;return}const l=a=>{a&&a.trigger()};if(no(),t==="clear")i.forEach(l);else{const a=G(e),f=a&&jr(n);if(a&&n==="length"){const c=Number(r);i.forEach((u,h)=>{(h==="length"||h===Jn||!Ze(h)&&h>=c)&&l(u)})}else switch((n!==void 0||i.has(void 0))&&l(i.get(n)),f&&l(i.get(Jn)),t){case"add":a?f&&l(i.get("length")):(l(i.get(Jt)),hn(e)&&l(i.get(Ts)));break;case"delete":a||(l(i.get(Jt)),hn(e)&&l(i.get(Ts)));break;case"set":hn(e)&&l(i.get(Jt));break}}ro()}function Uc(e,t){const n=vr.get(e);return n&&n.get(t)}function ln(e){const t=ne(e);return t===e?t:(Ae(t,"iterate",Jn),Ue(e)?t:t.map(et))}function Kr(e){return Ae(e=ne(e),"iterate",Jn),e}function Pt(e,t){return ut(e)?Lt(e)?wn(et(t)):wn(t):et(t)}const $c={__proto__:null,[Symbol.iterator](){return os(this,Symbol.iterator,e=>Pt(this,e))},concat(...e){return ln(this).concat(...e.map(t=>G(t)?ln(t):t))},entries(){return os(this,"entries",e=>(e[1]=Pt(this,e[1]),e))},every(e,t){return dt(this,"every",e,t,void 0,arguments)},filter(e,t){return dt(this,"filter",e,t,n=>n.map(r=>Pt(this,r)),arguments)},find(e,t){return dt(this,"find",e,t,n=>Pt(this,n),arguments)},findIndex(e,t){return dt(this,"findIndex",e,t,void 0,arguments)},findLast(e,t){return dt(this,"findLast",e,t,n=>Pt(this,n),arguments)},findLastIndex(e,t){return dt(this,"findLastIndex",e,t,void 0,arguments)},forEach(e,t){return dt(this,"forEach",e,t,void 0,arguments)},includes(...e){return is(this,"includes",e)},indexOf(...e){return is(this,"indexOf",e)},join(e){return ln(this).join(e)},lastIndexOf(...e){return is(this,"lastIndexOf",e)},map(e,t){return dt(this,"map",e,t,void 0,arguments)},pop(){return Mn(this,"pop")},push(...e){return Mn(this,"push",e)},reduce(e,...t){return Ho(this,"reduce",e,t)},reduceRight(e,...t){return Ho(this,"reduceRight",e,t)},shift(){return Mn(this,"shift")},some(e,t){return dt(this,"some",e,t,void 0,arguments)},splice(...e){return Mn(this,"splice",e)},toReversed(){return ln(this).toReversed()},toSorted(e){return ln(this).toSorted(e)},toSpliced(...e){return ln(this).toSpliced(...e)},unshift(...e){return Mn(this,"unshift",e)},values(){return os(this,"values",e=>Pt(this,e))}};function os(e,t,n){const r=Kr(e),s=r[t]();return r!==e&&!Ue(e)&&(s._next=s.next,s.next=()=>{const o=s._next();return o.done||(o.value=n(o.value)),o}),s}const Vc=Array.prototype;function dt(e,t,n,r,s,o){const i=Kr(e),l=i!==e&&!Ue(e),a=i[t];if(a!==Vc[t]){const u=a.apply(e,o);return l?et(u):u}let f=n;i!==e&&(l?f=function(u,h){return n.call(this,Pt(e,u),h,e)}:n.length>2&&(f=function(u,h){return n.call(this,u,h,e)}));const c=a.call(i,f,r);return l&&s?s(c):c}function Ho(e,t,n,r){const s=Kr(e);let o=n;return s!==e&&(Ue(e)?n.length>3&&(o=function(i,l,a){return n.call(this,i,l,a,e)}):o=function(i,l,a){return n.call(this,i,Pt(e,l),a,e)}),s[t](o,...r)}function is(e,t,n){const r=ne(e);Ae(r,"iterate",Jn);const s=r[t](...n);return(s===-1||s===!1)&&qr(n[0])?(n[0]=ne(n[0]),r[t](...n)):s}function Mn(e,t,n=[]){Et(),no();const r=ne(e)[t].apply(e,n);return ro(),Rt(),r}const Wc=zs("__proto__,__v_isRef,__isVue"),Sl=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Ze));function Kc(e){Ze(e)||(e=String(e));const t=ne(this);return Ae(t,"has",e),t.hasOwnProperty(e)}class Al{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,r){if(n==="__v_skip")return t.__v_skip;const s=this._isReadonly,o=this._isShallow;if(n==="__v_isReactive")return!s;if(n==="__v_isReadonly")return s;if(n==="__v_isShallow")return o;if(n==="__v_raw")return r===(s?o?tu:Ol:o?kl:Pl).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(r)?t:void 0;const i=G(t);if(!s){let a;if(i&&(a=$c[n]))return a;if(n==="hasOwnProperty")return Kc}const l=Reflect.get(t,n,_e(t)?t:r);if((Ze(n)?Sl.has(n):Wc(n))||(s||Ae(t,"get",n),o))return l;if(_e(l)){const a=i&&jr(n)?l:l.value;return s&&ie(a)?Ss(a):a}return ie(l)?s?Ss(l):jt(l):l}}class xl extends Al{constructor(t=!1){super(!1,t)}set(t,n,r,s){let o=t[n];const i=G(t)&&jr(n);if(!this._isShallow){const f=ut(o);if(!Ue(r)&&!ut(r)&&(o=ne(o),r=ne(r)),!i&&_e(o)&&!_e(r))return f||(o.value=r),!0}const l=i?Number(n)<t.length:se(t,n),a=Reflect.set(t,n,r,_e(t)?t:s);return t===ne(s)&&(l?Mt(r,o)&&yt(t,"set",n,r):yt(t,"add",n,r)),a}deleteProperty(t,n){const r=se(t,n);t[n];const s=Reflect.deleteProperty(t,n);return s&&r&&yt(t,"delete",n,void 0),s}has(t,n){const r=Reflect.has(t,n);return(!Ze(n)||!Sl.has(n))&&Ae(t,"has",n),r}ownKeys(t){return Ae(t,"iterate",G(t)?"length":Jt),Reflect.ownKeys(t)}}class qc extends Al{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const Gc=new xl,Jc=new qc,Yc=new xl(!0);const Cs=e=>e,sr=e=>Reflect.getPrototypeOf(e);function Qc(e,t,n){return function(...r){const s=this.__v_raw,o=ne(s),i=hn(o),l=e==="entries"||e===Symbol.iterator&&i,a=e==="keys"&&i,f=s[e](...r),c=n?Cs:t?wn:et;return!t&&Ae(o,"iterate",a?Ts:Jt),{next(){const{value:u,done:h}=f.next();return h?{value:u,done:h}:{value:l?[c(u[0]),c(u[1])]:c(u),done:h}},[Symbol.iterator](){return this}}}}function or(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function Xc(e,t){const n={get(s){const o=this.__v_raw,i=ne(o),l=ne(s);e||(Mt(s,l)&&Ae(i,"get",s),Ae(i,"get",l));const{has:a}=sr(i),f=t?Cs:e?wn:et;if(a.call(i,s))return f(o.get(s));if(a.call(i,l))return f(o.get(l));o!==i&&o.get(s)},get size(){const s=this.__v_raw;return!e&&Ae(ne(s),"iterate",Jt),s.size},has(s){const o=this.__v_raw,i=ne(o),l=ne(s);return e||(Mt(s,l)&&Ae(i,"has",s),Ae(i,"has",l)),s===l?o.has(s):o.has(s)||o.has(l)},forEach(s,o){const i=this,l=i.__v_raw,a=ne(l),f=t?Cs:e?wn:et;return!e&&Ae(a,"iterate",Jt),l.forEach((c,u)=>s.call(o,f(c),f(u),i))}};return Ee(n,e?{add:or("add"),set:or("set"),delete:or("delete"),clear:or("clear")}:{add(s){!t&&!Ue(s)&&!ut(s)&&(s=ne(s));const o=ne(this);return sr(o).has.call(o,s)||(o.add(s),yt(o,"add",s,s)),this},set(s,o){!t&&!Ue(o)&&!ut(o)&&(o=ne(o));const i=ne(this),{has:l,get:a}=sr(i);let f=l.call(i,s);f||(s=ne(s),f=l.call(i,s));const c=a.call(i,s);return i.set(s,o),f?Mt(o,c)&&yt(i,"set",s,o):yt(i,"add",s,o),this},delete(s){const o=ne(this),{has:i,get:l}=sr(o);let a=i.call(o,s);a||(s=ne(s),a=i.call(o,s)),l&&l.call(o,s);const f=o.delete(s);return a&&yt(o,"delete",s,void 0),f},clear(){const s=ne(this),o=s.size!==0,i=s.clear();return o&&yt(s,"clear",void 0,void 0),i}}),["keys","values","entries",Symbol.iterator].forEach(s=>{n[s]=Qc(s,e,t)}),n}function io(e,t){const n=Xc(e,t);return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(se(n,s)&&s in r?n:r,s,o)}const zc={get:io(!1,!1)},Zc={get:io(!1,!0)},eu={get:io(!0,!1)};const Pl=new WeakMap,kl=new WeakMap,Ol=new WeakMap,tu=new WeakMap;function nu(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ru(e){return e.__v_skip||!Object.isExtensible(e)?0:nu(Sc(e))}function jt(e){return ut(e)?e:lo(e,!1,Gc,zc,Pl)}function at(e){return lo(e,!1,Yc,Zc,kl)}function Ss(e){return lo(e,!0,Jc,eu,Ol)}function lo(e,t,n,r,s){if(!ie(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=ru(e);if(o===0)return e;const i=s.get(e);if(i)return i;const l=new Proxy(e,o===2?r:n);return s.set(e,l),l}function Lt(e){return ut(e)?Lt(e.__v_raw):!!(e&&e.__v_isReactive)}function ut(e){return!!(e&&e.__v_isReadonly)}function Ue(e){return!!(e&&e.__v_isShallow)}function qr(e){return e?!!e.__v_raw:!1}function ne(e){const t=e&&e.__v_raw;return t?ne(t):e}function su(e){return!se(e,"__v_skip")&&Object.isExtensible(e)&&fl(e,"__v_skip",!0),e}const et=e=>ie(e)?jt(e):e,wn=e=>ie(e)?Ss(e):e;function _e(e){return e?e.__v_isRef===!0:!1}function vt(e){return Nl(e,!1)}function En(e){return Nl(e,!0)}function Nl(e,t){return _e(e)?e:new ou(e,t)}class ou{constructor(t,n){this.dep=new oo,this.__v_isRef=!0,this.__v_isShallow=!1,this._rawValue=n?t:ne(t),this._value=n?t:et(t),this.__v_isShallow=n}get value(){return this.dep.track(),this._value}set value(t){const n=this._rawValue,r=this.__v_isShallow||Ue(t)||ut(t);t=r?t:ne(t),Mt(t,n)&&(this._rawValue=t,this._value=r?t:et(t),this.dep.trigger())}}function mm(e){e.dep&&e.dep.trigger()}function fe(e){return _e(e)?e.value:e}function iu(e){return Q(e)?e():fe(e)}const lu={get:(e,t,n)=>t==="__v_raw"?e:fe(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return _e(s)&&!_e(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function Il(e){return Lt(e)?e:new Proxy(e,lu)}class au{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0,this._value=void 0,this._raw=ne(t);let s=!0,o=t;if(!G(t)||!jr(String(n)))do s=!qr(o)||Ue(o);while(s&&(o=o.__v_raw));this._shallow=s}get value(){let t=this._object[this._key];return this._shallow&&(t=fe(t)),this._value=t===void 0?this._defaultValue:t}set value(t){if(this._shallow&&_e(this._raw[this._key])){const n=this._object[this._key];if(_e(n)){n.value=t;return}}this._object[this._key]=t}get dep(){return Uc(this._raw,this._key)}}class cu{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0,this._value=void 0}get value(){return this._value=this._getter()}}function uu(e,t,n){return _e(e)?e:Q(e)?new cu(e):ie(e)&&arguments.length>1?fu(e,t,n):vt(e)}function fu(e,t,n){return new au(e,t,n)}class du{constructor(t,n,r){this.fn=t,this.setter=n,this._value=void 0,this.dep=new oo(this),this.__v_isRef=!0,this.deps=void 0,this.depsTail=void 0,this.flags=16,this.globalVersion=Gn-1,this.next=void 0,this.effect=this,this.__v_isReadonly=!n,this.isSSR=r}notify(){if(this.flags|=16,!(this.flags&8)&&ue!==this)return vl(this,!0),!0}get value(){const t=this.dep.track();return Rl(this),t&&(t.version=this.dep.version),this._value}set value(t){this.setter&&this.setter(t)}}function hu(e,t,n=!1){let r,s;return Q(e)?r=e:(r=e.get,s=e.set),new du(r,s,n)}const ir={},wr=new WeakMap;let Kt;function pu(e,t=!1,n=Kt){if(n){let r=wr.get(n);r||wr.set(n,r=[]),r.push(e)}}function gu(e,t,n=ae){const{immediate:r,deep:s,once:o,scheduler:i,augmentJob:l,call:a}=n,f=y=>s?y:Ue(y)||s===!1||s===0?_t(y,1):_t(y);let c,u,h,d,_=!1,b=!1;if(_e(e)?(u=()=>e.value,_=Ue(e)):Lt(e)?(u=()=>f(e),_=!0):G(e)?(b=!0,_=e.some(y=>Lt(y)||Ue(y)),u=()=>e.map(y=>{if(_e(y))return y.value;if(Lt(y))return f(y);if(Q(y))return a?a(y,2):y()})):Q(e)?t?u=a?()=>a(e,2):e:u=()=>{if(h){Et();try{h()}finally{Rt()}}const y=Kt;Kt=c;try{return a?a(e,3,[d]):e(d)}finally{Kt=y}}:u=ct,t&&s){const y=u,w=s===!0?1/0:s;u=()=>_t(y(),w)}const T=yl(),R=()=>{c.stop(),T&&T.active&&eo(T.effects,c)};if(o&&t){const y=t;t=(...w)=>{y(...w),R()}}let v=b?new Array(e.length).fill(ir):ir;const g=y=>{if(!(!(c.flags&1)||!c.dirty&&!y))if(t){const w=c.run();if(s||_||(b?w.some((x,L)=>Mt(x,v[L])):Mt(w,v))){h&&h();const x=Kt;Kt=c;try{const L=[w,v===ir?void 0:b&&v[0]===ir?[]:v,d];v=w,a?a(t,3,L):t(...L)}finally{Kt=x}}}else c.run()};return l&&l(g),c=new _l(u),c.scheduler=i?()=>i(g,!1):g,d=y=>pu(y,!1,c),h=c.onStop=()=>{const y=wr.get(c);if(y){if(a)a(y,4);else for(const w of y)w();wr.delete(c)}},t?r?g(!0):v=c.run():i?i(g.bind(null,!0),!0):c.run(),R.pause=c.pause.bind(c),R.resume=c.resume.bind(c),R.stop=R,R}function _t(e,t=1/0,n){if(t<=0||!ie(e)||e.__v_skip||(n=n||new Map,(n.get(e)||0)>=t))return e;if(n.set(e,t),t--,_e(e))_t(e.value,t,n);else if(G(e))for(let r=0;r<e.length;r++)_t(e[r],t,n);else if(Pn(e)||hn(e))e.forEach(r=>{_t(r,t,n)});else if(ul(e)){for(const r in e)_t(e[r],t,n);for(const r of Object.getOwnPropertySymbols(e))Object.prototype.propertyIsEnumerable.call(e,r)&&_t(e[r],t,n)}return e}function er(e,t,n,r){try{return r?e(...r):e()}catch(s){On(s,t,n)}}function tt(e,t,n,r){if(Q(e)){const s=er(e,t,n,r);return s&&al(s)&&s.catch(o=>{On(o,t,n)}),s}if(G(e)){const s=[];for(let o=0;o<e.length;o++)s.push(tt(e[o],t,n,r));return s}}function On(e,t,n,r=!0){const s=t?t.vnode:null,{errorHandler:o,throwUnhandledErrorInProduction:i}=t&&t.appContext.config||ae;if(t){let l=t.parent;const a=t.proxy,f=`https://vuejs.org/error-reference/#runtime-${n}`;for(;l;){const c=l.ec;if(c){for(let u=0;u<c.length;u++)if(c[u](e,a,f)===!1)return}l=l.parent}if(o){Et(),er(o,null,10,[e,a,f]),Rt();return}}mu(e,n,s,r,i)}function mu(e,t,n,r=!0,s=!1){if(s)throw e;console.error(e)}const Ne=[];let ot=-1;const mn=[];let kt=null,cn=0;const Ml=Promise.resolve();let Er=null;function Zt(e){const t=Er||Ml;return e?t.then(this?e.bind(this):e):t}function yu(e){let t=ot+1,n=Ne.length;for(;t<n;){const r=t+n>>>1,s=Ne[r],o=Yn(s);o<e||o===e&&s.flags&2?t=r+1:n=r}return t}function ao(e){if(!(e.flags&1)){const t=Yn(e),n=Ne[Ne.length-1];!n||!(e.flags&2)&&t>=Yn(n)?Ne.push(e):Ne.splice(yu(t),0,e),e.flags|=1,Ll()}}function Ll(){Er||(Er=Ml.then(Hl))}function As(e){G(e)?mn.push(...e):kt&&e.id===-1?kt.splice(cn+1,0,e):e.flags&1||(mn.push(e),e.flags|=1),Ll()}function Do(e,t,n=ot+1){for(;n<Ne.length;n++){const r=Ne[n];if(r&&r.flags&2){if(e&&r.id!==e.uid)continue;Ne.splice(n,1),n--,r.flags&4&&(r.flags&=-2),r(),r.flags&4||(r.flags&=-2)}}}function Rr(e){if(mn.length){const t=[...new Set(mn)].sort((n,r)=>Yn(n)-Yn(r));if(mn.length=0,kt){kt.push(...t);return}for(kt=t,cn=0;cn<kt.length;cn++){const n=kt[cn];n.flags&4&&(n.flags&=-2),n.flags&8||n(),n.flags&=-2}kt=null,cn=0}}const Yn=e=>e.id==null?e.flags&2?-1:1/0:e.id;function Hl(e){try{for(ot=0;ot<Ne.length;ot++){const t=Ne[ot];t&&!(t.flags&8)&&(t.flags&4&&(t.flags&=-2),er(t,t.i,t.i?15:14),t.flags&4||(t.flags&=-2))}}finally{for(;ot<Ne.length;ot++){const t=Ne[ot];t&&(t.flags&=-2)}ot=-1,Ne.length=0,Rr(),Er=null,(Ne.length||mn.length)&&Hl()}}let Ce=null,Dl=null;function Tr(e){const t=Ce;return Ce=e,Dl=e&&e.type.__scopeId||null,t}function co(e,t=Ce,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&Pr(-1);const o=Tr(t);let i;try{i=e(...s)}finally{Tr(o),r._d&&Pr(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function ym(e,t){if(Ce===null)return e;const n=Qr(Ce),r=e.dirs||(e.dirs=[]);for(let s=0;s<t.length;s++){let[o,i,l,a=ae]=t[s];o&&(Q(o)&&(o={mounted:o,updated:o}),o.deep&&_t(i),r.push({dir:o,instance:n,value:i,oldValue:void 0,arg:l,modifiers:a}))}return e}function it(e,t,n,r){const s=e.dirs,o=t&&t.dirs;for(let i=0;i<s.length;i++){const l=s[i];o&&(l.oldValue=o[i].value);let a=l.dir[r];a&&(Et(),tt(a,n,8,[e.el,l,e,t]),Rt())}}function Ht(e,t){if(Te){let n=Te.provides;const r=Te.parent&&Te.parent.provides;r===n&&(n=Te.provides=Object.create(r)),n[e]=t}}function Pe(e,t,n=!1){const r=Nn();if(r||Yt){let s=Yt?Yt._context.provides:r?r.parent==null||r.ce?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides:void 0;if(s&&e in s)return s[e];if(arguments.length>1)return n&&Q(t)?t.call(r&&r.proxy):t}}function uo(){return!!(Nn()||Yt)}const _u=Symbol.for("v-scx"),bu=()=>Pe(_u);function vu(e,t){return fo(e,null,t)}function yn(e,t,n){return fo(e,t,n)}function fo(e,t,n=ae){const{immediate:r,deep:s,flush:o,once:i}=n,l=Ee({},n),a=t&&r||!t&&o!=="post";let f;if(Cn){if(o==="sync"){const d=bu();f=d.__watcherHandles||(d.__watcherHandles=[])}else if(!a){const d=()=>{};return d.stop=ct,d.resume=ct,d.pause=ct,d}}const c=Te;l.call=(d,_,b)=>tt(d,c,_,b);let u=!1;o==="post"?l.scheduler=d=>{we(d,c&&c.suspense)}:o!=="sync"&&(u=!0,l.scheduler=(d,_)=>{_?d():ao(d)}),l.augmentJob=d=>{t&&(d.flags|=4),u&&(d.flags|=2,c&&(d.id=c.uid,d.i=c))};const h=gu(e,t,l);return Cn&&(f?f.push(h):a&&h()),h}function wu(e,t,n){const r=this.proxy,s=pe(e)?e.includes(".")?jl(r,e):()=>r[e]:e.bind(r,r);let o;Q(t)?o=t:(o=t.handler,n=t);const i=rr(this),l=fo(s,o.bind(r),n);return i(),l}function jl(e,t){const n=t.split(".");return()=>{let r=e;for(let s=0;s<n.length&&r;s++)r=r[n[s]];return r}}const Eu=Symbol("_vte"),Fl=e=>e.__isTeleport,mt=Symbol("_leaveCb"),lr=Symbol("_enterCb");function Ru(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return po(()=>{e.isMounted=!0}),nr(()=>{e.isUnmounting=!0}),e}const We=[Function,Array],Bl={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:We,onEnter:We,onAfterEnter:We,onEnterCancelled:We,onBeforeLeave:We,onLeave:We,onAfterLeave:We,onLeaveCancelled:We,onBeforeAppear:We,onAppear:We,onAfterAppear:We,onAppearCancelled:We},Ul=e=>{const t=e.subTree;return t.component?Ul(t.component):t},Tu={name:"BaseTransition",props:Bl,setup(e,{slots:t}){const n=Nn(),r=Ru();return()=>{const s=t.default&&Wl(t.default(),!0);if(!s||!s.length)return;const o=$l(s),i=ne(e),{mode:l}=i;if(r.isLeaving)return ls(o);const a=jo(o);if(!a)return ls(o);let f=xs(a,i,r,n,u=>f=u);a.type!==ye&&Rn(a,f);let c=n.subTree&&jo(n.subTree);if(c&&c.type!==ye&&!Xe(c,a)&&Ul(n).type!==ye){let u=xs(c,i,r,n);if(Rn(c,u),l==="out-in"&&a.type!==ye)return r.isLeaving=!0,u.afterLeave=()=>{r.isLeaving=!1,n.job.flags&8||n.update(),delete u.afterLeave,c=void 0},ls(o);l==="in-out"&&a.type!==ye?u.delayLeave=(h,d,_)=>{const b=Vl(r,c);b[String(c.key)]=c,h[mt]=()=>{d(),h[mt]=void 0,delete f.delayedLeave,c=void 0},f.delayedLeave=()=>{_(),delete f.delayedLeave,c=void 0}}:c=void 0}else c&&(c=void 0);return o}}};function $l(e){let t=e[0];if(e.length>1){for(const n of e)if(n.type!==ye){t=n;break}}return t}const Cu=Tu;function Vl(e,t){const{leavingVNodes:n}=e;let r=n.get(t.type);return r||(r=Object.create(null),n.set(t.type,r)),r}function xs(e,t,n,r,s){const{appear:o,mode:i,persisted:l=!1,onBeforeEnter:a,onEnter:f,onAfterEnter:c,onEnterCancelled:u,onBeforeLeave:h,onLeave:d,onAfterLeave:_,onLeaveCancelled:b,onBeforeAppear:T,onAppear:R,onAfterAppear:v,onAppearCancelled:g}=t,y=String(e.key),w=Vl(n,e),x=(I,N)=>{I&&tt(I,r,9,N)},L=(I,N)=>{const W=N[1];x(I,N),G(I)?I.every(O=>O.length<=1)&&W():I.length<=1&&W()},V={mode:i,persisted:l,beforeEnter(I){let N=a;if(!n.isMounted)if(o)N=T||a;else return;I[mt]&&I[mt](!0);const W=w[y];W&&Xe(e,W)&&W.el[mt]&&W.el[mt](),x(N,[I])},enter(I){let N=f,W=c,O=u;if(!n.isMounted)if(o)N=R||f,W=v||c,O=g||u;else return;let K=!1;const ee=I[lr]=le=>{K||(K=!0,le?x(O,[I]):x(W,[I]),V.delayedLeave&&V.delayedLeave(),I[lr]=void 0)};N?L(N,[I,ee]):ee()},leave(I,N){const W=String(e.key);if(I[lr]&&I[lr](!0),n.isUnmounting)return N();x(h,[I]);let O=!1;const K=I[mt]=ee=>{O||(O=!0,N(),ee?x(b,[I]):x(_,[I]),I[mt]=void 0,w[W]===e&&delete w[W])};w[W]=e,d?L(d,[I,K]):K()},clone(I){const N=xs(I,t,n,r,s);return s&&s(N),N}};return V}function ls(e){if(tr(e))return e=Tt(e),e.children=null,e}function jo(e){if(!tr(e))return Fl(e.type)&&e.children?$l(e.children):e;if(e.component)return e.component.subTree;const{shapeFlag:t,children:n}=e;if(n){if(t&16)return n[0];if(t&32&&Q(n.default))return n.default()}}function Rn(e,t){e.shapeFlag&6&&e.component?(e.transition=t,Rn(e.component.subTree,t)):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Wl(e,t=!1,n){let r=[],s=0;for(let o=0;o<e.length;o++){let i=e[o];const l=n==null?i.key:String(n)+String(i.key!=null?i.key:o);i.type===Re?(i.patchFlag&128&&s++,r=r.concat(Wl(i.children,t,l))):(t||i.type!==ye)&&r.push(l!=null?Tt(i,{key:l}):i)}if(s>1)for(let o=0;o<r.length;o++)r[o].patchFlag=-2;return r}function Ft(e,t){return Q(e)?Ee({name:e.name},t,{setup:e}):e}function ho(e){e.ids=[e.ids[0]+e.ids[2]+++"-",0,0]}const Cr=new WeakMap;function _n(e,t,n,r,s=!1){if(G(e)){e.forEach((_,b)=>_n(_,t&&(G(t)?t[b]:t),n,r,s));return}if(wt(r)&&!s){r.shapeFlag&512&&r.type.__asyncResolved&&r.component.subTree.component&&_n(e,t,n,r.component.subTree);return}const o=r.shapeFlag&4?Qr(r.component):r.el,i=s?null:o,{i:l,r:a}=e,f=t&&t.r,c=l.refs===ae?l.refs={}:l.refs,u=l.setupState,h=ne(u),d=u===ae?ll:_=>se(h,_);if(f!=null&&f!==a){if(Fo(t),pe(f))c[f]=null,d(f)&&(u[f]=null);else if(_e(f)){f.value=null;const _=t;_.k&&(c[_.k]=null)}}if(Q(a))er(a,l,12,[i,c]);else{const _=pe(a),b=_e(a);if(_||b){const T=()=>{if(e.f){const R=_?d(a)?u[a]:c[a]:a.value;if(s)G(R)&&eo(R,o);else if(G(R))R.includes(o)||R.push(o);else if(_)c[a]=[o],d(a)&&(u[a]=c[a]);else{const v=[o];a.value=v,e.k&&(c[e.k]=v)}}else _?(c[a]=i,d(a)&&(u[a]=i)):b&&(a.value=i,e.k&&(c[e.k]=i))};if(i){const R=()=>{T(),Cr.delete(e)};R.id=-1,Cr.set(e,R),we(R,n)}else Fo(e),T()}}}function Fo(e){const t=Cr.get(e);t&&(t.flags|=8,Cr.delete(e))}let Bo=!1;const an=()=>{Bo||(console.error("Hydration completed but contains mismatches."),Bo=!0)},Su=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",Au=e=>e.namespaceURI.includes("MathML"),ar=e=>{if(e.nodeType===1){if(Su(e))return"svg";if(Au(e))return"mathml"}},fn=e=>e.nodeType===8;function xu(e){const{mt:t,p:n,o:{patchProp:r,createText:s,nextSibling:o,parentNode:i,remove:l,insert:a,createComment:f}}=e,c=(g,y)=>{if(!y.hasChildNodes()){n(null,g,y),Rr(),y._vnode=g;return}u(y.firstChild,g,null,null,null),Rr(),y._vnode=g},u=(g,y,w,x,L,V=!1)=>{V=V||!!y.dynamicChildren;const I=fn(g)&&g.data==="[",N=()=>b(g,y,w,x,L,I),{type:W,ref:O,shapeFlag:K,patchFlag:ee}=y;let le=g.nodeType;y.el=g,ee===-2&&(V=!1,y.dynamicChildren=null);let $=null;switch(W){case Qt:le!==3?y.children===""?(a(y.el=s(""),i(g),g),$=g):$=N():(g.data!==y.children&&(an(),g.data=y.children),$=o(g));break;case ye:v(g)?($=o(g),R(y.el=g.content.firstChild,g,w)):le!==8||I?$=N():$=o(g);break;case gr:if(I&&(g=o(g),le=g.nodeType),le===1||le===3){$=g;const X=!y.children.length;for(let B=0;B<y.staticCount;B++)X&&(y.children+=$.nodeType===1?$.outerHTML:$.data),B===y.staticCount-1&&(y.anchor=$),$=o($);return I?o($):$}else N();break;case Re:I?$=_(g,y,w,x,L,V):$=N();break;default:if(K&1)(le!==1||y.type.toLowerCase()!==g.tagName.toLowerCase())&&!v(g)?$=N():$=h(g,y,w,x,L,V);else if(K&6){y.slotScopeIds=L;const X=i(g);if(I?$=T(g):fn(g)&&g.data==="teleport start"?$=T(g,g.data,"teleport end"):$=o(g),t(y,X,null,w,x,ar(X),V),wt(y)&&!y.type.__asyncResolved){let B;I?(B=me(Re),B.anchor=$?$.previousSibling:X.lastChild):B=g.nodeType===3?Ca(""):me("div"),B.el=g,y.component.subTree=B}}else K&64?le!==8?$=N():$=y.type.hydrate(g,y,w,x,L,V,e,d):K&128&&($=y.type.hydrate(g,y,w,x,ar(i(g)),L,V,e,u))}return O!=null&&_n(O,null,x,y),$},h=(g,y,w,x,L,V)=>{V=V||!!y.dynamicChildren;const{type:I,props:N,patchFlag:W,shapeFlag:O,dirs:K,transition:ee}=y,le=I==="input"||I==="option";if(le||W!==-1){K&&it(y,null,w,"created");let $=!1;if(v(g)){$=pa(null,ee)&&w&&w.vnode.props&&w.vnode.props.appear;const B=g.content.firstChild;if($){const de=B.getAttribute("class");de&&(B.$cls=de),ee.beforeEnter(B)}R(B,g,w),y.el=g=B}if(O&16&&!(N&&(N.innerHTML||N.textContent))){let B=d(g.firstChild,y,g,w,x,L,V);for(;B;){cr(g,1)||an();const de=B;B=B.nextSibling,l(de)}}else if(O&8){let B=y.children;B[0]===`
|
|
3
|
+
`&&(g.tagName==="PRE"||g.tagName==="TEXTAREA")&&(B=B.slice(1));const{textContent:de}=g;de!==B&&de!==B.replace(/\r\n|\r/g,`
|
|
4
|
+
`)&&(cr(g,0)||an(),g.textContent=y.children)}if(N){if(le||!V||W&48){const B=g.tagName.includes("-");for(const de in N)(le&&(de.endsWith("value")||de==="indeterminate")||Zn(de)&&!pn(de)||de[0]==="."||B)&&r(g,de,null,N[de],void 0,w)}else if(N.onClick)r(g,"onClick",null,N.onClick,void 0,w);else if(W&4&&Lt(N.style))for(const B in N.style)N.style[B]}let X;(X=N&&N.onVnodeBeforeMount)&&He(X,w,y),K&&it(y,null,w,"beforeMount"),((X=N&&N.onVnodeMounted)||K||$)&&ba(()=>{X&&He(X,w,y),$&&ee.enter(g),K&&it(y,null,w,"mounted")},x)}return g.nextSibling},d=(g,y,w,x,L,V,I)=>{I=I||!!y.dynamicChildren;const N=y.children,W=N.length;for(let O=0;O<W;O++){const K=I?N[O]:N[O]=Be(N[O]),ee=K.type===Qt;g?(ee&&!I&&O+1<W&&Be(N[O+1]).type===Qt&&(a(s(g.data.slice(K.children.length)),w,o(g)),g.data=K.children),g=u(g,K,x,L,V,I)):ee&&!K.children?a(K.el=s(""),w):(cr(w,1)||an(),n(null,K,w,null,x,L,ar(w),V))}return g},_=(g,y,w,x,L,V)=>{const{slotScopeIds:I}=y;I&&(L=L?L.concat(I):I);const N=i(g),W=d(o(g),y,N,w,x,L,V);return W&&fn(W)&&W.data==="]"?o(y.anchor=W):(an(),a(y.anchor=f("]"),N,W),W)},b=(g,y,w,x,L,V)=>{if(cr(g.parentElement,1)||an(),y.el=null,V){const W=T(g);for(;;){const O=o(g);if(O&&O!==W)l(O);else break}}const I=o(g),N=i(g);return l(g),n(null,y,N,I,w,x,ar(N),L),w&&(w.vnode.el=y.el,Yr(w,y.el)),I},T=(g,y="[",w="]")=>{let x=0;for(;g;)if(g=o(g),g&&fn(g)&&(g.data===y&&x++,g.data===w)){if(x===0)return o(g);x--}return g},R=(g,y,w)=>{const x=y.parentNode;x&&x.replaceChild(g,y);let L=w;for(;L;)L.vnode.el===y&&(L.vnode.el=L.subTree.el=g),L=L.parent},v=g=>g.nodeType===1&&g.tagName==="TEMPLATE";return[c,u]}const Uo="data-allow-mismatch",Pu={0:"text",1:"children",2:"class",3:"style",4:"attribute"};function cr(e,t){if(t===0||t===1)for(;e&&!e.hasAttribute(Uo);)e=e.parentElement;const n=e&&e.getAttribute(Uo);if(n==null)return!1;if(n==="")return!0;{const r=n.split(",");return t===0&&r.includes("children")?!0:r.includes(Pu[t])}}$r().requestIdleCallback;$r().cancelIdleCallback;function ku(e,t){if(fn(e)&&e.data==="["){let n=1,r=e.nextSibling;for(;r;){if(r.nodeType===1){if(t(r)===!1)break}else if(fn(r))if(r.data==="]"){if(--n===0)break}else r.data==="["&&n++;r=r.nextSibling}}else t(e)}const wt=e=>!!e.type.__asyncLoader;function $o(e){Q(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,hydrate:o,timeout:i,suspensible:l=!0,onError:a}=e;let f=null,c,u=0;const h=()=>(u++,f=null,d()),d=()=>{let _;return f||(_=f=t().catch(b=>{if(b=b instanceof Error?b:new Error(String(b)),a)return new Promise((T,R)=>{a(b,()=>T(h()),()=>R(b),u+1)});throw b}).then(b=>_!==f&&f?f:(b&&(b.__esModule||b[Symbol.toStringTag]==="Module")&&(b=b.default),c=b,b)))};return Ft({name:"AsyncComponentWrapper",__asyncLoader:d,__asyncHydrate(_,b,T){let R=!1;(b.bu||(b.bu=[])).push(()=>R=!0);const v=()=>{R||T()},g=o?()=>{const y=o(v,w=>ku(_,w));y&&(b.bum||(b.bum=[])).push(y)}:v;c?g():d().then(()=>!b.isUnmounted&&g())},get __asyncResolved(){return c},setup(){const _=Te;if(ho(_),c)return()=>ur(c,_);const b=g=>{f=null,On(g,_,13,!r)};if(l&&_.suspense||Cn)return d().then(g=>()=>ur(g,_)).catch(g=>(b(g),()=>r?me(r,{error:g}):null));const T=vt(!1),R=vt(),v=vt(!!s);return s&&setTimeout(()=>{v.value=!1},s),i!=null&&setTimeout(()=>{if(!T.value&&!R.value){const g=new Error(`Async component timed out after ${i}ms.`);b(g),R.value=g}},i),d().then(()=>{T.value=!0,_.parent&&tr(_.parent.vnode)&&_.parent.update()}).catch(g=>{b(g),R.value=g}),()=>{if(T.value&&c)return ur(c,_);if(R.value&&r)return me(r,{error:R.value});if(n&&!v.value)return ur(n,_)}}})}function ur(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=me(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}const tr=e=>e.type.__isKeepAlive,Ou={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Nn(),r=n.ctx;if(!r.renderer)return()=>{const v=t.default&&t.default();return v&&v.length===1?v[0]:v};const s=new Map,o=new Set;let i=null;const l=n.suspense,{renderer:{p:a,m:f,um:c,o:{createElement:u}}}=r,h=u("div");r.activate=(v,g,y,w,x)=>{const L=v.component;f(v,g,y,0,l),a(L.vnode,v,g,y,L,l,w,v.slotScopeIds,x),we(()=>{L.isDeactivated=!1,L.a&&gn(L.a);const V=v.props&&v.props.onVnodeMounted;V&&He(V,L.parent,v)},l)},r.deactivate=v=>{const g=v.component;Ar(g.m),Ar(g.a),f(v,h,null,1,l),we(()=>{g.da&&gn(g.da);const y=v.props&&v.props.onVnodeUnmounted;y&&He(y,g.parent,v),g.isDeactivated=!0},l)};function d(v){as(v),c(v,n,l,!0)}function _(v){s.forEach((g,y)=>{const w=Hs(wt(g)?g.type.__asyncResolved||{}:g.type);w&&!v(w)&&b(y)})}function b(v){const g=s.get(v);g&&(!i||!Xe(g,i))?d(g):i&&as(i),s.delete(v),o.delete(v)}yn(()=>[e.include,e.exclude],([v,g])=>{v&&_(y=>Fn(v,y)),g&&_(y=>!Fn(g,y))},{flush:"post",deep:!0});let T=null;const R=()=>{T!=null&&(xr(n.subTree.type)?we(()=>{s.set(T,fr(n.subTree))},n.subTree.suspense):s.set(T,fr(n.subTree)))};return po(R),Jl(R),nr(()=>{s.forEach(v=>{const{subTree:g,suspense:y}=n,w=fr(g);if(v.type===w.type&&v.key===w.key){as(w);const x=w.component.da;x&&we(x,y);return}d(v)})}),()=>{if(T=null,!t.default)return i=null;const v=t.default(),g=v[0];if(v.length>1)return i=null,v;if(!en(g)||!(g.shapeFlag&4)&&!(g.shapeFlag&128))return i=null,g;let y=fr(g);if(y.type===ye)return i=null,y;const w=y.type,x=Hs(wt(y)?y.type.__asyncResolved||{}:w),{include:L,exclude:V,max:I}=e;if(L&&(!x||!Fn(L,x))||V&&x&&Fn(V,x))return y.shapeFlag&=-257,i=y,g;const N=y.key==null?w:y.key,W=s.get(N);return y.el&&(y=Tt(y),g.shapeFlag&128&&(g.ssContent=y)),T=N,W?(y.el=W.el,y.component=W.component,y.transition&&Rn(y,y.transition),y.shapeFlag|=512,o.delete(N),o.add(N)):(o.add(N),I&&o.size>parseInt(I,10)&&b(o.values().next().value)),y.shapeFlag|=256,i=y,xr(g.type)?g:y}}},Nu=Ou;function Fn(e,t){return G(e)?e.some(n=>Fn(n,t)):pe(e)?e.split(",").includes(t):Cc(e)?(e.lastIndex=0,e.test(t)):!1}function Kl(e,t){Gl(e,"a",t)}function ql(e,t){Gl(e,"da",t)}function Gl(e,t,n=Te){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Gr(t,r,n),n){let s=n.parent;for(;s&&s.parent;)tr(s.parent.vnode)&&Iu(r,t,n,s),s=s.parent}}function Iu(e,t,n,r){const s=Gr(t,e,r,!0);Yl(()=>{eo(r[t],s)},n)}function as(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function fr(e){return e.shapeFlag&128?e.ssContent:e}function Gr(e,t,n=Te,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{Et();const l=rr(n),a=tt(t,n,e,i);return l(),Rt(),a});return r?s.unshift(o):s.push(o),o}}const Ct=e=>(t,n=Te)=>{(!Cn||e==="sp")&&Gr(e,(...r)=>t(...r),n)},Mu=Ct("bm"),po=Ct("m"),Lu=Ct("bu"),Jl=Ct("u"),nr=Ct("bum"),Yl=Ct("um"),Hu=Ct("sp"),Du=Ct("rtg"),ju=Ct("rtc");function Ql(e,t=Te){Gr("ec",e,t)}const Xl="components";function _m(e,t){return Zl(Xl,e,!0,t)||e}const zl=Symbol.for("v-ndc");function Fu(e){return pe(e)?Zl(Xl,e,!1)||e:e||zl}function Zl(e,t,n=!0,r=!1){const s=Ce||Te;if(s){const o=s.type;{const l=Hs(o,!1);if(l&&(l===t||l===Ye(t)||l===Br(Ye(t))))return o}const i=Vo(s[e]||o[e],t)||Vo(s.appContext[e],t);return!i&&r?o:i}}function Vo(e,t){return e&&(e[t]||e[Ye(t)]||e[Br(Ye(t))])}function bm(e,t,n,r){let s;const o=n,i=G(e);if(i||pe(e)){const l=i&&Lt(e);let a=!1,f=!1;l&&(a=!Ue(e),f=ut(e),e=Kr(e)),s=new Array(e.length);for(let c=0,u=e.length;c<u;c++)s[c]=t(a?f?wn(et(e[c])):et(e[c]):e[c],c,void 0,o)}else if(typeof e=="number"){s=new Array(e);for(let l=0;l<e;l++)s[l]=t(l+1,l,void 0,o)}else if(ie(e))if(e[Symbol.iterator])s=Array.from(e,(l,a)=>t(l,a,void 0,o));else{const l=Object.keys(e);s=new Array(l.length);for(let a=0,f=l.length;a<f;a++){const c=l[a];s[a]=t(e[c],c,a,o)}}else s=[];return s}function vm(e,t,n={},r,s){if(Ce.ce||Ce.parent&&wt(Ce.parent)&&Ce.parent.ce){const f=Object.keys(n).length>0;return t!=="default"&&(n.name=t),qe(),lt(Re,null,[me("slot",n,r&&r())],f?-2:64)}let o=e[t];o&&o._c&&(o._d=!1),qe();const i=o&&ea(o(n)),l=n.key||i&&i.key,a=lt(Re,{key:(l&&!Ze(l)?l:`_${t}`)+(!i&&r?"_fb":"")},i||(r?r():[]),i&&e._===1?64:-2);return!s&&a.scopeId&&(a.slotScopeIds=[a.scopeId+"-s"]),o&&o._c&&(o._d=!0),a}function ea(e){return e.some(t=>en(t)?!(t.type===ye||t.type===Re&&!ea(t.children)):!0)?e:null}const Ps=e=>e?Aa(e)?Qr(e):Ps(e.parent):null,Vn=Ee(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>Ps(e.parent),$root:e=>Ps(e.root),$host:e=>e.ce,$emit:e=>e.emit,$options:e=>na(e),$forceUpdate:e=>e.f||(e.f=()=>{ao(e.update)}),$nextTick:e=>e.n||(e.n=Zt.bind(e.proxy)),$watch:e=>wu.bind(e)}),cs=(e,t)=>e!==ae&&!e.__isScriptSetup&&se(e,t),Bu={get({_:e},t){if(t==="__v_skip")return!0;const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:a}=e;if(t[0]!=="$"){const h=i[t];if(h!==void 0)switch(h){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(cs(r,t))return i[t]=1,r[t];if(s!==ae&&se(s,t))return i[t]=2,s[t];if(se(o,t))return i[t]=3,o[t];if(n!==ae&&se(n,t))return i[t]=4,n[t];ks&&(i[t]=0)}}const f=Vn[t];let c,u;if(f)return t==="$attrs"&&Ae(e.attrs,"get",""),f(e);if((c=l.__cssModules)&&(c=c[t]))return c;if(n!==ae&&se(n,t))return i[t]=4,n[t];if(u=a.config.globalProperties,se(u,t))return u[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return cs(s,t)?(s[t]=n,!0):r!==ae&&se(r,t)?(r[t]=n,!0):se(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:r,appContext:s,props:o,type:i}},l){let a;return!!(n[l]||e!==ae&&l[0]!=="$"&&se(e,l)||cs(t,l)||se(o,l)||se(r,l)||se(Vn,l)||se(s.config.globalProperties,l)||(a=i.__cssModules)&&a[l])},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:se(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function Wo(e){return G(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}let ks=!0;function Uu(e){const t=na(e),n=e.proxy,r=e.ctx;ks=!1,t.beforeCreate&&Ko(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:a,inject:f,created:c,beforeMount:u,mounted:h,beforeUpdate:d,updated:_,activated:b,deactivated:T,beforeDestroy:R,beforeUnmount:v,destroyed:g,unmounted:y,render:w,renderTracked:x,renderTriggered:L,errorCaptured:V,serverPrefetch:I,expose:N,inheritAttrs:W,components:O,directives:K,filters:ee}=t;if(f&&$u(f,r,null),i)for(const X in i){const B=i[X];Q(B)&&(r[X]=B.bind(n))}if(s){const X=s.call(n,n);ie(X)&&(e.data=jt(X))}if(ks=!0,o)for(const X in o){const B=o[X],de=Q(B)?B.bind(n,n):Q(B.get)?B.get.bind(n,n):ct,St=!Q(B)&&Q(B.set)?B.set.bind(n):ct,rt=Ge({get:de,set:St});Object.defineProperty(r,X,{enumerable:!0,configurable:!0,get:()=>rt.value,set:Ie=>rt.value=Ie})}if(l)for(const X in l)ta(l[X],r,n,X);if(a){const X=Q(a)?a.call(n):a;Reflect.ownKeys(X).forEach(B=>{Ht(B,X[B])})}c&&Ko(c,e,"c");function $(X,B){G(B)?B.forEach(de=>X(de.bind(n))):B&&X(B.bind(n))}if($(Mu,u),$(po,h),$(Lu,d),$(Jl,_),$(Kl,b),$(ql,T),$(Ql,V),$(ju,x),$(Du,L),$(nr,v),$(Yl,y),$(Hu,I),G(N))if(N.length){const X=e.exposed||(e.exposed={});N.forEach(B=>{Object.defineProperty(X,B,{get:()=>n[B],set:de=>n[B]=de,enumerable:!0})})}else e.exposed||(e.exposed={});w&&e.render===ct&&(e.render=w),W!=null&&(e.inheritAttrs=W),O&&(e.components=O),K&&(e.directives=K),I&&ho(e)}function $u(e,t,n=ct){G(e)&&(e=Os(e));for(const r in e){const s=e[r];let o;ie(s)?"default"in s?o=Pe(s.from||r,s.default,!0):o=Pe(s.from||r):o=Pe(s),_e(o)?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[r]=o}}function Ko(e,t,n){tt(G(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function ta(e,t,n,r){let s=r.includes(".")?jl(n,r):()=>n[r];if(pe(e)){const o=t[e];Q(o)&&yn(s,o)}else if(Q(e))yn(s,e.bind(n));else if(ie(e))if(G(e))e.forEach(o=>ta(o,t,n,r));else{const o=Q(e.handler)?e.handler.bind(n):t[e.handler];Q(o)&&yn(s,o,e)}}function na(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let a;return l?a=l:!s.length&&!n&&!r?a=t:(a={},s.length&&s.forEach(f=>Sr(a,f,i,!0)),Sr(a,t,i)),ie(t)&&o.set(t,a),a}function Sr(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&Sr(e,o,n,!0),s&&s.forEach(i=>Sr(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=Vu[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const Vu={data:qo,props:Go,emits:Go,methods:Bn,computed:Bn,beforeCreate:ke,created:ke,beforeMount:ke,mounted:ke,beforeUpdate:ke,updated:ke,beforeDestroy:ke,beforeUnmount:ke,destroyed:ke,unmounted:ke,activated:ke,deactivated:ke,errorCaptured:ke,serverPrefetch:ke,components:Bn,directives:Bn,watch:Ku,provide:qo,inject:Wu};function qo(e,t){return t?e?function(){return Ee(Q(e)?e.call(this,this):e,Q(t)?t.call(this,this):t)}:t:e}function Wu(e,t){return Bn(Os(e),Os(t))}function Os(e){if(G(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function ke(e,t){return e?[...new Set([].concat(e,t))]:t}function Bn(e,t){return e?Ee(Object.create(null),e,t):t}function Go(e,t){return e?G(e)&&G(t)?[...new Set([...e,...t])]:Ee(Object.create(null),Wo(e),Wo(t??{})):t}function Ku(e,t){if(!e)return t;if(!t)return e;const n=Ee(Object.create(null),e);for(const r in t)n[r]=ke(e[r],t[r]);return n}function ra(){return{app:null,config:{isNativeTag:ll,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let qu=0;function Gu(e,t){return function(r,s=null){Q(r)||(r=Ee({},r)),s!=null&&!ie(s)&&(s=null);const o=ra(),i=new WeakSet,l=[];let a=!1;const f=o.app={_uid:qu++,_component:r,_props:s,_container:null,_context:o,_instance:null,version:Af,get config(){return o.config},set config(c){},use(c,...u){return i.has(c)||(c&&Q(c.install)?(i.add(c),c.install(f,...u)):Q(c)&&(i.add(c),c(f,...u))),f},mixin(c){return o.mixins.includes(c)||o.mixins.push(c),f},component(c,u){return u?(o.components[c]=u,f):o.components[c]},directive(c,u){return u?(o.directives[c]=u,f):o.directives[c]},mount(c,u,h){if(!a){const d=f._ceVNode||me(r,s);return d.appContext=o,h===!0?h="svg":h===!1&&(h=void 0),u&&t?t(d,c):e(d,c,h),a=!0,f._container=c,c.__vue_app__=f,Qr(d.component)}},onUnmount(c){l.push(c)},unmount(){a&&(tt(l,f._instance,16),e(null,f._container),delete f._container.__vue_app__)},provide(c,u){return o.provides[c]=u,f},runWithContext(c){const u=Yt;Yt=f;try{return c()}finally{Yt=u}}};return f}}let Yt=null;const Ju=(e,t)=>t==="modelValue"||t==="model-value"?e.modelModifiers:e[`${t}Modifiers`]||e[`${Ye(t)}Modifiers`]||e[`${nn(t)}Modifiers`];function Yu(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||ae;let s=n;const o=t.startsWith("update:"),i=o&&Ju(r,t.slice(7));i&&(i.trim&&(s=n.map(c=>pe(c)?c.trim():c)),i.number&&(s=n.map(Ur)));let l,a=r[l=ns(t)]||r[l=ns(Ye(t))];!a&&o&&(a=r[l=ns(nn(t))]),a&&tt(a,e,6,s);const f=r[l+"Once"];if(f){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,tt(f,e,6,s)}}const Qu=new WeakMap;function sa(e,t,n=!1){const r=n?Qu:t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!Q(e)){const a=f=>{const c=sa(f,t,!0);c&&(l=!0,Ee(i,c))};!n&&t.mixins.length&&t.mixins.forEach(a),e.extends&&a(e.extends),e.mixins&&e.mixins.forEach(a)}return!o&&!l?(ie(e)&&r.set(e,null),null):(G(o)?o.forEach(a=>i[a]=null):Ee(i,o),ie(e)&&r.set(e,i),i)}function Jr(e,t){return!e||!Zn(t)?!1:(t=t.slice(2).replace(/Once$/,""),se(e,t[0].toLowerCase()+t.slice(1))||se(e,nn(t))||se(e,t))}function us(e){const{type:t,vnode:n,proxy:r,withProxy:s,propsOptions:[o],slots:i,attrs:l,emit:a,render:f,renderCache:c,props:u,data:h,setupState:d,ctx:_,inheritAttrs:b}=e,T=Tr(e);let R,v;try{if(n.shapeFlag&4){const y=s||r,w=y;R=Be(f.call(w,y,c,u,d,h,_)),v=l}else{const y=t;R=Be(y.length>1?y(u,{attrs:l,slots:i,emit:a}):y(u,null)),v=t.props?l:zu(l)}}catch(y){Wn.length=0,On(y,e,1),R=me(ye)}let g=R;if(v&&b!==!1){const y=Object.keys(v),{shapeFlag:w}=g;y.length&&w&7&&(o&&y.some(Zs)&&(v=Zu(v,o)),g=Tt(g,v,!1,!0))}return n.dirs&&(g=Tt(g,null,!1,!0),g.dirs=g.dirs?g.dirs.concat(n.dirs):n.dirs),n.transition&&Rn(g,n.transition),R=g,Tr(T),R}function Xu(e,t=!0){let n;for(let r=0;r<e.length;r++){const s=e[r];if(en(s)){if(s.type!==ye||s.children==="v-if"){if(n)return;n=s}}else return}return n}const zu=e=>{let t;for(const n in e)(n==="class"||n==="style"||Zn(n))&&((t||(t={}))[n]=e[n]);return t},Zu=(e,t)=>{const n={};for(const r in e)(!Zs(r)||!(r.slice(9)in t))&&(n[r]=e[r]);return n};function ef(e,t,n){const{props:r,children:s,component:o}=e,{props:i,children:l,patchFlag:a}=t,f=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&a>=0){if(a&1024)return!0;if(a&16)return r?Jo(r,i,f):!!i;if(a&8){const c=t.dynamicProps;for(let u=0;u<c.length;u++){const h=c[u];if(i[h]!==r[h]&&!Jr(f,h))return!0}}}else return(s||l)&&(!l||!l.$stable)?!0:r===i?!1:r?i?Jo(r,i,f):!0:!!i;return!1}function Jo(e,t,n){const r=Object.keys(t);if(r.length!==Object.keys(e).length)return!0;for(let s=0;s<r.length;s++){const o=r[s];if(t[o]!==e[o]&&!Jr(n,o))return!0}return!1}function Yr({vnode:e,parent:t},n){for(;t;){const r=t.subTree;if(r.suspense&&r.suspense.activeBranch===e&&(r.el=e.el),r===e)(e=t.vnode).el=n,t=t.parent;else break}}const oa={},ia=()=>Object.create(oa),la=e=>Object.getPrototypeOf(e)===oa;function tf(e,t,n,r=!1){const s={},o=ia();e.propsDefaults=Object.create(null),aa(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:at(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function nf(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,l=ne(s),[a]=e.propsOptions;let f=!1;if((r||i>0)&&!(i&16)){if(i&8){const c=e.vnode.dynamicProps;for(let u=0;u<c.length;u++){let h=c[u];if(Jr(e.emitsOptions,h))continue;const d=t[h];if(a)if(se(o,h))d!==o[h]&&(o[h]=d,f=!0);else{const _=Ye(h);s[_]=Ns(a,l,_,d,e,!1)}else d!==o[h]&&(o[h]=d,f=!0)}}}else{aa(e,t,s,o)&&(f=!0);let c;for(const u in l)(!t||!se(t,u)&&((c=nn(u))===u||!se(t,c)))&&(a?n&&(n[u]!==void 0||n[c]!==void 0)&&(s[u]=Ns(a,l,u,void 0,e,!0)):delete s[u]);if(o!==l)for(const u in o)(!t||!se(t,u))&&(delete o[u],f=!0)}f&&yt(e.attrs,"set","")}function aa(e,t,n,r){const[s,o]=e.propsOptions;let i=!1,l;if(t)for(let a in t){if(pn(a))continue;const f=t[a];let c;s&&se(s,c=Ye(a))?!o||!o.includes(c)?n[c]=f:(l||(l={}))[c]=f:Jr(e.emitsOptions,a)||(!(a in r)||f!==r[a])&&(r[a]=f,i=!0)}if(o){const a=ne(n),f=l||ae;for(let c=0;c<o.length;c++){const u=o[c];n[u]=Ns(s,a,u,f[u],e,!se(f,u))}}return i}function Ns(e,t,n,r,s,o){const i=e[n];if(i!=null){const l=se(i,"default");if(l&&r===void 0){const a=i.default;if(i.type!==Function&&!i.skipFactory&&Q(a)){const{propsDefaults:f}=s;if(n in f)r=f[n];else{const c=rr(s);r=f[n]=a.call(null,t),c()}}else r=a;s.ce&&s.ce._setProp(n,r)}i[0]&&(o&&!l?r=!1:i[1]&&(r===""||r===nn(n))&&(r=!0))}return r}const rf=new WeakMap;function ca(e,t,n=!1){const r=n?rf:t.propsCache,s=r.get(e);if(s)return s;const o=e.props,i={},l=[];let a=!1;if(!Q(e)){const c=u=>{a=!0;const[h,d]=ca(u,t,!0);Ee(i,h),d&&l.push(...d)};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}if(!o&&!a)return ie(e)&&r.set(e,dn),dn;if(G(o))for(let c=0;c<o.length;c++){const u=Ye(o[c]);Yo(u)&&(i[u]=ae)}else if(o)for(const c in o){const u=Ye(c);if(Yo(u)){const h=o[c],d=i[u]=G(h)||Q(h)?{type:h}:Ee({},h),_=d.type;let b=!1,T=!0;if(G(_))for(let R=0;R<_.length;++R){const v=_[R],g=Q(v)&&v.name;if(g==="Boolean"){b=!0;break}else g==="String"&&(T=!1)}else b=Q(_)&&_.name==="Boolean";d[0]=b,d[1]=T,(b||se(d,"default"))&&l.push(u)}}const f=[i,l];return ie(e)&&r.set(e,f),f}function Yo(e){return e[0]!=="$"&&!pn(e)}const go=e=>e==="_"||e==="_ctx"||e==="$stable",mo=e=>G(e)?e.map(Be):[Be(e)],sf=(e,t,n)=>{if(t._n)return t;const r=co((...s)=>mo(t(...s)),n);return r._c=!1,r},ua=(e,t,n)=>{const r=e._ctx;for(const s in e){if(go(s))continue;const o=e[s];if(Q(o))t[s]=sf(s,o,r);else if(o!=null){const i=mo(o);t[s]=()=>i}}},fa=(e,t)=>{const n=mo(t);e.slots.default=()=>n},da=(e,t,n)=>{for(const r in t)(n||!go(r))&&(e[r]=t[r])},of=(e,t,n)=>{const r=e.slots=ia();if(e.vnode.shapeFlag&32){const s=t._;s?(da(r,t,n),n&&fl(r,"_",s,!0)):ua(t,r)}else t&&fa(e,t)},lf=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=ae;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:da(s,t,n):(o=!t.$stable,ua(t,s)),i=t}else t&&(fa(e,t),i={default:1});if(o)for(const l in s)!go(l)&&i[l]==null&&delete s[l]},we=ba;function af(e){return ha(e)}function cf(e){return ha(e,xu)}function ha(e,t){const n=$r();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:a,setText:f,setElementText:c,parentNode:u,nextSibling:h,setScopeId:d=ct,insertStaticContent:_}=e,b=(p,m,E,A=null,C=null,P=null,D=void 0,H=null,M=!!m.dynamicChildren)=>{if(p===m)return;p&&!Xe(p,m)&&(A=S(p),Ie(p,C,P,!0),p=null),m.patchFlag===-2&&(M=!1,m.dynamicChildren=null);const{type:k,ref:Y,shapeFlag:F}=m;switch(k){case Qt:T(p,m,E,A);break;case ye:R(p,m,E,A);break;case gr:p==null&&v(m,E,A,D);break;case Re:O(p,m,E,A,C,P,D,H,M);break;default:F&1?w(p,m,E,A,C,P,D,H,M):F&6?K(p,m,E,A,C,P,D,H,M):(F&64||F&128)&&k.process(p,m,E,A,C,P,D,H,M,J)}Y!=null&&C?_n(Y,p&&p.ref,P,m||p,!m):Y==null&&p&&p.ref!=null&&_n(p.ref,null,P,p,!0)},T=(p,m,E,A)=>{if(p==null)r(m.el=l(m.children),E,A);else{const C=m.el=p.el;m.children!==p.children&&f(C,m.children)}},R=(p,m,E,A)=>{p==null?r(m.el=a(m.children||""),E,A):m.el=p.el},v=(p,m,E,A)=>{[p.el,p.anchor]=_(p.children,m,E,A,p.el,p.anchor)},g=({el:p,anchor:m},E,A)=>{let C;for(;p&&p!==m;)C=h(p),r(p,E,A),p=C;r(m,E,A)},y=({el:p,anchor:m})=>{let E;for(;p&&p!==m;)E=h(p),s(p),p=E;s(m)},w=(p,m,E,A,C,P,D,H,M)=>{if(m.type==="svg"?D="svg":m.type==="math"&&(D="mathml"),p==null)x(m,E,A,C,P,D,H,M);else{const k=p.el&&p.el._isVueCE?p.el:null;try{k&&k._beginPatch(),I(p,m,C,P,D,H,M)}finally{k&&k._endPatch()}}},x=(p,m,E,A,C,P,D,H)=>{let M,k;const{props:Y,shapeFlag:F,transition:q,dirs:z}=p;if(M=p.el=i(p.type,P,Y&&Y.is,Y),F&8?c(M,p.children):F&16&&V(p.children,M,null,A,C,fs(p,P),D,H),z&&it(p,null,A,"created"),L(M,p,p.scopeId,D,A),Y){for(const ce in Y)ce!=="value"&&!pn(ce)&&o(M,ce,null,Y[ce],P,A);"value"in Y&&o(M,"value",null,Y.value,P),(k=Y.onVnodeBeforeMount)&&He(k,A,p)}z&&it(p,null,A,"beforeMount");const te=pa(C,q);te&&q.beforeEnter(M),r(M,m,E),((k=Y&&Y.onVnodeMounted)||te||z)&&we(()=>{k&&He(k,A,p),te&&q.enter(M),z&&it(p,null,A,"mounted")},C)},L=(p,m,E,A,C)=>{if(E&&d(p,E),A)for(let P=0;P<A.length;P++)d(p,A[P]);if(C){let P=C.subTree;if(m===P||xr(P.type)&&(P.ssContent===m||P.ssFallback===m)){const D=C.vnode;L(p,D,D.scopeId,D.slotScopeIds,C.parent)}}},V=(p,m,E,A,C,P,D,H,M=0)=>{for(let k=M;k<p.length;k++){const Y=p[k]=H?Ot(p[k]):Be(p[k]);b(null,Y,m,E,A,C,P,D,H)}},I=(p,m,E,A,C,P,D)=>{const H=m.el=p.el;let{patchFlag:M,dynamicChildren:k,dirs:Y}=m;M|=p.patchFlag&16;const F=p.props||ae,q=m.props||ae;let z;if(E&&Ut(E,!1),(z=q.onVnodeBeforeUpdate)&&He(z,E,m,p),Y&&it(m,p,E,"beforeUpdate"),E&&Ut(E,!0),(F.innerHTML&&q.innerHTML==null||F.textContent&&q.textContent==null)&&c(H,""),k?N(p.dynamicChildren,k,H,E,A,fs(m,C),P):D||B(p,m,H,null,E,A,fs(m,C),P,!1),M>0){if(M&16)W(H,F,q,E,C);else if(M&2&&F.class!==q.class&&o(H,"class",null,q.class,C),M&4&&o(H,"style",F.style,q.style,C),M&8){const te=m.dynamicProps;for(let ce=0;ce<te.length;ce++){const oe=te[ce],Me=F[oe],Se=q[oe];(Se!==Me||oe==="value")&&o(H,oe,Me,Se,C,E)}}M&1&&p.children!==m.children&&c(H,m.children)}else!D&&k==null&&W(H,F,q,E,C);((z=q.onVnodeUpdated)||Y)&&we(()=>{z&&He(z,E,m,p),Y&&it(m,p,E,"updated")},A)},N=(p,m,E,A,C,P,D)=>{for(let H=0;H<m.length;H++){const M=p[H],k=m[H],Y=M.el&&(M.type===Re||!Xe(M,k)||M.shapeFlag&198)?u(M.el):E;b(M,k,Y,null,A,C,P,D,!0)}},W=(p,m,E,A,C)=>{if(m!==E){if(m!==ae)for(const P in m)!pn(P)&&!(P in E)&&o(p,P,m[P],null,C,A);for(const P in E){if(pn(P))continue;const D=E[P],H=m[P];D!==H&&P!=="value"&&o(p,P,H,D,C,A)}"value"in E&&o(p,"value",m.value,E.value,C)}},O=(p,m,E,A,C,P,D,H,M)=>{const k=m.el=p?p.el:l(""),Y=m.anchor=p?p.anchor:l("");let{patchFlag:F,dynamicChildren:q,slotScopeIds:z}=m;z&&(H=H?H.concat(z):z),p==null?(r(k,E,A),r(Y,E,A),V(m.children||[],E,Y,C,P,D,H,M)):F>0&&F&64&&q&&p.dynamicChildren&&p.dynamicChildren.length===q.length?(N(p.dynamicChildren,q,E,C,P,D,H),(m.key!=null||C&&m===C.subTree)&&ga(p,m,!0)):B(p,m,E,Y,C,P,D,H,M)},K=(p,m,E,A,C,P,D,H,M)=>{m.slotScopeIds=H,p==null?m.shapeFlag&512?C.ctx.activate(m,E,A,D,M):ee(m,E,A,C,P,D,M):le(p,m,M)},ee=(p,m,E,A,C,P,D)=>{const H=p.component=wf(p,A,C);if(tr(p)&&(H.ctx.renderer=J),Ef(H,!1,D),H.asyncDep){if(C&&C.registerDep(H,$,D),!p.el){const M=H.subTree=me(ye);R(null,M,m,E),p.placeholder=M.el}}else $(H,p,m,E,C,P,D)},le=(p,m,E)=>{const A=m.component=p.component;if(ef(p,m,E))if(A.asyncDep&&!A.asyncResolved){X(A,m,E);return}else A.next=m,A.update();else m.el=p.el,A.vnode=m},$=(p,m,E,A,C,P,D)=>{const H=()=>{if(p.isMounted){let{next:F,bu:q,u:z,parent:te,vnode:ce}=p;{const je=ma(p);if(je){F&&(F.el=ce.el,X(p,F,D)),je.asyncDep.then(()=>{p.isUnmounted||H()});return}}let oe=F,Me;Ut(p,!1),F?(F.el=ce.el,X(p,F,D)):F=ce,q&&gn(q),(Me=F.props&&F.props.onVnodeBeforeUpdate)&&He(Me,te,F,ce),Ut(p,!0);const Se=us(p),Qe=p.subTree;p.subTree=Se,b(Qe,Se,u(Qe.el),S(Qe),p,C,P),F.el=Se.el,oe===null&&Yr(p,Se.el),z&&we(z,C),(Me=F.props&&F.props.onVnodeUpdated)&&we(()=>He(Me,te,F,ce),C)}else{let F;const{el:q,props:z}=m,{bm:te,m:ce,parent:oe,root:Me,type:Se}=p,Qe=wt(m);if(Ut(p,!1),te&&gn(te),!Qe&&(F=z&&z.onVnodeBeforeMount)&&He(F,oe,m),Ut(p,!0),q&&he){const je=()=>{p.subTree=us(p),he(q,p.subTree,p,C,null)};Qe&&Se.__asyncHydrate?Se.__asyncHydrate(q,p,je):je()}else{Me.ce&&Me.ce._def.shadowRoot!==!1&&Me.ce._injectChildStyle(Se);const je=p.subTree=us(p);b(null,je,E,A,p,C,P),m.el=je.el}if(ce&&we(ce,C),!Qe&&(F=z&&z.onVnodeMounted)){const je=m;we(()=>He(F,oe,je),C)}(m.shapeFlag&256||oe&&wt(oe.vnode)&&oe.vnode.shapeFlag&256)&&p.a&&we(p.a,C),p.isMounted=!0,m=E=A=null}};p.scope.on();const M=p.effect=new _l(H);p.scope.off();const k=p.update=M.run.bind(M),Y=p.job=M.runIfDirty.bind(M);Y.i=p,Y.id=p.uid,M.scheduler=()=>ao(Y),Ut(p,!0),k()},X=(p,m,E)=>{m.component=p;const A=p.vnode.props;p.vnode=m,p.next=null,nf(p,m.props,A,E),lf(p,m.children,E),Et(),Do(p),Rt()},B=(p,m,E,A,C,P,D,H,M=!1)=>{const k=p&&p.children,Y=p?p.shapeFlag:0,F=m.children,{patchFlag:q,shapeFlag:z}=m;if(q>0){if(q&128){St(k,F,E,A,C,P,D,H,M);return}else if(q&256){de(k,F,E,A,C,P,D,H,M);return}}z&8?(Y&16&&Ve(k,C,P),F!==k&&c(E,F)):Y&16?z&16?St(k,F,E,A,C,P,D,H,M):Ve(k,C,P,!0):(Y&8&&c(E,""),z&16&&V(F,E,A,C,P,D,H,M))},de=(p,m,E,A,C,P,D,H,M)=>{p=p||dn,m=m||dn;const k=p.length,Y=m.length,F=Math.min(k,Y);let q;for(q=0;q<F;q++){const z=m[q]=M?Ot(m[q]):Be(m[q]);b(p[q],z,E,null,C,P,D,H,M)}k>Y?Ve(p,C,P,!0,!1,F):V(m,E,A,C,P,D,H,M,F)},St=(p,m,E,A,C,P,D,H,M)=>{let k=0;const Y=m.length;let F=p.length-1,q=Y-1;for(;k<=F&&k<=q;){const z=p[k],te=m[k]=M?Ot(m[k]):Be(m[k]);if(Xe(z,te))b(z,te,E,null,C,P,D,H,M);else break;k++}for(;k<=F&&k<=q;){const z=p[F],te=m[q]=M?Ot(m[q]):Be(m[q]);if(Xe(z,te))b(z,te,E,null,C,P,D,H,M);else break;F--,q--}if(k>F){if(k<=q){const z=q+1,te=z<Y?m[z].el:A;for(;k<=q;)b(null,m[k]=M?Ot(m[k]):Be(m[k]),E,te,C,P,D,H,M),k++}}else if(k>q)for(;k<=F;)Ie(p[k],C,P,!0),k++;else{const z=k,te=k,ce=new Map;for(k=te;k<=q;k++){const Fe=m[k]=M?Ot(m[k]):Be(m[k]);Fe.key!=null&&ce.set(Fe.key,k)}let oe,Me=0;const Se=q-te+1;let Qe=!1,je=0;const In=new Array(Se);for(k=0;k<Se;k++)In[k]=0;for(k=z;k<=F;k++){const Fe=p[k];if(Me>=Se){Ie(Fe,C,P,!0);continue}let st;if(Fe.key!=null)st=ce.get(Fe.key);else for(oe=te;oe<=q;oe++)if(In[oe-te]===0&&Xe(Fe,m[oe])){st=oe;break}st===void 0?Ie(Fe,C,P,!0):(In[st-te]=k+1,st>=je?je=st:Qe=!0,b(Fe,m[st],E,null,C,P,D,H,M),Me++)}const ko=Qe?uf(In):dn;for(oe=ko.length-1,k=Se-1;k>=0;k--){const Fe=te+k,st=m[Fe],Oo=m[Fe+1],No=Fe+1<Y?Oo.el||ya(Oo):A;In[k]===0?b(null,st,E,No,C,P,D,H,M):Qe&&(oe<0||k!==ko[oe]?rt(st,E,No,2):oe--)}}},rt=(p,m,E,A,C=null)=>{const{el:P,type:D,transition:H,children:M,shapeFlag:k}=p;if(k&6){rt(p.component.subTree,m,E,A);return}if(k&128){p.suspense.move(m,E,A);return}if(k&64){D.move(p,m,E,J);return}if(D===Re){r(P,m,E);for(let F=0;F<M.length;F++)rt(M[F],m,E,A);r(p.anchor,m,E);return}if(D===gr){g(p,m,E);return}if(A!==2&&k&1&&H)if(A===0)H.beforeEnter(P),r(P,m,E),we(()=>H.enter(P),C);else{const{leave:F,delayLeave:q,afterLeave:z}=H,te=()=>{p.ctx.isUnmounted?s(P):r(P,m,E)},ce=()=>{P._isLeaving&&P[mt](!0),F(P,()=>{te(),z&&z()})};q?q(P,te,ce):ce()}else r(P,m,E)},Ie=(p,m,E,A=!1,C=!1)=>{const{type:P,props:D,ref:H,children:M,dynamicChildren:k,shapeFlag:Y,patchFlag:F,dirs:q,cacheIndex:z}=p;if(F===-2&&(C=!1),H!=null&&(Et(),_n(H,null,E,p,!0),Rt()),z!=null&&(m.renderCache[z]=void 0),Y&256){m.ctx.deactivate(p);return}const te=Y&1&&q,ce=!wt(p);let oe;if(ce&&(oe=D&&D.onVnodeBeforeUnmount)&&He(oe,m,p),Y&6)Bt(p.component,E,A);else{if(Y&128){p.suspense.unmount(E,A);return}te&&it(p,null,m,"beforeUnmount"),Y&64?p.type.remove(p,m,E,J,A):k&&!k.hasOnce&&(P!==Re||F>0&&F&64)?Ve(k,m,E,!1,!0):(P===Re&&F&384||!C&&Y&16)&&Ve(M,m,E),A&&sn(p)}(ce&&(oe=D&&D.onVnodeUnmounted)||te)&&we(()=>{oe&&He(oe,m,p),te&&it(p,null,m,"unmounted")},E)},sn=p=>{const{type:m,el:E,anchor:A,transition:C}=p;if(m===Re){on(E,A);return}if(m===gr){y(p);return}const P=()=>{s(E),C&&!C.persisted&&C.afterLeave&&C.afterLeave()};if(p.shapeFlag&1&&C&&!C.persisted){const{leave:D,delayLeave:H}=C,M=()=>D(E,P);H?H(p.el,P,M):M()}else P()},on=(p,m)=>{let E;for(;p!==m;)E=h(p),s(p),p=E;s(m)},Bt=(p,m,E)=>{const{bum:A,scope:C,job:P,subTree:D,um:H,m:M,a:k}=p;Ar(M),Ar(k),A&&gn(A),C.stop(),P&&(P.flags|=8,Ie(D,p,m,E)),H&&we(H,m),we(()=>{p.isUnmounted=!0},m)},Ve=(p,m,E,A=!1,C=!1,P=0)=>{for(let D=P;D<p.length;D++)Ie(p[D],m,E,A,C)},S=p=>{if(p.shapeFlag&6)return S(p.component.subTree);if(p.shapeFlag&128)return p.suspense.next();const m=h(p.anchor||p.el),E=m&&m[Eu];return E?h(E):m};let U=!1;const j=(p,m,E)=>{let A;p==null?m._vnode&&(Ie(m._vnode,null,null,!0),A=m._vnode.component):b(m._vnode||null,p,m,null,null,null,E),m._vnode=p,U||(U=!0,Do(A),Rr(),U=!1)},J={p:b,um:Ie,m:rt,r:sn,mt:ee,mc:V,pc:B,pbc:N,n:S,o:e};let Z,he;return t&&([Z,he]=t(J)),{render:j,hydrate:Z,createApp:Gu(j,Z)}}function fs({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Ut({effect:e,job:t},n){n?(e.flags|=32,t.flags|=4):(e.flags&=-33,t.flags&=-5)}function pa(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function ga(e,t,n=!1){const r=e.children,s=t.children;if(G(r)&&G(s))for(let o=0;o<r.length;o++){const i=r[o];let l=s[o];l.shapeFlag&1&&!l.dynamicChildren&&((l.patchFlag<=0||l.patchFlag===32)&&(l=s[o]=Ot(s[o]),l.el=i.el),!n&&l.patchFlag!==-2&&ga(i,l)),l.type===Qt&&(l.patchFlag!==-1?l.el=i.el:l.__elIndex=o+(e.type===Re?1:0)),l.type===ye&&!l.el&&(l.el=i.el)}}function uf(e){const t=e.slice(),n=[0];let r,s,o,i,l;const a=e.length;for(r=0;r<a;r++){const f=e[r];if(f!==0){if(s=n[n.length-1],e[s]<f){t[r]=s,n.push(r);continue}for(o=0,i=n.length-1;o<i;)l=o+i>>1,e[n[l]]<f?o=l+1:i=l;f<e[n[o]]&&(o>0&&(t[r]=n[o-1]),n[o]=r)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function ma(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:ma(t)}function Ar(e){if(e)for(let t=0;t<e.length;t++)e[t].flags|=8}function ya(e){if(e.placeholder)return e.placeholder;const t=e.component;return t?ya(t.subTree):null}const xr=e=>e.__isSuspense;let Is=0;const ff={name:"Suspense",__isSuspense:!0,process(e,t,n,r,s,o,i,l,a,f){if(e==null)df(t,n,r,s,o,i,l,a,f);else{if(o&&o.deps>0&&!e.suspense.isInFallback){t.suspense=e.suspense,t.suspense.vnode=t,t.el=e.el;return}hf(e,t,n,r,s,i,l,a,f)}},hydrate:pf,normalize:gf},yo=ff;function Qn(e,t){const n=e.props&&e.props[t];Q(n)&&n()}function df(e,t,n,r,s,o,i,l,a){const{p:f,o:{createElement:c}}=a,u=c("div"),h=e.suspense=_a(e,s,r,t,u,n,o,i,l,a);f(null,h.pendingBranch=e.ssContent,u,null,r,h,o,i),h.deps>0?(Qn(e,"onPending"),Qn(e,"onFallback"),f(null,e.ssFallback,t,n,r,null,o,i),bn(h,e.ssFallback)):h.resolve(!1,!0)}function hf(e,t,n,r,s,o,i,l,{p:a,um:f,o:{createElement:c}}){const u=t.suspense=e.suspense;u.vnode=t,t.el=e.el;const h=t.ssContent,d=t.ssFallback,{activeBranch:_,pendingBranch:b,isInFallback:T,isHydrating:R}=u;if(b)u.pendingBranch=h,Xe(b,h)?(a(b,h,u.hiddenContainer,null,s,u,o,i,l),u.deps<=0?u.resolve():T&&(R||(a(_,d,n,r,s,null,o,i,l),bn(u,d)))):(u.pendingId=Is++,R?(u.isHydrating=!1,u.activeBranch=b):f(b,s,u),u.deps=0,u.effects.length=0,u.hiddenContainer=c("div"),T?(a(null,h,u.hiddenContainer,null,s,u,o,i,l),u.deps<=0?u.resolve():(a(_,d,n,r,s,null,o,i,l),bn(u,d))):_&&Xe(_,h)?(a(_,h,n,r,s,u,o,i,l),u.resolve(!0)):(a(null,h,u.hiddenContainer,null,s,u,o,i,l),u.deps<=0&&u.resolve()));else if(_&&Xe(_,h))a(_,h,n,r,s,u,o,i,l),bn(u,h);else if(Qn(t,"onPending"),u.pendingBranch=h,h.shapeFlag&512?u.pendingId=h.component.suspenseId:u.pendingId=Is++,a(null,h,u.hiddenContainer,null,s,u,o,i,l),u.deps<=0)u.resolve();else{const{timeout:v,pendingId:g}=u;v>0?setTimeout(()=>{u.pendingId===g&&u.fallback(d)},v):v===0&&u.fallback(d)}}function _a(e,t,n,r,s,o,i,l,a,f,c=!1){const{p:u,m:h,um:d,n:_,o:{parentNode:b,remove:T}}=f;let R;const v=mf(e);v&&t&&t.pendingBranch&&(R=t.pendingId,t.deps++);const g=e.props?dl(e.props.timeout):void 0,y=o,w={vnode:e,parent:t,parentComponent:n,namespace:i,container:r,hiddenContainer:s,deps:0,pendingId:Is++,timeout:typeof g=="number"?g:-1,activeBranch:null,pendingBranch:null,isInFallback:!c,isHydrating:c,isUnmounted:!1,effects:[],resolve(x=!1,L=!1){const{vnode:V,activeBranch:I,pendingBranch:N,pendingId:W,effects:O,parentComponent:K,container:ee,isInFallback:le}=w;let $=!1;w.isHydrating?w.isHydrating=!1:x||($=I&&N.transition&&N.transition.mode==="out-in",$&&(I.transition.afterLeave=()=>{W===w.pendingId&&(h(N,ee,o===y?_(I):o,0),As(O),le&&V.ssFallback&&(V.ssFallback.el=null))}),I&&(b(I.el)===ee&&(o=_(I)),d(I,K,w,!0),!$&&le&&V.ssFallback&&we(()=>V.ssFallback.el=null,w)),$||h(N,ee,o,0)),bn(w,N),w.pendingBranch=null,w.isInFallback=!1;let X=w.parent,B=!1;for(;X;){if(X.pendingBranch){X.effects.push(...O),B=!0;break}X=X.parent}!B&&!$&&As(O),w.effects=[],v&&t&&t.pendingBranch&&R===t.pendingId&&(t.deps--,t.deps===0&&!L&&t.resolve()),Qn(V,"onResolve")},fallback(x){if(!w.pendingBranch)return;const{vnode:L,activeBranch:V,parentComponent:I,container:N,namespace:W}=w;Qn(L,"onFallback");const O=_(V),K=()=>{w.isInFallback&&(u(null,x,N,O,I,null,W,l,a),bn(w,x))},ee=x.transition&&x.transition.mode==="out-in";ee&&(V.transition.afterLeave=K),w.isInFallback=!0,d(V,I,null,!0),ee||K()},move(x,L,V){w.activeBranch&&h(w.activeBranch,x,L,V),w.container=x},next(){return w.activeBranch&&_(w.activeBranch)},registerDep(x,L,V){const I=!!w.pendingBranch;I&&w.deps++;const N=x.vnode.el;x.asyncDep.catch(W=>{On(W,x,0)}).then(W=>{if(x.isUnmounted||w.isUnmounted||w.pendingId!==x.suspenseId)return;x.asyncResolved=!0;const{vnode:O}=x;Ls(x,W),N&&(O.el=N);const K=!N&&x.subTree.el;L(x,O,b(N||x.subTree.el),N?null:_(x.subTree),w,i,V),K&&(O.placeholder=null,T(K)),Yr(x,O.el),I&&--w.deps===0&&w.resolve()})},unmount(x,L){w.isUnmounted=!0,w.activeBranch&&d(w.activeBranch,n,x,L),w.pendingBranch&&d(w.pendingBranch,n,x,L)}};return w}function pf(e,t,n,r,s,o,i,l,a){const f=t.suspense=_a(t,r,n,e.parentNode,document.createElement("div"),null,s,o,i,l,!0),c=a(e,f.pendingBranch=t.ssContent,n,f,o,i);return f.deps===0&&f.resolve(!1,!0),c}function gf(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=Qo(r?n.default:n),e.ssFallback=r?Qo(n.fallback):me(ye)}function Qo(e){let t;if(Q(e)){const n=Tn&&e._c;n&&(e._d=!1,qe()),e=e(),n&&(e._d=!0,t=De,va())}return G(e)&&(e=Xu(e)),e=Be(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function ba(e,t){t&&t.pendingBranch?G(e)?t.effects.push(...e):t.effects.push(e):As(e)}function bn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e;let s=t.el;for(;!s&&t.component;)t=t.component.subTree,s=t.el;n.el=s,r&&r.subTree===n&&(r.vnode.el=s,Yr(r,s))}function mf(e){const t=e.props&&e.props.suspensible;return t!=null&&t!==!1}const Re=Symbol.for("v-fgt"),Qt=Symbol.for("v-txt"),ye=Symbol.for("v-cmt"),gr=Symbol.for("v-stc"),Wn=[];let De=null;function qe(e=!1){Wn.push(De=e?null:[])}function va(){Wn.pop(),De=Wn[Wn.length-1]||null}let Tn=1;function Pr(e,t=!1){Tn+=e,e<0&&De&&t&&(De.hasOnce=!0)}function wa(e){return e.dynamicChildren=Tn>0?De||dn:null,va(),Tn>0&&De&&De.push(e),e}function yf(e,t,n,r,s,o){return wa(Ra(e,t,n,r,s,o,!0))}function lt(e,t,n,r,s){return wa(me(e,t,n,r,s,!0))}function en(e){return e?e.__v_isVNode===!0:!1}function Xe(e,t){return e.type===t.type&&e.key===t.key}const Ea=({key:e})=>e??null,mr=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?pe(e)||_e(e)||Q(e)?{i:Ce,r:e,k:t,f:!!n}:e:null);function Ra(e,t=null,n=null,r=0,s=null,o=e===Re?0:1,i=!1,l=!1){const a={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Ea(t),ref:t&&mr(t),scopeId:Dl,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetStart:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:Ce};return l?(_o(a,n),o&128&&e.normalize(a)):n&&(a.shapeFlag|=pe(n)?8:16),Tn>0&&!i&&De&&(a.patchFlag>0||o&6)&&a.patchFlag!==32&&De.push(a),a}const me=_f;function _f(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===zl)&&(e=ye),en(e)){const l=Tt(e,t,!0);return n&&_o(l,n),Tn>0&&!o&&De&&(l.shapeFlag&6?De[De.indexOf(e)]=l:De.push(l)),l.patchFlag=-2,l}if(Sf(e)&&(e=e.__vccOpts),t){t=Ta(t);let{class:l,style:a}=t;l&&!pe(l)&&(t.class=Wr(l)),ie(a)&&(qr(a)&&!G(a)&&(a=Ee({},a)),t.style=Vr(a))}const i=pe(e)?1:xr(e)?128:Fl(e)?64:ie(e)?4:Q(e)?2:0;return Ra(e,t,n,r,s,i,o,!0)}function Ta(e){return e?qr(e)||la(e)?Ee({},e):e:null}function Tt(e,t,n=!1,r=!1){const{props:s,ref:o,patchFlag:i,children:l,transition:a}=e,f=t?Sa(s||{},t):s,c={__v_isVNode:!0,__v_skip:!0,type:e.type,props:f,key:f&&Ea(f),ref:t&&t.ref?n&&o?G(o)?o.concat(mr(t)):[o,mr(t)]:mr(t):o,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:l,target:e.target,targetStart:e.targetStart,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Re?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:a,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Tt(e.ssContent),ssFallback:e.ssFallback&&Tt(e.ssFallback),placeholder:e.placeholder,el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce};return a&&r&&Rn(c,a.clone(c)),c}function Ca(e=" ",t=0){return me(Qt,null,e,t)}function wm(e="",t=!1){return t?(qe(),lt(ye,null,e)):me(ye,null,e)}function Be(e){return e==null||typeof e=="boolean"?me(ye):G(e)?me(Re,null,e.slice()):en(e)?Ot(e):me(Qt,null,String(e))}function Ot(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Tt(e)}function _o(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(G(t))n=16;else if(typeof t=="object")if(r&65){const s=t.default;s&&(s._c&&(s._d=!1),_o(e,s()),s._c&&(s._d=!0));return}else{n=32;const s=t._;!s&&!la(t)?t._ctx=Ce:s===3&&Ce&&(Ce.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else Q(t)?(t={default:t,_ctx:Ce},n=32):(t=String(t),r&64?(n=16,t=[Ca(t)]):n=8);e.children=t,e.shapeFlag|=n}function Sa(...e){const t={};for(let n=0;n<e.length;n++){const r=e[n];for(const s in r)if(s==="class")t.class!==r.class&&(t.class=Wr([t.class,r.class]));else if(s==="style")t.style=Vr([t.style,r.style]);else if(Zn(s)){const o=t[s],i=r[s];i&&o!==i&&!(G(o)&&o.includes(i))&&(t[s]=o?[].concat(o,i):i)}else s!==""&&(t[s]=r[s])}return t}function He(e,t,n,r=null){tt(e,t,7,[n,r])}const bf=ra();let vf=0;function wf(e,t,n){const r=e.type,s=(t?t.appContext:e.appContext)||bf,o={uid:vf++,vnode:e,type:r,parent:t,appContext:s,root:null,next:null,subTree:null,effect:null,update:null,job:null,scope:new ml(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(s.provides),ids:t?t.ids:["",0,0],accessCache:null,renderCache:[],components:null,directives:null,propsOptions:ca(r,s),emitsOptions:sa(r,s),emit:null,emitted:null,propsDefaults:ae,inheritAttrs:r.inheritAttrs,ctx:ae,data:ae,props:ae,attrs:ae,slots:ae,refs:ae,setupState:ae,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,da:null,a:null,rtg:null,rtc:null,ec:null,sp:null};return o.ctx={_:o},o.root=t?t.root:o,o.emit=Yu.bind(null,o),e.ce&&e.ce(o),o}let Te=null;const Nn=()=>Te||Ce;let kr,Ms;{const e=$r(),t=(n,r)=>{let s;return(s=e[n])||(s=e[n]=[]),s.push(r),o=>{s.length>1?s.forEach(i=>i(o)):s[0](o)}};kr=t("__VUE_INSTANCE_SETTERS__",n=>Te=n),Ms=t("__VUE_SSR_SETTERS__",n=>Cn=n)}const rr=e=>{const t=Te;return kr(e),e.scope.on(),()=>{e.scope.off(),kr(t)}},Xo=()=>{Te&&Te.scope.off(),kr(null)};function Aa(e){return e.vnode.shapeFlag&4}let Cn=!1;function Ef(e,t=!1,n=!1){t&&Ms(t);const{props:r,children:s}=e.vnode,o=Aa(e);tf(e,r,o,t),of(e,s,n||t);const i=o?Rf(e,t):void 0;return t&&Ms(!1),i}function Rf(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=new Proxy(e.ctx,Bu);const{setup:r}=n;if(r){Et();const s=e.setupContext=r.length>1?Cf(e):null,o=rr(e),i=er(r,e,0,[e.props,s]),l=al(i);if(Rt(),o(),(l||e.sp)&&!wt(e)&&ho(e),l){if(i.then(Xo,Xo),t)return i.then(a=>{Ls(e,a)}).catch(a=>{On(a,e,0)});e.asyncDep=i}else Ls(e,i)}else xa(e)}function Ls(e,t,n){Q(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ie(t)&&(e.setupState=Il(t)),xa(e)}function xa(e,t,n){const r=e.type;e.render||(e.render=r.render||ct);{const s=rr(e);Et();try{Uu(e)}finally{Rt(),s()}}}const Tf={get(e,t){return Ae(e,"get",""),e[t]}};function Cf(e){const t=n=>{e.exposed=n||{}};return{attrs:new Proxy(e.attrs,Tf),slots:e.slots,emit:e.emit,expose:t}}function Qr(e){return e.exposed?e.exposeProxy||(e.exposeProxy=new Proxy(Il(su(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Vn)return Vn[n](e)},has(t,n){return n in t||n in Vn}})):e.proxy}function Hs(e,t=!0){return Q(e)?e.displayName||e.name:e.name||t&&e.__name}function Sf(e){return Q(e)&&"__vccOpts"in e}const Ge=(e,t)=>hu(e,t,Cn);function xe(e,t,n){try{Pr(-1);const r=arguments.length;return r===2?ie(t)&&!G(t)?en(t)?me(e,null,[t]):me(e,t):me(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&en(n)&&(n=[n]),me(e,t,n))}finally{Pr(1)}}const Af="3.5.26";let Ds;const zo=typeof window<"u"&&window.trustedTypes;if(zo)try{Ds=zo.createPolicy("vue",{createHTML:e=>e})}catch{}const Pa=Ds?e=>Ds.createHTML(e):e=>e,xf="http://www.w3.org/2000/svg",Pf="http://www.w3.org/1998/Math/MathML",gt=typeof document<"u"?document:null,Zo=gt&>.createElement("template"),kf={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,r)=>{const s=t==="svg"?gt.createElementNS(xf,e):t==="mathml"?gt.createElementNS(Pf,e):n?gt.createElement(e,{is:n}):gt.createElement(e);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>gt.createTextNode(e),createComment:e=>gt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>gt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,r,s,o){const i=n?n.previousSibling:t.lastChild;if(s&&(s===o||s.nextSibling))for(;t.insertBefore(s.cloneNode(!0),n),!(s===o||!(s=s.nextSibling)););else{Zo.innerHTML=Pa(r==="svg"?`<svg>${e}</svg>`:r==="mathml"?`<math>${e}</math>`:e);const l=Zo.content;if(r==="svg"||r==="mathml"){const a=l.firstChild;for(;a.firstChild;)l.appendChild(a.firstChild);l.removeChild(a)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},At="transition",Ln="animation",Xn=Symbol("_vtc"),ka={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},Of=Ee({},Bl,ka),Nf=e=>(e.displayName="Transition",e.props=Of,e),If=Nf((e,{slots:t})=>xe(Cu,Mf(e),t)),$t=(e,t=[])=>{G(e)?e.forEach(n=>n(...t)):e&&e(...t)},ei=e=>e?G(e)?e.some(t=>t.length>1):e.length>1:!1;function Mf(e){const t={};for(const O in e)O in ka||(t[O]=e[O]);if(e.css===!1)return t;const{name:n="v",type:r,duration:s,enterFromClass:o=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:a=o,appearActiveClass:f=i,appearToClass:c=l,leaveFromClass:u=`${n}-leave-from`,leaveActiveClass:h=`${n}-leave-active`,leaveToClass:d=`${n}-leave-to`}=e,_=Lf(s),b=_&&_[0],T=_&&_[1],{onBeforeEnter:R,onEnter:v,onEnterCancelled:g,onLeave:y,onLeaveCancelled:w,onBeforeAppear:x=R,onAppear:L=v,onAppearCancelled:V=g}=t,I=(O,K,ee,le)=>{O._enterCancelled=le,Vt(O,K?c:l),Vt(O,K?f:i),ee&&ee()},N=(O,K)=>{O._isLeaving=!1,Vt(O,u),Vt(O,d),Vt(O,h),K&&K()},W=O=>(K,ee)=>{const le=O?L:v,$=()=>I(K,O,ee);$t(le,[K,$]),ti(()=>{Vt(K,O?a:o),ht(K,O?c:l),ei(le)||ni(K,r,b,$)})};return Ee(t,{onBeforeEnter(O){$t(R,[O]),ht(O,o),ht(O,i)},onBeforeAppear(O){$t(x,[O]),ht(O,a),ht(O,f)},onEnter:W(!1),onAppear:W(!0),onLeave(O,K){O._isLeaving=!0;const ee=()=>N(O,K);ht(O,u),O._enterCancelled?(ht(O,h),oi(O)):(oi(O),ht(O,h)),ti(()=>{O._isLeaving&&(Vt(O,u),ht(O,d),ei(y)||ni(O,r,T,ee))}),$t(y,[O,ee])},onEnterCancelled(O){I(O,!1,void 0,!0),$t(g,[O])},onAppearCancelled(O){I(O,!0,void 0,!0),$t(V,[O])},onLeaveCancelled(O){N(O),$t(w,[O])}})}function Lf(e){if(e==null)return null;if(ie(e))return[ds(e.enter),ds(e.leave)];{const t=ds(e);return[t,t]}}function ds(e){return dl(e)}function ht(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Xn]||(e[Xn]=new Set)).add(t)}function Vt(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const n=e[Xn];n&&(n.delete(t),n.size||(e[Xn]=void 0))}function ti(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hf=0;function ni(e,t,n,r){const s=e._endId=++Hf,o=()=>{s===e._endId&&r()};if(n!=null)return setTimeout(o,n);const{type:i,timeout:l,propCount:a}=Df(e,t);if(!i)return r();const f=i+"end";let c=0;const u=()=>{e.removeEventListener(f,h),o()},h=d=>{d.target===e&&++c>=a&&u()};setTimeout(()=>{c<a&&u()},l+1),e.addEventListener(f,h)}function Df(e,t){const n=window.getComputedStyle(e),r=_=>(n[_]||"").split(", "),s=r(`${At}Delay`),o=r(`${At}Duration`),i=ri(s,o),l=r(`${Ln}Delay`),a=r(`${Ln}Duration`),f=ri(l,a);let c=null,u=0,h=0;t===At?i>0&&(c=At,u=i,h=o.length):t===Ln?f>0&&(c=Ln,u=f,h=a.length):(u=Math.max(i,f),c=u>0?i>f?At:Ln:null,h=c?c===At?o.length:a.length:0);const d=c===At&&/\b(?:transform|all)(?:,|$)/.test(r(`${At}Property`).toString());return{type:c,timeout:u,propCount:h,hasTransform:d}}function ri(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,r)=>si(n)+si(e[r])))}function si(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function oi(e){return(e?e.ownerDocument:document).body.offsetHeight}function jf(e,t,n){const r=e[Xn];r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Or=Symbol("_vod"),Oa=Symbol("_vsh"),Em={name:"show",beforeMount(e,{value:t},{transition:n}){e[Or]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Hn(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:r}){!t!=!n&&(r?t?(r.beforeEnter(e),Hn(e,!0),r.enter(e)):r.leave(e,()=>{Hn(e,!1)}):Hn(e,t))},beforeUnmount(e,{value:t}){Hn(e,t)}};function Hn(e,t){e.style.display=t?e[Or]:"none",e[Oa]=!t}const Ff=Symbol(""),Bf=/(?:^|;)\s*display\s*:/;function Uf(e,t,n){const r=e.style,s=pe(n);let o=!1;if(n&&!s){if(t)if(pe(t))for(const i of t.split(";")){const l=i.slice(0,i.indexOf(":")).trim();n[l]==null&&yr(r,l,"")}else for(const i in t)n[i]==null&&yr(r,i,"");for(const i in n)i==="display"&&(o=!0),yr(r,i,n[i])}else if(s){if(t!==n){const i=r[Ff];i&&(n+=";"+i),r.cssText=n,o=Bf.test(n)}}else t&&e.removeAttribute("style");Or in e&&(e[Or]=o?r.display:"",e[Oa]&&(r.display="none"))}const ii=/\s*!important$/;function yr(e,t,n){if(G(n))n.forEach(r=>yr(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=$f(e,t);ii.test(n)?e.setProperty(nn(r),n.replace(ii,""),"important"):e[r]=n}}const li=["Webkit","Moz","ms"],hs={};function $f(e,t){const n=hs[t];if(n)return n;let r=Ye(t);if(r!=="filter"&&r in e)return hs[t]=r;r=Br(r);for(let s=0;s<li.length;s++){const o=li[s]+r;if(o in e)return hs[t]=o}return t}const ai="http://www.w3.org/1999/xlink";function ci(e,t,n,r,s,o=Lc(t)){r&&t.startsWith("xlink:")?n==null?e.removeAttributeNS(ai,t.slice(6,t.length)):e.setAttributeNS(ai,t,n):n==null||o&&!hl(n)?e.removeAttribute(t):e.setAttribute(t,o?"":Ze(n)?String(n):n)}function ui(e,t,n,r,s){if(t==="innerHTML"||t==="textContent"){n!=null&&(e[t]=t==="innerHTML"?Pa(n):n);return}const o=e.tagName;if(t==="value"&&o!=="PROGRESS"&&!o.includes("-")){const l=o==="OPTION"?e.getAttribute("value")||"":e.value,a=n==null?e.type==="checkbox"?"on":"":String(n);(l!==a||!("_value"in e))&&(e.value=a),n==null&&e.removeAttribute(t),e._value=n;return}let i=!1;if(n===""||n==null){const l=typeof e[t];l==="boolean"?n=hl(n):n==null&&l==="string"?(n="",i=!0):l==="number"&&(n=0,i=!0)}try{e[t]=n}catch{}i&&e.removeAttribute(s||t)}function bt(e,t,n,r){e.addEventListener(t,n,r)}function Vf(e,t,n,r){e.removeEventListener(t,n,r)}const fi=Symbol("_vei");function Wf(e,t,n,r,s=null){const o=e[fi]||(e[fi]={}),i=o[t];if(r&&i)i.value=r;else{const[l,a]=Kf(t);if(r){const f=o[t]=Jf(r,s);bt(e,l,f,a)}else i&&(Vf(e,l,i,a),o[t]=void 0)}}const di=/(?:Once|Passive|Capture)$/;function Kf(e){let t;if(di.test(e)){t={};let r;for(;r=e.match(di);)e=e.slice(0,e.length-r[0].length),t[r[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):nn(e.slice(2)),t]}let ps=0;const qf=Promise.resolve(),Gf=()=>ps||(qf.then(()=>ps=0),ps=Date.now());function Jf(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;tt(Yf(r,n.value),t,5,[r])};return n.value=e,n.attached=Gf(),n}function Yf(e,t){if(G(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(r=>s=>!s._stopped&&r&&r(s))}else return t}const hi=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Qf=(e,t,n,r,s,o)=>{const i=s==="svg";t==="class"?jf(e,r,i):t==="style"?Uf(e,n,r):Zn(t)?Zs(t)||Wf(e,t,n,r,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Xf(e,t,r,i))?(ui(e,t,r),!e.tagName.includes("-")&&(t==="value"||t==="checked"||t==="selected")&&ci(e,t,r,i,o,t!=="value")):e._isVueCE&&(/[A-Z]/.test(t)||!pe(r))?ui(e,Ye(t),r,o,t):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),ci(e,t,r,i))};function Xf(e,t,n,r){if(r)return!!(t==="innerHTML"||t==="textContent"||t in e&&hi(t)&&Q(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="autocorrect"||t==="sandbox"&&e.tagName==="IFRAME"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const s=e.tagName;if(s==="IMG"||s==="VIDEO"||s==="CANVAS"||s==="SOURCE")return!1}return hi(t)&&pe(n)?!1:t in e}const Dt=e=>{const t=e.props["onUpdate:modelValue"]||!1;return G(t)?n=>gn(t,n):t};function zf(e){e.target.composing=!0}function pi(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Je=Symbol("_assign");function gi(e,t,n){return t&&(e=e.trim()),n&&(e=Ur(e)),e}const mi={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e[Je]=Dt(s);const o=r||s.props&&s.props.type==="number";bt(e,t?"change":"input",i=>{i.target.composing||e[Je](gi(e.value,n,o))}),(n||o)&&bt(e,"change",()=>{e.value=gi(e.value,n,o)}),t||(bt(e,"compositionstart",zf),bt(e,"compositionend",pi),bt(e,"change",pi))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,oldValue:n,modifiers:{lazy:r,trim:s,number:o}},i){if(e[Je]=Dt(i),e.composing)return;const l=(o||e.type==="number")&&!/^0\d/.test(e.value)?Ur(e.value):e.value,a=t??"";l!==a&&(document.activeElement===e&&e.type!=="range"&&(r&&t===n||s&&e.value.trim()===a)||(e.value=a))}},Zf={deep:!0,created(e,t,n){e[Je]=Dt(n),bt(e,"change",()=>{const r=e._modelValue,s=Sn(e),o=e.checked,i=e[Je];if(G(r)){const l=to(r,s),a=l!==-1;if(o&&!a)i(r.concat(s));else if(!o&&a){const f=[...r];f.splice(l,1),i(f)}}else if(Pn(r)){const l=new Set(r);o?l.add(s):l.delete(s),i(l)}else i(Na(e,o))})},mounted:yi,beforeUpdate(e,t,n){e[Je]=Dt(n),yi(e,t,n)}};function yi(e,{value:t,oldValue:n},r){e._modelValue=t;let s;if(G(t))s=to(t,r.props.value)>-1;else if(Pn(t))s=t.has(r.props.value);else{if(t===n)return;s=zt(t,Na(e,!0))}e.checked!==s&&(e.checked=s)}const ed={created(e,{value:t},n){e.checked=zt(t,n.props.value),e[Je]=Dt(n),bt(e,"change",()=>{e[Je](Sn(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e[Je]=Dt(r),t!==n&&(e.checked=zt(t,r.props.value))}},td={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const s=Pn(t);bt(e,"change",()=>{const o=Array.prototype.filter.call(e.options,i=>i.selected).map(i=>n?Ur(Sn(i)):Sn(i));e[Je](e.multiple?s?new Set(o):o:o[0]),e._assigning=!0,Zt(()=>{e._assigning=!1})}),e[Je]=Dt(r)},mounted(e,{value:t}){_i(e,t)},beforeUpdate(e,t,n){e[Je]=Dt(n)},updated(e,{value:t}){e._assigning||_i(e,t)}};function _i(e,t){const n=e.multiple,r=G(t);if(!(n&&!r&&!Pn(t))){for(let s=0,o=e.options.length;s<o;s++){const i=e.options[s],l=Sn(i);if(n)if(r){const a=typeof l;a==="string"||a==="number"?i.selected=t.some(f=>String(f)===String(l)):i.selected=to(t,l)>-1}else i.selected=t.has(l);else if(zt(Sn(i),t)){e.selectedIndex!==s&&(e.selectedIndex=s);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Sn(e){return"_value"in e?e._value:e.value}function Na(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Rm={created(e,t,n){dr(e,t,n,null,"created")},mounted(e,t,n){dr(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){dr(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){dr(e,t,n,r,"updated")}};function nd(e,t){switch(e){case"SELECT":return td;case"TEXTAREA":return mi;default:switch(t){case"checkbox":return Zf;case"radio":return ed;default:return mi}}}function dr(e,t,n,r,s){const i=nd(e.tagName,n.props&&n.props.type)[s];i&&i(e,t,n,r)}const Ia=Ee({patchProp:Qf},kf);let Kn,bi=!1;function rd(){return Kn||(Kn=af(Ia))}function sd(){return Kn=bi?Kn:cf(Ia),bi=!0,Kn}const od=((...e)=>{const t=rd().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=La(r);if(!s)return;const o=t._component;!Q(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.nodeType===1&&(s.textContent="");const i=n(s,!1,Ma(s));return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t}),id=((...e)=>{const t=sd().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=La(r);if(s)return n(s,!0,Ma(s))},t});function Ma(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function La(e){return pe(e)?document.querySelector(e):e}const ld=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,ad=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,cd=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function ud(e,t){if(e==="__proto__"||e==="constructor"&&t&&typeof t=="object"&&"prototype"in t){fd(e);return}return t}function fd(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function Nr(e,t={}){if(typeof e!="string")return e;if(e[0]==='"'&&e[e.length-1]==='"'&&e.indexOf("\\")===-1)return e.slice(1,-1);const n=e.trim();if(n.length<=9)switch(n.toLowerCase()){case"true":return!0;case"false":return!1;case"undefined":return;case"null":return null;case"nan":return Number.NaN;case"infinity":return Number.POSITIVE_INFINITY;case"-infinity":return Number.NEGATIVE_INFINITY}if(!cd.test(e)){if(t.strict)throw new SyntaxError("[destr] Invalid JSON");return e}try{if(ld.test(e)||ad.test(e)){if(t.strict)throw new Error("[destr] Possible prototype pollution");return JSON.parse(e,ud)}return JSON.parse(e)}catch(r){if(t.strict)throw r;return e}}const dd=/#/g,hd=/&/g,pd=/\//g,gd=/=/g,bo=/\+/g,md=/%5e/gi,yd=/%60/gi,_d=/%7c/gi,bd=/%20/gi;function vd(e){return encodeURI(""+e).replace(_d,"|")}function js(e){return vd(typeof e=="string"?e:JSON.stringify(e)).replace(bo,"%2B").replace(bd,"+").replace(dd,"%23").replace(hd,"%26").replace(yd,"`").replace(md,"^").replace(pd,"%2F")}function gs(e){return js(e).replace(gd,"%3D")}function Ir(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function wd(e){return Ir(e.replace(bo," "))}function Ed(e){return Ir(e.replace(bo," "))}function Ha(e=""){const t=Object.create(null);e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const r=n.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const s=wd(r[1]);if(s==="__proto__"||s==="constructor")continue;const o=Ed(r[2]||"");t[s]===void 0?t[s]=o:Array.isArray(t[s])?t[s].push(o):t[s]=[t[s],o]}return t}function Rd(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${gs(e)}=${js(n)}`).join("&"):`${gs(e)}=${js(t)}`:gs(e)}function Td(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>Rd(t,e[t])).filter(Boolean).join("&")}const Cd=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,Sd=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,Ad=/^([/\\]\s*){2,}[^/\\]/,xd=/^[\s\0]*(blob|data|javascript|vbscript):$/i,Pd=/\/$|\/\?|\/#/,kd=/^\.?\//;function rn(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?Cd.test(e):Sd.test(e)||(t.acceptRelative?Ad.test(e):!1)}function Od(e){return!!e&&xd.test(e)}function Fs(e="",t){return t?Pd.test(e):e.endsWith("/")}function Mr(e="",t){if(!t)return(Fs(e)?e.slice(0,-1):e)||"/";if(!Fs(e,!0))return e||"/";let n=e,r="";const s=e.indexOf("#");s!==-1&&(n=e.slice(0,s),r=e.slice(s));const[o,...i]=n.split("?");return((o.endsWith("/")?o.slice(0,-1):o)||"/")+(i.length>0?`?${i.join("?")}`:"")+r}function Nd(e="",t){if(!t)return e.endsWith("/")?e:e+"/";if(Fs(e,!0))return e||"/";let n=e,r="";const s=e.indexOf("#");if(s!==-1&&(n=e.slice(0,s),r=e.slice(s),!n))return r;const[o,...i]=n.split("?");return o+"/"+(i.length>0?`?${i.join("?")}`:"")+r}function Id(e,t){if(ja(t)||rn(e))return e;const n=Mr(t);return e.startsWith(n)?e:vo(n,e)}function vi(e,t){if(ja(t))return e;const n=Mr(t);if(!e.startsWith(n))return e;const r=e.slice(n.length);return r[0]==="/"?r:"/"+r}function Da(e,t){const n=Ua(e),r={...Ha(n.search),...t};return n.search=Td(r),Hd(n)}function ja(e){return!e||e==="/"}function Md(e){return e&&e!=="/"}function vo(e,...t){let n=e||"";for(const r of t.filter(s=>Md(s)))if(n){const s=r.replace(kd,"");n=Nd(n)+s}else n=r;return n}function Fa(...e){const t=/\/(?!\/)/,n=e.filter(Boolean),r=[];let s=0;for(const i of n)if(!(!i||i==="/")){for(const[l,a]of i.split(t).entries())if(!(!a||a===".")){if(a===".."){if(r.length===1&&rn(r[0]))continue;r.pop(),s--;continue}if(l===1&&r[r.length-1]?.endsWith(":/")){r[r.length-1]+="/"+a;continue}r.push(a),s++}}let o=r.join("/");return s>=0?n[0]?.startsWith("/")&&!o.startsWith("/")?o="/"+o:n[0]?.startsWith("./")&&!o.startsWith("./")&&(o="./"+o):o="../".repeat(-1*s)+o,n[n.length-1]?.endsWith("/")&&!o.endsWith("/")&&(o+="/"),o}function Ld(e,t){return Ir(Mr(e))===Ir(Mr(t))}const Ba=Symbol.for("ufo:protocolRelative");function Ua(e="",t){const n=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(n){const[,u,h=""]=n;return{protocol:u.toLowerCase(),pathname:h,href:u+h,auth:"",host:"",search:"",hash:""}}if(!rn(e,{acceptRelative:!0}))return wi(e);const[,r="",s,o=""]=e.replace(/\\/g,"/").match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[];let[,i="",l=""]=o.match(/([^#/?]*)(.*)?/)||[];r==="file:"&&(l=l.replace(/\/(?=[A-Za-z]:)/,""));const{pathname:a,search:f,hash:c}=wi(l);return{protocol:r.toLowerCase(),auth:s?s.slice(0,Math.max(0,s.length-1)):"",host:i,pathname:a,search:f,hash:c,[Ba]:!r}}function wi(e=""){const[t="",n="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function Hd(e){const t=e.pathname||"",n=e.search?(e.search.startsWith("?")?"":"?")+e.search:"",r=e.hash||"",s=e.auth?e.auth+"@":"",o=e.host||"";return(e.protocol||e[Ba]?(e.protocol||"")+"//":"")+s+o+t+n+r}class Dd extends Error{constructor(t,n){super(t,n),this.name="FetchError",n?.cause&&!this.cause&&(this.cause=n.cause)}}function jd(e){const t=e.error?.message||e.error?.toString()||"",n=e.request?.method||e.options?.method||"GET",r=e.request?.url||String(e.request)||"/",s=`[${n}] ${JSON.stringify(r)}`,o=e.response?`${e.response.status} ${e.response.statusText}`:"<no response>",i=`${s}: ${o}${t?` ${t}`:""}`,l=new Dd(i,e.error?{cause:e.error}:void 0);for(const a of["request","options","response"])Object.defineProperty(l,a,{get(){return e[a]}});for(const[a,f]of[["data","_data"],["status","status"],["statusCode","status"],["statusText","statusText"],["statusMessage","statusText"]])Object.defineProperty(l,a,{get(){return e.response&&e.response[f]}});return l}const Fd=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Ei(e="GET"){return Fd.has(e.toUpperCase())}function Bd(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.buffer||e instanceof FormData||e instanceof URLSearchParams?!1:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const Ud=new Set(["image/svg","application/xml","application/xhtml","application/html"]),$d=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Vd(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return $d.test(t)?"json":t==="text/event-stream"?"stream":Ud.has(t)||t.startsWith("text/")?"text":"blob"}function Wd(e,t,n,r){const s=Kd(t?.headers??e?.headers,n?.headers,r);let o;return(n?.query||n?.params||t?.params||t?.query)&&(o={...n?.params,...n?.query,...t?.params,...t?.query}),{...n,...t,query:o,params:o,headers:s}}function Kd(e,t,n){if(!t)return new n(e);const r=new n(t);if(e)for(const[s,o]of Symbol.iterator in e||Array.isArray(e)?e:new n(e))r.set(s,o);return r}async function hr(e,t){if(t)if(Array.isArray(t))for(const n of t)await n(e);else await t(e)}const qd=new Set([408,409,425,429,500,502,503,504]),Gd=new Set([101,204,205,304]);function $a(e={}){const{fetch:t=globalThis.fetch,Headers:n=globalThis.Headers,AbortController:r=globalThis.AbortController}=e;async function s(l){const a=l.error&&l.error.name==="AbortError"&&!l.options.timeout||!1;if(l.options.retry!==!1&&!a){let c;typeof l.options.retry=="number"?c=l.options.retry:c=Ei(l.options.method)?0:1;const u=l.response&&l.response.status||500;if(c>0&&(Array.isArray(l.options.retryStatusCodes)?l.options.retryStatusCodes.includes(u):qd.has(u))){const h=typeof l.options.retryDelay=="function"?l.options.retryDelay(l):l.options.retryDelay||0;return h>0&&await new Promise(d=>setTimeout(d,h)),o(l.request,{...l.options,retry:c-1})}}const f=jd(l);throw Error.captureStackTrace&&Error.captureStackTrace(f,o),f}const o=async function(a,f={}){const c={request:a,options:Wd(a,f,e.defaults,n),response:void 0,error:void 0};if(c.options.method&&(c.options.method=c.options.method.toUpperCase()),c.options.onRequest&&(await hr(c,c.options.onRequest),c.options.headers instanceof n||(c.options.headers=new n(c.options.headers||{}))),typeof c.request=="string"&&(c.options.baseURL&&(c.request=Id(c.request,c.options.baseURL)),c.options.query&&(c.request=Da(c.request,c.options.query),delete c.options.query),"query"in c.options&&delete c.options.query,"params"in c.options&&delete c.options.params),c.options.body&&Ei(c.options.method))if(Bd(c.options.body)){const d=c.options.headers.get("content-type");typeof c.options.body!="string"&&(c.options.body=d==="application/x-www-form-urlencoded"?new URLSearchParams(c.options.body).toString():JSON.stringify(c.options.body)),d||c.options.headers.set("content-type","application/json"),c.options.headers.has("accept")||c.options.headers.set("accept","application/json")}else("pipeTo"in c.options.body&&typeof c.options.body.pipeTo=="function"||typeof c.options.body.pipe=="function")&&("duplex"in c.options||(c.options.duplex="half"));let u;if(!c.options.signal&&c.options.timeout){const d=new r;u=setTimeout(()=>{const _=new Error("[TimeoutError]: The operation was aborted due to timeout");_.name="TimeoutError",_.code=23,d.abort(_)},c.options.timeout),c.options.signal=d.signal}try{c.response=await t(c.request,c.options)}catch(d){return c.error=d,c.options.onRequestError&&await hr(c,c.options.onRequestError),await s(c)}finally{u&&clearTimeout(u)}if((c.response.body||c.response._bodyInit)&&!Gd.has(c.response.status)&&c.options.method!=="HEAD"){const d=(c.options.parseResponse?"json":c.options.responseType)||Vd(c.response.headers.get("content-type")||"");switch(d){case"json":{const _=await c.response.text(),b=c.options.parseResponse||Nr;c.response._data=b(_);break}case"stream":{c.response._data=c.response.body||c.response._bodyInit;break}default:c.response._data=await c.response[d]()}}return c.options.onResponse&&await hr(c,c.options.onResponse),!c.options.ignoreResponseError&&c.response.status>=400&&c.response.status<600?(c.options.onResponseError&&await hr(c,c.options.onResponseError),await s(c)):c.response},i=async function(a,f){return(await o(a,f))._data};return i.raw=o,i.native=(...l)=>t(...l),i.create=(l={},a={})=>$a({...e,...a,defaults:{...e.defaults,...a.defaults,...l}}),i}const Lr=(function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")})(),Jd=Lr.fetch?(...e)=>Lr.fetch(...e):()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!")),Yd=Lr.Headers,Qd=Lr.AbortController,Xd=$a({fetch:Jd,Headers:Yd,AbortController:Qd}),zd=Xd,Zd=()=>window?.__NUXT__?.config||window?.useNuxtApp?.().payload?.config,wo=()=>Zd().app,eh=()=>wo().baseURL,th=()=>wo().buildAssetsDir,Eo=(...e)=>Fa(Va(),th(),...e),Va=(...e)=>{const t=wo(),n=t.cdnURL||t.baseURL;return e.length?Fa(n,...e):n};globalThis.__buildAssetsURL=Eo,globalThis.__publicAssetsURL=Va;globalThis.$fetch||(globalThis.$fetch=zd.create({baseURL:eh()}));"global"in globalThis||(globalThis.global=globalThis);function Bs(e,t={},n){for(const r in e){const s=e[r],o=n?`${n}:${r}`:r;typeof s=="object"&&s!==null?Bs(s,t,o):typeof s=="function"&&(t[o]=s)}return t}const nh={run:e=>e()},rh=()=>nh,Wa=typeof console.createTask<"u"?console.createTask:rh;function sh(e,t){const n=t.shift(),r=Wa(n);return e.reduce((s,o)=>s.then(()=>r.run(()=>o(...t))),Promise.resolve())}function oh(e,t){const n=t.shift(),r=Wa(n);return Promise.all(e.map(s=>r.run(()=>s(...t))))}function ms(e,t){for(const n of[...e])n(t)}class ih{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,n,r={}){if(!t||typeof n!="function")return()=>{};const s=t;let o;for(;this._deprecatedHooks[t];)o=this._deprecatedHooks[t],t=o.to;if(o&&!r.allowDeprecated){let i=o.message;i||(i=`${s} hook has been deprecated`+(o.to?`, please use ${o.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}if(!n.name)try{Object.defineProperty(n,"name",{get:()=>"_"+t.replace(/\W+/g,"_")+"_hook_cb",configurable:!0})}catch{}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(n),()=>{n&&(this.removeHook(t,n),n=void 0)}}hookOnce(t,n){let r,s=(...o)=>(typeof r=="function"&&r(),r=void 0,s=void 0,n(...o));return r=this.hook(t,s),r}removeHook(t,n){if(this._hooks[t]){const r=this._hooks[t].indexOf(n);r!==-1&&this._hooks[t].splice(r,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,n){this._deprecatedHooks[t]=typeof n=="string"?{to:n}:n;const r=this._hooks[t]||[];delete this._hooks[t];for(const s of r)this.hook(t,s)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const n in t)this.deprecateHook(n,t[n])}addHooks(t){const n=Bs(t),r=Object.keys(n).map(s=>this.hook(s,n[s]));return()=>{for(const s of r.splice(0,r.length))s()}}removeHooks(t){const n=Bs(t);for(const r in n)this.removeHook(r,n[r])}removeAllHooks(){for(const t in this._hooks)delete this._hooks[t]}callHook(t,...n){return n.unshift(t),this.callHookWith(sh,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(oh,t,...n)}callHookWith(t,n,...r){const s=this._before||this._after?{name:n,args:r,context:{}}:void 0;this._before&&ms(this._before,s);const o=t(n in this._hooks?[...this._hooks[n]]:[],r);return o instanceof Promise?o.finally(()=>{this._after&&s&&ms(this._after,s)}):(this._after&&s&&ms(this._after,s),o)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{if(this._before!==void 0){const n=this._before.indexOf(t);n!==-1&&this._before.splice(n,1)}}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{if(this._after!==void 0){const n=this._after.indexOf(t);n!==-1&&this._after.splice(n,1)}}}}function Ka(){return new ih}function lh(e={}){let t,n=!1;const r=i=>{if(t&&t!==i)throw new Error("Context conflict")};let s;if(e.asyncContext){const i=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;i?s=new i:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}const o=()=>{if(s){const i=s.getStore();if(i!==void 0)return i}return t};return{use:()=>{const i=o();if(i===void 0)throw new Error("Context is not available");return i},tryUse:()=>o(),set:(i,l)=>{l||r(i),t=i,n=!0},unset:()=>{t=void 0,n=!1},call:(i,l)=>{r(i),t=i;try{return s?s.run(i,l):l()}finally{n||(t=void 0)}},async callAsync(i,l){t=i;const a=()=>{t=i},f=()=>t===i?a:void 0;Us.add(f);try{const c=s?s.run(i,l):l();return n||(t=void 0),await c}finally{Us.delete(f)}}}}function ah(e={}){const t={};return{get(n,r={}){return t[n]||(t[n]=lh({...e,...r})),t[n]}}}const Hr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},Ri="__unctx__",ch=Hr[Ri]||(Hr[Ri]=ah()),uh=(e,t={})=>ch.get(e,t),Ti="__unctx_async_handlers__",Us=Hr[Ti]||(Hr[Ti]=new Set);function vn(e){const t=[];for(const s of Us){const o=s();o&&t.push(o)}const n=()=>{for(const s of t)s()};let r=e();return r&&typeof r=="object"&&"catch"in r&&(r=r.catch(s=>{throw n(),s})),[r,n]}const fh=!1,Ci=!1,dh=!1,Si={id:"__nuxt-loader"},Tm={componentName:"NuxtLink",prefetch:!0,prefetchOn:{visibility:!0}},hh="#__nuxt",qa="nuxt-app",Ai=36e5,ph="vite:preloadError";function Ga(e=qa){return uh(e,{asyncContext:!1})}const gh="__nuxt_plugin";function mh(e){let t=0;const n={_id:e.id||qa||"nuxt-app",_scope:jc(),provide:void 0,versions:{get nuxt(){return"4.2.2"},get vue(){return n.vueApp.version}},payload:at({...e.ssrContext?.payload||{},data:at({}),state:jt({}),once:new Set,_errors:at({})}),static:{data:{}},runWithContext(s){return n._scope.active&&!yl()?n._scope.run(()=>xi(n,s)):xi(n,s)},isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let s=!1;return()=>{if(!s&&(s=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:at({}),_payloadRevivers:{},...e};{const s=window.__NUXT__;if(s)for(const o in s)switch(o){case"data":case"state":case"_errors":Object.assign(n.payload[o],s[o]);break;default:n.payload[o]=s[o]}}n.hooks=Ka(),n.hook=n.hooks.hook,n.callHook=n.hooks.callHook,n.provide=(s,o)=>{const i="$"+s;pr(n,i,o),pr(n.vueApp.config.globalProperties,i,o)},pr(n.vueApp,"$nuxt",n),pr(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener(ph,o=>{n.callHook("app:chunkError",{error:o.payload}),o.payload.message.includes("Unable to preload CSS")&&o.preventDefault()}),window.useNuxtApp||=ve;const s=n.hook("app:error",(...o)=>{console.error("[nuxt] error caught during app initialization",...o)});n.hook("app:mounted",s)}const r=n.payload.config;return n.provide("config",r),n}function yh(e,t){t.hooks&&e.hooks.addHooks(t.hooks)}async function _h(e,t){if(typeof t=="function"){const{provide:n}=await e.runWithContext(()=>t(e))||{};if(n&&typeof n=="object")for(const r in n)e.provide(r,n[r])}}async function bh(e,t){const n=new Set,r=[],s=[];let o,i=0;async function l(a){const f=a.dependsOn?.filter(c=>t.some(u=>u._name===c)&&!n.has(c))??[];if(f.length>0)r.push([new Set(f),a]);else{const c=_h(e,a).then(async()=>{a._name&&(n.add(a._name),await Promise.all(r.map(async([u,h])=>{u.has(a._name)&&(u.delete(a._name),u.size===0&&(i++,await l(h)))})))}).catch(u=>{if(!a.parallel&&!e.payload.error)throw u;o||=u});a.parallel?s.push(c):await c}}for(const a of t)yh(e,a);for(const a of t)await l(a);if(await Promise.all(s),i)for(let a=0;a<i;a++)await Promise.all(s);if(o)throw e.payload.error||o}function ft(e){if(typeof e=="function")return e;const t=e._name||e.name;return delete e.name,Object.assign(e.setup||(()=>{}),e,{[gh]:!0,_name:t})}function xi(e,t,n){const r=()=>t();return Ga(e._id).set(e),e.vueApp.runWithContext(r)}function vh(e){let t;return uo()&&(t=Nn()?.appContext.app.$nuxt),t||=Ga(e).tryUse(),t||null}function ve(e){const t=vh(e);if(!t)throw new Error("[nuxt] instance unavailable");return t}function Xr(e){return ve().$config}function pr(e,t,n){Object.defineProperty(e,t,{get:()=>n})}function wh(e,t){return{ctx:{table:e},matchAll:n=>Ya(n,e)}}function Ja(e){const t={};for(const n in e)t[n]=n==="dynamic"?new Map(Object.entries(e[n]).map(([r,s])=>[r,Ja(s)])):new Map(Object.entries(e[n]));return t}function Eh(e){return wh(Ja(e))}function Ya(e,t,n){e.endsWith("/")&&(e=e.slice(0,-1)||"/");const r=[];for(const[o,i]of Pi(t.wildcard))(e===o||e.startsWith(o+"/"))&&r.push(i);for(const[o,i]of Pi(t.dynamic))if(e.startsWith(o+"/")){const l="/"+e.slice(o.length).split("/").splice(2).join("/");r.push(...Ya(l,i))}const s=t.static.get(e);return s&&r.push(s),r.filter(Boolean)}function Pi(e){return[...e.entries()].sort((t,n)=>t[0].length-n[0].length)}function ys(e){if(e===null||typeof e!="object")return!1;const t=Object.getPrototypeOf(e);return t!==null&&t!==Object.prototype&&Object.getPrototypeOf(t)!==null||Symbol.iterator in e?!1:Symbol.toStringTag in e?Object.prototype.toString.call(e)==="[object Module]":!0}function $s(e,t,n=".",r){if(!ys(t))return $s(e,{},n,r);const s=Object.assign({},t);for(const o in e){if(o==="__proto__"||o==="constructor")continue;const i=e[o];i!=null&&(r&&r(s,o,i,n)||(Array.isArray(i)&&Array.isArray(s[o])?s[o]=[...i,...s[o]]:ys(i)&&ys(s[o])?s[o]=$s(i,s[o],(n?`${n}.`:"")+o.toString(),r):s[o]=i))}return s}function Rh(e){return(...t)=>t.reduce((n,r)=>$s(n,r,"",e),{})}const Qa=Rh();function Th(e,t){try{return t in e}catch{return!1}}class ki extends Error{static __h3_error__=!0;statusCode=500;fatal=!1;unhandled=!1;statusMessage;data;cause;constructor(t,n={}){super(t,n),n.cause&&!this.cause&&(this.cause=n.cause)}toJSON(){const t={message:this.message,statusCode:Vs(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=Xa(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}function Ch(e){if(typeof e=="string")return new ki(e);if(Sh(e))return e;const t=new ki(e.message??e.statusMessage??"",{cause:e.cause||e});if(Th(e,"stack"))try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}if(e.data&&(t.data=e.data),e.statusCode?t.statusCode=Vs(e.statusCode,t.statusCode):e.status&&(t.statusCode=Vs(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;Xa(t.statusMessage)!==n&&console.warn("[h3] Please prefer using `message` for longer error messages instead of `statusMessage`. In the future, `statusMessage` will be sanitized by default.")}return e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function Sh(e){return e?.constructor?.__h3_error__===!0}const Ah=/[^\u0009\u0020-\u007E]/g;function Xa(e=""){return e.replace(Ah,"")}function Vs(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}const za=Symbol("layout-meta"),tn=Symbol("route");import.meta.url.replace(/\/app\/.*$/,"/");const $e=()=>ve()?.$router,zr=()=>uo()?Pe(tn,ve()._route):ve()._route;const xh=()=>{try{if(ve()._processingMiddleware)return!0}catch{return!1}return!1},Cm=(e,t)=>{e||="/";const n=typeof e=="string"?e:"path"in e?Ph(e):$e().resolve(e).href;if(t?.open){const{target:a="_blank",windowFeatures:f={}}=t.open,c=[];for(const[u,h]of Object.entries(f))h!==void 0&&c.push(`${u.toLowerCase()}=${h}`);return open(n,a,c.join(", ")),Promise.resolve()}const r=rn(n,{acceptRelative:!0}),s=t?.external||r;if(s){if(!t?.external)throw new Error("Navigating to an external URL is not allowed by default. Use `navigateTo(url, { external: true })`.");const{protocol:a}=new URL(n,window.location.href);if(a&&Od(a))throw new Error(`Cannot navigate to a URL with '${a}' protocol.`)}const o=xh();if(!s&&o){if(t?.replace){if(typeof e=="string"){const{pathname:a,search:f,hash:c}=Ua(e);return{path:a,...f&&{query:Ha(f)},...c&&{hash:c},replace:!0}}return{...e,replace:!0}}return e}const i=$e(),l=ve();return s?(l._scope.stop(),t?.replace?location.replace(n):location.href=n,o?l.isHydrating?new Promise(()=>{}):!1:Promise.resolve()):t?.replace?i.replace(e):i.push(e)};function Ph(e){return Da(e.path||"",e.query||{})+(e.hash||"")}const Za="__nuxt_error",Zr=()=>uu(ve().payload,"error"),qt=e=>{const t=Xt(e);try{const n=Zr();ve().hooks.callHook("app:error",t),n.value||=t}catch{throw t}return t},kh=async(e={})=>{const t=ve(),n=Zr();t.callHook("app:error:cleared",e),e.redirect&&await $e().replace(e.redirect),n.value=void 0},ec=e=>!!e&&typeof e=="object"&&Za in e,Xt=e=>{const t=Ch(e);return Object.defineProperty(t,Za,{value:!0,configurable:!1,writable:!1}),t};function Oh(e){const t=Ih(e),n=new ArrayBuffer(t.length),r=new DataView(n);for(let s=0;s<n.byteLength;s++)r.setUint8(s,t.charCodeAt(s));return n}const Nh="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";function Ih(e){e.length%4===0&&(e=e.replace(/==?$/,""));let t="",n=0,r=0;for(let s=0;s<e.length;s++)n<<=6,n|=Nh.indexOf(e[s]),r+=6,r===24&&(t+=String.fromCharCode((n&16711680)>>16),t+=String.fromCharCode((n&65280)>>8),t+=String.fromCharCode(n&255),n=r=0);return r===12?(n>>=4,t+=String.fromCharCode(n)):r===18&&(n>>=2,t+=String.fromCharCode((n&65280)>>8),t+=String.fromCharCode(n&255)),t}const Mh=-1,Lh=-2,Hh=-3,Dh=-4,jh=-5,Fh=-6;function Bh(e,t){return Uh(JSON.parse(e),t)}function Uh(e,t){if(typeof e=="number")return s(e,!0);if(!Array.isArray(e)||e.length===0)throw new Error("Invalid input");const n=e,r=Array(n.length);function s(o,i=!1){if(o===Mh)return;if(o===Hh)return NaN;if(o===Dh)return 1/0;if(o===jh)return-1/0;if(o===Fh)return-0;if(i||typeof o!="number")throw new Error("Invalid input");if(o in r)return r[o];const l=n[o];if(!l||typeof l!="object")r[o]=l;else if(Array.isArray(l))if(typeof l[0]=="string"){const a=l[0],f=t&&Object.hasOwn(t,a)?t[a]:void 0;if(f){let c=l[1];return typeof c!="number"&&(c=n.push(l[1])-1),r[o]=f(s(c))}switch(a){case"Date":r[o]=new Date(l[1]);break;case"Set":const c=new Set;r[o]=c;for(let d=1;d<l.length;d+=1)c.add(s(l[d]));break;case"Map":const u=new Map;r[o]=u;for(let d=1;d<l.length;d+=2)u.set(s(l[d]),s(l[d+1]));break;case"RegExp":r[o]=new RegExp(l[1],l[2]);break;case"Object":r[o]=Object(l[1]);break;case"BigInt":r[o]=BigInt(l[1]);break;case"null":const h=Object.create(null);r[o]=h;for(let d=1;d<l.length;d+=2)h[l[d]]=s(l[d+1]);break;case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":{const d=globalThis[a],_=new d(s(l[1]));r[o]=l[2]!==void 0?_.subarray(l[2],l[3]):_;break}case"ArrayBuffer":{const d=l[1],_=Oh(d);r[o]=_;break}case"Temporal.Duration":case"Temporal.Instant":case"Temporal.PlainDate":case"Temporal.PlainTime":case"Temporal.PlainDateTime":case"Temporal.PlainMonthDay":case"Temporal.PlainYearMonth":case"Temporal.ZonedDateTime":{const d=a.slice(9);r[o]=Temporal[d].from(l[1]);break}case"URL":{const d=new URL(l[1]);r[o]=d;break}case"URLSearchParams":{const d=new URLSearchParams(l[1]);r[o]=d;break}default:throw new Error(`Unknown type ${a}`)}}else{const a=new Array(l.length);r[o]=a;for(let f=0;f<l.length;f+=1){const c=l[f];c!==Lh&&(a[f]=s(c))}}else{const a={};r[o]=a;for(const f in l){if(f==="__proto__")throw new Error("Cannot parse an object with a `__proto__` property");const c=l[f];a[f]=s(c)}}return r[o]}return s(0)}const $h=new Set(["link","style","script","noscript"]),Vh=new Set(["title","titleTemplate","script","style","noscript"]),Oi=new Set(["base","meta","link","style","script","noscript"]),Wh=new Set(["title","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"]),Kh=new Set(["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"]),qh=new Set(["key","tagPosition","tagPriority","tagDuplicateStrategy","innerHTML","textContent","processTemplateParams"]),Gh=new Set(["templateParams","htmlAttrs","bodyAttrs"]),Jh=new Set(["theme-color","google-site-verification","og","article","book","profile","twitter","author"]),Yh=["name","property","http-equiv"],Qh=new Set(["viewport","description","keywords","robots"]);function tc(e){const t=e.split(":");return t.length?Jh.has(t[1]):!1}function Ws(e){const{props:t,tag:n}=e;if(Kh.has(n))return n;if(n==="link"&&t.rel==="canonical")return"canonical";if(t.charset)return"charset";if(e.tag==="meta"){for(const r of Yh)if(t[r]!==void 0){const s=t[r],o=s.includes(":"),i=Qh.has(s),a=!(o||i)&&e.key?`:key:${e.key}`:"";return`${n}:${s}${a}`}}if(e.key)return`${n}:key:${e.key}`;if(t.id)return`${n}:id:${t.id}`;if(Vh.has(n)){const r=e.textContent||e.innerHTML;if(r)return`${n}:content:${r}`}}function Ni(e){const t=e._h||e._d;if(t)return t;const n=e.textContent||e.innerHTML;return n||`${e.tag}:${Object.entries(e.props).map(([r,s])=>`${r}:${String(s)}`).join(",")}`}function Dr(e,t,n){typeof e==="function"&&(!n||n!=="titleTemplate"&&!(n[0]==="o"&&n[1]==="n"))&&(e=e());let s;if(t&&(s=t(n,e)),Array.isArray(s))return s.map(o=>Dr(o,t));if(s?.constructor===Object){const o={};for(const i of Object.keys(s))o[i]=Dr(s[i],t,i);return o}return s}function Xh(e,t){const n=e==="style"?new Map:new Set;function r(s){const o=s.trim();if(o)if(e==="style"){const[i,...l]=o.split(":").map(a=>a.trim());i&&l.length&&n.set(i,l.join(":"))}else o.split(" ").filter(Boolean).forEach(i=>n.add(i))}return typeof t=="string"?e==="style"?t.split(";").forEach(r):r(t):Array.isArray(t)?t.forEach(s=>r(s)):t&&typeof t=="object"&&Object.entries(t).forEach(([s,o])=>{o&&o!=="false"&&(e==="style"?n.set(s.trim(),o):r(s))}),n}function nc(e,t){return e.props=e.props||{},t?e.tag==="templateParams"?(e.props=t,e):(Object.entries(t).forEach(([n,r])=>{if(r===null){e.props[n]=null;return}if(n==="class"||n==="style"){e.props[n]=Xh(n,r);return}if(qh.has(n)){if(["textContent","innerHTML"].includes(n)&&typeof r=="object"){let i=t.type;if(t.type||(i="application/json"),!i?.endsWith("json")&&i!=="speculationrules")return;t.type=i,e.props.type=i,e[n]=JSON.stringify(r)}else e[n]=r;return}const s=String(r),o=n.startsWith("data-");s==="true"||s===""?e.props[n]=o?s:!0:!r&&o&&s==="false"?e.props[n]="false":r!==void 0&&(e.props[n]=r)}),e):e}function zh(e,t){const n=typeof t=="object"&&typeof t!="function"?t:{[e==="script"||e==="noscript"||e==="style"?"innerHTML":"textContent"]:t},r=nc({tag:e,props:{}},n);return r.key&&$h.has(r.tag)&&(r.props["data-hid"]=r._h=r.key),r.tag==="script"&&typeof r.innerHTML=="object"&&(r.innerHTML=JSON.stringify(r.innerHTML),r.props.type=r.props.type||"application/json"),Array.isArray(r.props.content)?r.props.content.map(s=>({...r,props:{...r.props,content:s}})):r}function Zh(e,t){if(!e)return[];typeof e=="function"&&(e=e());const n=(s,o)=>{for(let i=0;i<t.length;i++)o=t[i](s,o);return o};e=n(void 0,e);const r=[];return e=Dr(e,n),Object.entries(e||{}).forEach(([s,o])=>{if(o!==void 0)for(const i of Array.isArray(o)?o:[o])r.push(zh(s,i))}),r.flat()}const Ii=(e,t)=>e._w===t._w?e._p-t._p:e._w-t._w,Mi={base:-10,title:10},ep={critical:-8,high:-1,low:2},Li={meta:{"content-security-policy":-30,charset:-20,viewport:-15},link:{preconnect:20,stylesheet:60,preload:70,modulepreload:70,prefetch:90,"dns-prefetch":90,prerender:90},script:{async:30,defer:80,sync:50},style:{imported:40,sync:60}},tp=/@import/,Dn=e=>e===""||e===!0;function np(e,t){if(typeof t.tagPriority=="number")return t.tagPriority;let n=100;const r=ep[t.tagPriority]||0,s=e.resolvedOptions.disableCapoSorting?{link:{},script:{},style:{}}:Li;if(t.tag in Mi)n=Mi[t.tag];else if(t.tag==="meta"){const o=t.props["http-equiv"]==="content-security-policy"?"content-security-policy":t.props.charset?"charset":t.props.name==="viewport"?"viewport":null;o&&(n=Li.meta[o])}else t.tag==="link"&&t.props.rel?n=s.link[t.props.rel]:t.tag==="script"?Dn(t.props.async)?n=s.script.async:t.props.src&&!Dn(t.props.defer)&&!Dn(t.props.async)&&t.props.type!=="module"&&!t.props.type?.endsWith("json")?n=s.script.sync:Dn(t.props.defer)&&t.props.src&&!Dn(t.props.async)&&(n=s.script.defer):t.tag==="style"&&(n=t.innerHTML&&tp.test(t.innerHTML)?s.style.imported:s.style.sync);return(n||100)+r}function Hi(e,t){const n=typeof t=="function"?t(e):t,r=n.key||String(e.plugins.size+1);e.plugins.get(r)||(e.plugins.set(r,n),e.hooks.addHooks(n.hooks||{}))}function rp(e={}){const t=Ka();t.addHooks(e.hooks||{});const n=!e.document,r=new Map,s=new Map,o=new Set,i={_entryCount:1,plugins:s,dirty:!1,resolvedOptions:e,hooks:t,ssr:n,entries:r,headEntries(){return[...r.values()]},use:l=>Hi(i,l),push(l,a){const f={...a||{}};delete f.head;const c=f._index??i._entryCount++,u={_i:c,input:l,options:f},h={_poll(d=!1){i.dirty=!0,!d&&o.add(c),t.callHook("entries:updated",i)},dispose(){r.delete(c)&&i.invalidate()},patch(d){(!f.mode||f.mode==="server"&&n||f.mode==="client"&&!n)&&(u.input=d,r.set(c,u),h._poll())}};return h.patch(l),h},async resolveTags(){const l={tagMap:new Map,tags:[],entries:[...i.entries.values()]};for(await t.callHook("entries:resolve",l);o.size;){const h=o.values().next().value;o.delete(h);const d=r.get(h);if(d){const _={tags:Zh(d.input,e.propResolvers||[]).map(b=>Object.assign(b,d.options)),entry:d};await t.callHook("entries:normalize",_),d._tags=_.tags.map((b,T)=>(b._w=np(i,b),b._p=(d._i<<10)+T,b._d=Ws(b),b))}}let a=!1;l.entries.flatMap(h=>(h._tags||[]).map(d=>({...d,props:{...d.props}}))).sort(Ii).reduce((h,d)=>{const _=String(d._d||d._p);if(!h.has(_))return h.set(_,d);const b=h.get(_);if((d?.tagDuplicateStrategy||(Gh.has(d.tag)?"merge":null)||(d.key&&d.key===b.key?"merge":null))==="merge"){const R={...b.props};Object.entries(d.props).forEach(([v,g])=>R[v]=v==="style"?new Map([...b.props.style||new Map,...g]):v==="class"?new Set([...b.props.class||new Set,...g]):g),h.set(_,{...d,props:R})}else d._p>>10===b._p>>10&&d.tag==="meta"&&tc(_)?(h.set(_,Object.assign([...Array.isArray(b)?b:[b],d],d)),a=!0):(d._w===b._w?d._p>b._p:d?._w<b?._w)&&h.set(_,d);return h},l.tagMap);const f=l.tagMap.get("title"),c=l.tagMap.get("titleTemplate");if(i._title=f?.textContent,c){const h=c?.textContent;if(i._titleTemplate=h,h){let d=typeof h=="function"?h(f?.textContent):h;typeof d=="string"&&!i.plugins.has("template-params")&&(d=d.replace("%s",f?.textContent||"")),f?d===null?l.tagMap.delete("title"):l.tagMap.set("title",{...f,textContent:d}):(c.tag="title",c.textContent=d)}}l.tags=Array.from(l.tagMap.values()),a&&(l.tags=l.tags.flat().sort(Ii)),await t.callHook("tags:beforeResolve",l),await t.callHook("tags:resolve",l),await t.callHook("tags:afterResolve",l);const u=[];for(const h of l.tags){const{innerHTML:d,tag:_,props:b}=h;if(Wh.has(_)&&!(Object.keys(b).length===0&&!h.innerHTML&&!h.textContent)&&!(_==="meta"&&!b.content&&!b["http-equiv"]&&!b.charset)){if(_==="script"&&d){if(b.type?.endsWith("json")){const T=typeof d=="string"?d:JSON.stringify(d);h.innerHTML=T.replace(/</g,"\\u003C")}else typeof d=="string"&&(h.innerHTML=d.replace(new RegExp(`</${_}`,"g"),`<\\/${_}`));h._d=Ws(h)}u.push(h)}}return u},invalidate(){for(const l of r.values())o.add(l._i);i.dirty=!0,t.callHook("entries:updated",i)}};return(e?.plugins||[]).forEach(l=>Hi(i,l)),i.hooks.callHook("init",i),e.init?.forEach(l=>l&&i.push(l)),i}const sp=(e,t)=>_e(t)?iu(t):t,rc="usehead";function op(e){return{install(n){n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(rc,e)}}.install}function ip(){if(uo()){const e=Pe(rc);if(!e)throw new Error("useHead() was called without provide context, ensure you call it through the setup() function.");return e}throw new Error("useHead() was called without provide context, ensure you call it through the setup() function.")}function Sm(e,t={}){const n=t.head||ip();return n.ssr?n.push(e||{},t):lp(n,e,t)}function lp(e,t,n={}){const r=vt(!1);let s;return vu(()=>{const i=r.value?{}:Dr(t,sp);s?s.patch(i):s=e.push(i,n)}),Nn()&&(nr(()=>{s.dispose()}),ql(()=>{r.value=!0}),Kl(()=>{r.value=!1})),s}let _r,br;function ap(){return _r=$fetch(Eo(`builds/meta/${Xr().app.buildId}.json`),{responseType:"json"}),_r.then(e=>{br=Eh(e.matcher)}).catch(e=>{console.error("[nuxt] Error fetching app manifest.",e)}),_r}function es(){return _r||ap()}async function Ro(e){const t=typeof e=="string"?e:e.path;if(await es(),!br)return console.error("[nuxt] Error creating app manifest matcher.",br),{};try{return Qa({},...br.matchAll(t).reverse())}catch(n){return console.error("[nuxt] Error matching route rules.",n),{}}}async function Di(e,t={}){if(!await oc(e))return null;const r=await up(e,t);return await sc(r)||null}const cp="_payload.json";async function up(e,t={}){const n=new URL(e,"http://localhost");if(n.host!=="localhost"||rn(n.pathname,{acceptRelative:!0}))throw new Error("Payload URL must not include hostname: "+e);const r=Xr(),s=t.hash||(t.fresh?Date.now():r.app.buildId),o=r.app.cdnURL,i=o&&await oc(e)?o:r.app.baseURL;return vo(i,n.pathname,cp+(s?`?${s}`:""))}async function sc(e){const t=fetch(e,{cache:"force-cache"}).then(n=>n.text().then(ic));try{return await t}catch(n){console.warn("[nuxt] Cannot load payload ",e,n)}return null}async function oc(e=zr().path){const t=ve();return e=e==="/"?e:e.replace(/\/$/,""),(await es()).prerendered.includes(e)?!0:t.runWithContext(async()=>{const r=await Ro({path:e});return!!r.prerender&&!r.redirect})}let Wt=null;async function fp(){if(Wt)return Wt;const e=document.getElementById("__NUXT_DATA__");if(!e)return{};const t=await ic(e.textContent||""),n=e.dataset.src?await sc(e.dataset.src):void 0;return Wt={...t,...n,...window.__NUXT__},Wt.config?.public&&(Wt.config.public=jt(Wt.config.public)),Wt}async function ic(e){return await Bh(e,ve()._payloadRevivers)}function dp(e,t){ve()._payloadRevivers[e]=t}const hp=[["NuxtError",e=>Xt(e)],["EmptyShallowRef",e=>En(e==="_"?void 0:e==="0n"?BigInt(0):Nr(e))],["EmptyRef",e=>vt(e==="_"?void 0:e==="0n"?BigInt(0):Nr(e))],["ShallowRef",e=>En(e)],["ShallowReactive",e=>at(e)],["Ref",e=>vt(e)],["Reactive",e=>jt(e)]],pp=ft({name:"nuxt:revive-payload:client",order:-30,async setup(e){let t,n;for(const[r,s]of hp)dp(r,s);Object.assign(e.payload,([t,n]=vn(()=>e.runWithContext(fp)),t=await t,n(),t)),delete window.__NUXT__}});async function To(e,t={}){const n=t.document||e.resolvedOptions.document;if(!n||!e.dirty)return;const r={shouldRender:!0,tags:[]};if(await e.hooks.callHook("dom:beforeRender",r),!!r.shouldRender)return e._domUpdatePromise||(e._domUpdatePromise=new Promise(async s=>{const o=new Map,i=new Promise(d=>{e.resolveTags().then(_=>{d(_.map(b=>{const T=o.get(b._d)||0,R={tag:b,id:(T?`${b._d}:${T}`:b._d)||Ni(b),shouldRender:!0};return b._d&&tc(b._d)&&o.set(b._d,T+1),R}))})});let l=e._dom;if(!l){l={title:n.title,elMap:new Map().set("htmlAttrs",n.documentElement).set("bodyAttrs",n.body)};for(const d of["body","head"]){const _=n[d]?.children;for(const b of _){const T=b.tagName.toLowerCase();if(!Oi.has(T))continue;const R=nc({tag:T,props:{}},{innerHTML:b.innerHTML,...b.getAttributeNames().reduce((v,g)=>(v[g]=b.getAttribute(g),v),{})||{}});if(R.key=b.getAttribute("data-hid")||void 0,R._d=Ws(R)||Ni(R),l.elMap.has(R._d)){let v=1,g=R._d;for(;l.elMap.has(g);)g=`${R._d}:${v++}`;l.elMap.set(g,b)}else l.elMap.set(R._d,b)}}}l.pendingSideEffects={...l.sideEffects},l.sideEffects={};function a(d,_,b){const T=`${d}:${_}`;l.sideEffects[T]=b,delete l.pendingSideEffects[T]}function f({id:d,$el:_,tag:b}){const T=b.tag.endsWith("Attrs");l.elMap.set(d,_),T||(b.textContent&&b.textContent!==_.textContent&&(_.textContent=b.textContent),b.innerHTML&&b.innerHTML!==_.innerHTML&&(_.innerHTML=b.innerHTML),a(d,"el",()=>{_?.remove(),l.elMap.delete(d)}));for(const R in b.props){if(!Object.prototype.hasOwnProperty.call(b.props,R))continue;const v=b.props[R];if(R.startsWith("on")&&typeof v=="function"){const y=_?.dataset;if(y&&y[`${R}fired`]){const w=R.slice(0,-5);v.call(_,new Event(w.substring(2)))}_.getAttribute(`data-${R}`)!==""&&((b.tag==="bodyAttrs"?n.defaultView:_).addEventListener(R.substring(2),v.bind(_)),_.setAttribute(`data-${R}`,""));continue}const g=`attr:${R}`;if(R==="class"){if(!v)continue;for(const y of v)T&&a(d,`${g}:${y}`,()=>_.classList.remove(y)),!_.classList.contains(y)&&_.classList.add(y)}else if(R==="style"){if(!v)continue;for(const[y,w]of v)a(d,`${g}:${y}`,()=>{_.style.removeProperty(y)}),_.style.setProperty(y,w)}else v!==!1&&v!==null&&(_.getAttribute(R)!==v&&_.setAttribute(R,v===!0?"":String(v)),T&&a(d,g,()=>_.removeAttribute(R)))}}const c=[],u={bodyClose:void 0,bodyOpen:void 0,head:void 0},h=await i;for(const d of h){const{tag:_,shouldRender:b,id:T}=d;if(b){if(_.tag==="title"){n.title=_.textContent,a("title","",()=>n.title=l.title);continue}d.$el=d.$el||l.elMap.get(T),d.$el?f(d):Oi.has(_.tag)&&c.push(d)}}for(const d of c){const _=d.tag.tagPosition||"head";d.$el=n.createElement(d.tag.tag),f(d),u[_]=u[_]||n.createDocumentFragment(),u[_].appendChild(d.$el)}for(const d of h)await e.hooks.callHook("dom:renderTag",d,n,a);u.head&&n.head.appendChild(u.head),u.bodyOpen&&n.body.insertBefore(u.bodyOpen,n.body.firstChild),u.bodyClose&&n.body.appendChild(u.bodyClose);for(const d in l.pendingSideEffects)l.pendingSideEffects[d]();e._dom=l,await e.hooks.callHook("dom:rendered",{renders:h}),s()}).finally(()=>{e._domUpdatePromise=void 0,e.dirty=!1})),e._domUpdatePromise}function gp(e={}){const t=e.domOptions?.render||To;e.document=e.document||(typeof window<"u"?document:void 0);const n=e.document?.head.querySelector('script[id="unhead:payload"]')?.innerHTML||!1;return rp({...e,plugins:[...e.plugins||[],{key:"client",hooks:{"entries:updated":t}}],init:[n?JSON.parse(n):!1,...e.init||[]]})}function mp(e,t){let n=0;return()=>{const r=++n;t(()=>{n===r&&e()})}}function yp(e={}){const t=gp({domOptions:{render:mp(()=>To(t),n=>setTimeout(n,0))},...e});return t.install=op(t),t}const _p={disableDefaults:!0},bp=ft({name:"nuxt:head",enforce:"pre",setup(e){const t=yp(_p);e.vueApp.use(t);{let n=!0;const r=async()=>{n=!1,await To(t)};t.hooks.hook("dom:beforeRender",s=>{s.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",()=>{e.isHydrating||r()}),e.hooks.hook("app:error",r),e.hooks.hook("app:suspense:resolve",r)}}});const un=typeof document<"u";function lc(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function vp(e){return e.__esModule||e[Symbol.toStringTag]==="Module"||e.default&&lc(e.default)}const re=Object.assign;function _s(e,t){const n={};for(const r in t){const s=t[r];n[r]=nt(s)?s.map(e):e(s)}return n}const qn=()=>{},nt=Array.isArray;function ji(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}const ac=/#/g,wp=/&/g,Ep=/\//g,Rp=/=/g,Tp=/\?/g,cc=/\+/g,Cp=/%5B/g,Sp=/%5D/g,uc=/%5E/g,Ap=/%60/g,fc=/%7B/g,xp=/%7C/g,dc=/%7D/g,Pp=/%20/g;function Co(e){return e==null?"":encodeURI(""+e).replace(xp,"|").replace(Cp,"[").replace(Sp,"]")}function kp(e){return Co(e).replace(fc,"{").replace(dc,"}").replace(uc,"^")}function Ks(e){return Co(e).replace(cc,"%2B").replace(Pp,"+").replace(ac,"%23").replace(wp,"%26").replace(Ap,"`").replace(fc,"{").replace(dc,"}").replace(uc,"^")}function Op(e){return Ks(e).replace(Rp,"%3D")}function Np(e){return Co(e).replace(ac,"%23").replace(Tp,"%3F")}function Ip(e){return Np(e).replace(Ep,"%2F")}function zn(e){if(e==null)return null;try{return decodeURIComponent(""+e)}catch{}return""+e}const Mp=/\/$/,Lp=e=>e.replace(Mp,"");function bs(e,t,n="/"){let r,s={},o="",i="";const l=t.indexOf("#");let a=t.indexOf("?");return a=l>=0&&a>l?-1:a,a>=0&&(r=t.slice(0,a),o=t.slice(a,l>0?l:t.length),s=e(o.slice(1))),l>=0&&(r=r||t.slice(0,l),i=t.slice(l,t.length)),r=Fp(r??t,n),{fullPath:r+o+i,path:r,query:s,hash:zn(i)}}function Hp(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Fi(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Dp(e,t,n){const r=t.matched.length-1,s=n.matched.length-1;return r>-1&&r===s&&An(t.matched[r],n.matched[s])&&hc(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function An(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function hc(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e)if(!jp(e[n],t[n]))return!1;return!0}function jp(e,t){return nt(e)?Bi(e,t):nt(t)?Bi(t,e):e?.valueOf()===t?.valueOf()}function Bi(e,t){return nt(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Fp(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),s=r[r.length-1];(s===".."||s===".")&&r.push("");let o=n.length-1,i,l;for(i=0;i<r.length;i++)if(l=r[i],l!==".")if(l==="..")o>1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(i).join("/")}const Ke={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0};let qs=(function(e){return e.pop="pop",e.push="push",e})({}),vs=(function(e){return e.back="back",e.forward="forward",e.unknown="",e})({});function Bp(e){if(!e)if(un){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),Lp(e)}const Up=/^[^#]+#/;function $p(e,t){return e.replace(Up,"#")+t}function Vp(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const ts=()=>({left:window.scrollX,top:window.scrollY});function Wp(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=Vp(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.scrollX,t.top!=null?t.top:window.scrollY)}function Ui(e,t){return(history.state?history.state.position-t:-1)+e}const Gs=new Map;function Kp(e,t){Gs.set(e,t)}function qp(e){const t=Gs.get(e);return Gs.delete(e),t}function Gp(e){return typeof e=="string"||e&&typeof e=="object"}function pc(e){return typeof e=="string"||typeof e=="symbol"}let ge=(function(e){return e[e.MATCHER_NOT_FOUND=1]="MATCHER_NOT_FOUND",e[e.NAVIGATION_GUARD_REDIRECT=2]="NAVIGATION_GUARD_REDIRECT",e[e.NAVIGATION_ABORTED=4]="NAVIGATION_ABORTED",e[e.NAVIGATION_CANCELLED=8]="NAVIGATION_CANCELLED",e[e.NAVIGATION_DUPLICATED=16]="NAVIGATION_DUPLICATED",e})({});const gc=Symbol("");ge.MATCHER_NOT_FOUND+"",ge.NAVIGATION_GUARD_REDIRECT+"",ge.NAVIGATION_ABORTED+"",ge.NAVIGATION_CANCELLED+"",ge.NAVIGATION_DUPLICATED+"";function xn(e,t){return re(new Error,{type:e,[gc]:!0},t)}function pt(e,t){return e instanceof Error&&gc in e&&(t==null||!!(e.type&t))}const Jp=["params","query","hash"];function Yp(e){if(typeof e=="string")return e;if(e.path!=null)return e.path;const t={};for(const n of Jp)n in e&&(t[n]=e[n]);return JSON.stringify(t,null,2)}function Qp(e){const t={};if(e===""||e==="?")return t;const n=(e[0]==="?"?e.slice(1):e).split("&");for(let r=0;r<n.length;++r){const s=n[r].replace(cc," "),o=s.indexOf("="),i=zn(o<0?s:s.slice(0,o)),l=o<0?null:zn(s.slice(o+1));if(i in t){let a=t[i];nt(a)||(a=t[i]=[a]),a.push(l)}else t[i]=l}return t}function $i(e){let t="";for(let n in e){const r=e[n];if(n=Op(n),r==null){r!==void 0&&(t+=(t.length?"&":"")+n);continue}(nt(r)?r.map(s=>s&&Ks(s)):[r&&Ks(r)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function Xp(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=nt(r)?r.map(s=>s==null?null:""+s):r==null?r:""+r)}return t}const zp=Symbol(""),Vi=Symbol(""),So=Symbol(""),Ao=Symbol(""),Js=Symbol("");function jn(){let e=[];function t(r){return e.push(r),()=>{const s=e.indexOf(r);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function Nt(e,t,n,r,s,o=i=>i()){const i=r&&(r.enterCallbacks[s]=r.enterCallbacks[s]||[]);return()=>new Promise((l,a)=>{const f=h=>{h===!1?a(xn(ge.NAVIGATION_ABORTED,{from:n,to:t})):h instanceof Error?a(h):Gp(h)?a(xn(ge.NAVIGATION_GUARD_REDIRECT,{from:t,to:h})):(i&&r.enterCallbacks[s]===i&&typeof h=="function"&&i.push(h),l())},c=o(()=>e.call(r&&r.instances[s],t,n,f));let u=Promise.resolve(c);e.length<3&&(u=u.then(f)),u.catch(h=>a(h))})}function ws(e,t,n,r,s=o=>o()){const o=[];for(const i of e)for(const l in i.components){let a=i.components[l];if(!(t!=="beforeRouteEnter"&&!i.instances[l]))if(lc(a)){const f=(a.__vccOpts||a)[t];f&&o.push(Nt(f,n,r,i,l,s))}else{let f=a();o.push(()=>f.then(c=>{if(!c)throw new Error(`Couldn't resolve component "${l}" at "${i.path}"`);const u=vp(c)?c.default:c;i.mods[l]=c,i.components[l]=u;const h=(u.__vccOpts||u)[t];return h&&Nt(h,n,r,i,l,s)()}))}}return o}function Zp(e,t){const n=[],r=[],s=[],o=Math.max(t.matched.length,e.matched.length);for(let i=0;i<o;i++){const l=t.matched[i];l&&(e.matched.find(f=>An(f,l))?r.push(l):n.push(l));const a=e.matched[i];a&&(t.matched.find(f=>An(f,a))||s.push(a))}return[n,r,s]}let eg=()=>location.protocol+"//"+location.host;function mc(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){let i=s.includes(e.slice(o))?e.slice(o).length:1,l=s.slice(i);return l[0]!=="/"&&(l="/"+l),Fi(l,"")}return Fi(n,e)+r+s}function tg(e,t,n,r){let s=[],o=[],i=null;const l=({state:h})=>{const d=mc(e,location),_=n.value,b=t.value;let T=0;if(h){if(n.value=d,t.value=h,i&&i===_){i=null;return}T=b?h.position-b.position:0}else r(d);s.forEach(R=>{R(n.value,_,{delta:T,type:qs.pop,direction:T?T>0?vs.forward:vs.back:vs.unknown})})};function a(){i=n.value}function f(h){s.push(h);const d=()=>{const _=s.indexOf(h);_>-1&&s.splice(_,1)};return o.push(d),d}function c(){if(document.visibilityState==="hidden"){const{history:h}=window;if(!h.state)return;h.replaceState(re({},h.state,{scroll:ts()}),"")}}function u(){for(const h of o)h();o=[],window.removeEventListener("popstate",l),window.removeEventListener("pagehide",c),document.removeEventListener("visibilitychange",c)}return window.addEventListener("popstate",l),window.addEventListener("pagehide",c),document.addEventListener("visibilitychange",c),{pauseListeners:a,listen:f,destroy:u}}function Wi(e,t,n,r=!1,s=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:s?ts():null}}function ng(e){const{history:t,location:n}=window,r={value:mc(e,n)},s={value:t.state};s.value||o(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function o(a,f,c){const u=e.indexOf("#"),h=u>-1?(n.host&&document.querySelector("base")?e:e.slice(u))+a:eg()+e+a;try{t[c?"replaceState":"pushState"](f,"",h),s.value=f}catch(d){console.error(d),n[c?"replace":"assign"](h)}}function i(a,f){o(a,re({},t.state,Wi(s.value.back,a,s.value.forward,!0),f,{position:s.value.position}),!0),r.value=a}function l(a,f){const c=re({},s.value,t.state,{forward:a,scroll:ts()});o(c.current,c,!0),o(a,re({},Wi(r.value,a,null),{position:c.position+1},f),!1),r.value=a}return{location:r,state:s,push:l,replace:i}}function rg(e){e=Bp(e);const t=ng(e),n=tg(e,t.state,t.location,t.replace);function r(o,i=!0){i||n.pauseListeners(),history.go(o)}const s=re({location:"",base:e,go:r,createHref:$p.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}let Gt=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.Group=2]="Group",e})({});var be=(function(e){return e[e.Static=0]="Static",e[e.Param=1]="Param",e[e.ParamRegExp=2]="ParamRegExp",e[e.ParamRegExpEnd=3]="ParamRegExpEnd",e[e.EscapeNext=4]="EscapeNext",e})(be||{});const sg={type:Gt.Static,value:""},og=/[a-zA-Z0-9_]/;function ig(e){if(!e)return[[]];if(e==="/")return[[sg]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(d){throw new Error(`ERR (${n})/"${f}": ${d}`)}let n=be.Static,r=n;const s=[];let o;function i(){o&&s.push(o),o=[]}let l=0,a,f="",c="";function u(){f&&(n===be.Static?o.push({type:Gt.Static,value:f}):n===be.Param||n===be.ParamRegExp||n===be.ParamRegExpEnd?(o.length>1&&(a==="*"||a==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),o.push({type:Gt.Param,value:f,regexp:c,repeatable:a==="*"||a==="+",optional:a==="*"||a==="?"})):t("Invalid state to consume buffer"),f="")}function h(){f+=a}for(;l<e.length;){if(a=e[l++],a==="\\"&&n!==be.ParamRegExp){r=n,n=be.EscapeNext;continue}switch(n){case be.Static:a==="/"?(f&&u(),i()):a===":"?(u(),n=be.Param):h();break;case be.EscapeNext:h(),n=r;break;case be.Param:a==="("?n=be.ParamRegExp:og.test(a)?h():(u(),n=be.Static,a!=="*"&&a!=="?"&&a!=="+"&&l--);break;case be.ParamRegExp:a===")"?c[c.length-1]=="\\"?c=c.slice(0,-1)+a:n=be.ParamRegExpEnd:c+=a;break;case be.ParamRegExpEnd:u(),n=be.Static,a!=="*"&&a!=="?"&&a!=="+"&&l--,c="";break;default:t("Unknown state");break}}return n===be.ParamRegExp&&t(`Unfinished custom RegExp for param "${f}"`),u(),i(),s}const Ki="[^/]+?",lg={sensitive:!1,strict:!1,start:!0,end:!0};var Oe=(function(e){return e[e._multiplier=10]="_multiplier",e[e.Root=90]="Root",e[e.Segment=40]="Segment",e[e.SubSegment=30]="SubSegment",e[e.Static=40]="Static",e[e.Dynamic=20]="Dynamic",e[e.BonusCustomRegExp=10]="BonusCustomRegExp",e[e.BonusWildcard=-50]="BonusWildcard",e[e.BonusRepeatable=-20]="BonusRepeatable",e[e.BonusOptional=-8]="BonusOptional",e[e.BonusStrict=.7000000000000001]="BonusStrict",e[e.BonusCaseSensitive=.25]="BonusCaseSensitive",e})(Oe||{});const ag=/[.+*?^${}()[\]/\\]/g;function cg(e,t){const n=re({},lg,t),r=[];let s=n.start?"^":"";const o=[];for(const f of e){const c=f.length?[]:[Oe.Root];n.strict&&!f.length&&(s+="/");for(let u=0;u<f.length;u++){const h=f[u];let d=Oe.Segment+(n.sensitive?Oe.BonusCaseSensitive:0);if(h.type===Gt.Static)u||(s+="/"),s+=h.value.replace(ag,"\\$&"),d+=Oe.Static;else if(h.type===Gt.Param){const{value:_,repeatable:b,optional:T,regexp:R}=h;o.push({name:_,repeatable:b,optional:T});const v=R||Ki;if(v!==Ki){d+=Oe.BonusCustomRegExp;try{`${v}`}catch(y){throw new Error(`Invalid custom RegExp for param "${_}" (${v}): `+y.message)}}let g=b?`((?:${v})(?:/(?:${v}))*)`:`(${v})`;u||(g=T&&f.length<2?`(?:/${g})`:"/"+g),T&&(g+="?"),s+=g,d+=Oe.Dynamic,T&&(d+=Oe.BonusOptional),b&&(d+=Oe.BonusRepeatable),v===".*"&&(d+=Oe.BonusWildcard)}c.push(d)}r.push(c)}if(n.strict&&n.end){const f=r.length-1;r[f][r[f].length-1]+=Oe.BonusStrict}n.strict||(s+="/?"),n.end?s+="$":n.strict&&!s.endsWith("/")&&(s+="(?:/|$)");const i=new RegExp(s,n.sensitive?"":"i");function l(f){const c=f.match(i),u={};if(!c)return null;for(let h=1;h<c.length;h++){const d=c[h]||"",_=o[h-1];u[_.name]=d&&_.repeatable?d.split("/"):d}return u}function a(f){let c="",u=!1;for(const h of e){(!u||!c.endsWith("/"))&&(c+="/"),u=!1;for(const d of h)if(d.type===Gt.Static)c+=d.value;else if(d.type===Gt.Param){const{value:_,repeatable:b,optional:T}=d,R=_ in f?f[_]:"";if(nt(R)&&!b)throw new Error(`Provided param "${_}" is an array but it is not repeatable (* or + modifiers)`);const v=nt(R)?R.join("/"):R;if(!v)if(T)h.length<2&&(c.endsWith("/")?c=c.slice(0,-1):u=!0);else throw new Error(`Missing required param "${_}"`);c+=v}}return c||"/"}return{re:i,score:r,keys:o,parse:l,stringify:a}}function ug(e,t){let n=0;for(;n<e.length&&n<t.length;){const r=t[n]-e[n];if(r)return r;n++}return e.length<t.length?e.length===1&&e[0]===Oe.Static+Oe.Segment?-1:1:e.length>t.length?t.length===1&&t[0]===Oe.Static+Oe.Segment?1:-1:0}function yc(e,t){let n=0;const r=e.score,s=t.score;for(;n<r.length&&n<s.length;){const o=ug(r[n],s[n]);if(o)return o;n++}if(Math.abs(s.length-r.length)===1){if(qi(r))return 1;if(qi(s))return-1}return s.length-r.length}function qi(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const fg={strict:!1,end:!0,sensitive:!1};function dg(e,t,n){const r=cg(ig(e.path),n),s=re(r,{record:e,parent:t,children:[],alias:[]});return t&&!s.record.aliasOf==!t.record.aliasOf&&t.children.push(s),s}function hg(e,t){const n=[],r=new Map;t=ji(fg,t);function s(u){return r.get(u)}function o(u,h,d){const _=!d,b=Ji(u);b.aliasOf=d&&d.record;const T=ji(t,u),R=[b];if("alias"in u){const y=typeof u.alias=="string"?[u.alias]:u.alias;for(const w of y)R.push(Ji(re({},b,{components:d?d.record.components:b.components,path:w,aliasOf:d?d.record:b})))}let v,g;for(const y of R){const{path:w}=y;if(h&&w[0]!=="/"){const x=h.record.path,L=x[x.length-1]==="/"?"":"/";y.path=h.record.path+(w&&L+w)}if(v=dg(y,h,T),d?d.alias.push(v):(g=g||v,g!==v&&g.alias.push(v),_&&u.name&&!Yi(v)&&i(u.name)),_c(v)&&a(v),b.children){const x=b.children;for(let L=0;L<x.length;L++)o(x[L],v,d&&d.children[L])}d=d||v}return g?()=>{i(g)}:qn}function i(u){if(pc(u)){const h=r.get(u);h&&(r.delete(u),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(u);h>-1&&(n.splice(h,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function l(){return n}function a(u){const h=mg(u,n);n.splice(h,0,u),u.record.name&&!Yi(u)&&r.set(u.record.name,u)}function f(u,h){let d,_={},b,T;if("name"in u&&u.name){if(d=r.get(u.name),!d)throw xn(ge.MATCHER_NOT_FOUND,{location:u});T=d.record.name,_=re(Gi(h.params,d.keys.filter(g=>!g.optional).concat(d.parent?d.parent.keys.filter(g=>g.optional):[]).map(g=>g.name)),u.params&&Gi(u.params,d.keys.map(g=>g.name))),b=d.stringify(_)}else if(u.path!=null)b=u.path,d=n.find(g=>g.re.test(b)),d&&(_=d.parse(b),T=d.record.name);else{if(d=h.name?r.get(h.name):n.find(g=>g.re.test(h.path)),!d)throw xn(ge.MATCHER_NOT_FOUND,{location:u,currentLocation:h});T=d.record.name,_=re({},h.params,u.params),b=d.stringify(_)}const R=[];let v=d;for(;v;)R.unshift(v.record),v=v.parent;return{name:T,path:b,params:_,matched:R,meta:gg(R)}}e.forEach(u=>o(u));function c(){n.length=0,r.clear()}return{addRoute:o,resolve:f,removeRoute:i,clearRoutes:c,getRoutes:l,getRecordMatcher:s}}function Gi(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Ji(e){const t={path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:e.aliasOf,beforeEnter:e.beforeEnter,props:pg(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}};return Object.defineProperty(t,"mods",{value:{}}),t}function pg(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Yi(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function gg(e){return e.reduce((t,n)=>re(t,n.meta),{})}function mg(e,t){let n=0,r=t.length;for(;n!==r;){const o=n+r>>1;yc(e,t[o])<0?r=o:n=o+1}const s=yg(e);return s&&(r=t.lastIndexOf(s,r-1)),r}function yg(e){let t=e;for(;t=t.parent;)if(_c(t)&&yc(e,t)===0)return t}function _c({record:e}){return!!(e.name||e.components&&Object.keys(e.components).length||e.redirect)}function Qi(e){const t=Pe(So),n=Pe(Ao),r=Ge(()=>{const a=fe(e.to);return t.resolve(a)}),s=Ge(()=>{const{matched:a}=r.value,{length:f}=a,c=a[f-1],u=n.matched;if(!c||!u.length)return-1;const h=u.findIndex(An.bind(null,c));if(h>-1)return h;const d=Xi(a[f-2]);return f>1&&Xi(c)===d&&u[u.length-1].path!==d?u.findIndex(An.bind(null,a[f-2])):h}),o=Ge(()=>s.value>-1&&Eg(n.params,r.value.params)),i=Ge(()=>s.value>-1&&s.value===n.matched.length-1&&hc(n.params,r.value.params));function l(a={}){if(wg(a)){const f=t[fe(e.replace)?"replace":"push"](fe(e.to)).catch(qn);return e.viewTransition&&typeof document<"u"&&"startViewTransition"in document&&document.startViewTransition(()=>f),f}return Promise.resolve()}return{route:r,href:Ge(()=>r.value.href),isActive:o,isExactActive:i,navigate:l}}function _g(e){return e.length===1?e[0]:e}const bg=Ft({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"},viewTransition:Boolean},useLink:Qi,setup(e,{slots:t}){const n=jt(Qi(e)),{options:r}=Pe(So),s=Ge(()=>({[zi(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[zi(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&_g(t.default(n));return e.custom?o:xe("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},o)}}}),vg=bg;function wg(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function Eg(e,t){for(const n in t){const r=t[n],s=e[n];if(typeof r=="string"){if(r!==s)return!1}else if(!nt(s)||s.length!==r.length||r.some((o,i)=>o.valueOf()!==s[i].valueOf()))return!1}return!0}function Xi(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const zi=(e,t,n)=>e??t??n,Rg=Ft({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=Pe(Js),s=Ge(()=>e.route||r.value),o=Pe(Vi,0),i=Ge(()=>{let f=fe(o);const{matched:c}=s.value;let u;for(;(u=c[f])&&!u.components;)f++;return f}),l=Ge(()=>s.value.matched[i.value]);Ht(Vi,Ge(()=>i.value+1)),Ht(zp,l),Ht(Js,s);const a=vt();return yn(()=>[a.value,l.value,e.name],([f,c,u],[h,d,_])=>{c&&(c.instances[u]=f,d&&d!==c&&f&&f===h&&(c.leaveGuards.size||(c.leaveGuards=d.leaveGuards),c.updateGuards.size||(c.updateGuards=d.updateGuards))),f&&c&&(!d||!An(c,d)||!h)&&(c.enterCallbacks[u]||[]).forEach(b=>b(f))},{flush:"post"}),()=>{const f=s.value,c=e.name,u=l.value,h=u&&u.components[c];if(!h)return Zi(n.default,{Component:h,route:f});const d=u.props[c],_=d?d===!0?f.params:typeof d=="function"?d(f):d:null,T=xe(h,re({},_,t,{onVnodeUnmounted:R=>{R.component.isUnmounted&&(u.instances[c]=null)},ref:a}));return Zi(n.default,{Component:T,route:f})||T}}});function Zi(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const bc=Rg;function Tg(e){const t=hg(e.routes,e),n=e.parseQuery||Qp,r=e.stringifyQuery||$i,s=e.history,o=jn(),i=jn(),l=jn(),a=En(Ke);let f=Ke;un&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const c=_s.bind(null,S=>""+S),u=_s.bind(null,Ip),h=_s.bind(null,zn);function d(S,U){let j,J;return pc(S)?(j=t.getRecordMatcher(S),J=U):J=S,t.addRoute(J,j)}function _(S){const U=t.getRecordMatcher(S);U&&t.removeRoute(U)}function b(){return t.getRoutes().map(S=>S.record)}function T(S){return!!t.getRecordMatcher(S)}function R(S,U){if(U=re({},U||a.value),typeof S=="string"){const m=bs(n,S,U.path),E=t.resolve({path:m.path},U),A=s.createHref(m.fullPath);return re(m,E,{params:h(E.params),hash:zn(m.hash),redirectedFrom:void 0,href:A})}let j;if(S.path!=null)j=re({},S,{path:bs(n,S.path,U.path).path});else{const m=re({},S.params);for(const E in m)m[E]==null&&delete m[E];j=re({},S,{params:u(m)}),U.params=u(U.params)}const J=t.resolve(j,U),Z=S.hash||"";J.params=c(h(J.params));const he=Hp(r,re({},S,{hash:kp(Z),path:J.path})),p=s.createHref(he);return re({fullPath:he,hash:Z,query:r===$i?Xp(S.query):S.query||{}},J,{redirectedFrom:void 0,href:p})}function v(S){return typeof S=="string"?bs(n,S,a.value.path):re({},S)}function g(S,U){if(f!==S)return xn(ge.NAVIGATION_CANCELLED,{from:U,to:S})}function y(S){return L(S)}function w(S){return y(re(v(S),{replace:!0}))}function x(S,U){const j=S.matched[S.matched.length-1];if(j&&j.redirect){const{redirect:J}=j;let Z=typeof J=="function"?J(S,U):J;return typeof Z=="string"&&(Z=Z.includes("?")||Z.includes("#")?Z=v(Z):{path:Z},Z.params={}),re({query:S.query,hash:S.hash,params:Z.path!=null?{}:S.params},Z)}}function L(S,U){const j=f=R(S),J=a.value,Z=S.state,he=S.force,p=S.replace===!0,m=x(j,J);if(m)return L(re(v(m),{state:typeof m=="object"?re({},Z,m.state):Z,force:he,replace:p}),U||j);const E=j;E.redirectedFrom=U;let A;return!he&&Dp(r,J,j)&&(A=xn(ge.NAVIGATION_DUPLICATED,{to:E,from:J}),rt(J,J,!0,!1)),(A?Promise.resolve(A):N(E,J)).catch(C=>pt(C)?pt(C,ge.NAVIGATION_GUARD_REDIRECT)?C:St(C):B(C,E,J)).then(C=>{if(C){if(pt(C,ge.NAVIGATION_GUARD_REDIRECT))return L(re({replace:p},v(C.to),{state:typeof C.to=="object"?re({},Z,C.to.state):Z,force:he}),U||E)}else C=O(E,J,!0,p,Z);return W(E,J,C),C})}function V(S,U){const j=g(S,U);return j?Promise.reject(j):Promise.resolve()}function I(S){const U=on.values().next().value;return U&&typeof U.runWithContext=="function"?U.runWithContext(S):S()}function N(S,U){let j;const[J,Z,he]=Zp(S,U);j=ws(J.reverse(),"beforeRouteLeave",S,U);for(const m of J)m.leaveGuards.forEach(E=>{j.push(Nt(E,S,U))});const p=V.bind(null,S,U);return j.push(p),Ve(j).then(()=>{j=[];for(const m of o.list())j.push(Nt(m,S,U));return j.push(p),Ve(j)}).then(()=>{j=ws(Z,"beforeRouteUpdate",S,U);for(const m of Z)m.updateGuards.forEach(E=>{j.push(Nt(E,S,U))});return j.push(p),Ve(j)}).then(()=>{j=[];for(const m of he)if(m.beforeEnter)if(nt(m.beforeEnter))for(const E of m.beforeEnter)j.push(Nt(E,S,U));else j.push(Nt(m.beforeEnter,S,U));return j.push(p),Ve(j)}).then(()=>(S.matched.forEach(m=>m.enterCallbacks={}),j=ws(he,"beforeRouteEnter",S,U,I),j.push(p),Ve(j))).then(()=>{j=[];for(const m of i.list())j.push(Nt(m,S,U));return j.push(p),Ve(j)}).catch(m=>pt(m,ge.NAVIGATION_CANCELLED)?m:Promise.reject(m))}function W(S,U,j){l.list().forEach(J=>I(()=>J(S,U,j)))}function O(S,U,j,J,Z){const he=g(S,U);if(he)return he;const p=U===Ke,m=un?history.state:{};j&&(J||p?s.replace(S.fullPath,re({scroll:p&&m&&m.scroll},Z)):s.push(S.fullPath,Z)),a.value=S,rt(S,U,j,p),St()}let K;function ee(){K||(K=s.listen((S,U,j)=>{if(!Bt.listening)return;const J=R(S),Z=x(J,Bt.currentRoute.value);if(Z){L(re(Z,{replace:!0,force:!0}),J).catch(qn);return}f=J;const he=a.value;un&&Kp(Ui(he.fullPath,j.delta),ts()),N(J,he).catch(p=>pt(p,ge.NAVIGATION_ABORTED|ge.NAVIGATION_CANCELLED)?p:pt(p,ge.NAVIGATION_GUARD_REDIRECT)?(L(re(v(p.to),{force:!0}),J).then(m=>{pt(m,ge.NAVIGATION_ABORTED|ge.NAVIGATION_DUPLICATED)&&!j.delta&&j.type===qs.pop&&s.go(-1,!1)}).catch(qn),Promise.reject()):(j.delta&&s.go(-j.delta,!1),B(p,J,he))).then(p=>{p=p||O(J,he,!1),p&&(j.delta&&!pt(p,ge.NAVIGATION_CANCELLED)?s.go(-j.delta,!1):j.type===qs.pop&&pt(p,ge.NAVIGATION_ABORTED|ge.NAVIGATION_DUPLICATED)&&s.go(-1,!1)),W(J,he,p)}).catch(qn)}))}let le=jn(),$=jn(),X;function B(S,U,j){St(S);const J=$.list();return J.length?J.forEach(Z=>Z(S,U,j)):console.error(S),Promise.reject(S)}function de(){return X&&a.value!==Ke?Promise.resolve():new Promise((S,U)=>{le.add([S,U])})}function St(S){return X||(X=!S,ee(),le.list().forEach(([U,j])=>S?j(S):U()),le.reset()),S}function rt(S,U,j,J){const{scrollBehavior:Z}=e;if(!un||!Z)return Promise.resolve();const he=!j&&qp(Ui(S.fullPath,0))||(J||!j)&&history.state&&history.state.scroll||null;return Zt().then(()=>Z(S,U,he)).then(p=>p&&Wp(p)).catch(p=>B(p,S,U))}const Ie=S=>s.go(S);let sn;const on=new Set,Bt={currentRoute:a,listening:!0,addRoute:d,removeRoute:_,clearRoutes:t.clearRoutes,hasRoute:T,getRoutes:b,resolve:R,options:e,push:y,replace:w,go:Ie,back:()=>Ie(-1),forward:()=>Ie(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:$.add,isReady:de,install(S){S.component("RouterLink",vg),S.component("RouterView",bc),S.config.globalProperties.$router=Bt,Object.defineProperty(S.config.globalProperties,"$route",{enumerable:!0,get:()=>fe(a)}),un&&!sn&&a.value===Ke&&(sn=!0,y(s.location).catch(J=>{}));const U={};for(const J in Ke)Object.defineProperty(U,J,{get:()=>a.value[J],enumerable:!0});S.provide(So,Bt),S.provide(Ao,at(U)),S.provide(Js,a);const j=S.unmount;on.add(S),S.unmount=function(){on.delete(S),on.size<1&&(f=Ke,K&&K(),K=null,a.value=Ke,sn=!1,X=!1),j()}}};function Ve(S){return S.reduce((U,j)=>U.then(()=>I(j)),Promise.resolve())}return Bt}function vc(e){return Pe(Ao)}const Cg=/(:\w+)\([^)]+\)/g,Sg=/(:\w+)[?+*]/g,Ag=/:\w+/g,xg=(e,t)=>t.path.replace(Cg,"$1").replace(Sg,"$1").replace(Ag,n=>e.params[n.slice(1)]?.toString()||""),Ys=(e,t)=>{const n=e.route.matched.find(s=>s.components?.default===e.Component.type),r=t??n?.meta.key??(n&&xg(e.route,n));return typeof r=="function"?r(e.route):r},Pg=(e,t)=>({default:()=>e?xe(Nu,e===!0?{}:e,t):t});function xo(e){return Array.isArray(e)?e:[e]}const kg="modulepreload",Og=function(e,t){return new URL(e,t).href},el={},Qs=function(t,n,r){let s=Promise.resolve();if(n&&n.length>0){let f=function(c){return Promise.all(c.map(u=>Promise.resolve(u).then(h=>({status:"fulfilled",value:h}),h=>({status:"rejected",reason:h}))))};const i=document.getElementsByTagName("link"),l=document.querySelector("meta[property=csp-nonce]"),a=l?.nonce||l?.getAttribute("nonce");s=f(n.map(c=>{if(c=Og(c,r),c in el)return;el[c]=!0;const u=c.endsWith(".css"),h=u?'[rel="stylesheet"]':"";if(r)for(let _=i.length-1;_>=0;_--){const b=i[_];if(b.href===c&&(!u||b.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${c}"]${h}`))return;const d=document.createElement("link");if(d.rel=u?"stylesheet":kg,u||(d.as="script"),d.crossOrigin="",d.href=c,a&&d.setAttribute("nonce",a),document.head.appendChild(d),u)return new Promise((_,b)=>{d.addEventListener("load",_),d.addEventListener("error",()=>b(new Error(`Unable to preload CSS for ${c}`)))})}))}function o(i){const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=i,window.dispatchEvent(l),!l.defaultPrevented)throw i}return s.then(i=>{for(const l of i||[])l.status==="rejected"&&o(l.reason);return t().catch(o)})},Es=[{name:"index",path:"/",component:()=>Qs(()=>import("./CqRv5mwS.js"),__vite__mapDeps([0,1]),import.meta.url)}],wc=(e,t)=>({default:()=>e?xe(If,e===!0?{}:e,t):t.default?.()}),Ng=/(:\w+)\([^)]+\)/g,Ig=/(:\w+)[?+*]/g,Mg=/:\w+/g;function tl(e){const t=e?.meta.key??e.path.replace(Ng,"$1").replace(Ig,"$1").replace(Mg,n=>e.params[n.slice(1)]?.toString()||"");return typeof t=="function"?t(e):t}function Lg(e,t){return e===t||t===Ke?!1:tl(e)!==tl(t)?!0:!e.matched.every((r,s)=>r.components&&r.components.default===t.matched[s]?.components?.default)}const Hg={scrollBehavior(e,t,n){const r=ve(),s=$e().options?.scrollBehaviorType??"auto";if(e.path.replace(/\/$/,"")===t.path.replace(/\/$/,""))return t.hash&&!e.hash?{left:0,top:0}:e.hash?{el:e.hash,top:Ec(e.hash),behavior:s}:!1;if((typeof e.meta.scrollToTop=="function"?e.meta.scrollToTop(e,t):e.meta.scrollToTop)===!1)return!1;const i=r._runningTransition?"page:transition:finish":"page:loading:end";return new Promise(l=>{if(t===Ke){l(nl(e,t,n,s));return}r.hooks.hookOnce(i,()=>{requestAnimationFrame(()=>l(nl(e,t,n,s)))})})}};function Ec(e){try{const t=document.querySelector(e);if(t)return(Number.parseFloat(getComputedStyle(t).scrollMarginTop)||0)+(Number.parseFloat(getComputedStyle(document.documentElement).scrollPaddingTop)||0)}catch{}return 0}function nl(e,t,n,r){if(n)return n;const s=Lg(e,t);return e.hash?{el:e.hash,top:Ec(e.hash),behavior:s?r:"instant"}:{left:0,top:0}}const Dg={hashMode:!1,scrollBehaviorType:"auto"},xt={...Dg,...Hg},jg=async(e,t)=>{let n,r;if(!e.meta?.validate)return;const s=([n,r]=vn(()=>Promise.resolve(e.meta.validate(e))),n=await n,r(),n);if(s===!0)return;const o=Xt({fatal:!0,statusCode:s&&s.statusCode||404,statusMessage:s&&s.statusMessage||`Page Not Found: ${e.fullPath}`,data:{path:e.fullPath}});return typeof window<"u"&&window.history.pushState({},"",t.fullPath),o},Fg=async e=>{let t,n;const r=([t,n]=vn(()=>Ro({path:e.path})),t=await t,n(),t);if(r.redirect){const s=r.redirect.includes("#")?r.redirect:r.redirect+e.hash;return rn(s,{acceptRelative:!0})?(window.location.href=s,!1):s}},Bg=[jg,Fg],Xs={};function Ug(e,t,n){const{pathname:r,search:s,hash:o}=t,i=e.indexOf("#");if(i>-1){const f=o.includes(e.slice(i))?e.slice(i).length:1;let c=o.slice(f);return c[0]!=="/"&&(c="/"+c),vi(c,"")}const l=vi(r,e),a=!n||Ld(l,n)?l:n;return a+(a.includes("?")?"":s)+o}const $g=ft({name:"nuxt:router",enforce:"pre",async setup(e){let t,n,r=Xr().app.baseURL;const s=xt.history?.(r)??rg(r),o=xt.routes?([t,n]=vn(()=>xt.routes(Es)),t=await t,n(),t??Es):Es;let i;const l=Tg({...xt,scrollBehavior:(T,R,v)=>{if(R===Ke){i=v;return}if(xt.scrollBehavior){if(l.options.scrollBehavior=xt.scrollBehavior,"scrollRestoration"in window.history){const g=l.beforeEach(()=>{g(),window.history.scrollRestoration="manual"})}return xt.scrollBehavior(T,Ke,i||v)}},history:s,routes:o});"scrollRestoration"in window.history&&(window.history.scrollRestoration="auto"),e.vueApp.use(l);const a=En(l.currentRoute.value);l.afterEach((T,R)=>{a.value=R}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>a.value});const f=Ug(r,window.location,e.payload.path),c=En(l.currentRoute.value),u=()=>{c.value=l.currentRoute.value};l.afterEach((T,R)=>{T.matched.at(-1)?.components?.default===R.matched.at(-1)?.components?.default&&u()});const h={sync:u};for(const T in c.value)Object.defineProperty(h,T,{get:()=>c.value[T],enumerable:!0});e._route=at(h),e._middleware||={global:[],named:{}};const d=Zr();l.afterEach(async(T,R,v)=>{delete e._processingMiddleware,!e.isHydrating&&d.value&&await e.runWithContext(kh),v&&await e.callHook("page:loading:end")});try{[t,n]=vn(()=>l.isReady()),await t,n()}catch(T){[t,n]=vn(()=>e.runWithContext(()=>qt(T))),await t,n()}const _=f!==l.currentRoute.value.fullPath?l.resolve(f):l.currentRoute.value;u();const b=e.payload.state._layout;return l.beforeEach(async(T,R)=>{await e.callHook("page:loading:start"),T.meta=jt(T.meta),e.isHydrating&&b&&!ut(T.meta.layout)&&(T.meta.layout=b),e._processingMiddleware=!0;{const v=new Set([...Bg,...e._middleware.global]);for(const g of T.matched){const y=g.meta.middleware;if(y)for(const w of xo(y))v.add(w)}{const g=await e.runWithContext(()=>Ro({path:T.path}));if(g.appMiddleware)for(const y in g.appMiddleware)g.appMiddleware[y]?v.add(y):v.delete(y)}for(const g of v){const y=typeof g=="string"?e._middleware.named[g]||await Xs[g]?.().then(w=>w.default||w):g;if(!y)throw new Error(`Unknown route middleware: '${g}'.`);try{const w=await e.runWithContext(()=>y(T,R));if(!e.payload.serverRendered&&e.isHydrating&&(w===!1||w instanceof Error)){const x=w||Xt({statusCode:404,statusMessage:`Page Not Found: ${f}`});return await e.runWithContext(()=>qt(x)),!1}if(w===!0)continue;if(w===!1)return w;if(w)return ec(w)&&w.fatal&&await e.runWithContext(()=>qt(w)),w}catch(w){const x=Xt(w);return x.fatal&&await e.runWithContext(()=>qt(x)),x}}}}),l.onError(async()=>{delete e._processingMiddleware,await e.callHook("page:loading:end")}),l.afterEach(T=>{if(T.matched.length===0)return e.runWithContext(()=>qt(Xt({statusCode:404,fatal:!1,statusMessage:`Page not found: ${T.fullPath}`,data:{path:T.fullPath}})))}),e.hooks.hookOnce("app:created",async()=>{try{"name"in _&&(_.name=void 0),await l.replace({..._,force:!0}),l.options.scrollBehavior=xt.scrollBehavior}catch(T){await e.runWithContext(()=>qt(T))}}),{provide:{router:l}}}}),rl=globalThis.requestIdleCallback||(e=>{const t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),Am=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),Po=e=>{const t=ve();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{rl(()=>e())}):rl(()=>e())},Vg=ft({name:"nuxt:payload",setup(e){const t=new Set;$e().beforeResolve(async(n,r)=>{if(n.path===r.path)return;const s=await Di(n.path);if(s){for(const o of t)delete e.static.data[o];for(const o in s.data)o in e.static.data||t.add(o),e.static.data[o]=s.data[o]}}),Po(()=>{e.hooks.hook("link:prefetch",async n=>{const{hostname:r}=new URL(n,window.location.href);r===window.location.hostname&&await Di(n).catch(()=>{console.warn("[nuxt] Error preloading payload for",n)})}),navigator.connection?.effectiveType!=="slow-2g"&&setTimeout(es,1e3)})}}),Wg=ft(()=>{const e=$e();Po(()=>{e.beforeResolve(async()=>{await new Promise(t=>{setTimeout(t,100),requestAnimationFrame(()=>{setTimeout(t,0)})})})})}),Kg=ft(e=>{let t;async function n(){let r;try{r=await es()}catch(s){const o=s;if(!("status"in o&&(o.status===404||o.status===403)))throw o}t&&clearTimeout(t),t=setTimeout(n,Ai);try{const s=await $fetch(Eo("builds/latest.json")+`?${Date.now()}`);s.id!==r?.id&&(e.hooks.callHook("app:manifest:update",s),t&&clearTimeout(t))}catch{}}Po(()=>{t=setTimeout(n,Ai)})});function qg(e={}){const t=e.path||window.location.pathname;let n={};try{n=Nr(sessionStorage.getItem("nuxt:reload")||"{}")}catch{}if(e.force||n?.path!==t||n?.expires<Date.now()){try{sessionStorage.setItem("nuxt:reload",JSON.stringify({path:t,expires:Date.now()+(e.ttl??1e4)}))}catch{}if(e.persistState)try{sessionStorage.setItem("nuxt:reload:state",JSON.stringify({state:ve().payload.state}))}catch{}window.location.pathname!==t?window.location.href=t:window.location.reload()}}const Gg=ft({name:"nuxt:chunk-reload",setup(e){const t=$e(),n=Xr(),r=new Set;t.beforeEach(()=>{r.clear()}),e.hook("app:chunkError",({error:o})=>{r.add(o)});function s(o){const i=vo(n.app.baseURL,o.fullPath);qg({path:i,persistState:!0})}e.hook("app:manifest:update",()=>{t.beforeResolve(s)}),t.onError((o,i)=>{r.has(o)&&s(i)})}}),Jg=ft({name:"nuxt:global-components"}),It={};function Yg(e){if(e?.__asyncLoader&&!e.__asyncResolved)return e.__asyncLoader()}async function Qg(e,t=$e()){const{path:n,matched:r}=t.resolve(e);if(!r.length||(t._routePreloaded||=new Set,t._routePreloaded.has(n)))return;const s=t._preloadPromises||=[];if(s.length>4)return Promise.all(s).then(()=>Qg(e,t));t._routePreloaded.add(n);for(const o of r){const i=o.components?.default;if(typeof i!="function")continue;const l=Promise.resolve(i()).catch(()=>{}).finally(()=>s.splice(s.indexOf(l)));s.push(l)}await Promise.all(s)}const Xg=ft({name:"nuxt:prefetch",setup(e){const t=$e();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{const r=n?.meta?.layout;r&&typeof It[r]=="function"&&await It[r]()})}),e.hooks.hook("link:prefetch",n=>{if(rn(n))return;const r=t.resolve(n);if(!r)return;const s=r.meta.layout;let o=xo(r.meta.middleware);o=o.filter(i=>typeof i=="string");for(const i of o)typeof Xs[i]=="function"&&Xs[i]();typeof s=="string"&&s in It&&Yg(It[s])})}}),zg=ft(()=>{}),Zg=[pp,bp,$g,Vg,Wg,Kg,Gg,Jg,Xg,zg],Rc=(e="RouteProvider")=>Ft({name:e,props:{route:{type:Object,required:!0},vnode:Object,vnodeRef:Object,renderKey:String,trackRootNodes:Boolean},setup(t){const n=t.renderKey,r=t.route,s={};for(const o in t.route)Object.defineProperty(s,o,{get:()=>n===t.renderKey?t.route[o]:r[o],enumerable:!0});return Ht(tn,at(s)),()=>t.vnode?xe(t.vnode,{ref:t.vnodeRef}):t.vnode}}),em=Rc(),sl=new WeakMap,tm=Ft({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t,slots:n,expose:r}){const s=ve(),o=vt(),i=Pe(tn,null);let l;r({pageRef:o});const a=Pe(za,null);let f;const c=s.deferHydration();if(s.isHydrating){const h=s.hooks.hookOnce("app:error",c);$e().beforeEach(h)}e.pageKey&&yn(()=>e.pageKey,(h,d)=>{h!==d&&s.callHook("page:loading:start")});let u=!1;{const h=$e().beforeResolve(()=>{u=!1});nr(()=>{h()})}return()=>xe(bc,{name:e.name,route:e.route,...t},{default:h=>{const d=rm(i,h.route,h.Component),_=i&&i.matched.length===h.route.matched.length;if(!h.Component){if(f&&!_)return f;c();return}if(f&&a&&!a.isCurrent(h.route))return f;if(d&&i&&(!a||a?.isCurrent(i)))return _?f:null;const b=Ys(h,e.pageKey),T=sm(i,h.route,h.Component);!s.isHydrating&&l===b&&!T&&Zt(()=>{u=!0,s.callHook("page:loading:end")}),l=b;const R=!!(e.transition??h.route.meta.pageTransition??Ci),v=R&&nm([e.transition,h.route.meta.pageTransition,Ci,{onAfterLeave(){delete s._runningTransition,s.callHook("page:transition:finish",h.Component)}}]),g=e.keepalive??h.route.meta.keepalive??dh;return f=wc(R&&v,Pg(g,xe(yo,{suspensible:!0,onPending:()=>{R&&(s._runningTransition=!0),s.callHook("page:start",h.Component)},onResolve:async()=>{await Zt();try{s._route.sync?.(),await s.callHook("page:finish",h.Component),delete s._runningTransition,!u&&!T&&(u=!0,await s.callHook("page:loading:end"))}finally{c()}}},{default:()=>{const y={key:b||void 0,vnode:n.default?om(n.default,h):h.Component,route:h.route,renderKey:b||void 0,trackRootNodes:R,vnodeRef:o};if(!g)return xe(em,y);const w=h.Component.type,x=w;let L=sl.get(x);return L||(L=Rc(w.name||w.__name),sl.set(x,L)),xe(L,y)}}))).default(),f}})}});function nm(e){const t=[];for(const n of e)n&&t.push({...n,onAfterLeave:n.onAfterLeave?xo(n.onAfterLeave):void 0});return Qa(...t)}function rm(e,t,n){if(!e)return!1;const r=t.matched.findIndex(s=>s.components?.default===n?.type);return!r||r===-1?!1:t.matched.slice(0,r).some((s,o)=>s.components?.default!==e.matched[o]?.components?.default)||n&&Ys({route:t,Component:n})!==Ys({route:e,Component:n})}function sm(e,t,n){return e?t.matched.findIndex(s=>s.components?.default===n?.type)<t.matched.length-1:!1}function om(e,t){const n=e(t);return n.length===1?xe(n[0]):xe(Re,void 0,n)}const im=Ft({name:"LayoutLoader",inheritAttrs:!1,props:{name:String,layoutProps:Object},setup(e,t){return()=>xe(It[e.name],e.layoutProps,t.slots)}}),lm={name:{type:[String,Boolean,Object],default:null},fallback:{type:[String,Object],default:null}},am=Ft({name:"NuxtLayout",inheritAttrs:!1,props:lm,setup(e,t){const n=ve(),r=Pe(tn),o=!r||r===zr()?vc():r,i=Ge(()=>{let c=fe(e.name)??o?.meta.layout??"default";return c&&!(c in It)&&e.fallback&&(c=fe(e.fallback)),c}),l=En();t.expose({layoutRef:l});const a=n.deferHydration();if(n.isHydrating){const c=n.hooks.hookOnce("app:error",a);$e().beforeEach(c)}let f;return()=>{const c=i.value&&i.value in It,u=o?.meta.layoutTransition??fh,h=f;return f=i.value,wc(c&&u,{default:()=>xe(yo,{suspensible:!0,onResolve:()=>{Zt(a)}},{default:()=>xe(cm,{layoutProps:Sa(t.attrs,{ref:l}),key:i.value||void 0,name:i.value,shouldProvide:!e.name,isRenderingNewLayout:d=>d!==h&&d===i.value,hasTransition:!!u},t.slots)})}).default()}}}),cm=Ft({name:"NuxtLayoutProvider",inheritAttrs:!1,props:{name:{type:[String,Boolean]},layoutProps:{type:Object},hasTransition:{type:Boolean},shouldProvide:{type:Boolean},isRenderingNewLayout:{type:Function,required:!0}},setup(e,t){const n=e.name;e.shouldProvide&&Ht(za,{isCurrent:o=>n===(o.meta.layout??"default")});const r=Pe(tn);if(r&&r===zr()){const o=vc(),i={};for(const l in o){const a=l;Object.defineProperty(i,a,{enumerable:!0,get:()=>e.isRenderingNewLayout(e.name)?o[a]:r[a]})}Ht(tn,at(i))}return()=>!n||typeof n=="string"&&!(n in It)?t.slots.default?.():xe(im,{key:n,layoutProps:e.layoutProps,name:n},t.slots)}}),um=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n},fm={};function dm(e,t){const n=tm,r=am;return qe(),lt(r,null,{default:co(()=>[me(n)]),_:1})}const hm=um(fm,[["render",dm]]),pm={__name:"nuxt-error-page",props:{error:Object},setup(e){const n=e.error,r=Number(n.statusCode||500),s=r===404,o=n.statusMessage??(s?"Page Not Found":"Internal Server Error"),i=n.message||n.toString(),l=void 0,c=s?$o(()=>Qs(()=>import("./D95LLO0l.js"),__vite__mapDeps([2,3,4]),import.meta.url)):$o(()=>Qs(()=>import("./Dx-h1-qv.js"),__vite__mapDeps([5,3,6]),import.meta.url));return(u,h)=>(qe(),lt(fe(c),Ic(Ta({statusCode:fe(r),statusMessage:fe(o),description:fe(i),stack:fe(l)})),null,16))}},gm={key:0},ol={__name:"nuxt-root",setup(e){const t=()=>null,n=ve(),r=n.deferHydration();if(n.isHydrating){const f=n.hooks.hookOnce("app:error",r);$e().beforeEach(f)}const s=!1;Ht(tn,zr()),n.hooks.callHookWith(f=>f.map(c=>c()),"vue:setup");const o=Zr(),i=!1,l=/bot\b|chrome-lighthouse|facebookexternalhit|google\b/i;Ql((f,c,u)=>{if(n.hooks.callHook("vue:error",f,c,u).catch(h=>console.error("[nuxt] Error in `vue:error` hook",h)),l.test(navigator.userAgent))return n.hooks.callHook("app:error",f),console.error(`[nuxt] Not rendering error page for bot with user agent \`${navigator.userAgent}\`:`,f),!1;if(ec(f)&&(f.fatal||f.unhandled))return n.runWithContext(()=>qt(f)),!1});const a=!1;return(f,c)=>(qe(),lt(yo,{onResolve:fe(r)},{default:co(()=>[fe(i)?(qe(),yf("div",gm)):fe(o)?(qe(),lt(fe(pm),{key:1,error:fe(o)},null,8,["error"])):fe(a)?(qe(),lt(fe(t),{key:2,context:fe(a)},null,8,["context"])):fe(s)?(qe(),lt(Fu(fe(s)),{key:3})):(qe(),lt(fe(hm),{key:4}))]),_:1},8,["onResolve"]))}};let il;{let e;il=async function(){if(e)return e;const n=!!(window.__NUXT__?.serverRendered??document.getElementById("__NUXT_DATA__")?.dataset.ssr==="true"),r=n?id(ol):od(ol),s=mh({vueApp:r});async function o(i){await s.callHook("app:error",i),s.payload.error||=Xt(i)}r.config.errorHandler=o,s.hook("app:suspense:resolve",()=>{r.config.errorHandler===o&&(r.config.errorHandler=void 0)}),!n&&Si.id&&s.hook("app:suspense:resolve",()=>{document.getElementById(Si.id)?.remove()});try{await bh(s,Zg)}catch(i){o(i)}try{await s.hooks.callHook("app:created",r),await s.hooks.callHook("app:beforeMount",r),r.mount(hh),await s.hooks.callHook("app:mounted",r),await Zt()}catch(i){o(i)}return r},e=il().catch(t=>{throw console.error("Error while mounting app:",t),t})}export{Dc as A,me as B,co as C,Ca as D,Sm as E,uo as F,Pe as G,rc as H,Wr as I,Nn as J,yn as K,Zt as L,vm as M,ym as N,lt as O,wm as P,Rm as Q,fe as R,Sa as S,_e as T,mm as U,Re as V,bm as W,Em as X,um as _,ve as a,Po as b,rl as c,Ft as d,nr as e,Am as f,_m as g,xe as h,Ph as i,Qg as j,Ge as k,rn as l,vo as m,Xr as n,po as o,Ha as p,Cm as q,vt as r,En as s,Mr as t,$e as u,Tm as v,Nd as w,yf as x,qe as y,Ra as z};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{_ as o,x as s,y as a,z as t,A as r}from"./
|
|
1
|
+
import{_ as o,x as s,y as a,z as t,A as r}from"./DrXVleME.js";import{u as i}from"./DZ-uq6Vd.js";const u={class:"antialiased bg-white dark:bg-[#020420] dark:text-white font-sans grid min-h-screen overflow-hidden place-content-center text-[#020420] tracking-wide"},l={class:"max-w-520px text-center"},c=["textContent"],d=["textContent"],p=["textContent"],f={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Internal server error"},description:{type:String,default:"This page is temporarily unavailable."},refresh:{type:String,default:"Refresh this page"}},setup(e){const n=e;return i({title:`${n.statusCode} - ${n.statusMessage} | ${n.appName}`,script:[{innerHTML:`!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))r(e);new MutationObserver(e=>{for(const o of e)if("childList"===o.type)for(const e of o.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&r(e)}).observe(document,{childList:!0,subtree:!0})}function r(e){if(e.ep)return;e.ep=!0;const r=function(e){const r={};return e.integrity&&(r.integrity=e.integrity),e.referrerPolicy&&(r.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?r.credentials="include":"anonymous"===e.crossOrigin?r.credentials="omit":r.credentials="same-origin",r}(e);fetch(e.href,r)}}();`}],style:[{innerHTML:'*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}h1,h2{font-size:inherit;font-weight:inherit}h1,h2,p{margin:0}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }'}]}),(g,h)=>(a(),s("div",u,[t("div",l,[t("h1",{class:"font-semibold leading-none mb-4 sm:text-[110px] tabular-nums text-[80px]",textContent:r(e.statusCode)},null,8,c),t("h2",{class:"font-semibold mb-2 sm:text-3xl text-2xl",textContent:r(e.statusMessage)},null,8,d),t("p",{class:"mb-4 px-2 text-[#64748B] text-md",textContent:r(e.description)},null,8,p)])]))}},x=o(f,[["__scopeId","data-v-8851f357"]]);export{x as default};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"id":"
|
|
1
|
+
{"id":"f3f3372e-493e-4c8e-9dbd-18d4c5406f44","timestamp":1766303495647}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"id":"f3f3372e-493e-4c8e-9dbd-18d4c5406f44","timestamp":1766303495647,"matcher":{"static":{},"wildcard":{},"dynamic":{}},"prerendered":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--nui-c-context:125,125,125}html{background-color:#fff}html.dark{background-color:#151515;color:#fff;color-scheme:dark}::-moz-selection{background:#8884}::selection{background:#8884}.shiki .line{display:inline-block;position:relative;width:100%}.shiki.diff .line>span{filter:saturate(.75);opacity:.75}.shiki.diff .line-added,.shiki.diff .line-removed{scroll-margin:5em}.shiki.diff .line-added>span,.shiki.diff .line-removed>span{opacity:1!important;position:inherit;scroll-margin:20px;z-index:100}.shiki.diff .line-added>span{color:#218c3b!important}.shiki.diff .line-removed>span{color:#d15547!important}.shiki .line-added:after{background-color:#43885420}.shiki .line-added:after,.shiki .line-removed:after{content:"";display:block;inset:0;position:absolute}.shiki .line-removed:after{background-color:#8f4c3926}::view-transition-new(root),::view-transition-old(root){animation:none;mix-blend-mode:normal}::view-transition-old(root){z-index:1}::view-transition-new(root){z-index:2147483646}.dark::view-transition-old(root){z-index:2147483646}.dark::view-transition-new(root){z-index:1}*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v15/aFTU7PB1QTsUX8KYthSQBK6PYK3EXw.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v15/aFTU7PB1QTsUX8KYthqQBK6PYK0.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRR232RmYJp8I5zzw.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v16/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRSW32RmYJp8I5.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.carbon-chevron-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 22L6 12l1.4-1.4l8.6 8.6l8.6-8.6L26 12z'/%3E%3C/svg%3E")}.carbon-chevron-down,.carbon-search{background-color:currentColor;color:inherit;display:inline-block;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle;width:1.2em}.carbon-search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m29 27.586l-7.552-7.552a11.018 11.018 0 1 0-1.414 1.414L27.586 29ZM4 13a9 9 0 1 1 9 9a9.01 9.01 0 0 1-9-9'/%3E%3C/svg%3E")}.n-icon{flex:none}.n-border-base{border-color:#9ca3af33}.dark .n-bg-base{--un-bg-opacity:1;background-color:rgb(21 21 21/var(--un-bg-opacity))}.n-bg-base,.n-code-block{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.dark .n-code-block{--un-bg-opacity:1;background-color:rgb(18 18 18/var(--un-bg-opacity))}.hover\:n-bg-hover:hover{background-color:#9ca3af08}.hover\:n-link-hover:hover{--un-text-opacity:1;color:rgba(var(--nui-c-context),var(--un-text-opacity));-webkit-text-decoration-color:rgba(var(--nui-c-context),var(--un-line-opacity))!important;--un-line-opacity:1!important;opacity:1!important;text-decoration-color:rgba(var(--nui-c-context),var(--un-line-opacity))!important;text-decoration-style:dotted}.n-link-base{text-decoration-color:#0003;text-decoration-line:underline;text-underline-offset:2px}.dark .n-link-base{text-decoration-color:#fff6}.focus-within\:n-focus-base:focus-within{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);--un-ring-color:rgba(var(--nui-c-context),.5)}.n-transition{transition-duration:.15s;transition-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.right-0{right:0}.top-0{top:0}.top-6{top:1.5rem}.z-10{z-index:10}.grid{display:grid}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-2{margin-bottom:.5rem}.mb-4,.mb4{margin-bottom:1rem}.mb-8{margin-bottom:2rem}.mb3{margin-bottom:.75rem}.ml-0\.3em{margin-left:.3em}.ml-0\.4em{margin-left:.4em}.ml2{margin-left:.5rem}.mr-0\.1em{margin-right:.1em}.mt1{margin-top:.25rem}.inline{display:inline}.inline-block{display:inline-block}.h-auto{height:auto}.h-full,[h-full=""]{height:100%}.h1{height:.25rem}.h2{height:.5rem}.max-w-520px{max-width:520px}.min-h-screen{min-height:100vh}.w-full{width:100%}.flex,[flex~="~"]{display:flex}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-col,[flex~=col]{flex-direction:column}.cursor-pointer,[cursor-pointer=""]{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.place-content-center{place-content:center}.place-self-start,[place-self-start=""]{place-self:start}.items-center,[items-center=""]{align-items:center}.justify-center{justify-content:center}.flex-gap2,.gap2,[flex~=gap2]{gap:.5rem}.gap-3,[flex~=gap-3]{gap:.75rem}.of-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.b,.border{border-width:1px}.border-b-0{border-bottom-width:0}.border-r{border-right-width:1px}[border~=b]{border-bottom-width:1px}.border-black\/5{border-color:#0000000d}.dark .dark\:border-white\/10{border-color:#ffffff1a}.focus-within\:border-context:focus-within{--un-border-opacity:1;border-color:rgba(var(--nui-c-context),var(--un-border-opacity))}.border-b-gray-800{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(31 41 55/var(--un-border-bottom-opacity))}.border-r-gray-800{--un-border-opacity:1;--un-border-right-opacity:var(--un-border-opacity);border-right-color:rgb(31 41 55/var(--un-border-right-opacity))}.rounded{border-radius:.25rem}.rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.bg-gray-400\:10{background-color:#9ca3af1a}.bg-gray-50\/50{background-color:#f9fafb80}.bg-green-400\:10{background-color:#4ade801a}.bg-orange-400\:10{background-color:#fb923c1a}.bg-red-900{--un-bg-opacity:1;background-color:rgb(127 29 29/var(--un-bg-opacity))}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.dark .dark\:bg-\[\#020420\]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark .dark\:bg-white\/5{background-color:#ffffff0d}.p-8{padding:2rem}.p2{padding:.5rem}.p3{padding:.75rem}.p4{padding:1rem}.p5{padding:1.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-2,.px2{padding-left:.5rem;padding-right:.5rem}.px4{padding-left:1rem;padding-right:1rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py2{padding-bottom:.5rem;padding-top:.5rem}.pb6{padding-bottom:1.5rem}.pl-1{padding-left:.25rem}.pr-2,.pr2{padding-right:.5rem}.pt-12{padding-top:3rem}.pt2{padding-top:.5rem}.text-center{text-align:center}.text-left{text-align:left}.text-\[80px\]{font-size:80px}.text-1\.1em{font-size:1.1em}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-base,[text-base=""]{font-size:1rem;line-height:1.5rem}.text-sm,[text-sm=""]{font-size:.875rem;line-height:1.25rem}.text-xl,[text-xl=""]{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.dark .dark\:text-white{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}.text-\[\#020420\]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\[\#64748B\]{--un-text-opacity:1;color:rgb(100 116 139/var(--un-text-opacity))}.text-black{--un-text-opacity:1;color:rgb(0 0 0/var(--un-text-opacity))}.text-gray{--un-text-opacity:1;color:rgb(156 163 175/var(--un-text-opacity))}.text-green-400{--un-text-opacity:1;color:rgb(74 222 128/var(--un-text-opacity))}.text-orange-400{--un-text-opacity:1;color:rgb(251 146 60/var(--un-text-opacity))}.text-red-100{--un-text-opacity:1;color:rgb(254 226 226/var(--un-text-opacity))}.hover\:text-\[\#00DC82\]:hover{--un-text-opacity:1;color:rgb(0 220 130/var(--un-text-opacity))}.font-bold{font-weight:700}.font-light{font-weight:300}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-none{line-height:1}.leading-tight{line-height:1.25}.tracking-wide{letter-spacing:.025em}.font-mono{font-family:DM Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.tabular-nums{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)}.hover\:underline:hover,.underline{text-decoration-line:underline}.underline-offset-3{text-underline-offset:3px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.group:hover .group-hover\:opacity-100,.op100{opacity:1}.op50,[op50=""]{opacity:.5}.op60{opacity:.6}.op75,[op75=""]{opacity:.75}.opacity-0{opacity:0}.\!outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.transition,[transition=""]{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-500,[duration-500=""]{transition-duration:.5s}@media (min-width:640px){.sm\:right-6{right:1.5rem}.sm\:text-\[110px\]{font-size:110px}.sm\:text-2xl{font-size:1.5rem;line-height:2rem}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}.sm\:text-8xl{font-size:6rem;line-height:1}}
|
|
1
|
+
:root{--nui-c-context:125,125,125}html{background-color:#fff}html.dark{background-color:#151515;color:#fff;color-scheme:dark}::-moz-selection{background:#8884}::selection{background:#8884}.shiki .line{display:inline-block;position:relative;width:100%}.shiki.diff .line>span{filter:saturate(.75);opacity:.75}.shiki.diff .line-added,.shiki.diff .line-removed{scroll-margin:5em}.shiki.diff .line-added>span,.shiki.diff .line-removed>span{opacity:1!important;position:inherit;scroll-margin:20px;z-index:100}.shiki.diff .line-added>span{color:#218c3b!important}.shiki.diff .line-removed>span{color:#d15547!important}.shiki .line-added:after{background-color:#43885420}.shiki .line-added:after,.shiki .line-removed:after{content:"";display:block;inset:0;position:absolute}.shiki .line-removed:after{background-color:#8f4c3926}::view-transition-new(root),::view-transition-old(root){animation:none;mix-blend-mode:normal}::view-transition-old(root){z-index:1}::view-transition-new(root){z-index:2147483646}.dark::view-transition-old(root){z-index:2147483646}.dark::view-transition-new(root){z-index:1}*,:after,:before{border-color:var(--un-default-border-color,#e5e7eb);border-style:solid;border-width:0;box-sizing:border-box}:after,:before{--un-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-tap-highlight-color:transparent}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-feature-settings:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYthSQBK6PYK3EXw.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Mono;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYthqQBK6PYK0.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRR232RmYJp8I5zzw.woff2) format("woff2");unicode-range:u+0100-02ba,u+02bd-02c5,u+02c7-02cc,u+02ce-02d7,u+02dd-02ff,u+0304,u+0308,u+0329,u+1d00-1dbf,u+1e00-1e9f,u+1ef2-1eff,u+2020,u+20a0-20ab,u+20ad-20c0,u+2113,u+2c60-2c7f,u+a720-a7ff}@font-face{font-display:swap;font-family:DM Sans;font-style:normal;font-weight:400;src:url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxRSW32RmYJp8I5.woff2) format("woff2");unicode-range:u+00??,u+0131,u+0152-0153,u+02bb-02bc,u+02c6,u+02da,u+02dc,u+0304,u+0308,u+0329,u+2000-206f,u+20ac,u+2122,u+2191,u+2193,u+2212,u+2215,u+feff,u+fffd}*,:after,:before{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 transparent;--un-ring-shadow:0 0 transparent;--un-shadow-inset: ;--un-shadow:0 0 transparent;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgba(147,197,253,.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.carbon-chevron-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M16 22L6 12l1.4-1.4l8.6 8.6l8.6-8.6L26 12z'/%3E%3C/svg%3E")}.carbon-chevron-down,.carbon-search{background-color:currentColor;color:inherit;display:inline-block;height:1.2em;-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:middle;width:1.2em}.carbon-search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 32 32' display='inline-block' vertical-align='middle' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='m29 27.586l-7.552-7.552a11.018 11.018 0 1 0-1.414 1.414L27.586 29ZM4 13a9 9 0 1 1 9 9a9.01 9.01 0 0 1-9-9'/%3E%3C/svg%3E")}.n-icon{flex:none}.n-border-base{border-color:#9ca3af33}.dark .n-bg-base{--un-bg-opacity:1;background-color:rgb(21 21 21/var(--un-bg-opacity))}.n-bg-base,.n-code-block{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.dark .n-code-block{--un-bg-opacity:1;background-color:rgb(18 18 18/var(--un-bg-opacity))}.hover\:n-bg-hover:hover{background-color:#9ca3af08}.hover\:n-link-hover:hover{--un-text-opacity:1;color:rgba(var(--nui-c-context),var(--un-text-opacity));-webkit-text-decoration-color:rgba(var(--nui-c-context),var(--un-line-opacity))!important;--un-line-opacity:1!important;opacity:1!important;text-decoration-color:rgba(var(--nui-c-context),var(--un-line-opacity))!important;text-decoration-style:dotted}.n-link-base{text-decoration-color:#0003;text-decoration-line:underline;text-underline-offset:2px}.dark .n-link-base{text-decoration-color:#fff6}.focus-within\:n-focus-base:focus-within{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow),var(--un-ring-shadow),var(--un-shadow);--un-ring-color:rgba(var(--nui-c-context),.5)}.n-transition{transition-duration:.15s;transition-duration:.2s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.right-0{right:0}.top-0{top:0}.grid{display:grid}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mb-2{margin-bottom:.5rem}.mb-4,.mb4{margin-bottom:1rem}.mb3{margin-bottom:.75rem}.ml-0\.3em{margin-left:.3em}.ml-0\.4em{margin-left:.4em}.ml2{margin-left:.5rem}.mr-0\.1em{margin-right:.1em}.mt1{margin-top:.25rem}.inline{display:inline}.inline-block{display:inline-block}.h-full,[h-full=""]{height:100%}.h2{height:.5rem}.max-w-520px{max-width:520px}.min-h-screen{min-height:100vh}.w-full{width:100%}.flex,[flex~="~"]{display:flex}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-col,[flex~=col]{flex-direction:column}.cursor-pointer,[cursor-pointer=""]{cursor:pointer}.select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.place-content-center{place-content:center}.place-self-start,[place-self-start=""]{place-self:start}.items-center,[items-center=""]{align-items:center}.justify-center{justify-content:center}.flex-gap2,.gap2,[flex~=gap2]{gap:.5rem}.gap-3,[flex~=gap-3]{gap:.75rem}.of-auto{overflow:auto}.overflow-hidden,.truncate{overflow:hidden}.truncate{text-overflow:ellipsis}.truncate,.whitespace-nowrap{white-space:nowrap}.b,.border{border-width:1px}.border-r{border-right-width:1px}[border~=b]{border-bottom-width:1px}.focus-within\:border-context:focus-within{--un-border-opacity:1;border-color:rgba(var(--nui-c-context),var(--un-border-opacity))}.border-b-gray-800{--un-border-opacity:1;--un-border-bottom-opacity:var(--un-border-opacity);border-bottom-color:rgb(31 41 55/var(--un-border-bottom-opacity))}.border-r-gray-800{--un-border-opacity:1;--un-border-right-opacity:var(--un-border-opacity);border-right-color:rgb(31 41 55/var(--un-border-right-opacity))}.rounded{border-radius:.25rem}.bg-gray-400\:10{background-color:#9ca3af1a}.bg-green-400\:10{background-color:#4ade801a}.bg-orange-400\:10{background-color:#fb923c1a}.bg-red-900{--un-bg-opacity:1;background-color:rgb(127 29 29/var(--un-bg-opacity))}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.dark .dark\:bg-\[\#020420\]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.p2{padding:.5rem}.p3{padding:.75rem}.p4{padding:1rem}.p5{padding:1.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2,.px2{padding-left:.5rem;padding-right:.5rem}.px4{padding-left:1rem;padding-right:1rem}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py2{padding-bottom:.5rem;padding-top:.5rem}.pb6{padding-bottom:1.5rem}.pl-1{padding-left:.25rem}.pr-2,.pr2{padding-right:.5rem}.pt2{padding-top:.5rem}.text-center{text-align:center}.text-left{text-align:left}.text-\[80px\]{font-size:80px}.text-1\.1em{font-size:1.1em}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-base,[text-base=""]{font-size:1rem;line-height:1.5rem}.text-sm,[text-sm=""]{font-size:.875rem;line-height:1.25rem}.text-xl,[text-xl=""]{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.dark .dark\:text-white{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}.text-\[\#020420\]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\[\#64748B\]{--un-text-opacity:1;color:rgb(100 116 139/var(--un-text-opacity))}.text-gray{--un-text-opacity:1;color:rgb(156 163 175/var(--un-text-opacity))}.text-green-400{--un-text-opacity:1;color:rgb(74 222 128/var(--un-text-opacity))}.text-orange-400{--un-text-opacity:1;color:rgb(251 146 60/var(--un-text-opacity))}.text-red-100{--un-text-opacity:1;color:rgb(254 226 226/var(--un-text-opacity))}.hover\:text-\[\#00DC82\]:hover{--un-text-opacity:1;color:rgb(0 220 130/var(--un-text-opacity))}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-none{line-height:1}.tracking-wide{letter-spacing:.025em}.font-mono{font-family:DM Mono,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-sans{font-family:DM Sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.tabular-nums{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)}.underline{text-decoration-line:underline}.underline-offset-3{text-underline-offset:3px}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.group:hover .group-hover\:opacity-100,.op100{opacity:1}.op50,[op50=""]{opacity:.5}.op60{opacity:.6}.op75,[op75=""]{opacity:.75}.opacity-0{opacity:0}.\!outline-none{outline:2px solid transparent!important;outline-offset:2px!important}.transition,[transition=""]{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-500,[duration-500=""]{transition-duration:.5s}@media(min-width:640px){.sm\:text-\[110px\]{font-size:110px}.sm\:text-3xl{font-size:1.875rem;line-height:2.25rem}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.grid[data-v-cd31e6b7]{display:grid}.mb-2[data-v-cd31e6b7]{margin-bottom:.5rem}.mb-4[data-v-cd31e6b7]{margin-bottom:1rem}.max-w-520px[data-v-cd31e6b7]{max-width:520px}.min-h-screen[data-v-cd31e6b7]{min-height:100vh}.w-full[data-v-cd31e6b7]{width:100%}.flex[data-v-cd31e6b7]{display:flex}.place-content-center[data-v-cd31e6b7]{place-content:center}.items-center[data-v-cd31e6b7]{align-items:center}.justify-center[data-v-cd31e6b7]{justify-content:center}.overflow-hidden[data-v-cd31e6b7]{overflow:hidden}.bg-white[data-v-cd31e6b7]{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.px-2[data-v-cd31e6b7]{padding-left:.5rem;padding-right:.5rem}.text-center[data-v-cd31e6b7]{text-align:center}.text-\[80px\][data-v-cd31e6b7]{font-size:80px}.text-2xl[data-v-cd31e6b7]{font-size:1.5rem;line-height:2rem}.text-sm[data-v-cd31e6b7]{font-size:.875rem;line-height:1.25rem}.text-\[\#020420\][data-v-cd31e6b7]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\[\#64748B\][data-v-cd31e6b7]{--un-text-opacity:1;color:rgb(100 116 139/var(--un-text-opacity))}.hover\:text-\[\#00DC82\][data-v-cd31e6b7]:hover{--un-text-opacity:1;color:rgb(0 220 130/var(--un-text-opacity))}.font-medium[data-v-cd31e6b7]{font-weight:500}.font-semibold[data-v-cd31e6b7]{font-weight:600}.leading-none[data-v-cd31e6b7]{line-height:1}.tracking-wide[data-v-cd31e6b7]{letter-spacing:.025em}.font-sans[data-v-cd31e6b7]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.tabular-nums[data-v-cd31e6b7]{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)}.underline[data-v-cd31e6b7]{text-decoration-line:underline}.underline-offset-3[data-v-cd31e6b7]{text-underline-offset:3px}.antialiased[data-v-cd31e6b7]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(prefers-color-scheme:dark){.dark\:bg-\[\#020420\][data-v-cd31e6b7]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark\:text-white[data-v-cd31e6b7]{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}}@media(min-width:640px){.sm\:text-\[110px\][data-v-cd31e6b7]{font-size:110px}.sm\:text-3xl[data-v-cd31e6b7]{font-size:1.875rem;line-height:2.25rem}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.grid[data-v-8851f357]{display:grid}.mb-2[data-v-8851f357]{margin-bottom:.5rem}.mb-4[data-v-8851f357]{margin-bottom:1rem}.max-w-520px[data-v-8851f357]{max-width:520px}.min-h-screen[data-v-8851f357]{min-height:100vh}.place-content-center[data-v-8851f357]{place-content:center}.overflow-hidden[data-v-8851f357]{overflow:hidden}.bg-white[data-v-8851f357]{--un-bg-opacity:1;background-color:rgb(255 255 255/var(--un-bg-opacity))}.px-2[data-v-8851f357]{padding-left:.5rem;padding-right:.5rem}.text-center[data-v-8851f357]{text-align:center}.text-\[80px\][data-v-8851f357]{font-size:80px}.text-2xl[data-v-8851f357]{font-size:1.5rem;line-height:2rem}.text-\[\#020420\][data-v-8851f357]{--un-text-opacity:1;color:rgb(2 4 32/var(--un-text-opacity))}.text-\[\#64748B\][data-v-8851f357]{--un-text-opacity:1;color:rgb(100 116 139/var(--un-text-opacity))}.font-semibold[data-v-8851f357]{font-weight:600}.leading-none[data-v-8851f357]{line-height:1}.tracking-wide[data-v-8851f357]{letter-spacing:.025em}.font-sans[data-v-8851f357]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.tabular-nums[data-v-8851f357]{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal) var(--un-slashed-zero) var(--un-numeric-figure) var(--un-numeric-spacing) var(--un-numeric-fraction)}.antialiased[data-v-8851f357]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(prefers-color-scheme:dark){.dark\:bg-\[\#020420\][data-v-8851f357]{--un-bg-opacity:1;background-color:rgb(2 4 32/var(--un-bg-opacity))}.dark\:text-white[data-v-8851f357]{--un-text-opacity:1;color:rgb(255 255 255/var(--un-text-opacity))}}@media(min-width:640px){.sm\:text-\[110px\][data-v-8851f357]{font-size:110px}.sm\:text-3xl[data-v-8851f357]{font-size:1.875rem;line-height:2.25rem}}
|