nuxt-og-image 2.0.0-beta.9 → 2.0.1
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 +18 -517
- package/dist/client/200.html +2 -2
- package/dist/client/404.html +2 -2
- package/dist/client/_nuxt/IconCSS.685477c5.js +1 -0
- package/dist/client/_nuxt/IconCSS.b41b9663.css +1 -0
- package/dist/client/_nuxt/ImageLoader.7571516f.css +1 -0
- package/dist/client/_nuxt/ImageLoader.fb4e5eb3.js +1 -0
- package/dist/client/_nuxt/entry.0fc037e0.js +143 -0
- package/dist/client/_nuxt/entry.1311cc29.css +1 -0
- package/dist/client/_nuxt/{error-404.02537f9e.js → error-404.068f19dd.js} +1 -1
- package/dist/client/_nuxt/error-404.f3dd5020.css +1 -0
- package/dist/client/_nuxt/error-500.06915589.css +1 -0
- package/dist/client/_nuxt/{error-500.a60bf0b5.js → error-500.4d72610e.js} +1 -1
- package/dist/client/_nuxt/index.33389497.js +1 -0
- package/dist/client/_nuxt/index.ffbea0a9.css +1 -0
- package/dist/client/_nuxt/options.e1a971ea.js +1 -0
- package/dist/client/_nuxt/png.110ab8f5.js +1 -0
- package/dist/client/_nuxt/{shiki.aace8ca2.js → shiki.3fe159de.js} +1 -1
- package/dist/client/_nuxt/svg.1a58cdf3.js +1 -0
- package/dist/client/_nuxt/vnodes.42fbc6e6.js +1 -0
- package/dist/client/index.html +2 -2
- package/dist/client/options/index.html +2 -2
- package/dist/client/png/index.html +2 -2
- package/dist/client/svg/index.html +2 -2
- package/dist/client/vnodes/index.html +2 -2
- package/dist/module.d.ts +117 -11
- package/dist/module.json +2 -2
- package/dist/module.mjs +391 -114
- package/dist/runtime/browserUtil.d.ts +1 -0
- package/dist/runtime/browserUtil.mjs +7 -5
- package/dist/runtime/components/{OgImageDynamic.d.ts → OgImage/Cached.d.ts} +2 -2
- package/dist/runtime/components/OgImage/Cached.mjs +10 -0
- package/dist/runtime/components/OgImage/Dynamic.d.ts +8 -0
- package/dist/runtime/components/{OgImageDynamic.mjs → OgImage/Dynamic.mjs} +3 -3
- package/dist/runtime/components/{OgImageScreenshot.d.ts → OgImage/Screenshot.d.ts} +2 -2
- package/dist/runtime/components/{OgImageScreenshot.mjs → OgImage/Screenshot.mjs} +2 -2
- package/dist/runtime/components/OgImage/Static.d.ts +8 -0
- package/dist/runtime/components/{OgImageStatic.mjs → OgImage/Static.mjs} +3 -3
- package/dist/runtime/components/{OgImageStatic.d.ts → OgImage/WithoutCache.d.ts} +2 -2
- package/dist/runtime/components/OgImage/WithoutCache.mjs +10 -0
- package/dist/runtime/components/OgImage/index.d.ts +5 -0
- package/dist/runtime/components/OgImage/index.mjs +10 -0
- package/dist/runtime/components/OgImageTemplate/Fallback.vue +156 -0
- package/dist/runtime/composables/defineOgImage.d.ts +12 -4
- package/dist/runtime/composables/defineOgImage.mjs +31 -49
- package/dist/runtime/composables/util.d.ts +2 -0
- package/dist/runtime/composables/util.mjs +26 -0
- package/dist/runtime/nitro/middleware/og.png.mjs +54 -8
- package/dist/runtime/nitro/plugins/prerender.d.ts +3 -0
- package/dist/runtime/nitro/plugins/prerender.mjs +28 -0
- package/dist/runtime/nitro/providers/browser/lambda.d.ts +1 -1
- package/dist/runtime/nitro/providers/browser/lambda.mjs +3 -3
- package/dist/runtime/nitro/providers/browser/{node.mjs → playwright.mjs} +0 -9
- package/dist/runtime/nitro/providers/browser/universal.d.ts +1 -0
- package/dist/runtime/nitro/providers/browser/universal.mjs +33 -0
- package/dist/runtime/nitro/providers/inline-css/mock.d.ts +5 -0
- package/dist/runtime/nitro/providers/inline-css/mock.mjs +3 -0
- package/dist/runtime/nitro/providers/inline-css/node.d.ts +5 -0
- package/dist/runtime/nitro/providers/inline-css/node.mjs +11 -0
- package/dist/runtime/nitro/providers/png/resvg-node.d.ts +4 -0
- package/dist/runtime/nitro/providers/png/resvg-node.mjs +6 -0
- package/dist/runtime/nitro/providers/png/resvg-wasm.d.ts +3 -0
- package/dist/runtime/nitro/providers/png/resvg-wasm.mjs +11 -0
- package/dist/runtime/nitro/providers/{svg2png/universal.d.ts → png/svg2png.d.ts} +2 -3
- package/dist/runtime/nitro/providers/png/svg2png.mjs +11 -0
- package/dist/runtime/nitro/providers/satori/{webworker.d.ts → yoga-wasm.d.ts} +2 -3
- package/dist/runtime/nitro/providers/satori/{webworker.mjs → yoga-wasm.mjs} +4 -5
- package/dist/runtime/nitro/renderers/browser.d.ts +2 -2
- package/dist/runtime/nitro/renderers/browser.mjs +14 -12
- package/dist/runtime/nitro/renderers/satori/index.d.ts +2 -2
- package/dist/runtime/nitro/renderers/satori/index.mjs +27 -32
- package/dist/runtime/nitro/renderers/satori/plugins/emojis.d.ts +1 -1
- package/dist/runtime/nitro/renderers/satori/plugins/emojis.mjs +19 -6
- package/dist/runtime/nitro/renderers/satori/plugins/encoding.d.ts +1 -1
- package/dist/runtime/nitro/renderers/satori/plugins/encoding.mjs +5 -7
- package/dist/runtime/nitro/renderers/satori/plugins/flex.d.ts +1 -1
- package/dist/runtime/nitro/renderers/satori/plugins/flex.mjs +8 -10
- package/dist/runtime/nitro/renderers/satori/plugins/imageSrc.d.ts +1 -1
- package/dist/runtime/nitro/renderers/satori/plugins/imageSrc.mjs +45 -13
- package/dist/runtime/nitro/renderers/satori/plugins/twClasses.d.ts +1 -1
- package/dist/runtime/nitro/renderers/satori/plugins/twClasses.mjs +5 -7
- package/dist/runtime/nitro/renderers/satori/utils.d.ts +4 -5
- package/dist/runtime/nitro/renderers/satori/utils.mjs +28 -17
- package/dist/runtime/nitro/routes/debug.d.ts +8 -0
- package/dist/runtime/nitro/routes/debug.mjs +14 -0
- package/dist/runtime/nitro/routes/font.mjs +2 -2
- package/dist/runtime/nitro/routes/html.mjs +102 -26
- package/dist/runtime/nitro/routes/options.d.ts +2 -2
- package/dist/runtime/nitro/routes/options.mjs +21 -20
- package/dist/runtime/nitro/routes/svg.mjs +2 -2
- package/dist/runtime/nitro/routes/vnode.mjs +2 -2
- package/dist/runtime/nitro/utils-pure.d.ts +0 -1
- package/dist/runtime/nitro/utils-pure.mjs +1 -4
- package/dist/runtime/nitro/utils.d.ts +11 -11
- package/dist/runtime/nitro/utils.mjs +67 -53
- package/dist/runtime/public-assets/__nuxt_og_image__/browser-provider-not-supported.png +0 -0
- package/dist/runtime/public-assets-optional/resvg/resvg.wasm +0 -0
- package/dist/types.d.ts +6 -0
- package/package.json +38 -27
- package/dist/client/_nuxt/IconCSS.ef0613e7.js +0 -1
- package/dist/client/_nuxt/ImageLoader.a4418cab.js +0 -1
- package/dist/client/_nuxt/entry.09f25aaf.css +0 -1
- package/dist/client/_nuxt/entry.fc9150b0.js +0 -5
- package/dist/client/_nuxt/error-404.1469f10f.css +0 -1
- package/dist/client/_nuxt/error-500.92b94fae.css +0 -1
- package/dist/client/_nuxt/error-component.8148b615.js +0 -3
- package/dist/client/_nuxt/index.80f38ec7.js +0 -1
- package/dist/client/_nuxt/options.cc3fd02b.js +0 -1
- package/dist/client/_nuxt/png.62758167.js +0 -1
- package/dist/client/_nuxt/svg.853cdaad.js +0 -1
- package/dist/client/_nuxt/vnodes.69b24963.js +0 -1
- package/dist/runtime/components/OgImageBasic.island.vue +0 -92
- package/dist/runtime/nitro/providers/svg2png/universal.mjs +0 -9
- /package/dist/runtime/nitro/providers/browser/{node.d.ts → playwright.d.ts} +0 -0
- /package/dist/runtime/nitro/providers/satori/{node.d.ts → default.d.ts} +0 -0
- /package/dist/runtime/nitro/providers/satori/{node.mjs → default.mjs} +0 -0
- /package/dist/runtime/{public-assets → public-assets-optional/inter-font}/inter-latin-ext-400-normal.woff +0 -0
- /package/dist/runtime/{public-assets → public-assets-optional/inter-font}/inter-latin-ext-700-normal.woff +0 -0
- /package/dist/runtime/{public-assets → public-assets-optional/svg2png}/svg2png.wasm +0 -0
- /package/dist/runtime/{public-assets → public-assets-optional/yoga}/yoga.wasm +0 -0
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
function ho(e,t){const n=Object.create(null),r=e.split(",");for(let s=0;s<r.length;s++)n[r[s]]=!0;return t?s=>!!n[s.toLowerCase()]:s=>!!n[s]}function pn(e){if(z(e)){const t={};for(let n=0;n<e.length;n++){const r=e[n],s=ve(r)?_u(r):pn(r);if(s)for(const o in s)t[o]=s[o]}return t}else{if(ve(e))return e;if(fe(e))return e}}const gu=/;(?![^(]*\))/g,mu=/:([^]+)/,yu=/\/\*.*?\*\//gs;function _u(e){const t={};return e.replace(yu,"").split(gu).forEach(n=>{if(n){const r=n.split(mu);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t}function Ee(e){let t="";if(ve(e))t=e;else if(z(e))for(let n=0;n<e.length;n++){const r=Ee(e[n]);r&&(t+=r+" ")}else if(fe(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function vu(e){if(!e)return null;let{class:t,style:n}=e;return t&&!ve(t)&&(e.class=Ee(t)),n&&(e.style=pn(n)),e}const bu="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",wu=ho(bu);function ql(e){return!!e||e===""}function Eu(e,t){if(e.length!==t.length)return!1;let n=!0;for(let r=0;n&&r<e.length;r++)n=Ut(e[r],t[r]);return n}function Ut(e,t){if(e===t)return!0;let n=ti(e),r=ti(t);if(n||r)return n&&r?e.getTime()===t.getTime():!1;if(n=Vn(e),r=Vn(t),n||r)return e===t;if(n=z(e),r=z(t),n||r)return n&&r?Eu(e,t):!1;if(n=fe(e),r=fe(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),c=t.hasOwnProperty(i);if(l&&!c||!l&&c||!Ut(e[i],t[i]))return!1}}return String(e)===String(t)}function po(e,t){return e.findIndex(n=>Ut(n,t))}const ks=e=>ve(e)?e:e==null?"":z(e)||fe(e)&&(e.toString===zl||!X(e.toString))?JSON.stringify(e,Wl,2):String(e),Wl=(e,t)=>t&&t.__v_isRef?Wl(e,t.value):en(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[r,s])=>(n[`${r} =>`]=s,n),{})}:gn(t)?{[`Set(${t.size})`]:[...t.values()]}:fe(t)&&!z(t)&&!Ql(t)?String(t):t,de={},Zt=[],Ye=()=>{},xu=()=>!1,Cu=/^on[^a-z]/,rr=e=>Cu.test(e),go=e=>e.startsWith("onUpdate:"),Te=Object.assign,mo=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Tu=Object.prototype.hasOwnProperty,re=(e,t)=>Tu.call(e,t),z=Array.isArray,en=e=>mn(e)==="[object Map]",gn=e=>mn(e)==="[object Set]",ti=e=>mn(e)==="[object Date]",ku=e=>mn(e)==="[object RegExp]",X=e=>typeof e=="function",ve=e=>typeof e=="string",Vn=e=>typeof e=="symbol",fe=e=>e!==null&&typeof e=="object",yo=e=>fe(e)&&X(e.then)&&X(e.catch),zl=Object.prototype.toString,mn=e=>zl.call(e),Pu=e=>mn(e).slice(8,-1),Ql=e=>mn(e)==="[object Object]",_o=e=>ve(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Hn=ho(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Vr=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Su=/-(\w)/g,ot=Vr(e=>e.replace(Su,(t,n)=>n?n.toUpperCase():"")),Ru=/\B([A-Z])/g,yn=Vr(e=>e.replace(Ru,"-$1").toLowerCase()),qr=Vr(e=>e.charAt(0).toUpperCase()+e.slice(1)),os=Vr(e=>e?`on${qr(e)}`:""),qn=(e,t)=>!Object.is(e,t),tn=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},Pr=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Sr=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Jl=e=>{const t=ve(e)?Number(e):NaN;return isNaN(t)?e:t};let ni;const Ou=()=>ni||(ni=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});let Qe;class Iu{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Qe,!t&&Qe&&(this.index=(Qe.scopes||(Qe.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Qe;try{return Qe=this,t()}finally{Qe=n}}}on(){Qe=this}off(){Qe=this.parent}stop(t){if(this._active){let n,r;for(n=0,r=this.effects.length;n<r;n++)this.effects[n].stop();for(n=0,r=this.cleanups.length;n<r;n++)this.cleanups[n]();if(this.scopes)for(n=0,r=this.scopes.length;n<r;n++)this.scopes[n].stop(!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,this._active=!1}}}function Au(e,t=Qe){t&&t.active&&t.effects.push(e)}function $u(){return Qe}const vo=e=>{const t=new Set(e);return t.w=0,t.n=0,t},Xl=e=>(e.w&Rt)>0,Yl=e=>(e.n&Rt)>0,Mu=({deps:e})=>{if(e.length)for(let t=0;t<e.length;t++)e[t].w|=Rt},Hu=e=>{const{deps:t}=e;if(t.length){let n=0;for(let r=0;r<t.length;r++){const s=t[r];Xl(s)&&!Yl(s)?s.delete(e):t[n++]=s,s.w&=~Rt,s.n&=~Rt}t.length=n}},Rr=new WeakMap;let An=0,Rt=1;const Ps=30;let Je;const Dt=Symbol(""),Ss=Symbol("");class bo{constructor(t,n=null,r){this.fn=t,this.scheduler=n,this.active=!0,this.deps=[],this.parent=void 0,Au(this,r)}run(){if(!this.active)return this.fn();let t=Je,n=kt;for(;t;){if(t===this)return;t=t.parent}try{return this.parent=Je,Je=this,kt=!0,Rt=1<<++An,An<=Ps?Mu(this):ri(this),this.fn()}finally{An<=Ps&&Hu(this),Rt=1<<--An,Je=this.parent,kt=n,this.parent=void 0,this.deferStop&&this.stop()}}stop(){Je===this?this.deferStop=!0:this.active&&(ri(this),this.onStop&&this.onStop(),this.active=!1)}}function ri(e){const{deps:t}=e;if(t.length){for(let n=0;n<t.length;n++)t[n].delete(e);t.length=0}}let kt=!0;const Gl=[];function _n(){Gl.push(kt),kt=!1}function vn(){const e=Gl.pop();kt=e===void 0?!0:e}function Ne(e,t,n){if(kt&&Je){let r=Rr.get(e);r||Rr.set(e,r=new Map);let s=r.get(n);s||r.set(n,s=vo()),Zl(s)}}function Zl(e,t){let n=!1;An<=Ps?Yl(e)||(e.n|=Rt,n=!Xl(e)):n=!e.has(Je),n&&(e.add(Je),Je.deps.push(e))}function ht(e,t,n,r,s,o){const i=Rr.get(e);if(!i)return;let l=[];if(t==="clear")l=[...i.values()];else if(n==="length"&&z(e)){const c=Number(r);i.forEach((a,u)=>{(u==="length"||u>=c)&&l.push(a)})}else switch(n!==void 0&&l.push(i.get(n)),t){case"add":z(e)?_o(n)&&l.push(i.get("length")):(l.push(i.get(Dt)),en(e)&&l.push(i.get(Ss)));break;case"delete":z(e)||(l.push(i.get(Dt)),en(e)&&l.push(i.get(Ss)));break;case"set":en(e)&&l.push(i.get(Dt));break}if(l.length===1)l[0]&&Rs(l[0]);else{const c=[];for(const a of l)a&&c.push(...a);Rs(vo(c))}}function Rs(e,t){const n=z(e)?e:[...e];for(const r of n)r.computed&&si(r);for(const r of n)r.computed||si(r)}function si(e,t){(e!==Je||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function Lu(e,t){var n;return(n=Rr.get(e))===null||n===void 0?void 0:n.get(t)}const Nu=ho("__proto__,__v_isRef,__isVue"),ec=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Vn)),ju=wo(),Fu=wo(!1,!0),Du=wo(!0),oi=Bu();function Bu(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const r=se(this);for(let o=0,i=this.length;o<i;o++)Ne(r,"get",o+"");const s=r[t](...n);return s===-1||s===!1?r[t](...n.map(se)):s}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){_n();const r=se(this)[t].apply(this,n);return vn(),r}}),e}function Uu(e){const t=se(this);return Ne(t,"has",e),t.hasOwnProperty(e)}function wo(e=!1,t=!1){return function(r,s,o){if(s==="__v_isReactive")return!e;if(s==="__v_isReadonly")return e;if(s==="__v_isShallow")return t;if(s==="__v_raw"&&o===(e?t?sf:oc:t?sc:rc).get(r))return r;const i=z(r);if(!e){if(i&&re(oi,s))return Reflect.get(oi,s,o);if(s==="hasOwnProperty")return Uu}const l=Reflect.get(r,s,o);return(Vn(s)?ec.has(s):Nu(s))||(e||Ne(r,"get",s),t)?l:we(l)?i&&_o(s)?l:l.value:fe(l)?e?ic(l):Ve(l):l}}const Ku=tc(),Vu=tc(!0);function tc(e=!1){return function(n,r,s,o){let i=n[r];if(Kt(i)&&we(i)&&!we(s))return!1;if(!e&&(!Or(s)&&!Kt(s)&&(i=se(i),s=se(s)),!z(n)&&we(i)&&!we(s)))return i.value=s,!0;const l=z(n)&&_o(r)?Number(r)<n.length:re(n,r),c=Reflect.set(n,r,s,o);return n===se(o)&&(l?qn(s,i)&&ht(n,"set",r,s):ht(n,"add",r,s)),c}}function qu(e,t){const n=re(e,t);e[t];const r=Reflect.deleteProperty(e,t);return r&&n&&ht(e,"delete",t,void 0),r}function Wu(e,t){const n=Reflect.has(e,t);return(!Vn(t)||!ec.has(t))&&Ne(e,"has",t),n}function zu(e){return Ne(e,"iterate",z(e)?"length":Dt),Reflect.ownKeys(e)}const nc={get:ju,set:Ku,deleteProperty:qu,has:Wu,ownKeys:zu},Qu={get:Du,set(e,t){return!0},deleteProperty(e,t){return!0}},Ju=Te({},nc,{get:Fu,set:Vu}),Eo=e=>e,Wr=e=>Reflect.getPrototypeOf(e);function ar(e,t,n=!1,r=!1){e=e.__v_raw;const s=se(e),o=se(t);n||(t!==o&&Ne(s,"get",t),Ne(s,"get",o));const{has:i}=Wr(s),l=r?Eo:n?To:Wn;if(i.call(s,t))return l(e.get(t));if(i.call(s,o))return l(e.get(o));e!==s&&e.get(t)}function ur(e,t=!1){const n=this.__v_raw,r=se(n),s=se(e);return t||(e!==s&&Ne(r,"has",e),Ne(r,"has",s)),e===s?n.has(e):n.has(e)||n.has(s)}function fr(e,t=!1){return e=e.__v_raw,!t&&Ne(se(e),"iterate",Dt),Reflect.get(e,"size",e)}function ii(e){e=se(e);const t=se(this);return Wr(t).has.call(t,e)||(t.add(e),ht(t,"add",e,e)),this}function li(e,t){t=se(t);const n=se(this),{has:r,get:s}=Wr(n);let o=r.call(n,e);o||(e=se(e),o=r.call(n,e));const i=s.call(n,e);return n.set(e,t),o?qn(t,i)&&ht(n,"set",e,t):ht(n,"add",e,t),this}function ci(e){const t=se(this),{has:n,get:r}=Wr(t);let s=n.call(t,e);s||(e=se(e),s=n.call(t,e)),r&&r.call(t,e);const o=t.delete(e);return s&&ht(t,"delete",e,void 0),o}function ai(){const e=se(this),t=e.size!==0,n=e.clear();return t&&ht(e,"clear",void 0,void 0),n}function dr(e,t){return function(r,s){const o=this,i=o.__v_raw,l=se(i),c=t?Eo:e?To:Wn;return!e&&Ne(l,"iterate",Dt),i.forEach((a,u)=>r.call(s,c(a),c(u),o))}}function hr(e,t,n){return function(...r){const s=this.__v_raw,o=se(s),i=en(o),l=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,a=s[e](...r),u=n?Eo:t?To:Wn;return!t&&Ne(o,"iterate",c?Ss:Dt),{next(){const{value:f,done:d}=a.next();return d?{value:f,done:d}:{value:l?[u(f[0]),u(f[1])]:u(f),done:d}},[Symbol.iterator](){return this}}}}function _t(e){return function(...t){return e==="delete"?!1:this}}function Xu(){const e={get(o){return ar(this,o)},get size(){return fr(this)},has:ur,add:ii,set:li,delete:ci,clear:ai,forEach:dr(!1,!1)},t={get(o){return ar(this,o,!1,!0)},get size(){return fr(this)},has:ur,add:ii,set:li,delete:ci,clear:ai,forEach:dr(!1,!0)},n={get(o){return ar(this,o,!0)},get size(){return fr(this,!0)},has(o){return ur.call(this,o,!0)},add:_t("add"),set:_t("set"),delete:_t("delete"),clear:_t("clear"),forEach:dr(!0,!1)},r={get(o){return ar(this,o,!0,!0)},get size(){return fr(this,!0)},has(o){return ur.call(this,o,!0)},add:_t("add"),set:_t("set"),delete:_t("delete"),clear:_t("clear"),forEach:dr(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=hr(o,!1,!1),n[o]=hr(o,!0,!1),t[o]=hr(o,!1,!0),r[o]=hr(o,!0,!0)}),[e,n,t,r]}const[Yu,Gu,Zu,ef]=Xu();function xo(e,t){const n=t?e?ef:Zu:e?Gu:Yu;return(r,s,o)=>s==="__v_isReactive"?!e:s==="__v_isReadonly"?e:s==="__v_raw"?r:Reflect.get(re(n,s)&&s in r?n:r,s,o)}const tf={get:xo(!1,!1)},nf={get:xo(!1,!0)},rf={get:xo(!0,!1)},rc=new WeakMap,sc=new WeakMap,oc=new WeakMap,sf=new WeakMap;function of(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function lf(e){return e.__v_skip||!Object.isExtensible(e)?0:of(Pu(e))}function Ve(e){return Kt(e)?e:Co(e,!1,nc,tf,rc)}function cf(e){return Co(e,!1,Ju,nf,sc)}function ic(e){return Co(e,!0,Qu,rf,oc)}function Co(e,t,n,r,s){if(!fe(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=s.get(e);if(o)return o;const i=lf(e);if(i===0)return e;const l=new Proxy(e,i===2?r:n);return s.set(e,l),l}function nn(e){return Kt(e)?nn(e.__v_raw):!!(e&&e.__v_isReactive)}function Kt(e){return!!(e&&e.__v_isReadonly)}function Or(e){return!!(e&&e.__v_isShallow)}function lc(e){return nn(e)||Kt(e)}function se(e){const t=e&&e.__v_raw;return t?se(t):e}function cc(e){return Pr(e,"__v_skip",!0),e}const Wn=e=>fe(e)?Ve(e):e,To=e=>fe(e)?ic(e):e;function ac(e){kt&&Je&&(e=se(e),Zl(e.dep||(e.dep=vo())))}function ko(e,t){e=se(e);const n=e.dep;n&&Rs(n)}function we(e){return!!(e&&e.__v_isRef===!0)}function me(e){return uc(e,!1)}function zn(e){return uc(e,!0)}function uc(e,t){return we(e)?e:new af(e,t)}class af{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:se(t),this._value=n?t:Wn(t)}get value(){return ac(this),this._value}set value(t){const n=this.__v_isShallow||Or(t)||Kt(t);t=n?t:se(t),qn(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Wn(t),ko(this))}}function fc(e){ko(e)}function V(e){return we(e)?e.value:e}const uf={get:(e,t,n)=>V(Reflect.get(e,t,n)),set:(e,t,n,r)=>{const s=e[t];return we(s)&&!we(n)?(s.value=n,!0):Reflect.set(e,t,n,r)}};function dc(e){return nn(e)?e:new Proxy(e,uf)}class ff{constructor(t,n,r){this._object=t,this._key=n,this._defaultValue=r,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Lu(se(this._object),this._key)}}function hc(e,t,n){const r=e[t];return we(r)?r:new ff(e,t,n)}var pc;class df{constructor(t,n,r,s){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this[pc]=!1,this._dirty=!0,this.effect=new bo(t,()=>{this._dirty||(this._dirty=!0,ko(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!s,this.__v_isReadonly=r}get value(){const t=se(this);return ac(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}pc="__v_isReadonly";function hf(e,t,n=!1){let r,s;const o=X(e);return o?(r=e,s=Ye):(r=e.get,s=e.set),new df(r,s,o||!s,n)}function Pt(e,t,n,r){let s;try{s=r?e(...r):e()}catch(o){bn(o,t,n)}return s}function Ke(e,t,n,r){if(X(e)){const o=Pt(e,t,n,r);return o&&yo(o)&&o.catch(i=>{bn(i,t,n)}),o}const s=[];for(let o=0;o<e.length;o++)s.push(Ke(e[o],t,n,r));return s}function bn(e,t,n,r=!0){const s=t?t.vnode:null;if(t){let o=t.parent;const i=t.proxy,l=n;for(;o;){const a=o.ec;if(a){for(let u=0;u<a.length;u++)if(a[u](e,i,l)===!1)return}o=o.parent}const c=t.appContext.config.errorHandler;if(c){Pt(c,null,10,[e,i,l]);return}}pf(e,n,s,r)}function pf(e,t,n,r=!0){console.error(e)}let Qn=!1,Os=!1;const Pe=[];let nt=0;const rn=[];let at=null,Nt=0;const gc=Promise.resolve();let Po=null;function wn(e){const t=Po||gc;return e?t.then(this?e.bind(this):e):t}function gf(e){let t=nt+1,n=Pe.length;for(;t<n;){const r=t+n>>>1;Jn(Pe[r])<e?t=r+1:n=r}return t}function zr(e){(!Pe.length||!Pe.includes(e,Qn&&e.allowRecurse?nt+1:nt))&&(e.id==null?Pe.push(e):Pe.splice(gf(e.id),0,e),mc())}function mc(){!Qn&&!Os&&(Os=!0,Po=gc.then(_c))}function mf(e){const t=Pe.indexOf(e);t>nt&&Pe.splice(t,1)}function yc(e){z(e)?rn.push(...e):(!at||!at.includes(e,e.allowRecurse?Nt+1:Nt))&&rn.push(e),mc()}function ui(e,t=Qn?nt+1:0){for(;t<Pe.length;t++){const n=Pe[t];n&&n.pre&&(Pe.splice(t,1),t--,n())}}function Ir(e){if(rn.length){const t=[...new Set(rn)];if(rn.length=0,at){at.push(...t);return}for(at=t,at.sort((n,r)=>Jn(n)-Jn(r)),Nt=0;Nt<at.length;Nt++)at[Nt]();at=null,Nt=0}}const Jn=e=>e.id==null?1/0:e.id,yf=(e,t)=>{const n=Jn(e)-Jn(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function _c(e){Os=!1,Qn=!0,Pe.sort(yf);const t=Ye;try{for(nt=0;nt<Pe.length;nt++){const n=Pe[nt];n&&n.active!==!1&&Pt(n,null,14)}}finally{nt=0,Pe.length=0,Ir(),Qn=!1,Po=null,(Pe.length||rn.length)&&_c()}}function _f(e,t,...n){if(e.isUnmounted)return;const r=e.vnode.props||de;let s=n;const o=t.startsWith("update:"),i=o&&t.slice(7);if(i&&i in r){const u=`${i==="modelValue"?"model":i}Modifiers`,{number:f,trim:d}=r[u]||de;d&&(s=n.map(g=>ve(g)?g.trim():g)),f&&(s=n.map(Sr))}let l,c=r[l=os(t)]||r[l=os(ot(t))];!c&&o&&(c=r[l=os(yn(t))]),c&&Ke(c,e,6,s);const a=r[l+"Once"];if(a){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Ke(a,e,6,s)}}function vc(e,t,n=!1){const r=t.emitsCache,s=r.get(e);if(s!==void 0)return s;const o=e.emits;let i={},l=!1;if(!X(e)){const c=a=>{const u=vc(a,t,!0);u&&(l=!0,Te(i,u))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!l?(fe(e)&&r.set(e,null),null):(z(o)?o.forEach(c=>i[c]=null):Te(i,o),fe(e)&&r.set(e,i),i)}function Qr(e,t){return!e||!rr(t)?!1:(t=t.slice(2).replace(/Once$/,""),re(e,t[0].toLowerCase()+t.slice(1))||re(e,yn(t))||re(e,t))}let Ce=null,Jr=null;function Ar(e){const t=Ce;return Ce=e,Jr=e&&e.type.__scopeId||null,t}function sv(e){Jr=e}function ov(){Jr=null}function Re(e,t=Ce,n){if(!t||e._n)return e;const r=(...s)=>{r._d&&wi(-1);const o=Ar(t);let i;try{i=e(...s)}finally{Ar(o),r._d&&wi(1)}return i};return r._n=!0,r._c=!0,r._d=!0,r}function is(e){const{type:t,vnode:n,proxy:r,withProxy:s,props:o,propsOptions:[i],slots:l,attrs:c,emit:a,render:u,renderCache:f,data:d,setupState:g,ctx:m,inheritAttrs:v}=e;let E,_;const p=Ar(e);try{if(n.shapeFlag&4){const x=s||r;E=Be(u.call(x,x,f,o,g,d,m)),_=c}else{const x=t;E=Be(x.length>1?x(o,{attrs:c,slots:l,emit:a}):x(o,null)),_=t.props?c:bf(c)}}catch(x){jn.length=0,bn(x,e,1),E=G(Ae)}let b=E;if(_&&v!==!1){const x=Object.keys(_),{shapeFlag:O}=b;x.length&&O&7&&(i&&x.some(go)&&(_=wf(_,i)),b=pt(b,_))}return n.dirs&&(b=pt(b),b.dirs=b.dirs?b.dirs.concat(n.dirs):n.dirs),n.transition&&(b.transition=n.transition),E=b,Ar(p),E}function vf(e){let t;for(let n=0;n<e.length;n++){const r=e[n];if(an(r)){if(r.type!==Ae||r.children==="v-if"){if(t)return;t=r}}else return}return t}const bf=e=>{let t;for(const n in e)(n==="class"||n==="style"||rr(n))&&((t||(t={}))[n]=e[n]);return t},wf=(e,t)=>{const n={};for(const r in e)(!go(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:c}=t,a=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return r?fi(r,i,a):!!i;if(c&8){const u=t.dynamicProps;for(let f=0;f<u.length;f++){const d=u[f];if(i[d]!==r[d]&&!Qr(a,d))return!0}}}else return(s||l)&&(!l||!l.$stable)?!0:r===i?!1:r?i?fi(r,i,a):!0:!!i;return!1}function fi(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]&&!Qr(n,o))return!0}return!1}function So({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}const bc=e=>e.__isSuspense,xf={name:"Suspense",__isSuspense:!0,process(e,t,n,r,s,o,i,l,c,a){e==null?Cf(t,n,r,s,o,i,l,c,a):Tf(e,t,n,r,s,i,l,c,a)},hydrate:kf,create:Ro,normalize:Pf},wc=xf;function Xn(e,t){const n=e.props&&e.props[t];X(n)&&n()}function Cf(e,t,n,r,s,o,i,l,c){const{p:a,o:{createElement:u}}=c,f=u("div"),d=e.suspense=Ro(e,s,r,t,f,n,o,i,l,c);a(null,d.pendingBranch=e.ssContent,f,null,r,d,o,i),d.deps>0?(Xn(e,"onPending"),Xn(e,"onFallback"),a(null,e.ssFallback,t,n,r,null,o,i),sn(d,e.ssFallback)):d.resolve()}function Tf(e,t,n,r,s,o,i,l,{p:c,um:a,o:{createElement:u}}){const f=t.suspense=e.suspense;f.vnode=t,t.el=e.el;const d=t.ssContent,g=t.ssFallback,{activeBranch:m,pendingBranch:v,isInFallback:E,isHydrating:_}=f;if(v)f.pendingBranch=d,Xe(d,v)?(c(v,d,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0?f.resolve():E&&(c(m,g,n,r,s,null,o,i,l),sn(f,g))):(f.pendingId++,_?(f.isHydrating=!1,f.activeBranch=v):a(v,s,f),f.deps=0,f.effects.length=0,f.hiddenContainer=u("div"),E?(c(null,d,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0?f.resolve():(c(m,g,n,r,s,null,o,i,l),sn(f,g))):m&&Xe(d,m)?(c(m,d,n,r,s,f,o,i,l),f.resolve(!0)):(c(null,d,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0&&f.resolve()));else if(m&&Xe(d,m))c(m,d,n,r,s,f,o,i,l),sn(f,d);else if(Xn(t,"onPending"),f.pendingBranch=d,f.pendingId++,c(null,d,f.hiddenContainer,null,s,f,o,i,l),f.deps<=0)f.resolve();else{const{timeout:p,pendingId:b}=f;p>0?setTimeout(()=>{f.pendingId===b&&f.fallback(g)},p):p===0&&f.fallback(g)}}function Ro(e,t,n,r,s,o,i,l,c,a,u=!1){const{p:f,m:d,um:g,n:m,o:{parentNode:v,remove:E}}=a,_=e.props?Jl(e.props.timeout):void 0,p={vnode:e,parent:t,parentComponent:n,isSVG:i,container:r,hiddenContainer:s,anchor:o,deps:0,pendingId:0,timeout:typeof _=="number"?_:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:u,isUnmounted:!1,effects:[],resolve(b=!1){const{vnode:x,activeBranch:O,pendingBranch:P,pendingId:H,effects:R,parentComponent:U,container:F}=p;if(p.isHydrating)p.isHydrating=!1;else if(!b){const Y=O&&P.transition&&P.transition.mode==="out-in";Y&&(O.transition.afterLeave=()=>{H===p.pendingId&&d(P,F,D,0)});let{anchor:D}=p;O&&(D=m(O),g(O,U,p,!0)),Y||d(P,F,D,0)}sn(p,P),p.pendingBranch=null,p.isInFallback=!1;let Q=p.parent,N=!1;for(;Q;){if(Q.pendingBranch){Q.effects.push(...R),N=!0;break}Q=Q.parent}N||yc(R),p.effects=[],Xn(x,"onResolve")},fallback(b){if(!p.pendingBranch)return;const{vnode:x,activeBranch:O,parentComponent:P,container:H,isSVG:R}=p;Xn(x,"onFallback");const U=m(O),F=()=>{p.isInFallback&&(f(null,b,H,U,P,null,R,l,c),sn(p,b))},Q=b.transition&&b.transition.mode==="out-in";Q&&(O.transition.afterLeave=F),p.isInFallback=!0,g(O,P,null,!0),Q||F()},move(b,x,O){p.activeBranch&&d(p.activeBranch,b,x,O),p.container=b},next(){return p.activeBranch&&m(p.activeBranch)},registerDep(b,x){const O=!!p.pendingBranch;O&&p.deps++;const P=b.vnode.el;b.asyncDep.catch(H=>{bn(H,b,0)}).then(H=>{if(b.isUnmounted||p.isUnmounted||p.pendingId!==b.suspenseId)return;b.asyncResolved=!0;const{vnode:R}=b;Ns(b,H,!1),P&&(R.el=P);const U=!P&&b.subTree.el;x(b,R,v(P||b.subTree.el),P?null:m(b.subTree),p,i,c),U&&E(U),So(b,R.el),O&&--p.deps===0&&p.resolve()})},unmount(b,x){p.isUnmounted=!0,p.activeBranch&&g(p.activeBranch,n,b,x),p.pendingBranch&&g(p.pendingBranch,n,b,x)}};return p}function kf(e,t,n,r,s,o,i,l,c){const a=t.suspense=Ro(t,r,n,e.parentNode,document.createElement("div"),null,s,o,i,l,!0),u=c(e,a.pendingBranch=t.ssContent,n,a,o,i);return a.deps===0&&a.resolve(),u}function Pf(e){const{shapeFlag:t,children:n}=e,r=t&32;e.ssContent=di(r?n.default:n),e.ssFallback=r?di(n.fallback):G(Ae)}function di(e){let t;if(X(e)){const n=cn&&e._c;n&&(e._d=!1,he()),e=e(),n&&(e._d=!0,t=Ue,Wc())}return z(e)&&(e=vf(e)),e=Be(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function Ec(e,t){t&&t.pendingBranch?z(e)?t.effects.push(...e):t.effects.push(e):yc(e)}function sn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:r}=e,s=n.el=t.el;r&&r.subTree===n&&(r.vnode.el=s,So(r,s))}function on(e,t){if(_e){let n=_e.provides;const r=_e.parent&&_e.parent.provides;r===n&&(n=_e.provides=Object.create(r)),n[e]=t}}function Ge(e,t,n=!1){const r=_e||Ce;if(r){const s=r.parent==null?r.vnode.appContext&&r.vnode.appContext.provides:r.parent.provides;if(s&&e in s)return s[e];if(arguments.length>1)return n&&X(t)?t.call(r.proxy):t}}function Sf(e,t){return Xr(e,null,t)}function Rf(e,t){return Xr(e,null,{flush:"post"})}const pr={};function Fe(e,t,n){return Xr(e,t,n)}function Xr(e,t,{immediate:n,deep:r,flush:s,onTrack:o,onTrigger:i}=de){const l=$u()===_e?.scope?_e:null;let c,a=!1,u=!1;if(we(e)?(c=()=>e.value,a=Or(e)):nn(e)?(c=()=>e,r=!0):z(e)?(u=!0,a=e.some(b=>nn(b)||Or(b)),c=()=>e.map(b=>{if(we(b))return b.value;if(nn(b))return Ft(b);if(X(b))return Pt(b,l,2)})):X(e)?t?c=()=>Pt(e,l,2):c=()=>{if(!(l&&l.isUnmounted))return f&&f(),Ke(e,l,3,[d])}:c=Ye,t&&r){const b=c;c=()=>Ft(b())}let f,d=b=>{f=_.onStop=()=>{Pt(b,l,4)}},g;if(un)if(d=Ye,t?n&&Ke(t,l,3,[c(),u?[]:void 0,d]):c(),s==="sync"){const b=md();g=b.__watcherHandles||(b.__watcherHandles=[])}else return Ye;let m=u?new Array(e.length).fill(pr):pr;const v=()=>{if(_.active)if(t){const b=_.run();(r||a||(u?b.some((x,O)=>qn(x,m[O])):qn(b,m)))&&(f&&f(),Ke(t,l,3,[b,m===pr?void 0:u&&m[0]===pr?[]:m,d]),m=b)}else _.run()};v.allowRecurse=!!t;let E;s==="sync"?E=v:s==="post"?E=()=>xe(v,l&&l.suspense):(v.pre=!0,l&&(v.id=l.uid),E=()=>zr(v));const _=new bo(c,E);t?n?v():m=_.run():s==="post"?xe(_.run.bind(_),l&&l.suspense):_.run();const p=()=>{_.stop(),l&&l.scope&&mo(l.scope.effects,_)};return g&&g.push(p),p}function Of(e,t,n){const r=this.proxy,s=ve(e)?e.includes(".")?xc(r,e):()=>r[e]:e.bind(r,r);let o;X(t)?o=t:(o=t.handler,n=t);const i=_e;Ot(this);const l=Xr(s,o.bind(r),n);return i?Ot(i):St(),l}function xc(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}}function Ft(e,t){if(!fe(e)||e.__v_skip||(t=t||new Set,t.has(e)))return e;if(t.add(e),we(e))Ft(e.value,t);else if(z(e))for(let n=0;n<e.length;n++)Ft(e[n],t);else if(gn(e)||en(e))e.forEach(n=>{Ft(n,t)});else if(Ql(e))for(const n in e)Ft(e[n],t);return e}function If(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return En(()=>{e.isMounted=!0}),or(()=>{e.isUnmounting=!0}),e}const De=[Function,Array],Af={name:"BaseTransition",props:{mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:De,onEnter:De,onAfterEnter:De,onEnterCancelled:De,onBeforeLeave:De,onLeave:De,onAfterLeave:De,onLeaveCancelled:De,onBeforeAppear:De,onAppear:De,onAfterAppear:De,onAppearCancelled:De},setup(e,{slots:t}){const n=it(),r=If();let s;return()=>{const o=t.default&&kc(t.default(),!0);if(!o||!o.length)return;let i=o[0];if(o.length>1){for(const v of o)if(v.type!==Ae){i=v;break}}const l=se(e),{mode:c}=l;if(r.isLeaving)return ls(i);const a=hi(i);if(!a)return ls(i);const u=Is(a,l,r,n);$r(a,u);const f=n.subTree,d=f&&hi(f);let g=!1;const{getTransitionKey:m}=a.type;if(m){const v=m();s===void 0?s=v:v!==s&&(s=v,g=!0)}if(d&&d.type!==Ae&&(!Xe(a,d)||g)){const v=Is(d,l,r,n);if($r(d,v),c==="out-in")return r.isLeaving=!0,v.afterLeave=()=>{r.isLeaving=!1,n.update.active!==!1&&n.update()},ls(i);c==="in-out"&&a.type!==Ae&&(v.delayLeave=(E,_,p)=>{const b=Tc(r,d);b[String(d.key)]=d,E._leaveCb=()=>{_(),E._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=p})}return i}}},Cc=Af;function Tc(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 Is(e,t,n,r){const{appear:s,mode:o,persisted:i=!1,onBeforeEnter:l,onEnter:c,onAfterEnter:a,onEnterCancelled:u,onBeforeLeave:f,onLeave:d,onAfterLeave:g,onLeaveCancelled:m,onBeforeAppear:v,onAppear:E,onAfterAppear:_,onAppearCancelled:p}=t,b=String(e.key),x=Tc(n,e),O=(R,U)=>{R&&Ke(R,r,9,U)},P=(R,U)=>{const F=U[1];O(R,U),z(R)?R.every(Q=>Q.length<=1)&&F():R.length<=1&&F()},H={mode:o,persisted:i,beforeEnter(R){let U=l;if(!n.isMounted)if(s)U=v||l;else return;R._leaveCb&&R._leaveCb(!0);const F=x[b];F&&Xe(e,F)&&F.el._leaveCb&&F.el._leaveCb(),O(U,[R])},enter(R){let U=c,F=a,Q=u;if(!n.isMounted)if(s)U=E||c,F=_||a,Q=p||u;else return;let N=!1;const Y=R._enterCb=D=>{N||(N=!0,D?O(Q,[R]):O(F,[R]),H.delayedLeave&&H.delayedLeave(),R._enterCb=void 0)};U?P(U,[R,Y]):Y()},leave(R,U){const F=String(e.key);if(R._enterCb&&R._enterCb(!0),n.isUnmounting)return U();O(f,[R]);let Q=!1;const N=R._leaveCb=Y=>{Q||(Q=!0,U(),Y?O(m,[R]):O(g,[R]),R._leaveCb=void 0,x[F]===e&&delete x[F])};x[F]=e,d?P(d,[R,N]):N()},clone(R){return Is(R,t,n,r)}};return H}function ls(e){if(sr(e))return e=pt(e),e.children=null,e}function hi(e){return sr(e)?e.children?e.children[0]:void 0:e}function $r(e,t){e.shapeFlag&6&&e.component?$r(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 kc(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===Oe?(i.patchFlag&128&&s++,r=r.concat(kc(i.children,t,l))):(t||i.type!==Ae)&&r.push(l!=null?pt(i,{key:l}):i)}if(s>1)for(let o=0;o<r.length;o++)r[o].patchFlag=-2;return r}function $e(e){return X(e)?{setup:e,name:e.name}:e}const Bt=e=>!!e.type.__asyncLoader;function As(e){X(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:r,delay:s=200,timeout:o,suspensible:i=!0,onError:l}=e;let c=null,a,u=0;const f=()=>(u++,c=null,d()),d=()=>{let g;return c||(g=c=t().catch(m=>{if(m=m instanceof Error?m:new Error(String(m)),l)return new Promise((v,E)=>{l(m,()=>v(f()),()=>E(m),u+1)});throw m}).then(m=>g!==c&&c?c:(m&&(m.__esModule||m[Symbol.toStringTag]==="Module")&&(m=m.default),a=m,m)))};return $e({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return a},setup(){const g=_e;if(a)return()=>cs(a,g);const m=p=>{c=null,bn(p,g,13,!r)};if(i&&g.suspense||un)return d().then(p=>()=>cs(p,g)).catch(p=>(m(p),()=>r?G(r,{error:p}):null));const v=me(!1),E=me(),_=me(!!s);return s&&setTimeout(()=>{_.value=!1},s),o!=null&&setTimeout(()=>{if(!v.value&&!E.value){const p=new Error(`Async component timed out after ${o}ms.`);m(p),E.value=p}},o),d().then(()=>{v.value=!0,g.parent&&sr(g.parent.vnode)&&zr(g.parent.update)}).catch(p=>{m(p),E.value=p}),()=>{if(v.value&&a)return cs(a,g);if(E.value&&r)return G(r,{error:E.value});if(n&&!_.value)return G(n)}}})}function cs(e,t){const{ref:n,props:r,children:s,ce:o}=t.vnode,i=G(e,r,s);return i.ref=n,i.ce=o,delete t.vnode.ce,i}const sr=e=>e.type.__isKeepAlive,$f={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=it(),r=n.ctx;if(!r.renderer)return()=>{const p=t.default&&t.default();return p&&p.length===1?p[0]:p};const s=new Map,o=new Set;let i=null;const l=n.suspense,{renderer:{p:c,m:a,um:u,o:{createElement:f}}}=r,d=f("div");r.activate=(p,b,x,O,P)=>{const H=p.component;a(p,b,x,0,l),c(H.vnode,p,b,x,H,l,O,p.slotScopeIds,P),xe(()=>{H.isDeactivated=!1,H.a&&tn(H.a);const R=p.props&&p.props.onVnodeMounted;R&&He(R,H.parent,p)},l)},r.deactivate=p=>{const b=p.component;a(p,d,null,1,l),xe(()=>{b.da&&tn(b.da);const x=p.props&&p.props.onVnodeUnmounted;x&&He(x,b.parent,p),b.isDeactivated=!0},l)};function g(p){as(p),u(p,n,l,!0)}function m(p){s.forEach((b,x)=>{const O=js(b.type);O&&(!p||!p(O))&&v(x)})}function v(p){const b=s.get(p);!i||!Xe(b,i)?g(b):i&&as(i),s.delete(p),o.delete(p)}Fe(()=>[e.include,e.exclude],([p,b])=>{p&&m(x=>$n(p,x)),b&&m(x=>!$n(b,x))},{flush:"post",deep:!0});let E=null;const _=()=>{E!=null&&s.set(E,us(n.subTree))};return En(_),Ic(_),or(()=>{s.forEach(p=>{const{subTree:b,suspense:x}=n,O=us(b);if(p.type===O.type&&p.key===O.key){as(O);const P=O.component.da;P&&xe(P,x);return}g(p)})}),()=>{if(E=null,!t.default)return null;const p=t.default(),b=p[0];if(p.length>1)return i=null,p;if(!an(b)||!(b.shapeFlag&4)&&!(b.shapeFlag&128))return i=null,b;let x=us(b);const O=x.type,P=js(Bt(x)?x.type.__asyncResolved||{}:O),{include:H,exclude:R,max:U}=e;if(H&&(!P||!$n(H,P))||R&&P&&$n(R,P))return i=x,b;const F=x.key==null?O:x.key,Q=s.get(F);return x.el&&(x=pt(x),b.shapeFlag&128&&(b.ssContent=x)),E=F,Q?(x.el=Q.el,x.component=Q.component,x.transition&&$r(x,x.transition),x.shapeFlag|=512,o.delete(F),o.add(F)):(o.add(F),U&&o.size>parseInt(U,10)&&v(o.values().next().value)),x.shapeFlag|=256,i=x,bc(b.type)?b:x}}},Mf=$f;function $n(e,t){return z(e)?e.some(n=>$n(n,t)):ve(e)?e.split(",").includes(t):ku(e)?e.test(t):!1}function Pc(e,t){Rc(e,"a",t)}function Sc(e,t){Rc(e,"da",t)}function Rc(e,t,n=_e){const r=e.__wdc||(e.__wdc=()=>{let s=n;for(;s;){if(s.isDeactivated)return;s=s.parent}return e()});if(Yr(t,r,n),n){let s=n.parent;for(;s&&s.parent;)sr(s.parent.vnode)&&Hf(r,t,n,s),s=s.parent}}function Hf(e,t,n,r){const s=Yr(t,e,r,!0);Yn(()=>{mo(r[t],s)},n)}function as(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function us(e){return e.shapeFlag&128?e.ssContent:e}function Yr(e,t,n=_e,r=!1){if(n){const s=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;_n(),Ot(n);const l=Ke(t,n,e,i);return St(),vn(),l});return r?s.unshift(o):s.push(o),o}}const gt=e=>(t,n=_e)=>(!un||e==="sp")&&Yr(e,(...r)=>t(...r),n),Oc=gt("bm"),En=gt("m"),Lf=gt("bu"),Ic=gt("u"),or=gt("bum"),Yn=gt("um"),Nf=gt("sp"),jf=gt("rtg"),Ff=gt("rtc");function Ac(e,t=_e){Yr("ec",e,t)}function Df(e,t){const n=Ce;if(n===null)return e;const r=Zr(n)||n.proxy,s=e.dirs||(e.dirs=[]);for(let o=0;o<t.length;o++){let[i,l,c,a=de]=t[o];i&&(X(i)&&(i={mounted:i,updated:i}),i.deep&&Ft(l),s.push({dir:i,instance:r,value:l,oldValue:void 0,arg:c,modifiers:a}))}return e}function tt(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 c=l.dir[r];c&&(_n(),Ke(c,n,8,[e.el,l,e,t]),vn())}}const Oo="components";function Bf(e,t){return Hc(Oo,e,!0,t)||e}const $c=Symbol();function Mc(e){return ve(e)?Hc(Oo,e,!1)||e:e||$c}function Hc(e,t,n=!0,r=!1){const s=Ce||_e;if(s){const o=s.type;if(e===Oo){const l=js(o,!1);if(l&&(l===t||l===ot(t)||l===qr(ot(t))))return o}const i=pi(s[e]||o[e],t)||pi(s.appContext[e],t);return!i&&r?o:i}}function pi(e,t){return e&&(e[t]||e[ot(t)]||e[qr(ot(t))])}function Gn(e,t,n={},r,s){if(Ce.isCE||Ce.parent&&Bt(Ce.parent)&&Ce.parent.isCE)return t!=="default"&&(n.name=t),G("slot",n,r&&r());let o=e[t];o&&o._c&&(o._d=!1),he();const i=o&&Lc(o(n)),l=Ie(Oe,{key:n.key||i&&i.key||`_${t}`},i||(r?r():[]),i&&e._===1?64:-2);return!s&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),o&&o._c&&(o._d=!0),l}function Lc(e){return e.some(t=>an(t)?!(t.type===Ae||t.type===Oe&&!Lc(t.children)):!0)?e:null}const $s=e=>e?Yc(e)?Zr(e)||e.proxy:$s(e.parent):null,Ln=Te(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=>$s(e.parent),$root:e=>$s(e.root),$emit:e=>e.emit,$options:e=>Io(e),$forceUpdate:e=>e.f||(e.f=()=>zr(e.update)),$nextTick:e=>e.n||(e.n=wn.bind(e.proxy)),$watch:e=>Of.bind(e)}),fs=(e,t)=>e!==de&&!e.__isScriptSetup&&re(e,t),Uf={get({_:e},t){const{ctx:n,setupState:r,data:s,props:o,accessCache:i,type:l,appContext:c}=e;let a;if(t[0]!=="$"){const g=i[t];if(g!==void 0)switch(g){case 1:return r[t];case 2:return s[t];case 4:return n[t];case 3:return o[t]}else{if(fs(r,t))return i[t]=1,r[t];if(s!==de&&re(s,t))return i[t]=2,s[t];if((a=e.propsOptions[0])&&re(a,t))return i[t]=3,o[t];if(n!==de&&re(n,t))return i[t]=4,n[t];Ms&&(i[t]=0)}}const u=Ln[t];let f,d;if(u)return t==="$attrs"&&Ne(e,"get",t),u(e);if((f=l.__cssModules)&&(f=f[t]))return f;if(n!==de&&re(n,t))return i[t]=4,n[t];if(d=c.config.globalProperties,re(d,t))return d[t]},set({_:e},t,n){const{data:r,setupState:s,ctx:o}=e;return fs(s,t)?(s[t]=n,!0):r!==de&&re(r,t)?(r[t]=n,!0):re(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,propsOptions:o}},i){let l;return!!n[i]||e!==de&&re(e,i)||fs(t,i)||(l=o[0])&&re(l,i)||re(r,i)||re(Ln,i)||re(s.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:re(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let Ms=!0;function Kf(e){const t=Io(e),n=e.proxy,r=e.ctx;Ms=!1,t.beforeCreate&&gi(t.beforeCreate,e,"bc");const{data:s,computed:o,methods:i,watch:l,provide:c,inject:a,created:u,beforeMount:f,mounted:d,beforeUpdate:g,updated:m,activated:v,deactivated:E,beforeDestroy:_,beforeUnmount:p,destroyed:b,unmounted:x,render:O,renderTracked:P,renderTriggered:H,errorCaptured:R,serverPrefetch:U,expose:F,inheritAttrs:Q,components:N,directives:Y,filters:D}=t;if(a&&Vf(a,r,null,e.appContext.config.unwrapInjectedRef),i)for(const ae in i){const ie=i[ae];X(ie)&&(r[ae]=ie.bind(n))}if(s){const ae=s.call(n,n);fe(ae)&&(e.data=Ve(ae))}if(Ms=!0,o)for(const ae in o){const ie=o[ae],qe=X(ie)?ie.bind(n,n):X(ie.get)?ie.get.bind(n,n):Ye,At=!X(ie)&&X(ie.set)?ie.set.bind(n):Ye,We=ce({get:qe,set:At});Object.defineProperty(r,ae,{enumerable:!0,configurable:!0,get:()=>We.value,set:Me=>We.value=Me})}if(l)for(const ae in l)Nc(l[ae],r,n,ae);if(c){const ae=X(c)?c.call(n):c;Reflect.ownKeys(ae).forEach(ie=>{on(ie,ae[ie])})}u&&gi(u,e,"c");function te(ae,ie){z(ie)?ie.forEach(qe=>ae(qe.bind(n))):ie&&ae(ie.bind(n))}if(te(Oc,f),te(En,d),te(Lf,g),te(Ic,m),te(Pc,v),te(Sc,E),te(Ac,R),te(Ff,P),te(jf,H),te(or,p),te(Yn,x),te(Nf,U),z(F))if(F.length){const ae=e.exposed||(e.exposed={});F.forEach(ie=>{Object.defineProperty(ae,ie,{get:()=>n[ie],set:qe=>n[ie]=qe})})}else e.exposed||(e.exposed={});O&&e.render===Ye&&(e.render=O),Q!=null&&(e.inheritAttrs=Q),N&&(e.components=N),Y&&(e.directives=Y)}function Vf(e,t,n=Ye,r=!1){z(e)&&(e=Hs(e));for(const s in e){const o=e[s];let i;fe(o)?"default"in o?i=Ge(o.from||s,o.default,!0):i=Ge(o.from||s):i=Ge(o),we(i)&&r?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:l=>i.value=l}):t[s]=i}}function gi(e,t,n){Ke(z(e)?e.map(r=>r.bind(t.proxy)):e.bind(t.proxy),t,n)}function Nc(e,t,n,r){const s=r.includes(".")?xc(n,r):()=>n[r];if(ve(e)){const o=t[e];X(o)&&Fe(s,o)}else if(X(e))Fe(s,e.bind(n));else if(fe(e))if(z(e))e.forEach(o=>Nc(o,t,n,r));else{const o=X(e.handler)?e.handler.bind(n):t[e.handler];X(o)&&Fe(s,o,e)}}function Io(e){const t=e.type,{mixins:n,extends:r}=t,{mixins:s,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,l=o.get(t);let c;return l?c=l:!s.length&&!n&&!r?c=t:(c={},s.length&&s.forEach(a=>Mr(c,a,i,!0)),Mr(c,t,i)),fe(t)&&o.set(t,c),c}function Mr(e,t,n,r=!1){const{mixins:s,extends:o}=t;o&&Mr(e,o,n,!0),s&&s.forEach(i=>Mr(e,i,n,!0));for(const i in t)if(!(r&&i==="expose")){const l=qf[i]||n&&n[i];e[i]=l?l(e[i],t[i]):t[i]}return e}const qf={data:mi,props:Lt,emits:Lt,methods:Lt,computed:Lt,beforeCreate:Se,created:Se,beforeMount:Se,mounted:Se,beforeUpdate:Se,updated:Se,beforeDestroy:Se,beforeUnmount:Se,destroyed:Se,unmounted:Se,activated:Se,deactivated:Se,errorCaptured:Se,serverPrefetch:Se,components:Lt,directives:Lt,watch:zf,provide:mi,inject:Wf};function mi(e,t){return t?e?function(){return Te(X(e)?e.call(this,this):e,X(t)?t.call(this,this):t)}:t:e}function Wf(e,t){return Lt(Hs(e),Hs(t))}function Hs(e){if(z(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function Se(e,t){return e?[...new Set([].concat(e,t))]:t}function Lt(e,t){return e?Te(Te(Object.create(null),e),t):t}function zf(e,t){if(!e)return t;if(!t)return e;const n=Te(Object.create(null),e);for(const r in t)n[r]=Se(e[r],t[r]);return n}function Qf(e,t,n,r=!1){const s={},o={};Pr(o,Gr,1),e.propsDefaults=Object.create(null),jc(e,t,s,o);for(const i in e.propsOptions[0])i in s||(s[i]=void 0);n?e.props=r?s:cf(s):e.type.props?e.props=s:e.props=o,e.attrs=o}function Jf(e,t,n,r){const{props:s,attrs:o,vnode:{patchFlag:i}}=e,l=se(s),[c]=e.propsOptions;let a=!1;if((r||i>0)&&!(i&16)){if(i&8){const u=e.vnode.dynamicProps;for(let f=0;f<u.length;f++){let d=u[f];if(Qr(e.emitsOptions,d))continue;const g=t[d];if(c)if(re(o,d))g!==o[d]&&(o[d]=g,a=!0);else{const m=ot(d);s[m]=Ls(c,l,m,g,e,!1)}else g!==o[d]&&(o[d]=g,a=!0)}}}else{jc(e,t,s,o)&&(a=!0);let u;for(const f in l)(!t||!re(t,f)&&((u=yn(f))===f||!re(t,u)))&&(c?n&&(n[f]!==void 0||n[u]!==void 0)&&(s[f]=Ls(c,l,f,void 0,e,!0)):delete s[f]);if(o!==l)for(const f in o)(!t||!re(t,f))&&(delete o[f],a=!0)}a&&ht(e,"set","$attrs")}function jc(e,t,n,r){const[s,o]=e.propsOptions;let i=!1,l;if(t)for(let c in t){if(Hn(c))continue;const a=t[c];let u;s&&re(s,u=ot(c))?!o||!o.includes(u)?n[u]=a:(l||(l={}))[u]=a:Qr(e.emitsOptions,c)||(!(c in r)||a!==r[c])&&(r[c]=a,i=!0)}if(o){const c=se(n),a=l||de;for(let u=0;u<o.length;u++){const f=o[u];n[f]=Ls(s,c,f,a[f],e,!re(a,f))}}return i}function Ls(e,t,n,r,s,o){const i=e[n];if(i!=null){const l=re(i,"default");if(l&&r===void 0){const c=i.default;if(i.type!==Function&&X(c)){const{propsDefaults:a}=s;n in a?r=a[n]:(Ot(s),r=a[n]=c.call(null,t),St())}else r=c}i[0]&&(o&&!l?r=!1:i[1]&&(r===""||r===yn(n))&&(r=!0))}return r}function Fc(e,t,n=!1){const r=t.propsCache,s=r.get(e);if(s)return s;const o=e.props,i={},l=[];let c=!1;if(!X(e)){const u=f=>{c=!0;const[d,g]=Fc(f,t,!0);Te(i,d),g&&l.push(...g)};!n&&t.mixins.length&&t.mixins.forEach(u),e.extends&&u(e.extends),e.mixins&&e.mixins.forEach(u)}if(!o&&!c)return fe(e)&&r.set(e,Zt),Zt;if(z(o))for(let u=0;u<o.length;u++){const f=ot(o[u]);yi(f)&&(i[f]=de)}else if(o)for(const u in o){const f=ot(u);if(yi(f)){const d=o[u],g=i[f]=z(d)||X(d)?{type:d}:Object.assign({},d);if(g){const m=bi(Boolean,g.type),v=bi(String,g.type);g[0]=m>-1,g[1]=v<0||m<v,(m>-1||re(g,"default"))&&l.push(f)}}}const a=[i,l];return fe(e)&&r.set(e,a),a}function yi(e){return e[0]!=="$"}function _i(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function vi(e,t){return _i(e)===_i(t)}function bi(e,t){return z(t)?t.findIndex(n=>vi(n,e)):X(t)&&vi(t,e)?0:-1}const Dc=e=>e[0]==="_"||e==="$stable",Ao=e=>z(e)?e.map(Be):[Be(e)],Xf=(e,t,n)=>{if(t._n)return t;const r=Re((...s)=>Ao(t(...s)),n);return r._c=!1,r},Bc=(e,t,n)=>{const r=e._ctx;for(const s in e){if(Dc(s))continue;const o=e[s];if(X(o))t[s]=Xf(s,o,r);else if(o!=null){const i=Ao(o);t[s]=()=>i}}},Uc=(e,t)=>{const n=Ao(t);e.slots.default=()=>n},Yf=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=se(t),Pr(t,"_",n)):Bc(t,e.slots={})}else e.slots={},t&&Uc(e,t);Pr(e.slots,Gr,1)},Gf=(e,t,n)=>{const{vnode:r,slots:s}=e;let o=!0,i=de;if(r.shapeFlag&32){const l=t._;l?n&&l===1?o=!1:(Te(s,t),!n&&l===1&&delete s._):(o=!t.$stable,Bc(t,s)),i=t}else t&&(Uc(e,t),i={default:1});if(o)for(const l in s)!Dc(l)&&!(l in i)&&delete s[l]};function Kc(){return{app:null,config:{isNativeTag:xu,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 Zf=0;function ed(e,t){return function(r,s=null){X(r)||(r=Object.assign({},r)),s!=null&&!fe(s)&&(s=null);const o=Kc(),i=new Set;let l=!1;const c=o.app={_uid:Zf++,_component:r,_props:s,_container:null,_context:o,_instance:null,version:ea,get config(){return o.config},set config(a){},use(a,...u){return i.has(a)||(a&&X(a.install)?(i.add(a),a.install(c,...u)):X(a)&&(i.add(a),a(c,...u))),c},mixin(a){return o.mixins.includes(a)||o.mixins.push(a),c},component(a,u){return u?(o.components[a]=u,c):o.components[a]},directive(a,u){return u?(o.directives[a]=u,c):o.directives[a]},mount(a,u,f){if(!l){const d=G(r,s);return d.appContext=o,u&&t?t(d,a):e(d,a,f),l=!0,c._container=a,a.__vue_app__=c,Zr(d.component)||d.component.proxy}},unmount(){l&&(e(null,c._container),delete c._container.__vue_app__)},provide(a,u){return o.provides[a]=u,c}};return c}}function Hr(e,t,n,r,s=!1){if(z(e)){e.forEach((d,g)=>Hr(d,t&&(z(t)?t[g]:t),n,r,s));return}if(Bt(r)&&!s)return;const o=r.shapeFlag&4?Zr(r.component)||r.component.proxy:r.el,i=s?null:o,{i:l,r:c}=e,a=t&&t.r,u=l.refs===de?l.refs={}:l.refs,f=l.setupState;if(a!=null&&a!==c&&(ve(a)?(u[a]=null,re(f,a)&&(f[a]=null)):we(a)&&(a.value=null)),X(c))Pt(c,l,12,[i,u]);else{const d=ve(c),g=we(c);if(d||g){const m=()=>{if(e.f){const v=d?re(f,c)?f[c]:u[c]:c.value;s?z(v)&&mo(v,o):z(v)?v.includes(o)||v.push(o):d?(u[c]=[o],re(f,c)&&(f[c]=u[c])):(c.value=[o],e.k&&(u[e.k]=c.value))}else d?(u[c]=i,re(f,c)&&(f[c]=i)):g&&(c.value=i,e.k&&(u[e.k]=i))};i?(m.id=-1,xe(m,n)):m()}}}let vt=!1;const gr=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",mr=e=>e.nodeType===8;function td(e){const{mt:t,p:n,o:{patchProp:r,createText:s,nextSibling:o,parentNode:i,remove:l,insert:c,createComment:a}}=e,u=(_,p)=>{if(!p.hasChildNodes()){n(null,_,p),Ir(),p._vnode=_;return}vt=!1,f(p.firstChild,_,null,null,null),Ir(),p._vnode=_,vt&&console.error("Hydration completed but contains mismatches.")},f=(_,p,b,x,O,P=!1)=>{const H=mr(_)&&_.data==="[",R=()=>v(_,p,b,x,O,H),{type:U,ref:F,shapeFlag:Q,patchFlag:N}=p;let Y=_.nodeType;p.el=_,N===-2&&(P=!1,p.dynamicChildren=null);let D=null;switch(U){case ln:Y!==3?p.children===""?(c(p.el=s(""),i(_),_),D=_):D=R():(_.data!==p.children&&(vt=!0,_.data=p.children),D=o(_));break;case Ae:Y!==8||H?D=R():D=o(_);break;case Nn:if(H&&(_=o(_),Y=_.nodeType),Y===1||Y===3){D=_;const ke=!p.children.length;for(let te=0;te<p.staticCount;te++)ke&&(p.children+=D.nodeType===1?D.outerHTML:D.data),te===p.staticCount-1&&(p.anchor=D),D=o(D);return H?o(D):D}else R();break;case Oe:H?D=m(_,p,b,x,O,P):D=R();break;default:if(Q&1)Y!==1||p.type.toLowerCase()!==_.tagName.toLowerCase()?D=R():D=d(_,p,b,x,O,P);else if(Q&6){p.slotScopeIds=O;const ke=i(_);if(t(p,ke,null,b,x,gr(ke),P),D=H?E(_):o(_),D&&mr(D)&&D.data==="teleport end"&&(D=o(D)),Bt(p)){let te;H?(te=G(Oe),te.anchor=D?D.previousSibling:ke.lastChild):te=_.nodeType===3?Fn(""):G("div"),te.el=_,p.component.subTree=te}}else Q&64?Y!==8?D=R():D=p.type.hydrate(_,p,b,x,O,P,e,g):Q&128&&(D=p.type.hydrate(_,p,b,x,gr(i(_)),O,P,e,f))}return F!=null&&Hr(F,null,x,p),D},d=(_,p,b,x,O,P)=>{P=P||!!p.dynamicChildren;const{type:H,props:R,patchFlag:U,shapeFlag:F,dirs:Q}=p,N=H==="input"&&Q||H==="option";if(N||U!==-1){if(Q&&tt(p,null,b,"created"),R)if(N||!P||U&48)for(const D in R)(N&&D.endsWith("value")||rr(D)&&!Hn(D))&&r(_,D,null,R[D],!1,void 0,b);else R.onClick&&r(_,"onClick",null,R.onClick,!1,void 0,b);let Y;if((Y=R&&R.onVnodeBeforeMount)&&He(Y,b,p),Q&&tt(p,null,b,"beforeMount"),((Y=R&&R.onVnodeMounted)||Q)&&Ec(()=>{Y&&He(Y,b,p),Q&&tt(p,null,b,"mounted")},x),F&16&&!(R&&(R.innerHTML||R.textContent))){let D=g(_.firstChild,p,_,b,x,O,P);for(;D;){vt=!0;const ke=D;D=D.nextSibling,l(ke)}}else F&8&&_.textContent!==p.children&&(vt=!0,_.textContent=p.children)}return _.nextSibling},g=(_,p,b,x,O,P,H)=>{H=H||!!p.dynamicChildren;const R=p.children,U=R.length;for(let F=0;F<U;F++){const Q=H?R[F]:R[F]=Be(R[F]);if(_)_=f(_,Q,x,O,P,H);else{if(Q.type===ln&&!Q.children)continue;vt=!0,n(null,Q,b,null,x,O,gr(b),P)}}return _},m=(_,p,b,x,O,P)=>{const{slotScopeIds:H}=p;H&&(O=O?O.concat(H):H);const R=i(_),U=g(o(_),p,R,b,x,O,P);return U&&mr(U)&&U.data==="]"?o(p.anchor=U):(vt=!0,c(p.anchor=a("]"),R,U),U)},v=(_,p,b,x,O,P)=>{if(vt=!0,p.el=null,P){const U=E(_);for(;;){const F=o(_);if(F&&F!==U)l(F);else break}}const H=o(_),R=i(_);return l(_),n(null,p,R,H,b,x,gr(R),O),H},E=_=>{let p=0;for(;_;)if(_=o(_),_&&mr(_)&&(_.data==="["&&p++,_.data==="]")){if(p===0)return o(_);p--}return _};return[u,f]}const xe=Ec;function nd(e){return Vc(e)}function rd(e){return Vc(e,td)}function Vc(e,t){const n=Ou();n.__VUE__=!0;const{insert:r,remove:s,patchProp:o,createElement:i,createText:l,createComment:c,setText:a,setElementText:u,parentNode:f,nextSibling:d,setScopeId:g=Ye,insertStaticContent:m}=e,v=(h,y,w,C=null,k=null,A=null,L=!1,I=null,$=!!y.dynamicChildren)=>{if(h===y)return;h&&!Xe(h,y)&&(C=M(h),Me(h,k,A,!0),h=null),y.patchFlag===-2&&($=!1,y.dynamicChildren=null);const{type:S,ref:q,shapeFlag:B}=y;switch(S){case ln:E(h,y,w,C);break;case Ae:_(h,y,w,C);break;case Nn:h==null&&p(y,w,C,L);break;case Oe:N(h,y,w,C,k,A,L,I,$);break;default:B&1?O(h,y,w,C,k,A,L,I,$):B&6?Y(h,y,w,C,k,A,L,I,$):(B&64||B&128)&&S.process(h,y,w,C,k,A,L,I,$,ne)}q!=null&&k&&Hr(q,h&&h.ref,A,y||h,!y)},E=(h,y,w,C)=>{if(h==null)r(y.el=l(y.children),w,C);else{const k=y.el=h.el;y.children!==h.children&&a(k,y.children)}},_=(h,y,w,C)=>{h==null?r(y.el=c(y.children||""),w,C):y.el=h.el},p=(h,y,w,C)=>{[h.el,h.anchor]=m(h.children,y,w,C,h.el,h.anchor)},b=({el:h,anchor:y},w,C)=>{let k;for(;h&&h!==y;)k=d(h),r(h,w,C),h=k;r(y,w,C)},x=({el:h,anchor:y})=>{let w;for(;h&&h!==y;)w=d(h),s(h),h=w;s(y)},O=(h,y,w,C,k,A,L,I,$)=>{L=L||y.type==="svg",h==null?P(y,w,C,k,A,L,I,$):U(h,y,k,A,L,I,$)},P=(h,y,w,C,k,A,L,I)=>{let $,S;const{type:q,props:B,shapeFlag:W,transition:J,dirs:ee}=h;if($=h.el=i(h.type,A,B&&B.is,B),W&8?u($,h.children):W&16&&R(h.children,$,null,C,k,A&&q!=="foreignObject",L,I),ee&&tt(h,null,C,"created"),H($,h,h.scopeId,L,C),B){for(const le in B)le!=="value"&&!Hn(le)&&o($,le,null,B[le],A,h.children,C,k,j);"value"in B&&o($,"value",null,B.value),(S=B.onVnodeBeforeMount)&&He(S,C,h)}ee&&tt(h,null,C,"beforeMount");const ue=(!k||k&&!k.pendingBranch)&&J&&!J.persisted;ue&&J.beforeEnter($),r($,y,w),((S=B&&B.onVnodeMounted)||ue||ee)&&xe(()=>{S&&He(S,C,h),ue&&J.enter($),ee&&tt(h,null,C,"mounted")},k)},H=(h,y,w,C,k)=>{if(w&&g(h,w),C)for(let A=0;A<C.length;A++)g(h,C[A]);if(k){let A=k.subTree;if(y===A){const L=k.vnode;H(h,L,L.scopeId,L.slotScopeIds,k.parent)}}},R=(h,y,w,C,k,A,L,I,$=0)=>{for(let S=$;S<h.length;S++){const q=h[S]=I?Ct(h[S]):Be(h[S]);v(null,q,y,w,C,k,A,L,I)}},U=(h,y,w,C,k,A,L)=>{const I=y.el=h.el;let{patchFlag:$,dynamicChildren:S,dirs:q}=y;$|=h.patchFlag&16;const B=h.props||de,W=y.props||de;let J;w&&$t(w,!1),(J=W.onVnodeBeforeUpdate)&&He(J,w,y,h),q&&tt(y,h,w,"beforeUpdate"),w&&$t(w,!0);const ee=k&&y.type!=="foreignObject";if(S?F(h.dynamicChildren,S,I,w,C,ee,A):L||ie(h,y,I,null,w,C,ee,A,!1),$>0){if($&16)Q(I,y,B,W,w,C,k);else if($&2&&B.class!==W.class&&o(I,"class",null,W.class,k),$&4&&o(I,"style",B.style,W.style,k),$&8){const ue=y.dynamicProps;for(let le=0;le<ue.length;le++){const be=ue[le],ze=B[be],Wt=W[be];(Wt!==ze||be==="value")&&o(I,be,ze,Wt,k,h.children,w,C,j)}}$&1&&h.children!==y.children&&u(I,y.children)}else!L&&S==null&&Q(I,y,B,W,w,C,k);((J=W.onVnodeUpdated)||q)&&xe(()=>{J&&He(J,w,y,h),q&&tt(y,h,w,"updated")},C)},F=(h,y,w,C,k,A,L)=>{for(let I=0;I<y.length;I++){const $=h[I],S=y[I],q=$.el&&($.type===Oe||!Xe($,S)||$.shapeFlag&70)?f($.el):w;v($,S,q,null,C,k,A,L,!0)}},Q=(h,y,w,C,k,A,L)=>{if(w!==C){if(w!==de)for(const I in w)!Hn(I)&&!(I in C)&&o(h,I,w[I],null,L,y.children,k,A,j);for(const I in C){if(Hn(I))continue;const $=C[I],S=w[I];$!==S&&I!=="value"&&o(h,I,S,$,L,y.children,k,A,j)}"value"in C&&o(h,"value",w.value,C.value)}},N=(h,y,w,C,k,A,L,I,$)=>{const S=y.el=h?h.el:l(""),q=y.anchor=h?h.anchor:l("");let{patchFlag:B,dynamicChildren:W,slotScopeIds:J}=y;J&&(I=I?I.concat(J):J),h==null?(r(S,w,C),r(q,w,C),R(y.children,w,q,k,A,L,I,$)):B>0&&B&64&&W&&h.dynamicChildren?(F(h.dynamicChildren,W,w,k,A,L,I),(y.key!=null||k&&y===k.subTree)&&qc(h,y,!0)):ie(h,y,w,q,k,A,L,I,$)},Y=(h,y,w,C,k,A,L,I,$)=>{y.slotScopeIds=I,h==null?y.shapeFlag&512?k.ctx.activate(y,w,C,L,$):D(y,w,C,k,A,L,$):ke(h,y,$)},D=(h,y,w,C,k,A,L)=>{const I=h.component=ad(h,C,k);if(sr(h)&&(I.ctx.renderer=ne),ud(I),I.asyncDep){if(k&&k.registerDep(I,te),!h.el){const $=I.subTree=G(Ae);_(null,$,y,w)}return}te(I,h,y,w,k,A,L)},ke=(h,y,w)=>{const C=y.component=h.component;if(Ef(h,y,w))if(C.asyncDep&&!C.asyncResolved){ae(C,y,w);return}else C.next=y,mf(C.update),C.update();else y.el=h.el,C.vnode=y},te=(h,y,w,C,k,A,L)=>{const I=()=>{if(h.isMounted){let{next:q,bu:B,u:W,parent:J,vnode:ee}=h,ue=q,le;$t(h,!1),q?(q.el=ee.el,ae(h,q,L)):q=ee,B&&tn(B),(le=q.props&&q.props.onVnodeBeforeUpdate)&&He(le,J,q,ee),$t(h,!0);const be=is(h),ze=h.subTree;h.subTree=be,v(ze,be,f(ze.el),M(ze),h,k,A),q.el=be.el,ue===null&&So(h,be.el),W&&xe(W,k),(le=q.props&&q.props.onVnodeUpdated)&&xe(()=>He(le,J,q,ee),k)}else{let q;const{el:B,props:W}=y,{bm:J,m:ee,parent:ue}=h,le=Bt(y);if($t(h,!1),J&&tn(J),!le&&(q=W&&W.onVnodeBeforeMount)&&He(q,ue,y),$t(h,!0),B&&Z){const be=()=>{h.subTree=is(h),Z(B,h.subTree,h,k,null)};le?y.type.__asyncLoader().then(()=>!h.isUnmounted&&be()):be()}else{const be=h.subTree=is(h);v(null,be,w,C,h,k,A),y.el=be.el}if(ee&&xe(ee,k),!le&&(q=W&&W.onVnodeMounted)){const be=y;xe(()=>He(q,ue,be),k)}(y.shapeFlag&256||ue&&Bt(ue.vnode)&&ue.vnode.shapeFlag&256)&&h.a&&xe(h.a,k),h.isMounted=!0,y=w=C=null}},$=h.effect=new bo(I,()=>zr(S),h.scope),S=h.update=()=>$.run();S.id=h.uid,$t(h,!0),S()},ae=(h,y,w)=>{y.component=h;const C=h.vnode.props;h.vnode=y,h.next=null,Jf(h,y.props,C,w),Gf(h,y.children,w),_n(),ui(),vn()},ie=(h,y,w,C,k,A,L,I,$=!1)=>{const S=h&&h.children,q=h?h.shapeFlag:0,B=y.children,{patchFlag:W,shapeFlag:J}=y;if(W>0){if(W&128){At(S,B,w,C,k,A,L,I,$);return}else if(W&256){qe(S,B,w,C,k,A,L,I,$);return}}J&8?(q&16&&j(S,k,A),B!==S&&u(w,B)):q&16?J&16?At(S,B,w,C,k,A,L,I,$):j(S,k,A,!0):(q&8&&u(w,""),J&16&&R(B,w,C,k,A,L,I,$))},qe=(h,y,w,C,k,A,L,I,$)=>{h=h||Zt,y=y||Zt;const S=h.length,q=y.length,B=Math.min(S,q);let W;for(W=0;W<B;W++){const J=y[W]=$?Ct(y[W]):Be(y[W]);v(h[W],J,w,null,k,A,L,I,$)}S>q?j(h,k,A,!0,!1,B):R(y,w,C,k,A,L,I,$,B)},At=(h,y,w,C,k,A,L,I,$)=>{let S=0;const q=y.length;let B=h.length-1,W=q-1;for(;S<=B&&S<=W;){const J=h[S],ee=y[S]=$?Ct(y[S]):Be(y[S]);if(Xe(J,ee))v(J,ee,w,null,k,A,L,I,$);else break;S++}for(;S<=B&&S<=W;){const J=h[B],ee=y[W]=$?Ct(y[W]):Be(y[W]);if(Xe(J,ee))v(J,ee,w,null,k,A,L,I,$);else break;B--,W--}if(S>B){if(S<=W){const J=W+1,ee=J<q?y[J].el:C;for(;S<=W;)v(null,y[S]=$?Ct(y[S]):Be(y[S]),w,ee,k,A,L,I,$),S++}}else if(S>W)for(;S<=B;)Me(h[S],k,A,!0),S++;else{const J=S,ee=S,ue=new Map;for(S=ee;S<=W;S++){const je=y[S]=$?Ct(y[S]):Be(y[S]);je.key!=null&&ue.set(je.key,S)}let le,be=0;const ze=W-ee+1;let Wt=!1,Go=0;const Cn=new Array(ze);for(S=0;S<ze;S++)Cn[S]=0;for(S=J;S<=B;S++){const je=h[S];if(be>=ze){Me(je,k,A,!0);continue}let et;if(je.key!=null)et=ue.get(je.key);else for(le=ee;le<=W;le++)if(Cn[le-ee]===0&&Xe(je,y[le])){et=le;break}et===void 0?Me(je,k,A,!0):(Cn[et-ee]=S+1,et>=Go?Go=et:Wt=!0,v(je,y[et],w,null,k,A,L,I,$),be++)}const Zo=Wt?sd(Cn):Zt;for(le=Zo.length-1,S=ze-1;S>=0;S--){const je=ee+S,et=y[je],ei=je+1<q?y[je+1].el:C;Cn[S]===0?v(null,et,w,ei,k,A,L,I,$):Wt&&(le<0||S!==Zo[le]?We(et,w,ei,2):le--)}}},We=(h,y,w,C,k=null)=>{const{el:A,type:L,transition:I,children:$,shapeFlag:S}=h;if(S&6){We(h.component.subTree,y,w,C);return}if(S&128){h.suspense.move(y,w,C);return}if(S&64){L.move(h,y,w,ne);return}if(L===Oe){r(A,y,w);for(let B=0;B<$.length;B++)We($[B],y,w,C);r(h.anchor,y,w);return}if(L===Nn){b(h,y,w);return}if(C!==2&&S&1&&I)if(C===0)I.beforeEnter(A),r(A,y,w),xe(()=>I.enter(A),k);else{const{leave:B,delayLeave:W,afterLeave:J}=I,ee=()=>r(A,y,w),ue=()=>{B(A,()=>{ee(),J&&J()})};W?W(A,ee,ue):ue()}else r(A,y,w)},Me=(h,y,w,C=!1,k=!1)=>{const{type:A,props:L,ref:I,children:$,dynamicChildren:S,shapeFlag:q,patchFlag:B,dirs:W}=h;if(I!=null&&Hr(I,null,w,h,!0),q&256){y.ctx.deactivate(h);return}const J=q&1&&W,ee=!Bt(h);let ue;if(ee&&(ue=L&&L.onVnodeBeforeUnmount)&&He(ue,y,h),q&6)T(h.component,w,C);else{if(q&128){h.suspense.unmount(w,C);return}J&&tt(h,null,y,"beforeUnmount"),q&64?h.type.remove(h,y,w,k,ne,C):S&&(A!==Oe||B>0&&B&64)?j(S,y,w,!1,!0):(A===Oe&&B&384||!k&&q&16)&&j($,y,w),C&&qt(h)}(ee&&(ue=L&&L.onVnodeUnmounted)||J)&&xe(()=>{ue&&He(ue,y,h),J&&tt(h,null,y,"unmounted")},w)},qt=h=>{const{type:y,el:w,anchor:C,transition:k}=h;if(y===Oe){cr(w,C);return}if(y===Nn){x(h);return}const A=()=>{s(w),k&&!k.persisted&&k.afterLeave&&k.afterLeave()};if(h.shapeFlag&1&&k&&!k.persisted){const{leave:L,delayLeave:I}=k,$=()=>L(w,A);I?I(h.el,A,$):$()}else A()},cr=(h,y)=>{let w;for(;h!==y;)w=d(h),s(h),h=w;s(y)},T=(h,y,w)=>{const{bum:C,scope:k,update:A,subTree:L,um:I}=h;C&&tn(C),k.stop(),A&&(A.active=!1,Me(L,h,y,w)),I&&xe(I,y),xe(()=>{h.isUnmounted=!0},y),y&&y.pendingBranch&&!y.isUnmounted&&h.asyncDep&&!h.asyncResolved&&h.suspenseId===y.pendingId&&(y.deps--,y.deps===0&&y.resolve())},j=(h,y,w,C=!1,k=!1,A=0)=>{for(let L=A;L<h.length;L++)Me(h[L],y,w,C,k)},M=h=>h.shapeFlag&6?M(h.component.subTree):h.shapeFlag&128?h.suspense.next():d(h.anchor||h.el),K=(h,y,w)=>{h==null?y._vnode&&Me(y._vnode,null,null,!0):v(y._vnode||null,h,y,null,null,null,w),ui(),Ir(),y._vnode=h},ne={p:v,um:Me,m:We,r:qt,mt:D,mc:R,pc:ie,pbc:F,n:M,o:e};let pe,Z;return t&&([pe,Z]=t(ne)),{render:K,hydrate:pe,createApp:ed(K,pe)}}function $t({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function qc(e,t,n=!1){const r=e.children,s=t.children;if(z(r)&&z(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]=Ct(s[o]),l.el=i.el),n||qc(i,l)),l.type===ln&&(l.el=i.el)}}function sd(e){const t=e.slice(),n=[0];let r,s,o,i,l;const c=e.length;for(r=0;r<c;r++){const a=e[r];if(a!==0){if(s=n[n.length-1],e[s]<a){t[r]=s,n.push(r);continue}for(o=0,i=n.length-1;o<i;)l=o+i>>1,e[n[l]]<a?o=l+1:i=l;a<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}const od=e=>e.__isTeleport,Oe=Symbol(void 0),ln=Symbol(void 0),Ae=Symbol(void 0),Nn=Symbol(void 0),jn=[];let Ue=null;function he(e=!1){jn.push(Ue=e?null:[])}function Wc(){jn.pop(),Ue=jn[jn.length-1]||null}let cn=1;function wi(e){cn+=e}function zc(e){return e.dynamicChildren=cn>0?Ue||Zt:null,Wc(),cn>0&&Ue&&Ue.push(e),e}function rt(e,t,n,r,s,o){return zc(ge(e,t,n,r,s,o,!0))}function Ie(e,t,n,r,s){return zc(G(e,t,n,r,s,!0))}function an(e){return e?e.__v_isVNode===!0:!1}function Xe(e,t){return e.type===t.type&&e.key===t.key}const Gr="__vInternal",Qc=({key:e})=>e??null,xr=({ref:e,ref_key:t,ref_for:n})=>e!=null?ve(e)||we(e)||X(e)?{i:Ce,r:e,k:t,f:!!n}:e:null;function ge(e,t=null,n=null,r=0,s=null,o=e===Oe?0:1,i=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Qc(t),ref:t&&xr(t),scopeId:Jr,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:o,patchFlag:r,dynamicProps:s,dynamicChildren:null,appContext:null,ctx:Ce};return l?($o(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=ve(n)?8:16),cn>0&&!i&&Ue&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Ue.push(c),c}const G=id;function id(e,t=null,n=null,r=0,s=null,o=!1){if((!e||e===$c)&&(e=Ae),an(e)){const l=pt(e,t,!0);return n&&$o(l,n),cn>0&&!o&&Ue&&(l.shapeFlag&6?Ue[Ue.indexOf(e)]=l:Ue.push(l)),l.patchFlag|=-2,l}if(pd(e)&&(e=e.__vccOpts),t){t=Jc(t);let{class:l,style:c}=t;l&&!ve(l)&&(t.class=Ee(l)),fe(c)&&(lc(c)&&!z(c)&&(c=Te({},c)),t.style=pn(c))}const i=ve(e)?1:bc(e)?128:od(e)?64:fe(e)?4:X(e)?2:0;return ge(e,t,n,r,s,i,o,!0)}function Jc(e){return e?lc(e)||Gr in e?Te({},e):e:null}function pt(e,t,n=!1){const{props:r,ref:s,patchFlag:o,children:i}=e,l=t?Xc(r||{},t):r;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&Qc(l),ref:t&&t.ref?n&&s?z(s)?s.concat(xr(t)):[s,xr(t)]:xr(t):s,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Oe?o===-1?16:o|16:o,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&pt(e.ssContent),ssFallback:e.ssFallback&&pt(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function Fn(e=" ",t=0){return G(ln,null,e,t)}function xt(e="",t=!1){return t?(he(),Ie(Ae,null,e)):G(Ae,null,e)}function Be(e){return e==null||typeof e=="boolean"?G(Ae):z(e)?G(Oe,null,e.slice()):typeof e=="object"?Ct(e):G(ln,null,String(e))}function Ct(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:pt(e)}function $o(e,t){let n=0;const{shapeFlag:r}=e;if(t==null)t=null;else if(z(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&&!(Gr in t)?t._ctx=Ce:s===3&&Ce&&(Ce.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else X(t)?(t={default:t,_ctx:Ce},n=32):(t=String(t),r&64?(n=16,t=[Fn(t)]):n=8);e.children=t,e.shapeFlag|=n}function Xc(...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=Ee([t.class,r.class]));else if(s==="style")t.style=pn([t.style,r.style]);else if(rr(s)){const o=t[s],i=r[s];i&&o!==i&&!(z(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){Ke(e,t,7,[n,r])}const ld=Kc();let cd=0;function ad(e,t,n){const r=e.type,s=(t?t.appContext:e.appContext)||ld,o={uid:cd++,vnode:e,type:r,parent:t,appContext:s,root:null,next:null,subTree:null,effect:null,update:null,scope:new Iu(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(s.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Fc(r,s),emitsOptions:vc(r,s),emit:null,emitted:null,propsDefaults:de,inheritAttrs:r.inheritAttrs,ctx:de,data:de,props:de,attrs:de,slots:de,refs:de,setupState:de,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=_f.bind(null,o),e.ce&&e.ce(o),o}let _e=null;const it=()=>_e||Ce,Ot=e=>{_e=e,e.scope.on()},St=()=>{_e&&_e.scope.off(),_e=null};function Yc(e){return e.vnode.shapeFlag&4}let un=!1;function ud(e,t=!1){un=t;const{props:n,children:r}=e.vnode,s=Yc(e);Qf(e,n,s,t),Yf(e,r);const o=s?fd(e,t):void 0;return un=!1,o}function fd(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=cc(new Proxy(e.ctx,Uf));const{setup:r}=n;if(r){const s=e.setupContext=r.length>1?hd(e):null;Ot(e),_n();const o=Pt(r,e,0,[e.props,s]);if(vn(),St(),yo(o)){if(o.then(St,St),t)return o.then(i=>{Ns(e,i,t)}).catch(i=>{bn(i,e,0)});e.asyncDep=o}else Ns(e,o,t)}else Gc(e,t)}function Ns(e,t,n){X(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:fe(t)&&(e.setupState=dc(t)),Gc(e,n)}let Ei;function Gc(e,t,n){const r=e.type;if(!e.render){if(!t&&Ei&&!r.render){const s=r.template||Io(e).template;if(s){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:l,compilerOptions:c}=r,a=Te(Te({isCustomElement:o,delimiters:l},i),c);r.render=Ei(s,a)}}e.render=r.render||Ye}Ot(e),_n(),Kf(e),vn(),St()}function dd(e){return new Proxy(e.attrs,{get(t,n){return Ne(e,"get","$attrs"),t[n]}})}function hd(e){const t=r=>{e.exposed=r||{}};let n;return{get attrs(){return n||(n=dd(e))},slots:e.slots,emit:e.emit,expose:t}}function Zr(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(dc(cc(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Ln)return Ln[n](e)},has(t,n){return n in t||n in Ln}}))}function js(e,t=!0){return X(e)?e.displayName||e.name:e.name||t&&e.__name}function pd(e){return X(e)&&"__vccOpts"in e}const ce=(e,t)=>hf(e,t,un);function Zc(e){const t=it();let n=e();return St(),yo(n)&&(n=n.catch(r=>{throw Ot(t),r})),[n,()=>Ot(t)]}function Le(e,t,n){const r=arguments.length;return r===2?fe(t)&&!z(t)?an(t)?G(e,null,[t]):G(e,t):G(e,null,t):(r>3?n=Array.prototype.slice.call(arguments,2):r===3&&an(n)&&(n=[n]),G(e,t,n))}const gd=Symbol(""),md=()=>Ge(gd),ea="3.2.47",yd="http://www.w3.org/2000/svg",jt=typeof document<"u"?document:null,xi=jt&&jt.createElement("template"),_d={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?jt.createElementNS(yd,e):jt.createElement(e,n?{is:n}:void 0);return e==="select"&&r&&r.multiple!=null&&s.setAttribute("multiple",r.multiple),s},createText:e=>jt.createTextNode(e),createComment:e=>jt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>jt.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{xi.innerHTML=r?`<svg>${e}</svg>`:e;const l=xi.content;if(r){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function vd(e,t,n){const r=e._vtc;r&&(t=(t?[t,...r]:[...r]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function bd(e,t,n){const r=e.style,s=ve(n);if(n&&!s){if(t&&!ve(t))for(const o in t)n[o]==null&&Fs(r,o,"");for(const o in n)Fs(r,o,n[o])}else{const o=r.display;s?t!==n&&(r.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(r.display=o)}}const Ci=/\s*!important$/;function Fs(e,t,n){if(z(n))n.forEach(r=>Fs(e,t,r));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const r=wd(e,t);Ci.test(n)?e.setProperty(yn(r),n.replace(Ci,""),"important"):e[r]=n}}const Ti=["Webkit","Moz","ms"],ds={};function wd(e,t){const n=ds[t];if(n)return n;let r=ot(t);if(r!=="filter"&&r in e)return ds[t]=r;r=qr(r);for(let s=0;s<Ti.length;s++){const o=Ti[s]+r;if(o in e)return ds[t]=o}return t}const ki="http://www.w3.org/1999/xlink";function Ed(e,t,n,r,s){if(r&&t.startsWith("xlink:"))n==null?e.removeAttributeNS(ki,t.slice(6,t.length)):e.setAttributeNS(ki,t,n);else{const o=wu(t);n==null||o&&!ql(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}function xd(e,t,n,r,s,o,i){if(t==="innerHTML"||t==="textContent"){r&&i(r,s,o),e[t]=n??"";return}if(t==="value"&&e.tagName!=="PROGRESS"&&!e.tagName.includes("-")){e._value=n;const c=n??"";(e.value!==c||e.tagName==="OPTION")&&(e.value=c),n==null&&e.removeAttribute(t);return}let l=!1;if(n===""||n==null){const c=typeof e[t];c==="boolean"?n=ql(n):n==null&&c==="string"?(n="",l=!0):c==="number"&&(n=0,l=!0)}try{e[t]=n}catch{}l&&e.removeAttribute(t)}function ft(e,t,n,r){e.addEventListener(t,n,r)}function Cd(e,t,n,r){e.removeEventListener(t,n,r)}function Td(e,t,n,r,s=null){const o=e._vei||(e._vei={}),i=o[t];if(r&&i)i.value=r;else{const[l,c]=kd(t);if(r){const a=o[t]=Rd(r,s);ft(e,l,a,c)}else i&&(Cd(e,l,i,c),o[t]=void 0)}}const Pi=/(?:Once|Passive|Capture)$/;function kd(e){let t;if(Pi.test(e)){t={};let r;for(;r=e.match(Pi);)e=e.slice(0,e.length-r[0].length),t[r[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):yn(e.slice(2)),t]}let hs=0;const Pd=Promise.resolve(),Sd=()=>hs||(Pd.then(()=>hs=0),hs=Date.now());function Rd(e,t){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;Ke(Od(r,n.value),t,5,[r])};return n.value=e,n.attached=Sd(),n}function Od(e,t){if(z(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 Si=/^on[a-z]/,Id=(e,t,n,r,s=!1,o,i,l,c)=>{t==="class"?vd(e,r,s):t==="style"?bd(e,n,r):rr(t)?go(t)||Td(e,t,n,r,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Ad(e,t,r,s))?xd(e,t,r,o,i,l,c):(t==="true-value"?e._trueValue=r:t==="false-value"&&(e._falseValue=r),Ed(e,t,r,s))};function Ad(e,t,n,r){return r?!!(t==="innerHTML"||t==="textContent"||t in e&&Si.test(t)&&X(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||Si.test(t)&&ve(n)?!1:t in e}function iv(e){const t=it();if(!t)return;const n=t.ut=(s=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(o=>Bs(o,s))},r=()=>{const s=e(t.proxy);Ds(t.subTree,s),n(s)};Rf(r),En(()=>{const s=new MutationObserver(r);s.observe(t.subTree.el.parentNode,{childList:!0}),Yn(()=>s.disconnect())})}function Ds(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{Ds(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Bs(e.el,t);else if(e.type===Oe)e.children.forEach(n=>Ds(n,t));else if(e.type===Nn){let{el:n,anchor:r}=e;for(;n&&(Bs(n,t),n!==r);)n=n.nextSibling}}function Bs(e,t){if(e.nodeType===1){const n=e.style;for(const r in t)n.setProperty(`--${r}`,t[r])}}const bt="transition",Tn="animation",Mo=(e,{slots:t})=>Le(Cc,$d(e),t);Mo.displayName="Transition";const ta={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};Mo.props=Te({},Cc.props,ta);const Mt=(e,t=[])=>{z(e)?e.forEach(n=>n(...t)):e&&e(...t)},Ri=e=>e?z(e)?e.some(t=>t.length>1):e.length>1:!1;function $d(e){const t={};for(const N in e)N in ta||(t[N]=e[N]);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:c=o,appearActiveClass:a=i,appearToClass:u=l,leaveFromClass:f=`${n}-leave-from`,leaveActiveClass:d=`${n}-leave-active`,leaveToClass:g=`${n}-leave-to`}=e,m=Md(s),v=m&&m[0],E=m&&m[1],{onBeforeEnter:_,onEnter:p,onEnterCancelled:b,onLeave:x,onLeaveCancelled:O,onBeforeAppear:P=_,onAppear:H=p,onAppearCancelled:R=b}=t,U=(N,Y,D)=>{Ht(N,Y?u:l),Ht(N,Y?a:i),D&&D()},F=(N,Y)=>{N._isLeaving=!1,Ht(N,f),Ht(N,g),Ht(N,d),Y&&Y()},Q=N=>(Y,D)=>{const ke=N?H:p,te=()=>U(Y,N,D);Mt(ke,[Y,te]),Oi(()=>{Ht(Y,N?c:o),wt(Y,N?u:l),Ri(ke)||Ii(Y,r,v,te)})};return Te(t,{onBeforeEnter(N){Mt(_,[N]),wt(N,o),wt(N,i)},onBeforeAppear(N){Mt(P,[N]),wt(N,c),wt(N,a)},onEnter:Q(!1),onAppear:Q(!0),onLeave(N,Y){N._isLeaving=!0;const D=()=>F(N,Y);wt(N,f),Nd(),wt(N,d),Oi(()=>{N._isLeaving&&(Ht(N,f),wt(N,g),Ri(x)||Ii(N,r,E,D))}),Mt(x,[N,D])},onEnterCancelled(N){U(N,!1),Mt(b,[N])},onAppearCancelled(N){U(N,!0),Mt(R,[N])},onLeaveCancelled(N){F(N),Mt(O,[N])}})}function Md(e){if(e==null)return null;if(fe(e))return[ps(e.enter),ps(e.leave)];{const t=ps(e);return[t,t]}}function ps(e){return Jl(e)}function wt(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e._vtc||(e._vtc=new Set)).add(t)}function Ht(e,t){t.split(/\s+/).forEach(r=>r&&e.classList.remove(r));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Oi(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let Hd=0;function Ii(e,t,n,r){const s=e._endId=++Hd,o=()=>{s===e._endId&&r()};if(n)return setTimeout(o,n);const{type:i,timeout:l,propCount:c}=Ld(e,t);if(!i)return r();const a=i+"end";let u=0;const f=()=>{e.removeEventListener(a,d),o()},d=g=>{g.target===e&&++u>=c&&f()};setTimeout(()=>{u<c&&f()},l+1),e.addEventListener(a,d)}function Ld(e,t){const n=window.getComputedStyle(e),r=m=>(n[m]||"").split(", "),s=r(`${bt}Delay`),o=r(`${bt}Duration`),i=Ai(s,o),l=r(`${Tn}Delay`),c=r(`${Tn}Duration`),a=Ai(l,c);let u=null,f=0,d=0;t===bt?i>0&&(u=bt,f=i,d=o.length):t===Tn?a>0&&(u=Tn,f=a,d=c.length):(f=Math.max(i,a),u=f>0?i>a?bt:Tn:null,d=u?u===bt?o.length:c.length:0);const g=u===bt&&/\b(transform|all)(,|$)/.test(r(`${bt}Property`).toString());return{type:u,timeout:f,propCount:d,hasTransform:g}}function Ai(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max(...t.map((n,r)=>$i(n)+$i(e[r])))}function $i(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function Nd(){return document.body.offsetHeight}const It=e=>{const t=e.props["onUpdate:modelValue"]||!1;return z(t)?n=>tn(t,n):t};function jd(e){e.target.composing=!0}function Mi(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Hi={created(e,{modifiers:{lazy:t,trim:n,number:r}},s){e._assign=It(s);const o=r||s.props&&s.props.type==="number";ft(e,t?"change":"input",i=>{if(i.target.composing)return;let l=e.value;n&&(l=l.trim()),o&&(l=Sr(l)),e._assign(l)}),n&&ft(e,"change",()=>{e.value=e.value.trim()}),t||(ft(e,"compositionstart",jd),ft(e,"compositionend",Mi),ft(e,"change",Mi))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:r,number:s}},o){if(e._assign=It(o),e.composing||document.activeElement===e&&e.type!=="range"&&(n||r&&e.value.trim()===t||(s||e.type==="number")&&Sr(e.value)===t))return;const i=t??"";e.value!==i&&(e.value=i)}},Fd={deep:!0,created(e,t,n){e._assign=It(n),ft(e,"change",()=>{const r=e._modelValue,s=fn(e),o=e.checked,i=e._assign;if(z(r)){const l=po(r,s),c=l!==-1;if(o&&!c)i(r.concat(s));else if(!o&&c){const a=[...r];a.splice(l,1),i(a)}}else if(gn(r)){const l=new Set(r);o?l.add(s):l.delete(s),i(l)}else i(na(e,o))})},mounted:Li,beforeUpdate(e,t,n){e._assign=It(n),Li(e,t,n)}};function Li(e,{value:t,oldValue:n},r){e._modelValue=t,z(t)?e.checked=po(t,r.props.value)>-1:gn(t)?e.checked=t.has(r.props.value):t!==n&&(e.checked=Ut(t,na(e,!0)))}const Dd={created(e,{value:t},n){e.checked=Ut(t,n.props.value),e._assign=It(n),ft(e,"change",()=>{e._assign(fn(e))})},beforeUpdate(e,{value:t,oldValue:n},r){e._assign=It(r),t!==n&&(e.checked=Ut(t,r.props.value))}},Bd={deep:!0,created(e,{value:t,modifiers:{number:n}},r){const s=gn(t);ft(e,"change",()=>{const o=Array.prototype.filter.call(e.options,i=>i.selected).map(i=>n?Sr(fn(i)):fn(i));e._assign(e.multiple?s?new Set(o):o:o[0])}),e._assign=It(r)},mounted(e,{value:t}){Ni(e,t)},beforeUpdate(e,t,n){e._assign=It(n)},updated(e,{value:t}){Ni(e,t)}};function Ni(e,t){const n=e.multiple;if(!(n&&!z(t)&&!gn(t))){for(let r=0,s=e.options.length;r<s;r++){const o=e.options[r],i=fn(o);if(n)z(t)?o.selected=po(t,i)>-1:o.selected=t.has(i);else if(Ut(fn(o),t)){e.selectedIndex!==r&&(e.selectedIndex=r);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function fn(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 Ud={created(e,t,n){yr(e,t,n,null,"created")},mounted(e,t,n){yr(e,t,n,null,"mounted")},beforeUpdate(e,t,n,r){yr(e,t,n,r,"beforeUpdate")},updated(e,t,n,r){yr(e,t,n,r,"updated")}};function Kd(e,t){switch(e){case"SELECT":return Bd;case"TEXTAREA":return Hi;default:switch(t){case"checkbox":return Fd;case"radio":return Dd;default:return Hi}}}function yr(e,t,n,r,s){const i=Kd(e.tagName,n.props&&n.props.type)[s];i&&i(e,t,n,r)}const ra=Te({patchProp:Id},_d);let Dn,ji=!1;function Vd(){return Dn||(Dn=nd(ra))}function qd(){return Dn=ji?Dn:rd(ra),ji=!0,Dn}const Wd=(...e)=>{const t=Vd().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=sa(r);if(!s)return;const o=t._component;!X(o)&&!o.render&&!o.template&&(o.template=s.innerHTML),s.innerHTML="";const i=n(s,!1,s instanceof SVGElement);return s instanceof Element&&(s.removeAttribute("v-cloak"),s.setAttribute("data-v-app","")),i},t},zd=(...e)=>{const t=qd().createApp(...e),{mount:n}=t;return t.mount=r=>{const s=sa(r);if(s)return n(s,!0,s instanceof SVGElement)},t};function sa(e){return ve(e)?document.querySelector(e):e}const Qd=/"(?:_|\\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*:/,Jd=/"(?: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*:/,Xd=/^\s*["[{]|^\s*-?\d[\d.]{0,14}\s*$/;function Yd(e,t){if(e!=="__proto__"&&!(e==="constructor"&&t&&typeof t=="object"&&"prototype"in t))return t}function Gd(e,t={}){if(typeof e!="string")return e;const n=e.toLowerCase().trim();if(n==="true")return!0;if(n==="false")return!1;if(n==="null")return null;if(n==="nan")return Number.NaN;if(n==="infinity")return Number.POSITIVE_INFINITY;if(n!=="undefined"){if(!Xd.test(e)){if(t.strict)throw new SyntaxError("Invalid JSON");return e}try{return Qd.test(e)||Jd.test(e)?JSON.parse(e,Yd):JSON.parse(e)}catch(r){if(t.strict)throw r;return e}}}const Zd=/#/g,eh=/&/g,th=/=/g,oa=/\+/g,nh=/%5e/gi,rh=/%60/gi,sh=/%7c/gi,oh=/%20/gi;function ih(e){return encodeURI(""+e).replace(sh,"|")}function Us(e){return ih(typeof e=="string"?e:JSON.stringify(e)).replace(oa,"%2B").replace(oh,"+").replace(Zd,"%23").replace(eh,"%26").replace(rh,"`").replace(nh,"^")}function gs(e){return Us(e).replace(th,"%3D")}function ia(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function lh(e){return ia(e.replace(oa," "))}function la(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const r=n.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const s=ia(r[1]);if(s==="__proto__"||s==="constructor")continue;const o=lh(r[2]||"");typeof t[s]<"u"?Array.isArray(t[s])?t[s].push(o):t[s]=[t[s],o]:t[s]=o}return t}function ch(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${gs(e)}=${Us(n)}`).join("&"):`${gs(e)}=${Us(t)}`:gs(e)}function ah(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>ch(t,e[t])).join("&")}const uh=/^\w{2,}:([/\\]{1,2})/,fh=/^\w{2,}:([/\\]{2})?/,dh=/^([/\\]\s*){2,}[^/\\]/;function xn(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?uh.test(e):fh.test(e)||(t.acceptRelative?dh.test(e):!1)}const hh=/\/$|\/\?/;function Ks(e="",t=!1){return t?hh.test(e):e.endsWith("/")}function Ho(e="",t=!1){if(!t)return(Ks(e)?e.slice(0,-1):e)||"/";if(!Ks(e,!0))return e||"/";const[n,...r]=e.split("?");return(n.slice(0,-1)||"/")+(r.length>0?`?${r.join("?")}`:"")}function ca(e="",t=!1){if(!t)return e.endsWith("/")?e:e+"/";if(Ks(e,!0))return e||"/";const[n,...r]=e.split("?");return n+"/"+(r.length>0?`?${r.join("?")}`:"")}function ph(e=""){return e.startsWith("/")}function gh(e=""){return(ph(e)?e.slice(1):e)||"/"}function aa(e,t){if(ua(t)||xn(e))return e;const n=Ho(t);return e.startsWith(n)?e:ir(n,e)}function Fi(e,t){if(ua(t))return e;const n=Ho(t);if(!e.startsWith(n))return e;const r=e.slice(n.length);return r[0]==="/"?r:"/"+r}function mh(e,t){const n=lr(e),r={...la(n.search),...t};return n.search=ah(r),_h(n)}function ua(e){return!e||e==="/"}function yh(e){return e&&e!=="/"}function ir(e,...t){let n=e||"";for(const r of t.filter(s=>yh(s)))n=n?ca(n)+gh(r):r;return n}function lr(e="",t){if(!xn(e,{acceptRelative:!0}))return t?lr(t+e):Di(e);const[n="",r,s=""]=(e.replace(/\\/g,"/").match(/([^/:]+:)?\/\/([^/@]+@)?(.*)/)||[]).splice(1),[o="",i=""]=(s.match(/([^#/?]*)(.*)?/)||[]).splice(1),{pathname:l,search:c,hash:a}=Di(i.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:n,auth:r?r.slice(0,Math.max(0,r.length-1)):"",host:o,pathname:l,search:c,hash:a}}function Di(e=""){const[t="",n="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:r}}function _h(e){const t=e.pathname+(e.search?(e.search.startsWith("?")?"":"?")+e.search:"")+e.hash;return e.protocol?e.protocol+"//"+(e.auth?e.auth+"@":"")+e.host+t:t}class vh extends Error{constructor(){super(...arguments),this.name="FetchError"}}function bh(e,t,n){let r="";t&&(r=t.message),e&&n?r=`${r} (${n.status} ${n.statusText} (${e.toString()}))`:e&&(r=`${r} (${e.toString()})`);const s=new vh(r);return Object.defineProperty(s,"request",{get(){return e}}),Object.defineProperty(s,"response",{get(){return n}}),Object.defineProperty(s,"data",{get(){return n&&n._data}}),Object.defineProperty(s,"status",{get(){return n&&n.status}}),Object.defineProperty(s,"statusText",{get(){return n&&n.statusText}}),Object.defineProperty(s,"statusCode",{get(){return n&&n.status}}),Object.defineProperty(s,"statusMessage",{get(){return n&&n.statusText}}),s}const wh=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Bi(e="GET"){return wh.has(e.toUpperCase())}function Eh(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.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const xh=new Set(["image/svg","application/xml","application/xhtml","application/html"]),Ch=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Th(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return Ch.test(t)?"json":xh.has(t)||t.startsWith("text/")?"text":"blob"}const kh=new Set([408,409,425,429,500,502,503,504]);function fa(e){const{fetch:t,Headers:n}=e;function r(i){const l=i.error&&i.error.name==="AbortError"||!1;if(i.options.retry!==!1&&!l){let a;typeof i.options.retry=="number"?a=i.options.retry:a=Bi(i.options.method)?0:1;const u=i.response&&i.response.status||500;if(a>0&&kh.has(u))return s(i.request,{...i.options,retry:a-1})}const c=bh(i.request,i.error,i.response);throw Error.captureStackTrace&&Error.captureStackTrace(c,s),c}const s=async function(l,c={}){const a={request:l,options:{...e.defaults,...c},response:void 0,error:void 0};a.options.onRequest&&await a.options.onRequest(a),typeof a.request=="string"&&(a.options.baseURL&&(a.request=aa(a.request,a.options.baseURL)),(a.options.query||a.options.params)&&(a.request=mh(a.request,{...a.options.params,...a.options.query})),a.options.body&&Bi(a.options.method)&&Eh(a.options.body)&&(a.options.body=typeof a.options.body=="string"?a.options.body:JSON.stringify(a.options.body),a.options.headers=new n(a.options.headers),a.options.headers.has("content-type")||a.options.headers.set("content-type","application/json"),a.options.headers.has("accept")||a.options.headers.set("accept","application/json"))),a.response=await t(a.request,a.options).catch(async f=>(a.error=f,a.options.onRequestError&&await a.options.onRequestError(a),r(a)));const u=(a.options.parseResponse?"json":a.options.responseType)||Th(a.response.headers.get("content-type")||"");if(u==="json"){const f=await a.response.text(),d=a.options.parseResponse||Gd;a.response._data=d(f)}else u==="stream"?a.response._data=a.response.body:a.response._data=await a.response[u]();return a.options.onResponse&&await a.options.onResponse(a),a.response.status>=400&&a.response.status<600?(a.options.onResponseError&&await a.options.onResponseError(a),r(a)):a.response},o=function(l,c){return s(l,c).then(a=>a._data)};return o.raw=s,o.native=t,o.create=(i={})=>fa({...e,defaults:{...e.defaults,...i}}),o}const da=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")}(),Ph=da.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),Sh=da.Headers,Rh=fa({fetch:Ph,Headers:Sh}),Oh=Rh,Ih=()=>window?.__NUXT__?.config||{},Lr=Ih().app,Ah=()=>Lr.baseURL,$h=()=>Lr.buildAssetsDir,Mh=(...e)=>ir(ha(),$h(),...e),ha=(...e)=>{const t=Lr.cdnURL||Lr.baseURL;return e.length?ir(t,...e):t};globalThis.__buildAssetsURL=Mh,globalThis.__publicAssetsURL=ha;function Vs(e,t={},n){for(const r in e){const s=e[r],o=n?`${n}:${r}`:r;typeof s=="object"&&s!==null?Vs(s,t,o):typeof s=="function"&&(t[o]=s)}return t}const Hh={run:e=>e()},Lh=()=>Hh,pa=typeof console.createTask<"u"?console.createTask:Lh;function Nh(e,t){const n=t.shift(),r=pa(n);return e.reduce((s,o)=>s.then(()=>r.run(()=>o(...t))),Promise.resolve())}function jh(e,t){const n=t.shift(),r=pa(n);return Promise.all(e.map(s=>r.run(()=>s(...t))))}function ms(e,t){for(const n of[...e])n(t)}class Fh{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=Vs(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=Vs(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(Nh,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(jh,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 ga(){return new Fh}function Dh(){let e,t=!1;const n=r=>{if(e&&e!==r)throw new Error("Context conflict")};return{use:()=>{if(e===void 0)throw new Error("Context is not available");return e},tryUse:()=>e,set:(r,s)=>{s||n(r),e=r,t=!0},unset:()=>{e=void 0,t=!1},call:(r,s)=>{n(r),e=r;try{return s()}finally{t||(e=void 0)}},async callAsync(r,s){e=r;const o=()=>{e=r},i=()=>e===r?o:void 0;qs.add(i);try{const l=s();return t||(e=void 0),await l}finally{qs.delete(i)}}}}function Bh(){const e={};return{get(t){return e[t]||(e[t]=Dh()),e[t],e[t]}}}const Nr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},Ui="__unctx__",Uh=Nr[Ui]||(Nr[Ui]=Bh()),Kh=e=>Uh.get(e),Ki="__unctx_async_handlers__",qs=Nr[Ki]||(Nr[Ki]=new Set);function Ws(e){const t=[];for(const s of qs){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 ma=Kh("nuxt-app"),Vh="__nuxt_plugin";function qh(e){let t=0;const n={provide:void 0,globalName:"nuxt",versions:{get nuxt(){return"3.3.3"},get vue(){return n.vueApp.version}},payload:Ve({data:{},state:{},_errors:{},...window.__NUXT__}),static:{data:{}},isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let o=!1;return()=>{if(!o&&(o=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},...e};n.hooks=ga(),n.hook=n.hooks.hook,n.callHook=n.hooks.callHook,n.provide=(o,i)=>{const l="$"+o;_r(n,l,i),_r(n.vueApp.config.globalProperties,l,i)},_r(n.vueApp,"$nuxt",n),_r(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener("nuxt.preloadError",i=>{n.callHook("app:chunkError",{error:i.payload})});const o=n.hook("app:error",(...i)=>{console.error("[nuxt] error caught during app initialization",...i)});n.hook("app:mounted",o)}const r=Ve(n.payload.config),s=new Proxy(r,{get(o,i){return i==="public"?o.public:o[i]??o.public[i]},set(o,i,l){return i==="public"||i==="app"?!1:(o[i]=l,o.public[i]=l,!0)}});return n.provide("config",s),n}async function Wh(e,t){if(typeof t!="function")return;const{provide:n}=await ut(e,t,[e])||{};if(n&&typeof n=="object")for(const r in n)e.provide(r,n[r])}async function zh(e,t){for(const n of t)await Wh(e,n)}function Qh(e){return e.map(n=>typeof n!="function"?null:n.length>1?r=>n(r,r.provide):n).filter(Boolean)}function mt(e){return e[Vh]=!0,e}function ut(e,t,n){const r=()=>n?t(...n):t();return ma.set(e),r()}function ye(){const e=ma.tryUse();if(!e){const t=it();if(!t)throw new Error("nuxt instance unavailable");return t.appContext.app.$nuxt}return e}function Lo(){return ye().$config}function _r(e,t,n){Object.defineProperty(e,t,{get:()=>n})}const Jh="modulepreload",Xh=function(e,t){return e.startsWith(".")?new URL(e,t).href:e},Vi={},Yh=function(t,n,r){if(!n||n.length===0)return t();const s=document.getElementsByTagName("link");return Promise.all(n.map(o=>{if(o=Xh(o,r),o in Vi)return;Vi[o]=!0;const i=o.endsWith(".css"),l=i?'[rel="stylesheet"]':"";if(!!r)for(let u=s.length-1;u>=0;u--){const f=s[u];if(f.href===o&&(!i||f.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${o}"]${l}`))return;const a=document.createElement("link");if(a.rel=i?"stylesheet":Jh,i||(a.as="script",a.crossOrigin=""),a.href=o,document.head.appendChild(a),i)return new Promise((u,f)=>{a.addEventListener("load",u),a.addEventListener("error",()=>f(new Error(`Unable to preload CSS for ${o}`)))})})).then(()=>t())},dt=(...e)=>Yh(...e).catch(t=>{const n=new Event("nuxt.preloadError");throw n.payload=t,window.dispatchEvent(n),t}),ys={Icon:As(()=>dt(()=>Promise.resolve().then(()=>S_),void 0,import.meta.url).then(e=>e.default||e)),IconCSS:As(()=>dt(()=>import("./IconCSS.ef0613e7.js"),[],import.meta.url).then(e=>e.default||e))},Gh=mt(e=>{for(const t in ys)e.vueApp.component(t,ys[t]),e.vueApp.component("Lazy"+t,ys[t])});function Zh(e){return Array.isArray(e)?e:[e]}const ya=["title","script","style","noscript"],ep=["base","meta","link","style","script","noscript"],tp=["title","titleTemplate","templateParams","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],np=["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"],rp=["tagPosition","tagPriority","tagDuplicateStrategy","innerHTML","textContent"];function _a(e){let t=9;for(let n=0;n<e.length;)t=Math.imul(t^e.charCodeAt(n++),9**9);return((t^t>>>9)+65536).toString(16).substring(1,8).toLowerCase()}function zs(e){return _a(`${e.tag}:${e.textContent||e.innerHTML||""}:${Object.entries(e.props).map(([t,n])=>`${t}:${String(n)}`).join(",")}`)}function sp(e){let t=9;for(const n of e)for(let r=0;r<n.length;)t=Math.imul(t^n.charCodeAt(r++),9**9);return((t^t>>>9)+65536).toString(16).substring(1,8).toLowerCase()}function va(e,t){const{props:n,tag:r}=e;if(np.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const s=["id"];r==="meta"&&s.push("name","property","http-equiv");for(const o of s)if(typeof n[o]<"u"){const i=String(n[o]);return t&&!t(i)?!1:`${r}:${o}:${i}`}return!1}const qi=(e,t)=>e==null?t||null:typeof e=="function"?e(t):e,vr=(e,t=!1,n)=>{const{tag:r,$el:s}=e;s&&(Object.entries(r.props).forEach(([o,i])=>{i=String(i);const l=`attr:${o}`;if(o==="class"){if(!i)return;for(const c of i.split(" ")){const a=`${l}:${c}`;n&&n(e,a,()=>s.classList.remove(c)),s.classList.contains(c)||s.classList.add(c)}return}n&&!o.startsWith("data-h-")&&n(e,l,()=>s.removeAttribute(o)),(t||s.getAttribute(o)!==i)&&s.setAttribute(o,i)}),ya.includes(r.tag)&&(r.textContent&&r.textContent!==s.textContent?s.textContent=r.textContent:r.innerHTML&&r.innerHTML!==s.innerHTML&&(s.innerHTML=r.innerHTML)))};let kn=!1;async function op(e,t={}){const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||e.resolvedOptions.document||window.document,s=(await e.resolveTags()).map(l);if(e.resolvedOptions.experimentalHashHydration&&(kn=kn||e._hash||!1,kn)){const d=sp(s.map(g=>g.tag._h));if(kn===d)return;kn=d}const o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([g,m])=>{o[g]=m})});const i=(d,g,m)=>{g=`${d.renderId}:${g}`,d.entry&&(d.entry._sde[g]=m),delete o[g]};function l(d){const g=e.headEntries().find(v=>v._i===d._e),m={renderId:!d.key&&d._d?d._d:zs(d),$el:null,shouldRender:!0,tag:d,entry:g,markSideEffect:(v,E)=>i(m,v,E)};return m}const c=[],a={body:[],head:[]},u=d=>{e._elMap[d.renderId]=d.$el,c.push(d),i(d,"el",()=>{d.$el?.remove(),delete e._elMap[d.renderId]})};for(const d of s){if(await e.hooks.callHook("dom:beforeRenderTag",d),!d.shouldRender)continue;const{tag:g}=d;if(g.tag==="title"){r.title=g.textContent||"",c.push(d);continue}if(g.tag==="htmlAttrs"||g.tag==="bodyAttrs"){d.$el=r[g.tag==="htmlAttrs"?"documentElement":"body"],vr(d,!1,i),c.push(d);continue}if(d.$el=e._elMap[d.renderId],!d.$el&&g.key&&(d.$el=r.querySelector(`${g.tagPosition?.startsWith("body")?"body":"head"} > ${g.tag}[data-h-${g._h}]`)),d.$el){d.tag._d&&vr(d),u(d);continue}a[g.tagPosition?.startsWith("body")?"body":"head"].push(d)}const f={bodyClose:void 0,bodyOpen:void 0,head:void 0};Object.entries(a).forEach(([d,g])=>{if(!g.length)return;const m=r?.[d]?.children;if(m){for(const v of[...m].reverse()){const E=v.tagName.toLowerCase();if(!ep.includes(E))continue;const _=v.getAttributeNames().reduce((O,P)=>({...O,[P]:v.getAttribute(P)}),{}),p={tag:E,props:_};v.innerHTML&&(p.innerHTML=v.innerHTML);const b=zs(p);let x=g.findIndex(O=>O?.renderId===b);if(x===-1){const O=va(p);x=g.findIndex(P=>P?.tag._d&&P.tag._d===O)}if(x!==-1){const O=g[x];O.$el=v,vr(O),u(O),delete g[x]}}g.forEach(v=>{const E=v.tag.tagPosition||"head";f[E]=f[E]||r.createDocumentFragment(),v.$el||(v.$el=r.createElement(v.tag.tag),vr(v,!0)),f[E].appendChild(v.$el),u(v)})}}),f.head&&r.head.appendChild(f.head),f.bodyOpen&&r.body.insertBefore(f.bodyOpen,r.body.firstChild),f.bodyClose&&r.body.appendChild(f.bodyClose);for(const d of c)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let _s=null;async function ip(e,t={}){function n(){return _s=null,op(e,t)}const r=t.delayFn||(s=>setTimeout(s,10));return _s=_s||new Promise(s=>r(()=>s(n())))}const lp=e=>({hooks:{"entries:updated":function(t){if(typeof e?.document>"u"&&typeof window>"u")return;let n=e?.delayFn;!n&&typeof requestAnimationFrame<"u"&&(n=requestAnimationFrame),ip(t,{document:e?.document||window.document,delayFn:n})}}});function cp(e){return e?.head.querySelector('meta[name="unhead:ssr"]')?.getAttribute("content")||!1}const Wi={critical:2,high:9,low:12,base:-1,title:1,meta:10};function zi(e){if(typeof e.tagPriority=="number")return e.tagPriority;if(e.tag==="meta"){if(e.props.charset)return-2;if(e.props["http-equiv"]==="content-security-policy")return 0}const t=e.tagPriority||e.tag;return t in Wi?Wi[t]:10}const ap=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}];function up(){return{hooks:{"tags:resolve":e=>{const t=n=>e.tags.find(r=>r._d===n)?._p;for(const{prefix:n,offset:r}of ap)for(const s of e.tags.filter(o=>typeof o.tagPriority=="string"&&o.tagPriority.startsWith(n))){const o=t(s.tagPriority.replace(n,""));typeof o<"u"&&(s._p=o+r)}e.tags.sort((n,r)=>n._p-r._p).sort((n,r)=>zi(n)-zi(r))}}}}const fp=()=>({hooks:{"tags:resolve":e=>{const{tags:t}=e;let n=t.findIndex(s=>s.tag==="titleTemplate");const r=t.findIndex(s=>s.tag==="title");if(r!==-1&&n!==-1){const s=qi(t[n].textContent,t[r].textContent);s!==null?t[r].textContent=s||t[r].textContent:delete t[r]}else if(n!==-1){const s=qi(t[n].textContent);s!==null&&(t[n].textContent=s,t[n].tag="title",n=-1)}n!==-1&&delete t[n],e.tags=t.filter(Boolean)}}}),dp=()=>({hooks:{"tag:normalise":function({tag:e}){typeof e.props.body<"u"&&(e.tagPosition="bodyClose",delete e.props.body)}}}),hp=["link","style","script","noscript"],pp=()=>({hooks:{"tag:normalise":({tag:e,resolvedOptions:t})=>{t.experimentalHashHydration===!0&&(e._h=zs(e)),e.key&&hp.includes(e.tag)&&(e._h=_a(e.key),e.props[`data-h-${e._h}`]="")}}}),Qi=["script","link","bodyAttrs"],gp=()=>{const e=(t,n)=>{const r={},s={};Object.entries(n.props).forEach(([i,l])=>{i.startsWith("on")&&typeof l=="function"?s[i]=l:r[i]=l});let o;return t==="dom"&&n.tag==="script"&&typeof r.src=="string"&&typeof s.onload<"u"&&(o=r.src,delete r.src),{props:r,eventHandlers:s,delayedSrc:o}};return{hooks:{"ssr:render":function(t){t.tags=t.tags.map(n=>(!Qi.includes(n.tag)||!Object.entries(n.props).find(([r,s])=>r.startsWith("on")&&typeof s=="function")||(n.props=e("ssr",n).props),n))},"dom:beforeRenderTag":function(t){if(!Qi.includes(t.tag.tag)||!Object.entries(t.tag.props).find(([o,i])=>o.startsWith("on")&&typeof i=="function"))return;const{props:n,eventHandlers:r,delayedSrc:s}=e("dom",t.tag);Object.keys(r).length&&(t.tag.props=n,t.tag._eventHandlers=r,t.tag._delayedSrc=s)},"dom:renderTag":function(t){const n=t.$el;if(!t.tag._eventHandlers||!n)return;const r=t.tag.tag==="bodyAttrs"&&typeof window<"u"?window:n;Object.entries(t.tag._eventHandlers).forEach(([s,o])=>{const i=`${t.tag._d||t.tag._p}:${s}`,l=s.slice(2).toLowerCase(),c=`data-h-${l}`;if(t.markSideEffect(i,()=>{}),n.hasAttribute(c))return;const a=o;n.setAttribute(c,""),r.addEventListener(l,a),t.entry&&(t.entry._sde[i]=()=>{r.removeEventListener(l,a),n.removeAttribute(c)})}),t.tag._delayedSrc&&n.setAttribute("src",t.tag._delayedSrc)}}}},mp=["templateParams","htmlAttrs","bodyAttrs"],yp=()=>({hooks:{"tag:normalise":function({tag:e}){["hid","vmid","key"].forEach(n=>{e.props[n]&&(e.key=e.props[n],delete e.props[n])});const t=e.key?`${e.tag}:${e.key}`:va(e);t&&(e._d=t)},"tags:resolve":function(e){const t={};e.tags.forEach(r=>{const s=r._d||r._p,o=t[s];if(o){let i=r?.tagDuplicateStrategy;if(!i&&mp.includes(r.tag)&&(i="merge"),i==="merge"){const c=o.props;["class","style"].forEach(a=>{r.props[a]&&c[a]&&(a==="style"&&!c[a].endsWith(";")&&(c[a]+=";"),r.props[a]=`${c[a]} ${r.props[a]}`)}),t[s].props={...c,...r.props};return}else if(r._e===o._e){o._duped=o._duped||[],r._d=`${o._d}:${o._duped.length+1}`,o._duped.push(r);return}const l=Object.keys(r.props).length;if((l===0||l===1&&typeof r.props["data-h-key"]<"u")&&!r.innerHTML&&!r.textContent){delete t[s];return}}t[s]=r});const n=[];Object.values(t).forEach(r=>{const s=r._duped;delete r._duped,n.push(r),s&&n.push(...s)}),e.tags=n}}});function br(e,t){function n(o){if(["s","pageTitle"].includes(o))return t.pageTitle;let i;return o.includes(".")?i=o.split(".").reduce((l,c)=>l&&l[c]||void 0,t):i=t[o],typeof i<"u"?i||"":!1}let r=e;try{r=decodeURI(e)}catch{}return(r.match(/%(\w+\.+\w+)|%(\w+)/g)||[]).sort().reverse().forEach(o=>{const i=n(o.slice(1));typeof i=="string"&&(e=e.replaceAll(new RegExp(`\\${o}(\\W|$)`,"g"),`${i}$1`).trim())}),t.separator&&(e.endsWith(t.separator)&&(e=e.slice(0,-t.separator.length).trim()),e.startsWith(t.separator)&&(e=e.slice(t.separator.length).trim()),e=e.replace(new RegExp(`\\${t.separator}\\s*\\${t.separator}`,"g"),t.separator)),e}function _p(){return{hooks:{"tags:resolve":e=>{const{tags:t}=e,n=t.find(o=>o.tag==="title")?.textContent,r=t.findIndex(o=>o.tag==="templateParams"),s=r!==-1?t[r].props:{};s.pageTitle=s.pageTitle||n||"";for(const o of t)if(["titleTemplate","title"].includes(o.tag)&&typeof o.textContent=="string")o.textContent=br(o.textContent,s);else if(o.tag==="meta"&&typeof o.props.content=="string")o.props.content=br(o.props.content,s);else if(o.tag==="link"&&typeof o.props.href=="string")o.props.href=br(o.props.href,s);else if(o.tag==="script"&&["application/json","application/ld+json"].includes(o.props.type)&&typeof o.innerHTML=="string")try{o.innerHTML=JSON.stringify(JSON.parse(o.innerHTML),(i,l)=>typeof l=="string"?br(l,s):l)}catch{}e.tags=t.filter(o=>o.tag!=="templateParams")}}}}const vp=typeof window<"u";let ba;const bp=e=>ba=e,wp=()=>ba;async function Ep(e,t){const n={tag:e,props:{}};return e==="templateParams"?(n.props=t,n):["title","titleTemplate"].includes(e)?(n.textContent=t instanceof Promise?await t:t,n):typeof t=="string"?["script","noscript","style"].includes(e)?(e==="script"&&(/^(https?:)?\/\//.test(t)||t.startsWith("/"))?n.props.src=t:n.innerHTML=t,n):!1:(n.props=await Cp(e,{...t}),n.props.children&&(n.props.innerHTML=n.props.children),delete n.props.children,Object.keys(n.props).filter(r=>rp.includes(r)).forEach(r=>{(!["innerHTML","textContent"].includes(r)||ya.includes(n.tag))&&(n[r]=n.props[r]),delete n.props[r]}),["innerHTML","textContent"].forEach(r=>{if(n.tag==="script"&&typeof n[r]=="string"&&["application/ld+json","application/json"].includes(n.props.type))try{n[r]=JSON.parse(n[r])}catch{n[r]=""}typeof n[r]=="object"&&(n[r]=JSON.stringify(n[r]))}),n.props.class&&(n.props.class=xp(n.props.class)),n.props.content&&Array.isArray(n.props.content)?n.props.content.map(r=>({...n,props:{...n.props,content:r}})):n)}function xp(e){return typeof e=="object"&&!Array.isArray(e)&&(e=Object.keys(e).filter(t=>e[t])),(Array.isArray(e)?e.join(" "):e).split(" ").filter(t=>t.trim()).filter(Boolean).join(" ")}async function Cp(e,t){for(const n of Object.keys(t)){const r=n.startsWith("data-");t[n]instanceof Promise&&(t[n]=await t[n]),String(t[n])==="true"?t[n]=r?"true":"":String(t[n])==="false"&&(r?t[n]="false":delete t[n])}return t}const Tp=10;async function kp(e){const t=[];return Object.entries(e.resolvedInput).filter(([n,r])=>typeof r<"u"&&tp.includes(n)).forEach(([n,r])=>{const s=Zh(r);t.push(...s.map(o=>Ep(n,o)).flat())}),(await Promise.all(t)).flat().filter(Boolean).map((n,r)=>(n._e=e._i,n._p=(e._i<<Tp)+r,n))}const Pp=()=>[yp(),up(),_p(),fp(),pp(),gp(),dp()],Sp=(e={})=>[lp({document:e?.document,delayFn:e?.domDelayFn})];function Rp(e={}){const t=Op({...e,plugins:[...Sp(e),...e?.plugins||[]]});return e.experimentalHashHydration&&t.resolvedOptions.document&&(t._hash=cp(t.resolvedOptions.document)),bp(t),t}function Op(e={}){let t=[],n={},r=0;const s=ga();e?.hooks&&s.addHooks(e.hooks),e.plugins=[...Pp(),...e?.plugins||[]],e.plugins.forEach(l=>l.hooks&&s.addHooks(l.hooks)),e.document=e.document||(vp?document:void 0);const o=()=>s.callHook("entries:updated",i),i={resolvedOptions:e,headEntries(){return t},get hooks(){return s},use(l){l.hooks&&s.addHooks(l.hooks)},push(l,c){const a={_i:r++,input:l,_sde:{}};return c?.mode&&(a._m=c?.mode),c?.transform&&(a._t=c?.transform),t.push(a),o(),{dispose(){t=t.filter(u=>u._i!==a._i?!0:(n={...n,...u._sde||{}},u._sde={},o(),!1))},patch(u){t=t.map(f=>(f._i===a._i&&(a.input=f.input=u,o()),f))}}},async resolveTags(){const l={tags:[],entries:[...t]};await s.callHook("entries:resolve",l);for(const c of l.entries){const a=c._t||(u=>u);if(c.resolvedInput=a(c.resolvedInput||c.input),c.resolvedInput)for(const u of await kp(c)){const f={tag:u,entry:c,resolvedOptions:i.resolvedOptions};await s.callHook("tag:normalise",f),l.tags.push(f.tag)}}return await s.callHook("tags:resolve",l),l.tags},_popSideEffectQueue(){const l={...n};return n={},l},_elMap:{}};return i.hooks.callHook("init",i),i}function Ip(e){return typeof e=="function"?e():V(e)}function jr(e,t=""){if(e instanceof Promise)return e;const n=Ip(e);return!e||!n?n:Array.isArray(n)?n.map(r=>jr(r,t)):typeof n=="object"?Object.fromEntries(Object.entries(n).map(([r,s])=>r==="titleTemplate"||r.startsWith("on")?[r,V(s)]:[r,jr(s,r)])):n}const Ap=ea.startsWith("3"),$p=typeof window<"u",wa="usehead";function No(){return it()&&Ge(wa)||wp()}function Mp(e){return{install(n){Ap&&(n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(wa,e))}}.install}function Hp(e={}){const t=Rp({...e,domDelayFn:n=>setTimeout(()=>wn(()=>n()),10),plugins:[Lp(),...e?.plugins||[]]});return t.install=Mp(t),t}const Lp=()=>({hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=jr(t.input)}}});function Np(e,t={}){const n=No(),r=me(!1),s=me({});Sf(()=>{s.value=r.value?{}:jr(e)});const o=n.push(s.value,t);return Fe(s,l=>{o.patch(l)}),it()&&(or(()=>{o.dispose()}),Sc(()=>{r.value=!0}),Pc(()=>{r.value=!1})),o}function jp(e,t={}){return No().push(e,t)}function Ea(e,t={}){const n=No();if(n){const r=$p||!!n.resolvedOptions?.document;return t.mode==="server"&&r||t.mode==="client"&&!r?void 0:r?Np(e,t):jp(e,t)}}const Fp={meta:[{name:"viewport",content:"width=device-width, initial-scale=1"},{charset:"utf-8"}],link:[],style:[],script:[],noscript:[]},Qs=!1,Dp=!1,Bp="__nuxt",Up=mt(e=>{const n=Hp();n.push(Fp),e.vueApp.use(n);{let r=!0;const s=()=>{r=!1,n.hooks.callHook("entries:updated",n)};n.hooks.hook("dom:beforeRender",o=>{o.shouldRender=!r}),e.hooks.hook("page:start",()=>{r=!0}),e.hooks.hook("page:finish",s),e.hooks.hook("app:suspense:resolve",s)}});function Kp(e){const t=e;return t.headTags=e.resolveTags,t.addEntry=e.push,t.addHeadObjs=e.push,t.addReactiveEntry=(n,r)=>{const s=Ea(n,r);return typeof s<"u"?s.dispose:()=>{}},t.removeHeadObjs=()=>{},t.updateDOM=()=>{e.hooks.callHook("entries:updated",e)},t.unhead=e,t}const Vp=mt(e=>{Kp(e.vueApp._context.provides.usehead)});/*!
|
|
2
|
-
* vue-router v4.1.6
|
|
3
|
-
* (c) 2022 Eduardo San Martin Morote
|
|
4
|
-
* @license MIT
|
|
5
|
-
*/const Jt=typeof window<"u";function qp(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const oe=Object.assign;function vs(e,t){const n={};for(const r in t){const s=t[r];n[r]=Ze(s)?s.map(e):e(s)}return n}const Bn=()=>{},Ze=Array.isArray,Wp=/\/$/,zp=e=>e.replace(Wp,"");function bs(e,t,n="/"){let r,s={},o="",i="";const l=t.indexOf("#");let c=t.indexOf("?");return l<c&&l>=0&&(c=-1),c>-1&&(r=t.slice(0,c),o=t.slice(c+1,l>-1?l:t.length),s=e(o)),l>-1&&(r=r||t.slice(0,l),i=t.slice(l,t.length)),r=Yp(r??t,n),{fullPath:r+(o&&"?")+o+i,path:r,query:s,hash:i}}function Qp(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Ji(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Jp(e,t,n){const r=t.matched.length-1,s=n.matched.length-1;return r>-1&&r===s&&dn(t.matched[r],n.matched[s])&&xa(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function dn(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function xa(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Xp(e[n],t[n]))return!1;return!0}function Xp(e,t){return Ze(e)?Xi(e,t):Ze(t)?Xi(t,e):e===t}function Xi(e,t){return Ze(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Yp(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let s=n.length-1,o,i;for(o=0;o<r.length;o++)if(i=r[o],i!==".")if(i==="..")s>1&&s--;else break;return n.slice(0,s).join("/")+"/"+r.slice(o-(o===r.length?1:0)).join("/")}var Zn;(function(e){e.pop="pop",e.push="push"})(Zn||(Zn={}));var Un;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Un||(Un={}));function Gp(e){if(!e)if(Jt){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),zp(e)}const Zp=/^[^#]+#/;function eg(e,t){return e.replace(Zp,"#")+t}function tg(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 es=()=>({left:window.pageXOffset,top:window.pageYOffset});function ng(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=tg(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function Yi(e,t){return(history.state?history.state.position-t:-1)+e}const Js=new Map;function rg(e,t){Js.set(e,t)}function sg(e){const t=Js.get(e);return Js.delete(e),t}let og=()=>location.protocol+"//"+location.host;function Ca(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){let l=s.includes(e.slice(o))?e.slice(o).length:1,c=s.slice(l);return c[0]!=="/"&&(c="/"+c),Ji(c,"")}return Ji(n,e)+r+s}function ig(e,t,n,r){let s=[],o=[],i=null;const l=({state:d})=>{const g=Ca(e,location),m=n.value,v=t.value;let E=0;if(d){if(n.value=g,t.value=d,i&&i===m){i=null;return}E=v?d.position-v.position:0}else r(g);s.forEach(_=>{_(n.value,m,{delta:E,type:Zn.pop,direction:E?E>0?Un.forward:Un.back:Un.unknown})})};function c(){i=n.value}function a(d){s.push(d);const g=()=>{const m=s.indexOf(d);m>-1&&s.splice(m,1)};return o.push(g),g}function u(){const{history:d}=window;d.state&&d.replaceState(oe({},d.state,{scroll:es()}),"")}function f(){for(const d of o)d();o=[],window.removeEventListener("popstate",l),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",l),window.addEventListener("beforeunload",u),{pauseListeners:c,listen:a,destroy:f}}function Gi(e,t,n,r=!1,s=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:s?es():null}}function lg(e){const{history:t,location:n}=window,r={value:Ca(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(c,a,u){const f=e.indexOf("#"),d=f>-1?(n.host&&document.querySelector("base")?e:e.slice(f))+c:og()+e+c;try{t[u?"replaceState":"pushState"](a,"",d),s.value=a}catch(g){console.error(g),n[u?"replace":"assign"](d)}}function i(c,a){const u=oe({},t.state,Gi(s.value.back,c,s.value.forward,!0),a,{position:s.value.position});o(c,u,!0),r.value=c}function l(c,a){const u=oe({},s.value,t.state,{forward:c,scroll:es()});o(u.current,u,!0);const f=oe({},Gi(r.value,c,null),{position:u.position+1},a);o(c,f,!1),r.value=c}return{location:r,state:s,push:l,replace:i}}function Ta(e){e=Gp(e);const t=lg(e),n=ig(e,t.state,t.location,t.replace);function r(o,i=!0){i||n.pauseListeners(),history.go(o)}const s=oe({location:"",base:e,go:r,createHref:eg.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}function cg(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Ta(e)}function ag(e){return typeof e=="string"||e&&typeof e=="object"}function ka(e){return typeof e=="string"||typeof e=="symbol"}const Et={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Pa=Symbol("");var Zi;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Zi||(Zi={}));function hn(e,t){return oe(new Error,{type:e,[Pa]:!0},t)}function lt(e,t){return e instanceof Error&&Pa in e&&(t==null||!!(e.type&t))}const el="[^/]+?",ug={sensitive:!1,strict:!1,start:!0,end:!0},fg=/[.+*?^${}()[\]/\\]/g;function dg(e,t){const n=oe({},ug,t),r=[];let s=n.start?"^":"";const o=[];for(const a of e){const u=a.length?[]:[90];n.strict&&!a.length&&(s+="/");for(let f=0;f<a.length;f++){const d=a[f];let g=40+(n.sensitive?.25:0);if(d.type===0)f||(s+="/"),s+=d.value.replace(fg,"\\$&"),g+=40;else if(d.type===1){const{value:m,repeatable:v,optional:E,regexp:_}=d;o.push({name:m,repeatable:v,optional:E});const p=_||el;if(p!==el){g+=10;try{new RegExp(`(${p})`)}catch(x){throw new Error(`Invalid custom RegExp for param "${m}" (${p}): `+x.message)}}let b=v?`((?:${p})(?:/(?:${p}))*)`:`(${p})`;f||(b=E&&a.length<2?`(?:/${b})`:"/"+b),E&&(b+="?"),s+=b,g+=20,E&&(g+=-8),v&&(g+=-20),p===".*"&&(g+=-50)}u.push(g)}r.push(u)}if(n.strict&&n.end){const a=r.length-1;r[a][r[a].length-1]+=.7000000000000001}n.strict||(s+="/?"),n.end?s+="$":n.strict&&(s+="(?:/|$)");const i=new RegExp(s,n.sensitive?"":"i");function l(a){const u=a.match(i),f={};if(!u)return null;for(let d=1;d<u.length;d++){const g=u[d]||"",m=o[d-1];f[m.name]=g&&m.repeatable?g.split("/"):g}return f}function c(a){let u="",f=!1;for(const d of e){(!f||!u.endsWith("/"))&&(u+="/"),f=!1;for(const g of d)if(g.type===0)u+=g.value;else if(g.type===1){const{value:m,repeatable:v,optional:E}=g,_=m in a?a[m]:"";if(Ze(_)&&!v)throw new Error(`Provided param "${m}" is an array but it is not repeatable (* or + modifiers)`);const p=Ze(_)?_.join("/"):_;if(!p)if(E)d.length<2&&(u.endsWith("/")?u=u.slice(0,-1):f=!0);else throw new Error(`Missing required param "${m}"`);u+=p}}return u||"/"}return{re:i,score:r,keys:o,parse:l,stringify:c}}function hg(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]===40+40?-1:1:e.length>t.length?t.length===1&&t[0]===40+40?1:-1:0}function pg(e,t){let n=0;const r=e.score,s=t.score;for(;n<r.length&&n<s.length;){const o=hg(r[n],s[n]);if(o)return o;n++}if(Math.abs(s.length-r.length)===1){if(tl(r))return 1;if(tl(s))return-1}return s.length-r.length}function tl(e){const t=e[e.length-1];return e.length>0&&t[t.length-1]<0}const gg={type:0,value:""},mg=/[a-zA-Z0-9_]/;function yg(e){if(!e)return[[]];if(e==="/")return[[gg]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(g){throw new Error(`ERR (${n})/"${a}": ${g}`)}let n=0,r=n;const s=[];let o;function i(){o&&s.push(o),o=[]}let l=0,c,a="",u="";function f(){a&&(n===0?o.push({type:0,value:a}):n===1||n===2||n===3?(o.length>1&&(c==="*"||c==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),o.push({type:1,value:a,regexp:u,repeatable:c==="*"||c==="+",optional:c==="*"||c==="?"})):t("Invalid state to consume buffer"),a="")}function d(){a+=c}for(;l<e.length;){if(c=e[l++],c==="\\"&&n!==2){r=n,n=4;continue}switch(n){case 0:c==="/"?(a&&f(),i()):c===":"?(f(),n=1):d();break;case 4:d(),n=r;break;case 1:c==="("?n=2:mg.test(c)?d():(f(),n=0,c!=="*"&&c!=="?"&&c!=="+"&&l--);break;case 2:c===")"?u[u.length-1]=="\\"?u=u.slice(0,-1)+c:n=3:u+=c;break;case 3:f(),n=0,c!=="*"&&c!=="?"&&c!=="+"&&l--,u="";break;default:t("Unknown state");break}}return n===2&&t(`Unfinished custom RegExp for param "${a}"`),f(),i(),s}function _g(e,t,n){const r=dg(yg(e.path),n),s=oe(r,{record:e,parent:t,children:[],alias:[]});return t&&!s.record.aliasOf==!t.record.aliasOf&&t.children.push(s),s}function vg(e,t){const n=[],r=new Map;t=sl({strict:!1,end:!0,sensitive:!1},t);function s(u){return r.get(u)}function o(u,f,d){const g=!d,m=bg(u);m.aliasOf=d&&d.record;const v=sl(t,u),E=[m];if("alias"in u){const b=typeof u.alias=="string"?[u.alias]:u.alias;for(const x of b)E.push(oe({},m,{components:d?d.record.components:m.components,path:x,aliasOf:d?d.record:m}))}let _,p;for(const b of E){const{path:x}=b;if(f&&x[0]!=="/"){const O=f.record.path,P=O[O.length-1]==="/"?"":"/";b.path=f.record.path+(x&&P+x)}if(_=_g(b,f,v),d?d.alias.push(_):(p=p||_,p!==_&&p.alias.push(_),g&&u.name&&!rl(_)&&i(u.name)),m.children){const O=m.children;for(let P=0;P<O.length;P++)o(O[P],_,d&&d.children[P])}d=d||_,(_.record.components&&Object.keys(_.record.components).length||_.record.name||_.record.redirect)&&c(_)}return p?()=>{i(p)}:Bn}function i(u){if(ka(u)){const f=r.get(u);f&&(r.delete(u),n.splice(n.indexOf(f),1),f.children.forEach(i),f.alias.forEach(i))}else{const f=n.indexOf(u);f>-1&&(n.splice(f,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function l(){return n}function c(u){let f=0;for(;f<n.length&&pg(u,n[f])>=0&&(u.record.path!==n[f].record.path||!Sa(u,n[f]));)f++;n.splice(f,0,u),u.record.name&&!rl(u)&&r.set(u.record.name,u)}function a(u,f){let d,g={},m,v;if("name"in u&&u.name){if(d=r.get(u.name),!d)throw hn(1,{location:u});v=d.record.name,g=oe(nl(f.params,d.keys.filter(p=>!p.optional).map(p=>p.name)),u.params&&nl(u.params,d.keys.map(p=>p.name))),m=d.stringify(g)}else if("path"in u)m=u.path,d=n.find(p=>p.re.test(m)),d&&(g=d.parse(m),v=d.record.name);else{if(d=f.name?r.get(f.name):n.find(p=>p.re.test(f.path)),!d)throw hn(1,{location:u,currentLocation:f});v=d.record.name,g=oe({},f.params,u.params),m=d.stringify(g)}const E=[];let _=d;for(;_;)E.unshift(_.record),_=_.parent;return{name:v,path:m,params:g,matched:E,meta:Eg(E)}}return e.forEach(u=>o(u)),{addRoute:o,resolve:a,removeRoute:i,getRoutes:l,getRecordMatcher:s}}function nl(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function bg(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:wg(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function wg(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=="boolean"?n:n[r];return t}function rl(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Eg(e){return e.reduce((t,n)=>oe(t,n.meta),{})}function sl(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function Sa(e,t){return t.children.some(n=>n===e||Sa(e,n))}const Ra=/#/g,xg=/&/g,Cg=/\//g,Tg=/=/g,kg=/\?/g,Oa=/\+/g,Pg=/%5B/g,Sg=/%5D/g,Ia=/%5E/g,Rg=/%60/g,Aa=/%7B/g,Og=/%7C/g,$a=/%7D/g,Ig=/%20/g;function jo(e){return encodeURI(""+e).replace(Og,"|").replace(Pg,"[").replace(Sg,"]")}function Ag(e){return jo(e).replace(Aa,"{").replace($a,"}").replace(Ia,"^")}function Xs(e){return jo(e).replace(Oa,"%2B").replace(Ig,"+").replace(Ra,"%23").replace(xg,"%26").replace(Rg,"`").replace(Aa,"{").replace($a,"}").replace(Ia,"^")}function $g(e){return Xs(e).replace(Tg,"%3D")}function Mg(e){return jo(e).replace(Ra,"%23").replace(kg,"%3F")}function Hg(e){return e==null?"":Mg(e).replace(Cg,"%2F")}function Fr(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function Lg(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let s=0;s<r.length;++s){const o=r[s].replace(Oa," "),i=o.indexOf("="),l=Fr(i<0?o:o.slice(0,i)),c=i<0?null:Fr(o.slice(i+1));if(l in t){let a=t[l];Ze(a)||(a=t[l]=[a]),a.push(c)}else t[l]=c}return t}function ol(e){let t="";for(let n in e){const r=e[n];if(n=$g(n),r==null){r!==void 0&&(t+=(t.length?"&":"")+n);continue}(Ze(r)?r.map(o=>o&&Xs(o)):[r&&Xs(r)]).forEach(o=>{o!==void 0&&(t+=(t.length?"&":"")+n,o!=null&&(t+="="+o))})}return t}function Ng(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=Ze(r)?r.map(s=>s==null?null:""+s):r==null?r:""+r)}return t}const jg=Symbol(""),il=Symbol(""),Fo=Symbol(""),Ma=Symbol(""),Ys=Symbol("");function Pn(){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,reset:n}}function Tt(e,t,n,r,s){const o=r&&(r.enterCallbacks[s]=r.enterCallbacks[s]||[]);return()=>new Promise((i,l)=>{const c=f=>{f===!1?l(hn(4,{from:n,to:t})):f instanceof Error?l(f):ag(f)?l(hn(2,{from:t,to:f})):(o&&r.enterCallbacks[s]===o&&typeof f=="function"&&o.push(f),i())},a=e.call(r&&r.instances[s],t,n,c);let u=Promise.resolve(a);e.length<3&&(u=u.then(c)),u.catch(f=>l(f))})}function ws(e,t,n,r){const s=[];for(const o of e)for(const i in o.components){let l=o.components[i];if(!(t!=="beforeRouteEnter"&&!o.instances[i]))if(Fg(l)){const a=(l.__vccOpts||l)[t];a&&s.push(Tt(a,n,r,o,i))}else{let c=l();s.push(()=>c.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${o.path}"`));const u=qp(a)?a.default:a;o.components[i]=u;const d=(u.__vccOpts||u)[t];return d&&Tt(d,n,r,o,i)()}))}}return s}function Fg(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function ll(e){const t=Ge(Fo),n=Ge(Ma),r=ce(()=>t.resolve(V(e.to))),s=ce(()=>{const{matched:c}=r.value,{length:a}=c,u=c[a-1],f=n.matched;if(!u||!f.length)return-1;const d=f.findIndex(dn.bind(null,u));if(d>-1)return d;const g=cl(c[a-2]);return a>1&&cl(u)===g&&f[f.length-1].path!==g?f.findIndex(dn.bind(null,c[a-2])):d}),o=ce(()=>s.value>-1&&Kg(n.params,r.value.params)),i=ce(()=>s.value>-1&&s.value===n.matched.length-1&&xa(n.params,r.value.params));function l(c={}){return Ug(c)?t[V(e.replace)?"replace":"push"](V(e.to)).catch(Bn):Promise.resolve()}return{route:r,href:ce(()=>r.value.href),isActive:o,isExactActive:i,navigate:l}}const Dg=$e({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"}},useLink:ll,setup(e,{slots:t}){const n=Ve(ll(e)),{options:r}=Ge(Fo),s=ce(()=>({[al(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[al(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const o=t.default&&t.default(n);return e.custom?o:Le("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},o)}}}),Bg=Dg;function Ug(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 Kg(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(!Ze(s)||s.length!==r.length||r.some((o,i)=>o!==s[i]))return!1}return!0}function cl(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const al=(e,t,n)=>e??t??n,Vg=$e({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=Ge(Ys),s=ce(()=>e.route||r.value),o=Ge(il,0),i=ce(()=>{let a=V(o);const{matched:u}=s.value;let f;for(;(f=u[a])&&!f.components;)a++;return a}),l=ce(()=>s.value.matched[i.value]);on(il,ce(()=>i.value+1)),on(jg,l),on(Ys,s);const c=me();return Fe(()=>[c.value,l.value,e.name],([a,u,f],[d,g,m])=>{u&&(u.instances[f]=a,g&&g!==u&&a&&a===d&&(u.leaveGuards.size||(u.leaveGuards=g.leaveGuards),u.updateGuards.size||(u.updateGuards=g.updateGuards))),a&&u&&(!g||!dn(u,g)||!d)&&(u.enterCallbacks[f]||[]).forEach(v=>v(a))},{flush:"post"}),()=>{const a=s.value,u=e.name,f=l.value,d=f&&f.components[u];if(!d)return ul(n.default,{Component:d,route:a});const g=f.props[u],m=g?g===!0?a.params:typeof g=="function"?g(a):g:null,E=Le(d,oe({},m,t,{onVnodeUnmounted:_=>{_.component.isUnmounted&&(f.instances[u]=null)},ref:c}));return ul(n.default,{Component:E,route:a})||E}}});function ul(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const Ha=Vg;function qg(e){const t=vg(e.routes,e),n=e.parseQuery||Lg,r=e.stringifyQuery||ol,s=e.history,o=Pn(),i=Pn(),l=Pn(),c=zn(Et);let a=Et;Jt&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=vs.bind(null,T=>""+T),f=vs.bind(null,Hg),d=vs.bind(null,Fr);function g(T,j){let M,K;return ka(T)?(M=t.getRecordMatcher(T),K=j):K=T,t.addRoute(K,M)}function m(T){const j=t.getRecordMatcher(T);j&&t.removeRoute(j)}function v(){return t.getRoutes().map(T=>T.record)}function E(T){return!!t.getRecordMatcher(T)}function _(T,j){if(j=oe({},j||c.value),typeof T=="string"){const h=bs(n,T,j.path),y=t.resolve({path:h.path},j),w=s.createHref(h.fullPath);return oe(h,y,{params:d(y.params),hash:Fr(h.hash),redirectedFrom:void 0,href:w})}let M;if("path"in T)M=oe({},T,{path:bs(n,T.path,j.path).path});else{const h=oe({},T.params);for(const y in h)h[y]==null&&delete h[y];M=oe({},T,{params:f(T.params)}),j.params=f(j.params)}const K=t.resolve(M,j),ne=T.hash||"";K.params=u(d(K.params));const pe=Qp(r,oe({},T,{hash:Ag(ne),path:K.path})),Z=s.createHref(pe);return oe({fullPath:pe,hash:ne,query:r===ol?Ng(T.query):T.query||{}},K,{redirectedFrom:void 0,href:Z})}function p(T){return typeof T=="string"?bs(n,T,c.value.path):oe({},T)}function b(T,j){if(a!==T)return hn(8,{from:j,to:T})}function x(T){return H(T)}function O(T){return x(oe(p(T),{replace:!0}))}function P(T){const j=T.matched[T.matched.length-1];if(j&&j.redirect){const{redirect:M}=j;let K=typeof M=="function"?M(T):M;return typeof K=="string"&&(K=K.includes("?")||K.includes("#")?K=p(K):{path:K},K.params={}),oe({query:T.query,hash:T.hash,params:"path"in K?{}:T.params},K)}}function H(T,j){const M=a=_(T),K=c.value,ne=T.state,pe=T.force,Z=T.replace===!0,h=P(M);if(h)return H(oe(p(h),{state:typeof h=="object"?oe({},ne,h.state):ne,force:pe,replace:Z}),j||M);const y=M;y.redirectedFrom=j;let w;return!pe&&Jp(r,K,M)&&(w=hn(16,{to:y,from:K}),At(K,K,!0,!1)),(w?Promise.resolve(w):U(y,K)).catch(C=>lt(C)?lt(C,2)?C:qe(C):ae(C,y,K)).then(C=>{if(C){if(lt(C,2))return H(oe({replace:Z},p(C.to),{state:typeof C.to=="object"?oe({},ne,C.to.state):ne,force:pe}),j||y)}else C=Q(y,K,!0,Z,ne);return F(y,K,C),C})}function R(T,j){const M=b(T,j);return M?Promise.reject(M):Promise.resolve()}function U(T,j){let M;const[K,ne,pe]=Wg(T,j);M=ws(K.reverse(),"beforeRouteLeave",T,j);for(const h of K)h.leaveGuards.forEach(y=>{M.push(Tt(y,T,j))});const Z=R.bind(null,T,j);return M.push(Z),zt(M).then(()=>{M=[];for(const h of o.list())M.push(Tt(h,T,j));return M.push(Z),zt(M)}).then(()=>{M=ws(ne,"beforeRouteUpdate",T,j);for(const h of ne)h.updateGuards.forEach(y=>{M.push(Tt(y,T,j))});return M.push(Z),zt(M)}).then(()=>{M=[];for(const h of T.matched)if(h.beforeEnter&&!j.matched.includes(h))if(Ze(h.beforeEnter))for(const y of h.beforeEnter)M.push(Tt(y,T,j));else M.push(Tt(h.beforeEnter,T,j));return M.push(Z),zt(M)}).then(()=>(T.matched.forEach(h=>h.enterCallbacks={}),M=ws(pe,"beforeRouteEnter",T,j),M.push(Z),zt(M))).then(()=>{M=[];for(const h of i.list())M.push(Tt(h,T,j));return M.push(Z),zt(M)}).catch(h=>lt(h,8)?h:Promise.reject(h))}function F(T,j,M){for(const K of l.list())K(T,j,M)}function Q(T,j,M,K,ne){const pe=b(T,j);if(pe)return pe;const Z=j===Et,h=Jt?history.state:{};M&&(K||Z?s.replace(T.fullPath,oe({scroll:Z&&h&&h.scroll},ne)):s.push(T.fullPath,ne)),c.value=T,At(T,j,M,Z),qe()}let N;function Y(){N||(N=s.listen((T,j,M)=>{if(!cr.listening)return;const K=_(T),ne=P(K);if(ne){H(oe(ne,{replace:!0}),K).catch(Bn);return}a=K;const pe=c.value;Jt&&rg(Yi(pe.fullPath,M.delta),es()),U(K,pe).catch(Z=>lt(Z,12)?Z:lt(Z,2)?(H(Z.to,K).then(h=>{lt(h,20)&&!M.delta&&M.type===Zn.pop&&s.go(-1,!1)}).catch(Bn),Promise.reject()):(M.delta&&s.go(-M.delta,!1),ae(Z,K,pe))).then(Z=>{Z=Z||Q(K,pe,!1),Z&&(M.delta&&!lt(Z,8)?s.go(-M.delta,!1):M.type===Zn.pop&<(Z,20)&&s.go(-1,!1)),F(K,pe,Z)}).catch(Bn)}))}let D=Pn(),ke=Pn(),te;function ae(T,j,M){qe(T);const K=ke.list();return K.length?K.forEach(ne=>ne(T,j,M)):console.error(T),Promise.reject(T)}function ie(){return te&&c.value!==Et?Promise.resolve():new Promise((T,j)=>{D.add([T,j])})}function qe(T){return te||(te=!T,Y(),D.list().forEach(([j,M])=>T?M(T):j()),D.reset()),T}function At(T,j,M,K){const{scrollBehavior:ne}=e;if(!Jt||!ne)return Promise.resolve();const pe=!M&&sg(Yi(T.fullPath,0))||(K||!M)&&history.state&&history.state.scroll||null;return wn().then(()=>ne(T,j,pe)).then(Z=>Z&&ng(Z)).catch(Z=>ae(Z,T,j))}const We=T=>s.go(T);let Me;const qt=new Set,cr={currentRoute:c,listening:!0,addRoute:g,removeRoute:m,hasRoute:E,getRoutes:v,resolve:_,options:e,push:x,replace:O,go:We,back:()=>We(-1),forward:()=>We(1),beforeEach:o.add,beforeResolve:i.add,afterEach:l.add,onError:ke.add,isReady:ie,install(T){const j=this;T.component("RouterLink",Bg),T.component("RouterView",Ha),T.config.globalProperties.$router=j,Object.defineProperty(T.config.globalProperties,"$route",{enumerable:!0,get:()=>V(c)}),Jt&&!Me&&c.value===Et&&(Me=!0,x(s.location).catch(ne=>{}));const M={};for(const ne in Et)M[ne]=ce(()=>c.value[ne]);T.provide(Fo,j),T.provide(Ma,Ve(M)),T.provide(Ys,c);const K=T.unmount;qt.add(T),T.unmount=function(){qt.delete(T),qt.size<1&&(a=Et,N&&N(),N=null,c.value=Et,Me=!1,te=!1),K()}}};return cr}function zt(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function Wg(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(a=>dn(a,l))?r.push(l):n.push(l));const c=e.matched[i];c&&(t.matched.find(a=>dn(a,c))||s.push(c))}return[n,r,s]}function Es(e){return e!==null&&typeof e=="object"}function Gs(e,t,n=".",r){if(!Es(t))return Gs(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]]:Es(i)&&Es(s[o])?s[o]=Gs(i,s[o],(n?`${n}.`:"")+o.toString(),r):s[o]=i))}return s}function La(e){return(...t)=>t.reduce((n,r)=>Gs(n,r,"",e),{})}const zg=La(),Qg=La((e,t,n)=>{if(typeof e[t]<"u"&&typeof n=="function")return e[t]=n(e[t]),!0});class Zs extends Error{constructor(){super(...arguments),this.statusCode=500,this.fatal=!1,this.unhandled=!1,this.statusMessage=void 0}toJSON(){const t={message:this.message,statusCode:to(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=Na(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}Zs.__h3_error__=!0;function eo(e){if(typeof e=="string")return new Zs(e);if(Jg(e))return e;const t=new Zs(e.message??e.statusMessage,e.cause?{cause:e.cause}:void 0);if("stack"in e)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=to(e.statusCode,t.statusCode):e.status&&(t.statusCode=to(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;Na(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 Jg(e){return e?.constructor?.__h3_error__===!0}const Xg=/[^\u0009\u0020-\u007E]/g;function Na(e=""){return e.replace(Xg,"")}function to(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}function ts(...e){const t=typeof e[e.length-1]=="string"?e.pop():void 0;typeof e[0]!="string"&&e.unshift(t);const[n,r]=e;if(!n||typeof n!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+n);if(r!==void 0&&typeof r!="function")throw new Error("[nuxt] [useState] init must be a function: "+r);const s="$s"+n,o=ye(),i=hc(o.payload.state,s);if(i.value===void 0&&r){const l=r();if(we(l))return o.payload.state[s]=l,l;i.value=l}return i}const yt=()=>ye()?.$router,Mn=()=>it()?Ge("_route",ye()._route):ye()._route,Yg=e=>e,Gg=()=>{try{if(ye()._processingMiddleware)return!0}catch{return!0}return!1},Zg=(e,t)=>{e||(e="/");const n=typeof e=="string"?e:e.path||"/",r=t?.external||xn(n,{acceptRelative:!0});if(r&&!t?.external)throw new Error("Navigating to external URL is not allowed by default. Use `navigateTo (url, { external: true })`.");if(r&&lr(n).protocol==="script:")throw new Error("Cannot navigate to an URL with script protocol.");if(!r&&Gg())return e;const s=yt();return r?(t?.replace?location.replace(n):location.href=n,Promise.resolve()):t?.replace?s.replace(e):s.push(e)},ns=()=>hc(ye().payload,"error"),Gt=e=>{const t=Dr(e);try{ye().callHook("app:error",t);const r=ns();r.value=r.value||t}catch{throw t}return t},em=async(e={})=>{const t=ye(),n=ns();t.callHook("app:error:cleared",e),e.redirect&&await yt().replace(e.redirect),n.value=null},tm=e=>!!(e&&typeof e=="object"&&"__nuxt_error"in e),Dr=e=>{const t=eo(e);return t.__nuxt_error=!0,t},fl=[{name:"index",path:"/",meta:{},alias:[],redirect:void 0,component:()=>dt(()=>import("./index.80f38ec7.js"),[],import.meta.url).then(e=>e.default||e)},{name:"options",path:"/options",meta:{},alias:[],redirect:void 0,component:()=>dt(()=>import("./options.cc3fd02b.js"),["./options.cc3fd02b.js","./shiki.aace8ca2.js"],import.meta.url).then(e=>e.default||e)},{name:"png",path:"/png",meta:{},alias:[],redirect:void 0,component:()=>dt(()=>import("./png.62758167.js"),["./png.62758167.js","./ImageLoader.a4418cab.js"],import.meta.url).then(e=>e.default||e)},{name:"svg",path:"/svg",meta:{},alias:[],redirect:void 0,component:()=>dt(()=>import("./svg.853cdaad.js"),["./svg.853cdaad.js","./ImageLoader.a4418cab.js"],import.meta.url).then(e=>e.default||e)},{name:"vnodes",path:"/vnodes",meta:{},alias:[],redirect:void 0,component:()=>dt(()=>import("./vnodes.69b24963.js"),["./vnodes.69b24963.js","./shiki.aace8ca2.js"],import.meta.url).then(e=>e.default||e)}],nm={scrollBehavior(e,t,n){const r=ye();let s=n||void 0;if(!s&&t&&e&&e.meta.scrollToTop!==!1&&rm(t,e)&&(s={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:dl(e.hash)}}const o=l=>!!(l.meta.pageTransition??Qs),i=o(t)&&o(e)?"page:transition:finish":"page:finish";return new Promise(l=>{r.hooks.hookOnce(i,async()=>{await wn(),e.hash&&(s={el:e.hash,top:dl(e.hash)}),l(s)})})}};function dl(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}function rm(e,t){const n=e.matched[0]===t.matched[0];return!!(!n||n&&JSON.stringify(e.params)!==JSON.stringify(t.params))}const sm={},Sn={...sm,...nm},om=Yg(async e=>{let t,n;if(!e.meta?.validate)return;const r=ye(),s=yt();if(([t,n]=Ws(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t)===!0)return;const i=Dr({statusCode:404,statusMessage:`Page Not Found: ${e.fullPath}`}),l=s.beforeResolve(c=>{if(l(),c===e){const a=s.afterEach(async()=>{a(),await ut(r,Gt,[i]),window.history.pushState({},"",e.fullPath)});return!1}})}),im=[om],no={};function lm(e,t){const{pathname:n,search:r,hash:s}=t,o=e.indexOf("#");if(o>-1){const l=s.includes(e.slice(o))?e.slice(o).length:1;let c=s.slice(l);return c[0]!=="/"&&(c="/"+c),Fi(c,"")}return Fi(n,e)+r+s}const cm=mt(async e=>{let t,n,r=Lo().app.baseURL;Sn.hashMode&&!r.includes("#")&&(r+="#");const s=Sn.history?.(r)??(Sn.hashMode?cg(r):Ta(r)),o=Sn.routes?.(fl)??fl,i=lm(r,window.location),l=qg({...Sn,history:s,routes:o});e.vueApp.use(l);const c=zn(l.currentRoute.value);l.afterEach((m,v)=>{c.value=v}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>c.value});const a=zn(l.resolve(i)),u=()=>{a.value=l.currentRoute.value};e.hook("page:finish",u),l.afterEach((m,v)=>{m.matched[0]?.components?.default===v.matched[0]?.components?.default&&u()});const f={};for(const m in a.value)f[m]=ce(()=>a.value[m]);e._route=Ve(f),e._middleware=e._middleware||{global:[],named:{}};const d=ns();try{[t,n]=Ws(()=>l.isReady()),await t,n()}catch(m){[t,n]=Ws(()=>ut(e,Gt,[m])),await t,n()}const g=ts("_layout");return l.beforeEach(async(m,v)=>{m.meta=Ve(m.meta),e.isHydrating&&g.value&&!Kt(m.meta.layout)&&(m.meta.layout=g.value),e._processingMiddleware=!0;const E=new Set([...im,...e._middleware.global]);for(const _ of m.matched){const p=_.meta.middleware;if(p)if(Array.isArray(p))for(const b of p)E.add(b);else E.add(p)}for(const _ of E){const p=typeof _=="string"?e._middleware.named[_]||await no[_]?.().then(x=>x.default||x):_;if(!p)throw new Error(`Unknown route middleware: '${_}'.`);const b=await ut(e,p,[m,v]);if(!e.payload.serverRendered&&e.isHydrating&&(b===!1||b instanceof Error)){const x=b||eo({statusCode:404,statusMessage:`Page Not Found: ${i}`});return await ut(e,Gt,[x]),!1}if(b||b===!1)return b}}),l.afterEach(async m=>{delete e._processingMiddleware,!e.isHydrating&&d.value&&await ut(e,em),m.matched.length===0&&await ut(e,Gt,[eo({statusCode:404,fatal:!1,statusMessage:`Page not found: ${m.fullPath}`})])}),e.hooks.hookOnce("app:created",async()=>{try{await l.replace({...l.resolve(i),name:void 0,force:!0})}catch(m){await ut(e,Gt,[m])}}),{provide:{router:l}}}),wr={},am=mt(()=>{const e=ye(),t=yt();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{const r=n?.meta?.layout;r&&typeof wr[r]=="function"&&await wr[r]()})}),e.hooks.hook("link:prefetch",n=>{if(xn(n))return;const r=t.resolve(n);if(!r)return;const s=r?.meta?.layout;let o=Array.isArray(r?.meta?.middleware)?r?.meta?.middleware:[r?.meta?.middleware];o=o.filter(i=>typeof i=="string");for(const i of o)typeof no[i]=="function"&&no[i]();s&&typeof wr[s]=="function"&&wr[s]()})}),um=()=>null;function Do(...e){const t=typeof e[e.length-1]=="string"?e.pop():void 0;typeof e[0]!="string"&&e.unshift(t);let[n,r,s={}]=e;if(typeof n!="string")throw new TypeError("[nuxt] [asyncData] key must be a string.");if(typeof r!="function")throw new TypeError("[nuxt] [asyncData] handler must be a function.");s.server=s.server??!0,s.default=s.default??um,s.lazy=s.lazy??!1,s.immediate=s.immediate??!0;const o=ye(),i=()=>o.isHydrating?o.payload.data[n]:o.static.data[n],l=()=>i()!==void 0;o._asyncData[n]||(o._asyncData[n]={data:me(i()??s.default?.()??null),pending:me(!l()),error:me(o.payload._errors[n]?Dr(o.payload._errors[n]):null)});const c={...o._asyncData[n]};c.refresh=c.execute=(d={})=>{if(o._asyncDataPromises[n]){if(d.dedupe===!1)return o._asyncDataPromises[n];o._asyncDataPromises[n].cancelled=!0}if(d._initial&&l())return i();c.pending.value=!0;const g=new Promise((m,v)=>{try{m(r(o))}catch(E){v(E)}}).then(m=>{if(g.cancelled)return o._asyncDataPromises[n];let v=m;s.transform&&(v=s.transform(m)),s.pick&&(v=fm(v,s.pick)),c.data.value=v,c.error.value=null}).catch(m=>{if(g.cancelled)return o._asyncDataPromises[n];c.error.value=m,c.data.value=V(s.default?.()??null)}).finally(()=>{g.cancelled||(c.pending.value=!1,o.payload.data[n]=c.data.value,c.error.value&&(o.payload._errors[n]=Dr(c.error.value)),delete o._asyncDataPromises[n])});return o._asyncDataPromises[n]=g,o._asyncDataPromises[n]};const a=()=>c.refresh({_initial:!0}),u=s.server!==!1&&o.payload.serverRendered;{const d=it();if(d&&!d._nuxtOnBeforeMountCbs){d._nuxtOnBeforeMountCbs=[];const m=d._nuxtOnBeforeMountCbs;d&&(Oc(()=>{m.forEach(v=>{v()}),m.splice(0,m.length)}),Yn(()=>m.splice(0,m.length)))}u&&o.isHydrating&&l()?c.pending.value=!1:d&&(o.payload.serverRendered&&o.isHydrating||s.lazy)&&s.immediate?d._nuxtOnBeforeMountCbs.push(a):s.immediate&&a(),s.watch&&Fe(s.watch,()=>c.refresh());const g=o.hook("app:data:refresh",m=>{if(!m||m.includes(n))return c.refresh()});d&&Yn(g)}const f=Promise.resolve(o._asyncDataPromises[n]).then(()=>c);return Object.assign(f,c),f}function fm(e,t){const n={};for(const r of t)n[r]=e[r];return n}const ro=globalThis.requestIdleCallback||(e=>{const t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),dm=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),hm=e=>{const t=ye();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{ro(e)}):ro(e)};async function ja(e,t=yt()){const{path:n,matched:r}=t.resolve(e);if(!r.length||(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(n)))return;const s=t._preloadPromises=t._preloadPromises||[];if(s.length>4)return Promise.all(s).then(()=>ja(e,t));t._routePreloaded.add(n);const o=r.map(i=>i.components?.default).filter(i=>typeof i=="function");for(const i of o){const l=Promise.resolve(i()).catch(()=>{}).finally(()=>s.splice(s.indexOf(l)));s.push(l)}await Promise.all(s)}function hl(e,t={}){const n=pm(e,t),r=ye(),s=r._payloadCache=r._payloadCache||{};return s[n]||(s[n]=gm(n).then(o=>o||(delete s[n],null))),s[n]}function pm(e,t={}){const n=new URL(e,"http://localhost");if(n.search)throw new Error("Payload URL cannot contain search params: "+e);if(n.host!=="localhost"||xn(n.pathname,{acceptRelative:!0}))throw new Error("Payload URL must not include hostname: "+e);const r=t.hash||(t.fresh?Date.now():"");return ir(Lo().app.baseURL,n.pathname,r?`_payload.${r}.js`:"_payload.js")}async function gm(e){return(await dt(()=>import(e),[],import.meta.url).catch(n=>{console.warn("[nuxt] Cannot load payload ",e,n)}))?.default||null}function mm(){return!!ye().payload.prerenderedAt}function ym(e={}){const t=e.path||window.location.pathname;let n={};try{n=JSON.parse(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:ye().payload.state}))}catch{}window.location.pathname!==t?window.location.href=t:window.location.reload()}}const _m=(...e)=>e.find(t=>t!==void 0),vm="noopener noreferrer";function bm(e){const t=e.componentName||"NuxtLink",n=(r,s)=>{if(!r||e.trailingSlash!=="append"&&e.trailingSlash!=="remove")return r;const o=e.trailingSlash==="append"?ca:Ho;if(typeof r=="string")return o(r,!0);const i="path"in r?r.path:s(r).path;return{...r,name:void 0,path:o(i,!0)}};return $e({name:t,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(r,{slots:s}){const o=yt(),i=ce(()=>{const f=r.to||r.href||"";return n(f,o.resolve)}),l=ce(()=>r.external||r.target&&r.target!=="_self"?!0:typeof i.value=="object"?!1:i.value===""||xn(i.value,{acceptRelative:!0})),c=me(!1),a=me(null),u=f=>{a.value=r.custom?f?.$el?.nextElementSibling:f?.$el};if(r.prefetch!==!1&&r.noPrefetch!==!0&&r.target!=="_blank"&&!Em()){const d=ye();let g,m=null;En(()=>{const v=wm();hm(()=>{g=ro(()=>{a?.value?.tagName&&(m=v.observe(a.value,async()=>{m?.(),m=null;const E=typeof i.value=="string"?i.value:o.resolve(i.value).fullPath;await Promise.all([d.hooks.callHook("link:prefetch",E).catch(()=>{}),!l.value&&ja(i.value,o).catch(()=>{})]),c.value=!0}))})})}),or(()=>{g&&dm(g),m?.(),m=null})}return()=>{if(!l.value){const v={ref:u,to:i.value,activeClass:r.activeClass||e.activeClass,exactActiveClass:r.exactActiveClass||e.exactActiveClass,replace:r.replace,ariaCurrentValue:r.ariaCurrentValue,custom:r.custom};return r.custom||(c.value&&(v.class=r.prefetchedClass||e.prefetchedClass),v.rel=r.rel),Le(Bf("RouterLink"),v,s.default)}const f=typeof i.value=="object"?o.resolve(i.value)?.href??null:i.value||null,d=r.target||null,g=r.noRel?null:_m(r.rel,e.externalRelAttribute,f?vm:"")||null,m=()=>Zg(f,{replace:r.replace});return r.custom?s.default?s.default({href:f,navigate:m,get route(){if(!f)return;const v=lr(f);return{path:v.pathname,fullPath:v.pathname,get query(){return la(v.search)},hash:v.hash,params:{},name:void 0,matched:[],redirectedFrom:void 0,meta:{},href:f}},rel:g,target:d,isExternal:l.value,isActive:!1,isExactActive:!1}):null:Le("a",{ref:a,href:f,rel:g,target:d},s.default?.())}}})}const Fa=bm({componentName:"NuxtLink"});function wm(){const e=ye();if(e._observer)return e._observer;let t=null;const n=new Map,r=(o,i)=>(t||(t=new IntersectionObserver(l=>{for(const c of l){const a=n.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&a&&a()}})),n.set(o,i),t.observe(o),()=>{n.delete(o),t.unobserve(o),n.size===0&&(t.disconnect(),t=null)});return e._observer={observe:r}}function Em(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const xm={},Cm=Qg(xm);function Tm(){const e=ye();return e._appConfig||(e._appConfig=Ve(Cm)),e._appConfig}const km="__NUXT_COLOR_MODE__",Pm="ColorScheme",Sm="nuxt-color-mode",ct=window[km],Rm=mt(e=>{const t=ts("color-mode",()=>Ve({preference:ct.preference,value:ct.value,unknown:!1,forced:!1})).value;yt().afterEach(s=>{const o=s.meta.colorMode;o&&o!=="system"?(t.value=o,t.forced=!0):(o==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?ct.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=ct.getColorScheme())}))}Fe(()=>t.preference,s=>{t.forced||(s==="system"?(t.value=ct.getColorScheme(),r()):t.value=s,window.localStorage?.setItem(Sm,s))},{immediate:!0}),Fe(()=>t.value,(s,o)=>{ct.removeColorScheme(o),ct.addColorScheme(s)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=ct.preference,t.value=ct.value,t.unknown=!1)}),e.provide("colorMode",t)});const Om=mt(()=>{}),Im=mt(e=>{const t=yt(),n=Lo(),r=new Set;t.beforeEach(()=>{r.clear()}),e.hook("app:chunkError",({error:s})=>{r.add(s)}),t.onError((s,o)=>{if(r.has(s)){const l="href"in o&&o.href.startsWith("#")?n.app.baseURL+o.href:ir(n.app.baseURL,o.fullPath);ym({path:l,persistState:!0})}})}),Am=mt(e=>{mm()&&(e.hooks.hook("link:prefetch",async t=>{lr(t).protocol||await hl(t)}),yt().beforeResolve(async(t,n)=>{if(t.path===n.path)return;const r=await hl(t.path);r&&Object.assign(e.static.data,r.data)}))}),$m=[Gh,Up,Vp,cm,am,Rm,Om,Im,Am],Bo=$e({__name:"NIcon",props:{icon:null},setup(e){return(t,n)=>(he(),rt("div",{class:Ee(["n-icon",e.icon])},null,2))}}),Mm=()=>ts("color-mode").value;var pl;const Hm=typeof window<"u",Lm=e=>typeof e<"u",Nm=e=>typeof e=="function",gl=()=>{};Hm&&((pl=window?.navigator)!=null&&pl.userAgent)&&/iP(ad|hone|od)/.test(window.navigator.userAgent);function Br(e){return typeof e=="function"?e():V(e)}function jm(e,t){function n(...r){return new Promise((s,o)=>{Promise.resolve(e(()=>t.apply(this,r),{fn:t,thisArg:this,args:r})).then(s).catch(o)})}return n}function Fm(e,t={}){let n,r,s=gl;const o=l=>{clearTimeout(l),s(),s=gl};return l=>{const c=Br(e),a=Br(t.maxWait);return n&&o(n),c<=0||a!==void 0&&a<=0?(r&&(o(r),r=null),Promise.resolve(l())):new Promise((u,f)=>{s=t.rejectOnCancel?f:u,a&&!r&&(r=setTimeout(()=>{n&&o(n),r=null,u(l())},a)),n=setTimeout(()=>{r&&o(r),r=null,u(l())},c)})}}function Dm(e){return e}function Da(e,t=200,n={}){return jm(Fm(t,n),e)}function Bm(e=!1,t={}){const{truthyValue:n=!0,falsyValue:r=!1}=t,s=we(e),o=me(e);function i(l){if(arguments.length)return o.value=l,o.value;{const c=Br(n);return o.value=o.value===c?Br(r):c,o.value}}return s?i:[o,i]}function Um(e){return JSON.parse(JSON.stringify(e))}const ml=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},yl="__vueuse_ssr_handlers__";ml[yl]=ml[yl]||{};var _l;(function(e){e.UP="UP",e.RIGHT="RIGHT",e.DOWN="DOWN",e.LEFT="LEFT",e.NONE="NONE"})(_l||(_l={}));var Km=Object.defineProperty,vl=Object.getOwnPropertySymbols,Vm=Object.prototype.hasOwnProperty,qm=Object.prototype.propertyIsEnumerable,bl=(e,t,n)=>t in e?Km(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Wm=(e,t)=>{for(var n in t||(t={}))Vm.call(t,n)&&bl(e,n,t[n]);if(vl)for(var n of vl(t))qm.call(t,n)&&bl(e,n,t[n]);return e};const zm={easeInSine:[.12,0,.39,0],easeOutSine:[.61,1,.88,1],easeInOutSine:[.37,0,.63,1],easeInQuad:[.11,0,.5,0],easeOutQuad:[.5,1,.89,1],easeInOutQuad:[.45,0,.55,1],easeInCubic:[.32,0,.67,0],easeOutCubic:[.33,1,.68,1],easeInOutCubic:[.65,0,.35,1],easeInQuart:[.5,0,.75,0],easeOutQuart:[.25,1,.5,1],easeInOutQuart:[.76,0,.24,1],easeInQuint:[.64,0,.78,0],easeOutQuint:[.22,1,.36,1],easeInOutQuint:[.83,0,.17,1],easeInExpo:[.7,0,.84,0],easeOutExpo:[.16,1,.3,1],easeInOutExpo:[.87,0,.13,1],easeInCirc:[.55,0,1,.45],easeOutCirc:[0,.55,.45,1],easeInOutCirc:[.85,0,.15,1],easeInBack:[.36,0,.66,-.56],easeOutBack:[.34,1.56,.64,1],easeInOutBack:[.68,-.6,.32,1.6]};Wm({linear:Dm},zm);function Qm(e,t,n,r={}){var s,o,i;const{clone:l=!1,passive:c=!1,eventName:a,deep:u=!1,defaultValue:f}=r,d=it(),g=n||d?.emit||((s=d?.$emit)==null?void 0:s.bind(d))||((i=(o=d?.proxy)==null?void 0:o.$emit)==null?void 0:i.bind(d?.proxy));let m=a;t||(t="modelValue"),m=a||m||`update:${t.toString()}`;const v=_=>l?Nm(l)?l(_):Um(_):_,E=()=>Lm(e[t])?v(e[t]):f;if(c){const _=E(),p=me(_);return Fe(()=>e[t],b=>p.value=v(b)),Fe(p,b=>{(b!==e[t]||u)&&g(m,b)},{deep:u}),p}else return ce({get(){return E()},set(_){g(m,_)}})}const Jm=6e4,Ba=e=>e,Xm=Ba;function Ym(e,t){const{post:n,on:r,eventNames:s=[],serialize:o=Ba,deserialize:i=Xm,resolver:l,timeout:c=Jm}=t,a=new Map;let u;const f=new Proxy({},{get(d,g){if(g==="$functions")return e;const m=(...E)=>{n(o({m:g,a:E,t:"q"}))};if(s.includes(g))return m.asEvent=m,m;const v=async(...E)=>(await u,new Promise((_,p)=>{const b=Zm();a.set(b,{resolve:_,reject:p}),n(o({m:g,a:E,i:b,t:"q"})),c>=0&&setTimeout(()=>{p(new Error(`[birpc] timeout on calling "${g}"`)),a.delete(b)},c)}));return v.asEvent=m,v}});return u=r(async(d,...g)=>{const m=i(d);if(m.t==="q"){const{m:v,a:E}=m;let _,p;const b=l?l(v,e[v]):e[v];if(!b)p=new Error(`[birpc] function "${v}" not found`);else try{_=await b.apply(f,E)}catch(x){p=x}m.i&&(p&&t.onError&&t.onError(p,v,E),n(o({t:"s",i:m.i,r:_,e:p}),...g))}else{const{i:v,r:E,e:_}=m,p=a.get(v);p&&(_?p.reject(_):p.resolve(E)),a.delete(v)}}),f}const Gm="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";function Zm(e=21){let t="",n=e;for(;n--;)t+=Gm[Math.random()*64|0];return t}/*! (c) 2020 Andrea Giammarchi */const{parse:ey,stringify:ty}=JSON,{keys:ny}=Object,er=String,Ua="string",wl={},Ur="object",Ka=(e,t)=>t,ry=e=>e instanceof er?er(e):e,sy=(e,t)=>typeof t===Ua?new er(t):t,Va=(e,t,n,r)=>{const s=[];for(let o=ny(n),{length:i}=o,l=0;l<i;l++){const c=o[l],a=n[c];if(a instanceof er){const u=e[a];typeof u===Ur&&!t.has(u)?(t.add(u),n[c]=wl,s.push({k:c,a:[e,t,u,r]})):n[c]=r.call(n,c,u)}else n[c]!==wl&&(n[c]=r.call(n,c,a))}for(let{length:o}=s,i=0;i<o;i++){const{k:l,a:c}=s[i];n[l]=r.call(n,l,Va.apply(null,c))}return n},El=(e,t,n)=>{const r=er(t.push(n)-1);return e.set(n,r),r},oy=(e,t)=>{const n=ey(e,sy).map(ry),r=n[0],s=t||Ka,o=typeof r===Ur&&r?Va(n,new Set,r,s):r;return s.call({"":o},"",o)},iy=(e,t,n)=>{const r=t&&typeof t===Ur?(u,f)=>u===""||-1<t.indexOf(u)?f:void 0:t||Ka,s=new Map,o=[],i=[];let l=+El(s,o,r.call({"":e},"",e)),c=!l;for(;l<o.length;)c=!0,i[l]=ty(o[l++],a,n);return"["+i.join(",")+"]";function a(u,f){if(c)return c=!c,f;const d=r.call(this,u,f);switch(typeof d){case Ur:if(d===null)return d;case Ua:return s.get(d)||El(s,o,d)}return d}},ly=2e3;let qa=()=>{};const xl=me(!0),Cl=me(),Wa=me(null);function cy(e){const t=Ym(e,{post:n=>Wa.value.send(n),on:n=>{qa=n},serialize:iy,deserialize:oy});return{useServerConfig:async function(){return(await Do("server-config",()=>t.getConfig())).data}}}async function za(e){const t=new WebSocket(`ws://${e}/__nuxt_og_image__/entry`);return t.addEventListener("message",n=>qa(String(n.data))),t.addEventListener("error",n=>{Cl.value=n}),t.addEventListener("close",()=>{console.log("[nuxt-og-image] WebSocket closed, reconnecting..."),setTimeout(async()=>{Wa.value=await za(e)},ly)}),xl.value=!0,t.readyState!==WebSocket.OPEN&&await new Promise(n=>t.addEventListener("open",n)),console.log("[nuxt-og-image] WebSocket connected."),xl.value=!1,Cl.value=null,t}const Uo=me(Date.now()),Tl=me(null),Qa=window.location.host,st=me("/"),Ja=me("/"),so=Da(()=>{Uo.value=Date.now()},200),ay={refresh(){so()}};await za(Qa);const lv=cy(ay),Qt=me(null),Ko=ce(()=>aa(Ja.value,`${window.location.protocol}//${Qa}`)),cv=ce(()=>`${Ko.value}${st.value==="/"?"":st.value}`);const Xa=(e,t)=>{const n=e.__vccOpts||e;for(const[r,s]of t)n[r]=s;return n};let Xt;const Rn=[];function uy(e){return Rn.push(e),window.__NUXT_DEVTOOLS__&&Rn.forEach(t=>t(window.__NUXT_DEVTOOLS__)),Object.defineProperty(window,"__NUXT_DEVTOOLS__",{set(t){t&&Rn.forEach(n=>n(t))},get(){return Xt.value},configurable:!0}),()=>{Rn.splice(Rn.indexOf(e),1)}}function fy(){Xt||(Xt=zn(),uy(e));function e(t){Xt.value=t,t.host&&t.host.hooks.hook("host:update:reactivity",()=>{fc(Xt)})}return Xt}fy();const dy=$e({name:"ClientOnly",inheritAttrs:!1,props:["fallback","placeholder","placeholderTag","fallbackTag"],setup(e,{slots:t,attrs:n}){const r=me(!1);return En(()=>{r.value=!0}),s=>{if(r.value)return t.default?.();const o=t.fallback||t.placeholder;if(o)return o();const i=s.fallback||s.placeholder||"",l=s.fallbackTag||s.placeholderTag||"span";return rt(l,n,i)}}}),hy={name:Pm,props:{placeholder:String,tag:{type:String,default:"span"}}};function py(e,t,n,r,s,o){const i=dy;return he(),Ie(i,{placeholder:n.placeholder,"placeholder-tag":n.tag},{default:Re(()=>[Gn(e.$slots,"default")]),_:3},8,["placeholder","placeholder-tag"])}const gy=Xa(hy,[["render",py]]),my=$e({__name:"NDarkToggle",setup(e){const t=Mm(),n=ce({get(){return t.value==="dark"},set(){t.preference=n.value?"light":"dark"}}),r=Bm(n),s={mode:t,isDark:n,toggle:r};return(o,i)=>{const l=gy;return he(),Ie(l,{tag:"span"},{default:Re(()=>[Gn(o.$slots,"default",vu(Jc(s)))]),_:3})}}});const yy={class:"n-bg-base rounded py-1 border n-border-base flex items-center flex n-text-input focus-within:n-focus-base focus-within:border-context px-2"},_y=["type","disabled","placeholder"],vy=$e({__name:"NTextInput",props:{modelValue:{default:""},placeholder:null,icon:null,disabled:{type:Boolean,default:!1},type:{default:"text"}},setup(e,{emit:t}){const r=Qm(e,"modelValue",t,{passive:!0});return(s,o)=>{const i=Bo;return he(),rt("div",yy,[Gn(s.$slots,"icon",{},()=>[e.icon?(he(),Ie(i,{key:0,icon:e.icon,class:"op50 mr-0.4em text-1.1em"},null,8,["icon"])):xt("",!0)]),Df(ge("input",{"onUpdate:modelValue":o[0]||(o[0]=l=>we(r)?r.value=l:null),class:"flex-auto n-bg-base w-full !outline-none",type:e.type,disabled:e.disabled,placeholder:e.placeholder},null,8,_y),[[Ud,V(r)]])])}}});const by=$e({name:"FragmentWrapper",setup(e,{slots:t}){return()=>t.default?.()}}),wy=(e,t,n)=>({default:()=>t?Le(e,t===!0?{}:t,n):Le(by,{},n)}),Ya=Object.freeze({left:0,top:0,width:16,height:16}),Ga=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Vo=Object.freeze({...Ya,...Ga});Object.freeze({...Vo,body:"",hidden:!1});({...Ya});const Za=Object.freeze({width:null,height:null}),eu=Object.freeze({...Za,...Ga});function Ey(e,t){const n={...e};for(const r in t){const s=t[r],o=typeof s;r in Za?(s===null||s&&(o==="string"||o==="number"))&&(n[r]=s):o===typeof n[r]&&(n[r]=r==="rotate"?s%4:s)}return n}const xy=/[\s,]+/;function Cy(e,t){t.split(xy).forEach(n=>{switch(n.trim()){case"horizontal":e.hFlip=!0;break;case"vertical":e.vFlip=!0;break}})}function Ty(e,t=0){const n=e.replace(/^-?[0-9.]*/,"");function r(s){for(;s<0;)s+=4;return s%4}if(n===""){const s=parseInt(e);return isNaN(s)?0:r(s)}else if(n!==e){let s=0;switch(n){case"%":s=25;break;case"deg":s=90}if(s){let o=parseFloat(e.slice(0,e.length-n.length));return isNaN(o)?0:(o=o/s,o%1===0?r(o):0)}}return t}const ky=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Py=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function kl(e,t,n){if(t===1)return e;if(n=n||100,typeof e=="number")return Math.ceil(e*t*n)/n;if(typeof e!="string")return e;const r=e.split(ky);if(r===null||!r.length)return e;const s=[];let o=r.shift(),i=Py.test(o);for(;;){if(i){const l=parseFloat(o);isNaN(l)?s.push(o):s.push(Math.ceil(l*t*n)/n)}else s.push(o);if(o=r.shift(),o===void 0)return s.join("");i=!i}}const Sy=e=>e==="unset"||e==="undefined"||e==="none";function Ry(e,t){const n={...Vo,...e},r={...eu,...t},s={left:n.left,top:n.top,width:n.width,height:n.height};let o=n.body;[n,r].forEach(m=>{const v=[],E=m.hFlip,_=m.vFlip;let p=m.rotate;E?_?p+=2:(v.push("translate("+(s.width+s.left).toString()+" "+(0-s.top).toString()+")"),v.push("scale(-1 1)"),s.top=s.left=0):_&&(v.push("translate("+(0-s.left).toString()+" "+(s.height+s.top).toString()+")"),v.push("scale(1 -1)"),s.top=s.left=0);let b;switch(p<0&&(p-=Math.floor(p/4)*4),p=p%4,p){case 1:b=s.height/2+s.top,v.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:v.unshift("rotate(180 "+(s.width/2+s.left).toString()+" "+(s.height/2+s.top).toString()+")");break;case 3:b=s.width/2+s.left,v.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}p%2===1&&(s.left!==s.top&&(b=s.left,s.left=s.top,s.top=b),s.width!==s.height&&(b=s.width,s.width=s.height,s.height=b)),v.length&&(o='<g transform="'+v.join(" ")+'">'+o+"</g>")});const i=r.width,l=r.height,c=s.width,a=s.height;let u,f;i===null?(f=l===null?"1em":l==="auto"?a:l,u=kl(f,c/a)):(u=i==="auto"?c:i,f=l===null?kl(u,a/c):l==="auto"?a:l);const d={},g=(m,v)=>{Sy(v)||(d[m]=v.toString())};return g("width",u),g("height",f),d.viewBox=s.left.toString()+" "+s.top.toString()+" "+c.toString()+" "+a.toString(),{attributes:d,body:o}}const Oy=/\sid="(\S+)"/g,Iy="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Ay=0;function $y(e,t=Iy){const n=[];let r;for(;r=Oy.exec(e);)n.push(r[1]);if(!n.length)return e;const s="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(o=>{const i=typeof t=="function"?t(o):t+(Ay++).toString(),l=o.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");e=e.replace(new RegExp('([#;"])('+l+')([")]|\\.[a-z])',"g"),"$1"+i+s+"$3")}),e=e.replace(new RegExp(s,"g"),""),e}function My(e,t){let n=e.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in t)n+=" "+r+'="'+t[r]+'"';return'<svg xmlns="http://www.w3.org/2000/svg"'+n+">"+e+"</svg>"}function Hy(e){return e.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(/</g,"%3C").replace(/>/g,"%3E").replace(/\s+/g," ")}function Ly(e){return'url("data:image/svg+xml,'+Hy(e)+'")'}const Pl={...eu,inline:!1},Ny={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},jy={display:"inline-block"},oo={backgroundColor:"currentColor"},tu={backgroundColor:"transparent"},Sl={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},Rl={webkitMask:oo,mask:oo,background:tu};for(const e in Rl){const t=Rl[e];for(const n in Sl)t[e+n]=Sl[n]}const Cr={};["horizontal","vertical"].forEach(e=>{const t=e.slice(0,1)+"Flip";Cr[e+"-flip"]=t,Cr[e.slice(0,1)+"-flip"]=t,Cr[e+"Flip"]=t});function Ol(e){return e+(e.match(/^[-0-9.]+$/)?"px":"")}const Fy=(e,t)=>{const n=Ey(Pl,t),r={...Ny},s=t.mode||"svg",o={},i=t.style,l=typeof i=="object"&&!(i instanceof Array)?i:{};for(let v in t){const E=t[v];if(E!==void 0)switch(v){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[v]=E===!0||E==="true"||E===1;break;case"flip":typeof E=="string"&&Cy(n,E);break;case"color":o.color=E;break;case"rotate":typeof E=="string"?n[v]=Ty(E):typeof E=="number"&&(n[v]=E);break;case"ariaHidden":case"aria-hidden":E!==!0&&E!=="true"&&delete r["aria-hidden"];break;default:{const _=Cr[v];_?(E===!0||E==="true"||E===1)&&(n[_]=!0):Pl[v]===void 0&&(r[v]=E)}}}const c=Ry(e,n),a=c.attributes;if(n.inline&&(o.verticalAlign="-0.125em"),s==="svg"){r.style={...o,...l},Object.assign(r,a);let v=0,E=t.id;return typeof E=="string"&&(E=E.replace(/-/g,"_")),r.innerHTML=$y(c.body,E?()=>E+"ID"+v++:"iconifyVue"),Le("svg",r)}const{body:u,width:f,height:d}=e,g=s==="mask"||(s==="bg"?!1:u.indexOf("currentColor")!==-1),m=My(u,{...a,width:f+"",height:d+""});return r.style={...o,"--svg":Ly(m),width:Ol(a.width),height:Ol(a.height),...jy,...g?oo:tu,...l},Le("span",r)},Dy=Object.create(null),By=$e({inheritAttrs:!1,render(){const e=this.$attrs,t=e.icon,n=typeof t=="string"?Dy[t]:typeof t=="object"?t:null;return n===null||typeof n!="object"||typeof n.body!="string"?this.$slots.default?this.$slots.default():null:Fy({...Vo,...n},e)}}),Kn=/^[a-z0-9]+(-[a-z0-9]+)*$/,rs=(e,t,n,r="")=>{const s=e.split(":");if(e.slice(0,1)==="@"){if(s.length<2||s.length>3)return null;r=s.shift().slice(1)}if(s.length>3||!s.length)return null;if(s.length>1){const l=s.pop(),c=s.pop(),a={provider:s.length>0?s[0]:r,prefix:c,name:l};return t&&!Tr(a)?null:a}const o=s[0],i=o.split("-");if(i.length>1){const l={provider:r,prefix:i.shift(),name:i.join("-")};return t&&!Tr(l)?null:l}if(n&&r===""){const l={provider:r,prefix:"",name:o};return t&&!Tr(l,n)?null:l}return null},Tr=(e,t)=>e?!!((e.provider===""||e.provider.match(Kn))&&(t&&e.prefix===""||e.prefix.match(Kn))&&e.name.match(Kn)):!1,nu=Object.freeze({left:0,top:0,width:16,height:16}),Kr=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),qo=Object.freeze({...nu,...Kr}),io=Object.freeze({...qo,body:"",hidden:!1});function Uy(e,t){const n={};!e.hFlip!=!t.hFlip&&(n.hFlip=!0),!e.vFlip!=!t.vFlip&&(n.vFlip=!0);const r=((e.rotate||0)+(t.rotate||0))%4;return r&&(n.rotate=r),n}function Il(e,t){const n=Uy(e,t);for(const r in io)r in Kr?r in e&&!(r in n)&&(n[r]=Kr[r]):r in t?n[r]=t[r]:r in e&&(n[r]=e[r]);return n}function Ky(e,t){const n=e.icons,r=e.aliases||Object.create(null),s=Object.create(null);function o(i){if(n[i])return s[i]=[];if(!(i in s)){s[i]=null;const l=r[i]&&r[i].parent,c=l&&o(l);c&&(s[i]=[l].concat(c))}return s[i]}return(t||Object.keys(n).concat(Object.keys(r))).forEach(o),s}function Vy(e,t,n){const r=e.icons,s=e.aliases||Object.create(null);let o={};function i(l){o=Il(r[l]||s[l],o)}return i(t),n.forEach(i),Il(e,o)}function ru(e,t){const n=[];if(typeof e!="object"||typeof e.icons!="object")return n;e.not_found instanceof Array&&e.not_found.forEach(s=>{t(s,null),n.push(s)});const r=Ky(e);for(const s in r){const o=r[s];o&&(t(s,Vy(e,s,o)),n.push(s))}return n}const qy={provider:"",aliases:{},not_found:{},...nu};function xs(e,t){for(const n in t)if(n in e&&typeof e[n]!=typeof t[n])return!1;return!0}function su(e){if(typeof e!="object"||e===null)return null;const t=e;if(typeof t.prefix!="string"||!e.icons||typeof e.icons!="object"||!xs(e,qy))return null;const n=t.icons;for(const s in n){const o=n[s];if(!s.match(Kn)||typeof o.body!="string"||!xs(o,io))return null}const r=t.aliases||Object.create(null);for(const s in r){const o=r[s],i=o.parent;if(!s.match(Kn)||typeof i!="string"||!n[i]&&!r[i]||!xs(o,io))return null}return t}const Al=Object.create(null);function Wy(e,t){return{provider:e,prefix:t,icons:Object.create(null),missing:new Set}}function Vt(e,t){const n=Al[e]||(Al[e]=Object.create(null));return n[t]||(n[t]=Wy(e,t))}function Wo(e,t){return su(t)?ru(t,(n,r)=>{r?e.icons[n]=r:e.missing.add(n)}):[]}function zy(e,t,n){try{if(typeof n.body=="string")return e.icons[t]={...n},!0}catch{}return!1}let tr=!1;function ou(e){return typeof e=="boolean"&&(tr=e),tr}function Qy(e){const t=typeof e=="string"?rs(e,!0,tr):e;if(t){const n=Vt(t.provider,t.prefix),r=t.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function Jy(e,t){const n=rs(e,!0,tr);if(!n)return!1;const r=Vt(n.provider,n.prefix);return zy(r,n.name,t)}function Xy(e,t){if(typeof e!="object")return!1;if(typeof t!="string"&&(t=e.provider||""),tr&&!t&&!e.prefix){let s=!1;return su(e)&&(e.prefix="",ru(e,(o,i)=>{i&&Jy(o,i)&&(s=!0)})),s}const n=e.prefix;if(!Tr({provider:t,prefix:n,name:"a"}))return!1;const r=Vt(t,n);return!!Wo(r,e)}const Yy=Object.freeze({width:null,height:null}),Gy=Object.freeze({...Yy,...Kr});""+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);const lo=Object.create(null);function Zy(e,t){lo[e]=t}function co(e){return lo[e]||lo[""]}function zo(e){let t;if(typeof e.resources=="string")t=[e.resources];else if(t=e.resources,!(t instanceof Array)||!t.length)return null;return{resources:t,path:e.path||"/",maxURL:e.maxURL||500,rotate:e.rotate||750,timeout:e.timeout||5e3,random:e.random===!0,index:e.index||0,dataAfterTimeout:e.dataAfterTimeout!==!1}}const Qo=Object.create(null),On=["https://api.simplesvg.com","https://api.unisvg.com"],kr=[];for(;On.length>0;)On.length===1||Math.random()>.5?kr.push(On.shift()):kr.push(On.pop());Qo[""]=zo({resources:["https://api.iconify.design"].concat(kr)});function e_(e,t){const n=zo(t);return n===null?!1:(Qo[e]=n,!0)}function Jo(e){return Qo[e]}const t_=()=>{let e;try{if(e=fetch,typeof e=="function")return e}catch{}};let $l=t_();function n_(e,t){const n=Jo(e);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let s=0;n.resources.forEach(i=>{s=Math.max(s,i.length)});const o=t+".json?icons=";r=n.maxURL-s-n.path.length-o.length}return r}function r_(e){return e===404}const s_=(e,t,n)=>{const r=[],s=n_(e,t),o="icons";let i={type:o,provider:e,prefix:t,icons:[]},l=0;return n.forEach((c,a)=>{l+=c.length+1,l>=s&&a>0&&(r.push(i),i={type:o,provider:e,prefix:t,icons:[]},l=c.length),i.icons.push(c)}),r.push(i),r};function o_(e){if(typeof e=="string"){const t=Jo(e);if(t)return t.path}return"/"}const i_=(e,t,n)=>{if(!$l){n("abort",424);return}let r=o_(t.provider);switch(t.type){case"icons":{const o=t.prefix,l=t.icons.join(","),c=new URLSearchParams({icons:l});r+=o+".json?"+c.toString();break}case"custom":{const o=t.uri;r+=o.slice(0,1)==="/"?o.slice(1):o;break}default:n("abort",400);return}let s=503;$l(e+r).then(o=>{const i=o.status;if(i!==200){setTimeout(()=>{n(r_(i)?"abort":"next",i)});return}return s=501,o.json()}).then(o=>{if(typeof o!="object"||o===null){setTimeout(()=>{o===404?n("abort",o):n("next",s)});return}setTimeout(()=>{n("success",o)})}).catch(()=>{n("next",s)})},l_={prepare:s_,send:i_};function c_(e){const t={loaded:[],missing:[],pending:[]},n=Object.create(null);e.sort((s,o)=>s.provider!==o.provider?s.provider.localeCompare(o.provider):s.prefix!==o.prefix?s.prefix.localeCompare(o.prefix):s.name.localeCompare(o.name));let r={provider:"",prefix:"",name:""};return e.forEach(s=>{if(r.name===s.name&&r.prefix===s.prefix&&r.provider===s.provider)return;r=s;const o=s.provider,i=s.prefix,l=s.name,c=n[o]||(n[o]=Object.create(null)),a=c[i]||(c[i]=Vt(o,i));let u;l in a.icons?u=t.loaded:i===""||a.missing.has(l)?u=t.missing:u=t.pending;const f={provider:o,prefix:i,name:l};u.push(f)}),t}function iu(e,t){e.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(s=>s.id!==t))})}function a_(e){e.pendingCallbacksFlag||(e.pendingCallbacksFlag=!0,setTimeout(()=>{e.pendingCallbacksFlag=!1;const t=e.loaderCallbacks?e.loaderCallbacks.slice(0):[];if(!t.length)return;let n=!1;const r=e.provider,s=e.prefix;t.forEach(o=>{const i=o.icons,l=i.pending.length;i.pending=i.pending.filter(c=>{if(c.prefix!==s)return!0;const a=c.name;if(e.icons[a])i.loaded.push({provider:r,prefix:s,name:a});else if(e.missing.has(a))i.missing.push({provider:r,prefix:s,name:a});else return n=!0,!0;return!1}),i.pending.length!==l&&(n||iu([e],o.id),o.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),o.abort))})}))}let u_=0;function f_(e,t,n){const r=u_++,s=iu.bind(null,n,r);if(!t.pending.length)return s;const o={id:r,icons:t,callback:e,abort:s};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(o)}),s}function d_(e,t=!0,n=!1){const r=[];return e.forEach(s=>{const o=typeof s=="string"?rs(s,t,n):s;o&&r.push(o)}),r}var h_={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function p_(e,t,n,r){const s=e.resources.length,o=e.random?Math.floor(Math.random()*s):e.index;let i;if(e.random){let P=e.resources.slice(0);for(i=[];P.length>1;){const H=Math.floor(Math.random()*P.length);i.push(P[H]),P=P.slice(0,H).concat(P.slice(H+1))}i=i.concat(P)}else i=e.resources.slice(o).concat(e.resources.slice(0,o));const l=Date.now();let c="pending",a=0,u,f=null,d=[],g=[];typeof r=="function"&&g.push(r);function m(){f&&(clearTimeout(f),f=null)}function v(){c==="pending"&&(c="aborted"),m(),d.forEach(P=>{P.status==="pending"&&(P.status="aborted")}),d=[]}function E(P,H){H&&(g=[]),typeof P=="function"&&g.push(P)}function _(){return{startTime:l,payload:t,status:c,queriesSent:a,queriesPending:d.length,subscribe:E,abort:v}}function p(){c="failed",g.forEach(P=>{P(void 0,u)})}function b(){d.forEach(P=>{P.status==="pending"&&(P.status="aborted")}),d=[]}function x(P,H,R){const U=H!=="success";switch(d=d.filter(F=>F!==P),c){case"pending":break;case"failed":if(U||!e.dataAfterTimeout)return;break;default:return}if(H==="abort"){u=R,p();return}if(U){u=R,d.length||(i.length?O():p());return}if(m(),b(),!e.random){const F=e.resources.indexOf(P.resource);F!==-1&&F!==e.index&&(e.index=F)}c="completed",g.forEach(F=>{F(R)})}function O(){if(c!=="pending")return;m();const P=i.shift();if(P===void 0){if(d.length){f=setTimeout(()=>{m(),c==="pending"&&(b(),p())},e.timeout);return}p();return}const H={status:"pending",resource:P,callback:(R,U)=>{x(H,R,U)}};d.push(H),a++,f=setTimeout(O,e.rotate),n(P,t,H.callback)}return setTimeout(O),_}function lu(e){const t={...h_,...e};let n=[];function r(){n=n.filter(l=>l().status==="pending")}function s(l,c,a){const u=p_(t,l,c,(f,d)=>{r(),a&&a(f,d)});return n.push(u),u}function o(l){return n.find(c=>l(c))||null}return{query:s,find:o,setIndex:l=>{t.index=l},getIndex:()=>t.index,cleanup:r}}function Ml(){}const Cs=Object.create(null);function g_(e){if(!Cs[e]){const t=Jo(e);if(!t)return;const n=lu(t),r={config:t,redundancy:n};Cs[e]=r}return Cs[e]}function m_(e,t,n){let r,s;if(typeof e=="string"){const o=co(e);if(!o)return n(void 0,424),Ml;s=o.send;const i=g_(e);i&&(r=i.redundancy)}else{const o=zo(e);if(o){r=lu(o);const i=e.resources?e.resources[0]:"",l=co(i);l&&(s=l.send)}}return!r||!s?(n(void 0,424),Ml):r.query(t,s,n)().abort}const Hl="iconify2",nr="iconify",cu=nr+"-count",Ll=nr+"-version",au=36e5,y_=168;function ao(e,t){try{return e.getItem(t)}catch{}}function Xo(e,t,n){try{return e.setItem(t,n),!0}catch{}}function Nl(e,t){try{e.removeItem(t)}catch{}}function uo(e,t){return Xo(e,cu,t.toString())}function fo(e){return parseInt(ao(e,cu))||0}const ss={local:!0,session:!0},uu={local:new Set,session:new Set};let Yo=!1;function __(e){Yo=e}let Er=typeof window>"u"?{}:window;function fu(e){const t=e+"Storage";try{if(Er&&Er[t]&&typeof Er[t].length=="number")return Er[t]}catch{}ss[e]=!1}function du(e,t){const n=fu(e);if(!n)return;const r=ao(n,Ll);if(r!==Hl){if(r){const l=fo(n);for(let c=0;c<l;c++)Nl(n,nr+c.toString())}Xo(n,Ll,Hl),uo(n,0);return}const s=Math.floor(Date.now()/au)-y_,o=l=>{const c=nr+l.toString(),a=ao(n,c);if(typeof a=="string"){try{const u=JSON.parse(a);if(typeof u=="object"&&typeof u.cached=="number"&&u.cached>s&&typeof u.provider=="string"&&typeof u.data=="object"&&typeof u.data.prefix=="string"&&t(u,l))return!0}catch{}Nl(n,c)}};let i=fo(n);for(let l=i-1;l>=0;l--)o(l)||(l===i-1?(i--,uo(n,i)):uu[e].add(l))}function hu(){if(!Yo){__(!0);for(const e in ss)du(e,t=>{const n=t.data,r=t.provider,s=n.prefix,o=Vt(r,s);if(!Wo(o,n).length)return!1;const i=n.lastModified||-1;return o.lastModifiedCached=o.lastModifiedCached?Math.min(o.lastModifiedCached,i):i,!0})}}function v_(e,t){const n=e.lastModifiedCached;if(n&&n>=t)return n===t;if(e.lastModifiedCached=t,n)for(const r in ss)du(r,s=>{const o=s.data;return s.provider!==e.provider||o.prefix!==e.prefix||o.lastModified===t});return!0}function b_(e,t){Yo||hu();function n(r){let s;if(!ss[r]||!(s=fu(r)))return;const o=uu[r];let i;if(o.size)o.delete(i=Array.from(o).shift());else if(i=fo(s),!uo(s,i+1))return;const l={cached:Math.floor(Date.now()/au),provider:e.provider,data:t};return Xo(s,nr+i.toString(),JSON.stringify(l))}t.lastModified&&!v_(e,t.lastModified)||Object.keys(t.icons).length&&(t.not_found&&(t=Object.assign({},t),delete t.not_found),n("local")||n("session"))}function jl(){}function w_(e){e.iconsLoaderFlag||(e.iconsLoaderFlag=!0,setTimeout(()=>{e.iconsLoaderFlag=!1,a_(e)}))}function E_(e,t){e.iconsToLoad?e.iconsToLoad=e.iconsToLoad.concat(t).sort():e.iconsToLoad=t,e.iconsQueueFlag||(e.iconsQueueFlag=!0,setTimeout(()=>{e.iconsQueueFlag=!1;const{provider:n,prefix:r}=e,s=e.iconsToLoad;delete e.iconsToLoad;let o;if(!s||!(o=co(n)))return;o.prepare(n,r,s).forEach(l=>{m_(n,l,c=>{if(typeof c!="object")l.icons.forEach(a=>{e.missing.add(a)});else try{const a=Wo(e,c);if(!a.length)return;const u=e.pendingIcons;u&&a.forEach(f=>{u.delete(f)}),b_(e,c)}catch(a){console.error(a)}w_(e)})})}))}const x_=(e,t)=>{const n=d_(e,!0,ou()),r=c_(n);if(!r.pending.length){let c=!0;return t&&setTimeout(()=>{c&&t(r.loaded,r.missing,r.pending,jl)}),()=>{c=!1}}const s=Object.create(null),o=[];let i,l;return r.pending.forEach(c=>{const{provider:a,prefix:u}=c;if(u===l&&a===i)return;i=a,l=u,o.push(Vt(a,u));const f=s[a]||(s[a]=Object.create(null));f[u]||(f[u]=[])}),r.pending.forEach(c=>{const{provider:a,prefix:u,name:f}=c,d=Vt(a,u),g=d.pendingIcons||(d.pendingIcons=new Set);g.has(f)||(g.add(f),s[a][u].push(f))}),o.forEach(c=>{const{provider:a,prefix:u}=c;s[a][u].length&&E_(c,s[a][u])}),t?f_(t,r,o):jl},C_=e=>new Promise((t,n)=>{const r=typeof e=="string"?rs(e,!0):e;if(!r){n(e);return}x_([r||e],s=>{if(s.length&&r){const o=Qy(r);if(o){t({...qo,...o});return}}n(e)})});({...Gy});const Fl={backgroundColor:"currentColor"},T_={backgroundColor:"transparent"},Dl={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},Bl={webkitMask:Fl,mask:Fl,background:T_};for(const e in Bl){const t=Bl[e];for(const n in Dl)t[e+n]=Dl[n]}const Ts={};["horizontal","vertical"].forEach(e=>{const t=e.slice(0,1)+"Flip";Ts[e+"-flip"]=t,Ts[e.slice(0,1)+"-flip"]=t,Ts[e+"Flip"]=t});ou(!0);Zy("",l_);if(typeof document<"u"&&typeof window<"u"){hu();const e=window;if(e.IconifyPreload!==void 0){const t=e.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof t=="object"&&t!==null&&(t instanceof Array?t:[t]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!Xy(r))&&console.error(n)}catch{console.error(n)}})}if(e.IconifyProviders!==void 0){const t=e.IconifyProviders;if(typeof t=="object"&&t!==null)for(let n in t){const r="IconifyProviders["+n+"] is invalid.";try{const s=t[n];if(typeof s!="object"||!s||s.resources===void 0)continue;e_(n,s)||console.error(r)}catch{console.error(r)}}}}({...qo});const k_=["width","height"],P_=$e({__name:"Icon",props:{name:{type:String,required:!0},size:{type:String,default:""}},async setup(e){let t,n;const r=e,s=ye(),o=Tm();o?.nuxtIcon?.aliases;const i=ts("icons",()=>({})),l=me(!1),c=ce(()=>(o.nuxtIcon?.aliases||{})[r.name]||r.name),a=ce(()=>i.value?.[c.value]),u=ce(()=>s.vueApp.component(c.value)),f=ce(()=>{if(!r.size&&typeof o.nuxtIcon?.size=="boolean"&&!o.nuxtIcon?.size)return;const m=r.size||o.nuxtIcon?.size||"1em";return String(Number(m))===m?`${m}px`:m}),d=ce(()=>o?.nuxtIcon?.class??"icon");async function g(){u.value||i.value?.[c.value]||(l.value=!0,i.value[c.value]=await C_(c.value).catch(()=>{}),l.value=!1)}return Fe(()=>c.value,g),!u.value&&([t,n]=Zc(()=>g()),t=await t,n()),(m,v)=>V(l)?(he(),rt("span",{key:0,class:Ee(V(d)),width:V(f),height:V(f)},null,10,k_)):V(a)?(he(),Ie(V(By),{key:1,icon:V(a),class:Ee(V(d)),width:V(f),height:V(f)},null,8,["icon","class","width","height"])):V(u)?(he(),Ie(Mc(V(u)),{key:2,class:Ee(V(d)),width:V(f),height:V(f)},null,8,["class","width","height"])):(he(),rt("span",{key:3,class:Ee(V(d)),style:pn({fontSize:V(f),lineHeight:V(f),width:V(f),height:V(f)})},ks(e.name),7))}});const pu=Xa(P_,[["__scopeId","data-v-b1c94bce"]]),S_=Object.freeze(Object.defineProperty({__proto__:null,default:pu},Symbol.toStringTag,{value:"Module"}));const R_=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>e.params[n.slice(1)]?.toString()||""),O_=(e,t)=>{const n=e.route.matched.find(s=>s.components?.default===e.Component.type),r=t??n?.meta.key??(n&&R_(e.route,n));return typeof r=="function"?r(e.route):r},I_=(e,t)=>({default:()=>e?Le(Mf,e===!0?{}:e,t):t}),A_=$e({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}){const n=ye();return()=>Le(Ha,{name:e.name,route:e.route,...t},{default:r=>{if(!r.Component)return;const s=O_(r,e.pageKey),o=n.deferHydration(),i=!!(e.transition??r.route.meta.pageTransition??Qs),l=i&&M_([e.transition,r.route.meta.pageTransition,Qs,{onAfterLeave:()=>{n.callHook("page:transition:finish",r.Component)}}].filter(Boolean));return wy(Mo,i&&l,I_(e.keepalive??r.route.meta.keepalive??Dp,Le(wc,{onPending:()=>n.callHook("page:start",r.Component),onResolve:()=>{wn(()=>n.callHook("page:finish",r.Component).finally(o))}},{default:()=>Le(H_,{key:s,routeProps:r,pageKey:s,hasTransition:i})}))).default()}})}});function $_(e){return Array.isArray(e)?e:e?[e]:[]}function M_(e){const t=e.map(n=>({...n,onAfterLeave:$_(n.onAfterLeave)}));return zg(...t)}const H_=$e({name:"RouteProvider",props:["routeProps","pageKey","hasTransition"],setup(e){const t=e.pageKey,n=e.routeProps.route,r={};for(const s in e.routeProps.route)r[s]=ce(()=>t===e.pageKey?e.routeProps.route[s]:n[s]);return on("_route",Ve(r)),()=>Le(e.routeProps.Component)}}),L_=$e({__name:"NButton",props:{to:null,icon:null},setup(e){return(t,n)=>{const r=Bo;return he(),Ie(Mc(e.to?V(Fa):"button"),Xc({to:e.to},t.$attrs,{class:"n-transition n-button n-button-base hover:n-button-hover active:n-button-active focus-visible:n-focus-base n-disabled:n-disabled"}),{default:Re(()=>[Gn(t.$slots,"icon",{},()=>[e.icon?(he(),Ie(r,{key:0,icon:e.icon,class:"n-button-icon"},null,8,["icon"])):xt("",!0)]),Gn(t.$slots,"default")]),_:3},16,["to"])}}});async function N_(){const{data:e}=await Do(()=>$fetch("/api/og-image-options",{baseURL:Ko.value,query:{path:st.value}}),{watch:[st,Uo]},"$XVR8o8RMBy");return e}async function av(){const{data:e}=await Do(()=>$fetch("/api/og-image-vnode",{query:{path:st.value},baseURL:Ko.value}),{watch:[st,Uo]},"$cHgKigQ0kS");return e}let Yt;const In=[];function j_(e){return In.push(e),window.__NUXT_DEVTOOLS__&&In.forEach(t=>t(window.__NUXT_DEVTOOLS__)),Object.defineProperty(window,"__NUXT_DEVTOOLS__",{set(t){t&&In.forEach(n=>n(t))},get(){return Yt.value},configurable:!0}),()=>{In.splice(In.indexOf(e),1)}}function F_(){Yt||(Yt=zn(),j_(e));function e(t){Yt.value=t,t.host&&t.host.hooks.hook("host:update:reactivity",()=>{fc(Yt)})}return Yt}const Ul=F_(),D_={class:"flex-row flex h-screen"},B_={class:"border-r-1 border-light-400 dark:border-dark-400 dark:bg-dark-900 dark:text-light bg-white text-dark-800 flex flex-col justify-between h-screen z-5"},U_={class:"flex-grow hidden md:block"},K_={class:"py-3 w-full flex items-start px-5 justify-between space-x-5"},V_=ge("h1",{class:"text-base w-40"}," OG Image Playground ",-1),q_=ge("hr",{class:"border-1 border-light-400 dark:border-dark-400"},null,-1),W_={class:"py-7 px-5 text-sm flex flex-col space-y-3"},z_=ge("hr",{class:"border-1 border-light-400 dark:border-dark-400"},null,-1),Q_={key:0,class:"py-7 px-5 text-sm flex flex-col space-y-3"},J_={class:"mx-auto flex flex-col w-full bg-white dark:bg-black max-h-screen overflow-hidden dark:bg-dark-700 bg-light-200"},X_={class:"py-9px dark:bg-dark-800 bg-light-200 px-10 opacity-80 flex items-center max-w-full block space-x-5"},Y_={class:"text-sm flex items-center space-x-5"},G_=ge("div",{class:"text-xs opacity-40"}," Path ",-1),Z_={class:"flex items-center space-x-1"},ev={key:0,class:"text-xs opacity-70"},tv=ge("hr",{class:"border-1 border-light-400 dark:border-dark-400"},null,-1),nv=$e({__name:"app",async setup(e){let t,n;Ea({title:"OG Image Playground"});const r=ce(()=>!!Ul.value),s=ce(()=>Ul.value?.host.nuxt.vueApp.config?.globalProperties?.$route?.path||void 0);st.value=s.value||Mn().query.path||"/",Ja.value=Mn().query.base||"/",Fe(()=>s.value,c=>{st.value=c});const o=ce(()=>Mn().path!=="/vnodes"&&Mn().path!=="/options"),i=([t,n]=Zc(()=>N_()),t=await t,n(),t),l=Da(c=>{st.value=c.target.value,so()},1e3);return(c,a)=>{const u=Bo,f=L_,d=my,g=pu,m=Fa,v=vy,E=A_;return he(),rt("div",D_,[ge("header",B_,[ge("div",U_,[ge("div",K_,[V_,V(r)?xt("",!0):(he(),Ie(d,{key:0},{default:Re(({toggle:_})=>[G(f,{n:"borderless lg m-0","p-0":"",op50:"",onClick:_},{default:Re(()=>[G(u,{icon:"dark:carbon-moon carbon-sun"})]),_:2},1032,["onClick"])]),_:1}))]),q_,ge("div",W_,[G(m,{to:"/",class:"transition-all hover:ml-1 whitespace-nowrap"},{default:Re(({isActive:_})=>[G(g,{name:"carbon:image-search",class:Ee(["mr-1",[_?"opacity-90":"opacity-60"]])},null,8,["class"]),ge("span",{class:Ee([_?"underline":"opacity-60"])},ks(V(i).component)+".vue ",3)]),_:1}),V(i).provider==="satori"?(he(),Ie(m,{key:0,to:"/svg",class:"transition-all hover:ml-1 whitespace-nowrap"},{default:Re(({isActive:_})=>[G(g,{name:"carbon:svg",class:Ee(["mr-1",[_?"opacity-90":"opacity-60"]])},null,8,["class"]),ge("span",{class:Ee([_?"underline":"opacity-60"])}," Preview SVG ",2)]),_:1})):xt("",!0),G(m,{to:"/png",class:"transition-all hover:ml-1 whitespace-nowrap"},{default:Re(({isActive:_})=>[G(g,{name:"carbon:png",class:Ee(["mr-1",[_?"opacity-90":"opacity-60"]])},null,8,["class"]),ge("span",{class:Ee([_?"underline":"opacity-60"])}," Preview PNG ",2)]),_:1}),G(m,{to:"/options",class:"transition-all hover:ml-1 whitespace-nowrap"},{default:Re(({isActive:_})=>[G(g,{name:"carbon:operations-record",class:Ee(["mr-1",[_?"opacity-90":"opacity-60"]])},null,8,["class"]),ge("span",{class:Ee([_?"underline":"opacity-60"])}," Options ",2)]),_:1}),G(m,{to:"/vnodes",class:"transition-all hover:ml-1 whitespace-nowrap"},{default:Re(({isActive:_})=>[G(g,{name:"carbon:ibm-cloud-pak-manta-automated-data-lineage",class:Ee(["mr-1",[_?"opacity-90":"opacity-60"]])},null,8,["class"]),ge("span",{class:Ee([_?"underline":"opacity-60"])}," vNodes ",2)]),_:1})]),z_,V(o)?(he(),rt("div",Q_,[V(Qt)!==504?(he(),rt("div",{key:0,onClick:a[0]||(a[0]=_=>Qt.value=504)},[G(f,null,{default:Re(()=>[G(g,{name:"carbon:mobile"}),Fn(" Small ")]),_:1})])):xt("",!0),V(Qt)!==null?(he(),rt("div",{key:1,onClick:a[1]||(a[1]=_=>Qt.value=null)},[G(f,null,{default:Re(()=>[G(g,{name:"carbon:laptop"}),Fn(" Full width ")]),_:1})])):xt("",!0),ge("div",null,[G(f,{onClick:V(so)},{default:Re(()=>[Fn(" Refresh ")]),_:1},8,["onClick"])])])):xt("",!0)])]),ge("main",J_,[ge("div",X_,[ge("div",Y_,[G_,ge("div",Z_,[G(v,{"model-value":V(st),placeholder:"Search...",n:"primary",onInput:V(l)},null,8,["model-value","onInput"])])]),V(Tl)?(he(),rt("div",ev,ks(V(Tl)),1)):xt("",!0)]),tv,ge("div",{class:"h-full max-h-full overflow-hidden lg:p-10 p-3",style:pn({width:V(Qt)&&V(o)?`${V(Qt)}px`:"100%"})},[G(E)],4)])])}}});const Kl={__name:"nuxt-root",setup(e){const t=As(()=>dt(()=>import("./error-component.8148b615.js"),[],import.meta.url).then(l=>l.default||l)),n=()=>null,r=ye(),s=r.deferHydration();on("_route",Mn()),r.hooks.callHookWith(l=>l.map(c=>c()),"vue:setup");const o=ns();Ac((l,c,a)=>{if(r.hooks.callHook("vue:error",l,c,a).catch(u=>console.error("[nuxt] Error in `vue:error` hook",u)),tm(l)&&(l.fatal||l.unhandled))return ut(r,Gt,[l]),!1});const{islandContext:i}=!1;return(l,c)=>(he(),Ie(wc,{onResolve:V(s)},{default:Re(()=>[V(o)?(he(),Ie(V(t),{key:0,error:V(o)},null,8,["error"])):V(i)?(he(),Ie(V(n),{key:1,context:V(i)},null,8,["context"])):(he(),Ie(V(nv),{key:2}))]),_:1},8,["onResolve"]))}};globalThis.$fetch||(globalThis.$fetch=Oh.create({baseURL:Ah()}));let Vl;const rv=Qh($m);Vl=async function(){const n=!!window.__NUXT__?.serverRendered?zd(Kl):Wd(Kl),r=qh({vueApp:n});try{await zh(r,rv)}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}try{await r.hooks.callHook("app:created",n),await r.hooks.callHook("app:beforeMount",n),n.mount("#"+Bp),await r.hooks.callHook("app:mounted",n),await wn()}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}},Vl().catch(e=>{console.error("Error while mounting app:",e)});export{st as A,Uo as B,so as C,N_ as D,cv as E,av as F,ks as G,Re as H,Fn as I,Fa as J,sv as K,ov as L,dt as _,$e as a,iv as b,Ie as c,As as d,Tm as e,ce as f,Jc as g,rt as h,pn as i,Xa as j,Mm as k,Da as l,En as m,vu as n,he as o,Qt as p,Ea as q,me as r,Tl as s,ge as t,V as u,Zc as v,Fe as w,G as x,lv as y,Ko as z};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.spotlight[data-v-01f15790]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.gradient-border[data-v-01f15790]{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:.5rem;position:relative}@media (prefers-color-scheme:light){.gradient-border[data-v-01f15790]{background-color:#ffffff4d}.gradient-border[data-v-01f15790]:before{background:linear-gradient(90deg,#e2e2e2,#e2e2e2 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}@media (prefers-color-scheme:dark){.gradient-border[data-v-01f15790]{background-color:#1414144d}.gradient-border[data-v-01f15790]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}.gradient-border[data-v-01f15790]:before{background-size:400% auto;border-radius:.5rem;content:"";inset:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.5;padding:2px;position:absolute;transition:background-position .3s ease-in-out,opacity .2s ease-in-out;width:100%}.gradient-border[data-v-01f15790]:hover:before{background-position:-50% 0;opacity:1}.bg-white[data-v-01f15790]{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.cursor-pointer[data-v-01f15790]{cursor:pointer}.flex[data-v-01f15790]{display:flex}.grid[data-v-01f15790]{display:grid}.place-content-center[data-v-01f15790]{place-content:center}.items-center[data-v-01f15790]{align-items:center}.justify-center[data-v-01f15790]{justify-content:center}.font-sans[data-v-01f15790]{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}.font-medium[data-v-01f15790]{font-weight:500}.font-light[data-v-01f15790]{font-weight:300}.text-8xl[data-v-01f15790]{font-size:6rem;line-height:1}.text-xl[data-v-01f15790]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-01f15790]{line-height:1.25}.mb-8[data-v-01f15790]{margin-bottom:2rem}.mb-16[data-v-01f15790]{margin-bottom:4rem}.max-w-520px[data-v-01f15790]{max-width:520px}.min-h-screen[data-v-01f15790]{min-height:100vh}.overflow-hidden[data-v-01f15790]{overflow:hidden}.px-8[data-v-01f15790]{padding-left:2rem;padding-right:2rem}.py-2[data-v-01f15790]{padding-bottom:.5rem;padding-top:.5rem}.px-4[data-v-01f15790]{padding-left:1rem;padding-right:1rem}.fixed[data-v-01f15790]{position:fixed}.left-0[data-v-01f15790]{left:0}.right-0[data-v-01f15790]{right:0}.text-center[data-v-01f15790]{text-align:center}.text-black[data-v-01f15790]{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-01f15790]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-01f15790]{width:100%}.z-10[data-v-01f15790]{z-index:10}.z-20[data-v-01f15790]{z-index:20}@media (min-width:640px){.sm\:text-4xl[data-v-01f15790]{font-size:2.25rem;line-height:2.5rem}.sm\:text-xl[data-v-01f15790]{font-size:1.25rem;line-height:1.75rem}.sm\:text-10xl[data-v-01f15790]{font-size:10rem;line-height:1}.sm\:px-0[data-v-01f15790]{padding-left:0;padding-right:0}.sm\:py-3[data-v-01f15790]{padding-bottom:.75rem;padding-top:.75rem}.sm\:px-6[data-v-01f15790]{padding-left:1.5rem;padding-right:1.5rem}}@media (prefers-color-scheme:dark){.dark\:bg-black[data-v-01f15790]{--tw-bg-opacity:1;background-color:rgba(0,0,0,var(--tw-bg-opacity))}.dark\:text-white[data-v-01f15790]{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.spotlight[data-v-8e50e92f]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);filter:blur(20vh)}.bg-white[data-v-8e50e92f]{--tw-bg-opacity:1;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.grid[data-v-8e50e92f]{display:grid}.place-content-center[data-v-8e50e92f]{place-content:center}.font-sans[data-v-8e50e92f]{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}.font-medium[data-v-8e50e92f]{font-weight:500}.font-light[data-v-8e50e92f]{font-weight:300}.h-1\/2[data-v-8e50e92f]{height:50%}.text-8xl[data-v-8e50e92f]{font-size:6rem;line-height:1}.text-xl[data-v-8e50e92f]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-8e50e92f]{line-height:1.25}.mb-8[data-v-8e50e92f]{margin-bottom:2rem}.mb-16[data-v-8e50e92f]{margin-bottom:4rem}.max-w-520px[data-v-8e50e92f]{max-width:520px}.min-h-screen[data-v-8e50e92f]{min-height:100vh}.overflow-hidden[data-v-8e50e92f]{overflow:hidden}.px-8[data-v-8e50e92f]{padding-left:2rem;padding-right:2rem}.fixed[data-v-8e50e92f]{position:fixed}.left-0[data-v-8e50e92f]{left:0}.right-0[data-v-8e50e92f]{right:0}.-bottom-1\/2[data-v-8e50e92f]{bottom:-50%}.text-center[data-v-8e50e92f]{text-align:center}.text-black[data-v-8e50e92f]{--tw-text-opacity:1;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-8e50e92f]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:640px){.sm\:text-4xl[data-v-8e50e92f]{font-size:2.25rem;line-height:2.5rem}.sm\:text-10xl[data-v-8e50e92f]{font-size:10rem;line-height:1}.sm\:px-0[data-v-8e50e92f]{padding-left:0;padding-right:0}}@media (prefers-color-scheme:dark){.dark\:bg-black[data-v-8e50e92f]{--tw-bg-opacity:1;background-color:rgba(0,0,0,var(--tw-bg-opacity))}.dark\:text-white[data-v-8e50e92f]{--tw-text-opacity:1;color:rgba(255,255,255,var(--tw-text-opacity))}}
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import{o as m,c as p,n as _,g as E,u as t,d as n,_ as o}from"./entry.fc9150b0.js";const f={__name:"nuxt-error-page",props:{error:Object},setup(r){(r.error.stack||"").split(`
|
|
2
|
-
`).splice(1).map(e=>({text:e.replace("webpack:/","").replace(".vue",".js").trim(),internal:e.includes("node_modules")&&!e.includes(".cache")||e.includes("internal")||e.includes("new Promise")})).map(e=>`<span class="stack${e.internal?" internal":""}">${e.text}</span>`).join(`
|
|
3
|
-
`);const s=Number(r.error.statusCode||500),a=s===404,c=r.error.statusMessage??(a?"Page Not Found":"Internal Server Error"),u=r.error.message||r.error.toString(),i=void 0,d=a?n(()=>o(()=>import("./error-404.02537f9e.js"),["./error-404.02537f9e.js","./entry.fc9150b0.js","./entry.09f25aaf.css","./error-404.1469f10f.css"],import.meta.url).then(e=>e.default||e)):n(()=>o(()=>import("./error-500.a60bf0b5.js"),["./error-500.a60bf0b5.js","./entry.fc9150b0.js","./entry.09f25aaf.css","./error-500.92b94fae.css"],import.meta.url).then(e=>e.default||e));return(e,l)=>(m(),p(t(d),_(E({statusCode:t(s),statusMessage:t(c),description:t(u),stack:t(i)})),null,16))}},v=f;export{v as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{a as x,r as u,k as y,l as S,m as $,w as p,p as R,q as k,f as C,s as H,o as v,h as g,t as B,i as D,j as M,v as W,x as b,u as i,y as z,z as A,A as F,B as I,C as L}from"./entry.fc9150b0.js";const N={class:"w-full mx-auto max-w-1200px h-full max-h-630px justify-center flex",style:{"max-height":"630px"}},T=x({__name:"IFrameLoader",props:{src:String,aspectRatio:Number,description:String},setup(l){const t=l,s=u(t.src),a=y(),c=u(),n=u(0),o=S(()=>{let e=c.value;e||(e=document.querySelector("#iframe-loader"));const r=Date.now();e.src="";const d=e.offsetHeight,f=e.offsetWidth,h=d>630?1:d/630,_=f>1200?1:f/1200,w=_>h?h:_;n.value=0,e.style.opacity="0",e.onload=()=>{e.style.opacity="1",n.value=Date.now()-r},e.src=`${s.value}&scale=${w}&mode=${a.value}`},200);$(()=>{p(()=>t.src,e=>{s.value=e,o()},{immediate:!0}),p([()=>R.value,a],()=>{o()})}),k({bodyAttrs:{onresize:()=>{o()}}});const m=C(()=>t.description.replace("%s",n.value.toString()));return p(m,e=>{H.value=e}),(e,r)=>(v(),g("div",N,[B("iframe",{id:"iframe-loader",ref_key:"iframe",ref:c,class:"max-h-full",style:D({aspectRatio:l.aspectRatio}),width:"1200",height:"630"},null,4)]))}}),j=M(T,[["__scopeId","data-v-85f41f36"]]),q={class:"flex h-full w-full"},E=x({__name:"index",async setup(l){let t,s;const a=([t,s]=W(()=>z.useServerConfig()),t=await t,s(),t),c=a.value?.height||630,o=(a.value?.width||1200)/c;return(m,e)=>{const r=j;return v(),g("div",q,[b(r,{src:`${i(A)}/api/og-image-html?path=${i(F)}×tamp=${i(I)}`,"aspect-ratio":o,description:"[HTML] Generated in %sms.",class:"max-h-full",onRefresh:i(L)},null,8,["src","onRefresh"])])}}});export{E as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{a as o,v as a,h as r,u as s,D as i,o as c}from"./entry.fc9150b0.js";import{h as p}from"./shiki.aace8ca2.js";const _=["innerHTML"],x=o({__name:"options",async setup(l){let t,e;const n=([t,e]=a(()=>i()),t=await t,e(),t);return(h,f)=>(c(),r("pre",{"of-auto":"","h-full":"","text-sm":"",style:{"white-space":"break-spaces"},innerHTML:s(p)(JSON.stringify(s(n),null,2),"json")},null,8,_))}});export{x as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as c}from"./ImageLoader.a4418cab.js";import{a as _,v as i,c as p,u as a,y as m,o as u,E as g,B as h}from"./entry.fc9150b0.js";const B=_({__name:"png",async setup(f){let e,t;const s=([e,t]=i(()=>m.useServerConfig()),e=await e,t(),e),o=s.value?.height||630,n=(s.value?.width||1200)/o;return(d,v)=>{const r=c;return u(),p(r,{src:`${a(g)}/__og_image__/og.png?timestamp=${a(h)}`,"aspect-ratio":n,description:"[PNG] Generated in %sms using Satori & Resvg."},null,8,["src"])}}});export{B as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{_ as c}from"./ImageLoader.a4418cab.js";import{a as i,v as p,c as _,u as e,y as m,o as h,z as u,A as g,B as f}from"./entry.fc9150b0.js";const B=i({__name:"svg",async setup(d){let t,s;const a=([t,s]=p(()=>m.useServerConfig()),t=await t,s(),t),o=a.value?.height||630,n=(a.value?.width||1200)/o;return(v,w)=>{const r=c;return h(),_(r,{src:`${e(u)}/api/og-image-svg?path=${e(g)}×tamp=${e(f)}`,"aspect-ratio":n,description:"[SVG] Generated in %sms using Satori."},null,8,["src"])}}});export{B as default};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{a as o,v as a,h as r,u as s,F as c,o as i}from"./entry.fc9150b0.js";import{h as _}from"./shiki.aace8ca2.js";const l=["innerHTML"],d=o({__name:"vnodes",async setup(p){let e,t;const n=([e,t]=a(()=>c()),e=await e,t(),e);return(h,f)=>(i(),r("pre",{"of-auto":"","h-full":"","text-sm":"",style:{"white-space":"break-spaces"},innerHTML:s(_)(JSON.stringify(s(n),null,2),"json")},null,8,l))}});export{d as default};
|