@nuxtjs/sitemap 2.4.0 → 5.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.
Files changed (86) hide show
  1. package/README.md +60 -593
  2. package/dist/client/200.html +11 -0
  3. package/dist/client/404.html +11 -0
  4. package/dist/client/_nuxt/Icon.I3NdYkjC.css +1 -0
  5. package/dist/client/_nuxt/Icon.Y7HhHHAz.js +1 -0
  6. package/dist/client/_nuxt/IconCSS.6oz918NR.css +1 -0
  7. package/dist/client/_nuxt/IconCSS.Q-iLbQkL.js +1 -0
  8. package/dist/client/_nuxt/builds/latest.json +1 -0
  9. package/dist/client/_nuxt/builds/meta/4ef99937-9859-42d8-9d63-62e7809c4b65.json +1 -0
  10. package/dist/client/_nuxt/entry.EEjw95sW.js +15 -0
  11. package/dist/client/_nuxt/entry.UqhvG0ao.css +1 -0
  12. package/dist/client/_nuxt/error-404.DkXpI38i.css +1 -0
  13. package/dist/client/_nuxt/error-404.Loh33F4g.js +1 -0
  14. package/dist/client/_nuxt/error-500.SLhS9LVu.css +1 -0
  15. package/dist/client/_nuxt/error-500.m13OPw8F.js +1 -0
  16. package/dist/client/_nuxt/index.lSDm5iYo.js +1 -0
  17. package/dist/client/index.html +11 -0
  18. package/dist/module.cjs +5 -0
  19. package/dist/module.d.mts +350 -0
  20. package/dist/module.d.ts +350 -0
  21. package/dist/module.json +9 -0
  22. package/dist/module.mjs +994 -0
  23. package/dist/runtime/nitro/composables/asSitemapUrl.d.ts +2 -0
  24. package/dist/runtime/nitro/composables/asSitemapUrl.mjs +3 -0
  25. package/dist/runtime/nitro/composables/defineSitemapEventHandler.d.ts +3 -0
  26. package/dist/runtime/nitro/composables/defineSitemapEventHandler.mjs +2 -0
  27. package/dist/runtime/nitro/composables/getPathRobotConfigPolyfill.d.ts +4 -0
  28. package/dist/runtime/nitro/composables/getPathRobotConfigPolyfill.mjs +3 -0
  29. package/dist/runtime/nitro/kit.d.ts +3 -0
  30. package/dist/runtime/nitro/kit.mjs +23 -0
  31. package/dist/runtime/nitro/middleware/[sitemap]-sitemap.xml.d.ts +2 -0
  32. package/dist/runtime/nitro/middleware/[sitemap]-sitemap.xml.mjs +23 -0
  33. package/dist/runtime/nitro/plugins/compression.d.ts +2 -0
  34. package/dist/runtime/nitro/plugins/compression.mjs +8 -0
  35. package/dist/runtime/nitro/plugins/nuxt-content.d.ts +2 -0
  36. package/dist/runtime/nitro/plugins/nuxt-content.mjs +38 -0
  37. package/dist/runtime/nitro/plugins/warm-up.d.ts +2 -0
  38. package/dist/runtime/nitro/plugins/warm-up.mjs +23 -0
  39. package/dist/runtime/nitro/routes/__sitemap__/debug.d.ts +37 -0
  40. package/dist/runtime/nitro/routes/__sitemap__/debug.mjs +29 -0
  41. package/dist/runtime/nitro/routes/__sitemap__/nuxt-content-urls.d.ts +2 -0
  42. package/dist/runtime/nitro/routes/__sitemap__/nuxt-content-urls.mjs +6 -0
  43. package/dist/runtime/nitro/routes/sitemap.xml.d.ts +2 -0
  44. package/dist/runtime/nitro/routes/sitemap.xml.mjs +13 -0
  45. package/dist/runtime/nitro/routes/sitemap.xsl.d.ts +2 -0
  46. package/dist/runtime/nitro/routes/sitemap.xsl.mjs +229 -0
  47. package/dist/runtime/nitro/routes/sitemap_index.xml.d.ts +2 -0
  48. package/dist/runtime/nitro/routes/sitemap_index.xml.mjs +27 -0
  49. package/dist/runtime/nitro/sitemap/builder/sitemap-index.d.ts +2 -0
  50. package/dist/runtime/nitro/sitemap/builder/sitemap-index.mjs +86 -0
  51. package/dist/runtime/nitro/sitemap/builder/sitemap.d.ts +2 -0
  52. package/dist/runtime/nitro/sitemap/builder/sitemap.mjs +107 -0
  53. package/dist/runtime/nitro/sitemap/builder/xml.d.ts +4 -0
  54. package/dist/runtime/nitro/sitemap/builder/xml.mjs +83 -0
  55. package/dist/runtime/nitro/sitemap/nitro.d.ts +4 -0
  56. package/dist/runtime/nitro/sitemap/nitro.mjs +36 -0
  57. package/dist/runtime/nitro/sitemap/urlset/filter.d.ts +5 -0
  58. package/dist/runtime/nitro/sitemap/urlset/filter.mjs +50 -0
  59. package/dist/runtime/nitro/sitemap/urlset/i18n.d.ts +8 -0
  60. package/dist/runtime/nitro/sitemap/urlset/i18n.mjs +128 -0
  61. package/dist/runtime/nitro/sitemap/urlset/normalise.d.ts +3 -0
  62. package/dist/runtime/nitro/sitemap/urlset/normalise.mjs +77 -0
  63. package/dist/runtime/nitro/sitemap/urlset/sort.d.ts +2 -0
  64. package/dist/runtime/nitro/sitemap/urlset/sort.mjs +19 -0
  65. package/dist/runtime/nitro/sitemap/urlset/sources.d.ts +5 -0
  66. package/dist/runtime/nitro/sitemap/urlset/sources.mjs +82 -0
  67. package/dist/runtime/nitro/tsconfig.json +3 -0
  68. package/dist/runtime/nitro/utils.d.ts +4 -0
  69. package/dist/runtime/nitro/utils.mjs +13 -0
  70. package/dist/runtime/types.d.ts +355 -0
  71. package/dist/runtime/types.mjs +0 -0
  72. package/dist/runtime/utils-pure.d.ts +7 -0
  73. package/dist/runtime/utils-pure.mjs +32 -0
  74. package/dist/types.d.mts +18 -0
  75. package/dist/types.d.ts +18 -0
  76. package/package.json +80 -75
  77. package/CHANGELOG.md +0 -268
  78. package/LICENSE +0 -21
  79. package/lib/builder.js +0 -172
  80. package/lib/cache.js +0 -95
  81. package/lib/generator.js +0 -113
  82. package/lib/logger.js +0 -19
  83. package/lib/middleware.js +0 -195
  84. package/lib/module.js +0 -72
  85. package/lib/options.js +0 -135
  86. package/lib/routes.js +0 -55
@@ -0,0 +1,15 @@
1
+ function lr(e,t){const n=new Set(e.split(","));return t?s=>n.has(s.toLowerCase()):s=>n.has(s)}const ke={},ln=[],Ye=()=>{},lu=()=>!1,Jn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),cr=e=>e.startsWith("onUpdate:"),Oe=Object.assign,ur=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},cu=Object.prototype.hasOwnProperty,de=(e,t)=>cu.call(e,t),ne=Array.isArray,cn=e=>Xn(e)==="[object Map]",wa=e=>Xn(e)==="[object Set]",Jr=e=>Xn(e)==="[object Date]",se=e=>typeof e=="function",Le=e=>typeof e=="string",It=e=>typeof e=="symbol",we=e=>e!==null&&typeof e=="object",fr=e=>(we(e)||se(e))&&se(e.then)&&se(e.catch),xa=Object.prototype.toString,Xn=e=>xa.call(e),uu=e=>Xn(e).slice(8,-1),ka=e=>Xn(e)==="[object Object]",pr=e=>Le(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,An=lr(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Gs=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},fu=/-(\w)/g,pt=Gs(e=>e.replace(fu,(t,n)=>n?n.toUpperCase():"")),pu=/\B([A-Z])/g,Zt=Gs(e=>e.replace(pu,"-$1").toLowerCase()),Ws=Gs(e=>e.charAt(0).toUpperCase()+e.slice(1)),co=Gs(e=>e?`on${Ws(e)}`:""),Mt=(e,t)=>!Object.is(e,t),ds=(e,t)=>{for(let n=0;n<e.length;n++)e[n](t)},bs=(e,t,n)=>{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},du=e=>{const t=parseFloat(e);return isNaN(t)?e:t},hu=e=>{const t=Le(e)?Number(e):NaN;return isNaN(t)?e:t};let Xr;const Na=()=>Xr||(Xr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{});function zt(e){if(ne(e)){const t={};for(let n=0;n<e.length;n++){const s=e[n],r=Le(s)?_u(s):zt(s);if(r)for(const o in r)t[o]=r[o]}return t}else if(Le(e)||we(e))return e}const mu=/;(?![^(]*\))/g,gu=/:([^]+)/,yu=/\/\*[^]*?\*\//g;function _u(e){const t={};return e.replace(yu,"").split(mu).forEach(n=>{if(n){const s=n.split(gu);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function Pe(e){let t="";if(Le(e))t=e;else if(ne(e))for(let n=0;n<e.length;n++){const s=Pe(e[n]);s&&(t+=s+" ")}else if(we(e))for(const n in e)e[n]&&(t+=n+" ");return t.trim()}function Sa(e){if(!e)return null;let{class:t,style:n}=e;return t&&!Le(t)&&(e.class=Pe(t)),n&&(e.style=zt(n)),e}const bu="itemscope,allowfullscreen,formnovalidate,ismap,nomodule,novalidate,readonly",vu=lr(bu);function Ta(e){return!!e||e===""}function wu(e,t){if(e.length!==t.length)return!1;let n=!0;for(let s=0;n&&s<e.length;s++)n=vs(e[s],t[s]);return n}function vs(e,t){if(e===t)return!0;let n=Jr(e),s=Jr(t);if(n||s)return n&&s?e.getTime()===t.getTime():!1;if(n=It(e),s=It(t),n||s)return e===t;if(n=ne(e),s=ne(t),n||s)return n&&s?wu(e,t):!1;if(n=we(e),s=we(t),n||s){if(!n||!s)return!1;const r=Object.keys(e).length,o=Object.keys(t).length;if(r!==o)return!1;for(const i in e){const a=e.hasOwnProperty(i),c=t.hasOwnProperty(i);if(a&&!c||!a&&c||!vs(e[i],t[i]))return!1}}return String(e)===String(t)}const Me=e=>Le(e)?e:e==null?"":ne(e)||we(e)&&(e.toString===xa||!se(e.toString))?JSON.stringify(e,La,2):String(e),La=(e,t)=>t&&t.__v_isRef?La(e,t.value):cn(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],o)=>(n[uo(s,o)+" =>"]=r,n),{})}:wa(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>uo(n))}:It(t)?uo(t):we(t)&&!ne(t)&&!ka(t)?String(t):t,uo=(e,t="")=>{var n;return It(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};let Ke;class Pa{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Ke,!t&&Ke&&(this.index=(Ke.scopes||(Ke.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Ke;try{return Ke=this,t()}finally{Ke=n}}}on(){Ke=this}off(){Ke=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n<s;n++)this.effects[n].stop();for(n=0,s=this.cleanups.length;n<s;n++)this.cleanups[n]();if(this.scopes)for(n=0,s=this.scopes.length;n<s;n++)this.scopes[n].stop(!0);if(!this.detached&&this.parent&&!t){const r=this.parent.scopes.pop();r&&r!==this&&(this.parent.scopes[this.index]=r,r.index=this.index)}this.parent=void 0,this._active=!1}}}function xu(e){return new Pa(e)}function ku(e,t=Ke){t&&t.active&&t.effects.push(e)}function Aa(){return Ke}function Nu(e){Ke&&Ke.cleanups.push(e)}let Kt;class dr{constructor(t,n,s,r){this.fn=t,this.trigger=n,this.scheduler=s,this.active=!0,this.deps=[],this._dirtyLevel=3,this._trackId=0,this._runnings=0,this._queryings=0,this._depsLength=0,ku(this,r)}get dirty(){if(this._dirtyLevel===1){this._dirtyLevel=0,this._queryings++,en();for(const t of this.deps)if(t.computed&&(Su(t.computed),this._dirtyLevel>=2))break;tn(),this._queryings--}return this._dirtyLevel>=2}set dirty(t){this._dirtyLevel=t?3:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Ct,n=Kt;try{return Ct=!0,Kt=this,this._runnings++,Qr(this),this.fn()}finally{Yr(this),this._runnings--,Kt=n,Ct=t}}stop(){var t;this.active&&(Qr(this),Yr(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function Su(e){return e.value}function Qr(e){e._trackId++,e._depsLength=0}function Yr(e){if(e.deps&&e.deps.length>e._depsLength){for(let t=e._depsLength;t<e.deps.length;t++)Ra(e.deps[t],e);e.deps.length=e._depsLength}}function Ra(e,t){const n=e.get(t);n!==void 0&&t._trackId!==n&&(e.delete(t),e.size===0&&e.cleanup())}let Ct=!0,Ro=0;const Ca=[];function en(){Ca.push(Ct),Ct=!1}function tn(){const e=Ca.pop();Ct=e===void 0?!0:e}function hr(){Ro++}function mr(){for(Ro--;!Ro&&Co.length;)Co.shift()()}function Ea(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const s=e.deps[e._depsLength];s!==t?(s&&Ra(s,e),e.deps[e._depsLength++]=t):e._depsLength++}}const Co=[];function $a(e,t,n){hr();for(const s of e.keys())if(!(!s.allowRecurse&&s._runnings)&&s._dirtyLevel<t&&(!s._runnings||t!==2)){const r=s._dirtyLevel;s._dirtyLevel=t,r===0&&(!s._queryings||t!==2)&&(s.trigger(),s.scheduler&&Co.push(s.scheduler))}mr()}const ja=(e,t)=>{const n=new Map;return n.cleanup=e,n.computed=t,n},ws=new WeakMap,Jt=Symbol(""),Eo=Symbol("");function We(e,t,n){if(Ct&&Kt){let s=ws.get(e);s||ws.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=ja(()=>s.delete(n))),Ea(Kt,r)}}function bt(e,t,n,s,r,o){const i=ws.get(e);if(!i)return;let a=[];if(t==="clear")a=[...i.values()];else if(n==="length"&&ne(e)){const c=Number(s);i.forEach((l,p)=>{(p==="length"||!It(p)&&p>=c)&&a.push(l)})}else switch(n!==void 0&&a.push(i.get(n)),t){case"add":ne(e)?pr(n)&&a.push(i.get("length")):(a.push(i.get(Jt)),cn(e)&&a.push(i.get(Eo)));break;case"delete":ne(e)||(a.push(i.get(Jt)),cn(e)&&a.push(i.get(Eo)));break;case"set":cn(e)&&a.push(i.get(Jt));break}hr();for(const c of a)c&&$a(c,3);mr()}function Tu(e,t){var n;return(n=ws.get(e))==null?void 0:n.get(t)}const Lu=lr("__proto__,__v_isRef,__isVue"),Oa=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(It)),Zr=Pu();function Pu(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=he(this);for(let o=0,i=this.length;o<i;o++)We(s,"get",o+"");const r=s[t](...n);return r===-1||r===!1?s[t](...n.map(he)):r}}),["push","pop","shift","unshift","splice"].forEach(t=>{e[t]=function(...n){en(),hr();const s=he(this)[t].apply(this,n);return mr(),tn(),s}}),e}function Au(e){const t=he(this);return We(t,"has",e),t.hasOwnProperty(e)}class Ia{constructor(t=!1,n=!1){this._isReadonly=t,this._shallow=n}get(t,n,s){const r=this._isReadonly,o=this._shallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return o;if(n==="__v_raw")return s===(r?o?Uu:Da:o?Ba:Ha).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const i=ne(t);if(!r){if(i&&de(Zr,n))return Reflect.get(Zr,n,s);if(n==="hasOwnProperty")return Au}const a=Reflect.get(t,n,s);return(It(n)?Oa.has(n):Lu(n))||(r||We(t,"get",n),o)?a:$e(a)?i&&pr(n)?a:a.value:we(a)?r?_r(a):dt(a):a}}class Ma extends Ia{constructor(t=!1){super(!1,t)}set(t,n,s,r){let o=t[n];if(!this._shallow){const c=Xt(o);if(!xs(s)&&!Xt(s)&&(o=he(o),s=he(s)),!ne(t)&&$e(o)&&!$e(s))return c?!1:(o.value=s,!0)}const i=ne(t)&&pr(n)?Number(n)<t.length:de(t,n),a=Reflect.set(t,n,s,r);return t===he(r)&&(i?Mt(s,o)&&bt(t,"set",n,s):bt(t,"add",n,s)),a}deleteProperty(t,n){const s=de(t,n);t[n];const r=Reflect.deleteProperty(t,n);return r&&s&&bt(t,"delete",n,void 0),r}has(t,n){const s=Reflect.has(t,n);return(!It(n)||!Oa.has(n))&&We(t,"has",n),s}ownKeys(t){return We(t,"iterate",ne(t)?"length":Jt),Reflect.ownKeys(t)}}class Ru extends Ia{constructor(t=!1){super(!0,t)}set(t,n){return!0}deleteProperty(t,n){return!0}}const Cu=new Ma,Eu=new Ru,$u=new Ma(!0),gr=e=>e,Vs=e=>Reflect.getPrototypeOf(e);function Zn(e,t,n=!1,s=!1){e=e.__v_raw;const r=he(e),o=he(t);n||(Mt(t,o)&&We(r,"get",t),We(r,"get",o));const{has:i}=Vs(r),a=s?gr:n?vr:Mn;if(i.call(r,t))return a(e.get(t));if(i.call(r,o))return a(e.get(o));e!==r&&e.get(t)}function es(e,t=!1){const n=this.__v_raw,s=he(n),r=he(e);return t||(Mt(e,r)&&We(s,"has",e),We(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function ts(e,t=!1){return e=e.__v_raw,!t&&We(he(e),"iterate",Jt),Reflect.get(e,"size",e)}function ei(e){e=he(e);const t=he(this);return Vs(t).has.call(t,e)||(t.add(e),bt(t,"add",e,e)),this}function ti(e,t){t=he(t);const n=he(this),{has:s,get:r}=Vs(n);let o=s.call(n,e);o||(e=he(e),o=s.call(n,e));const i=r.call(n,e);return n.set(e,t),o?Mt(t,i)&&bt(n,"set",e,t):bt(n,"add",e,t),this}function ni(e){const t=he(this),{has:n,get:s}=Vs(t);let r=n.call(t,e);r||(e=he(e),r=n.call(t,e)),s&&s.call(t,e);const o=t.delete(e);return r&&bt(t,"delete",e,void 0),o}function si(){const e=he(this),t=e.size!==0,n=e.clear();return t&&bt(e,"clear",void 0,void 0),n}function ns(e,t){return function(s,r){const o=this,i=o.__v_raw,a=he(i),c=t?gr:e?vr:Mn;return!e&&We(a,"iterate",Jt),i.forEach((l,p)=>s.call(r,c(l),c(p),o))}}function ss(e,t,n){return function(...s){const r=this.__v_raw,o=he(r),i=cn(o),a=e==="entries"||e===Symbol.iterator&&i,c=e==="keys"&&i,l=r[e](...s),p=n?gr:t?vr:Mn;return!t&&We(o,"iterate",c?Eo:Jt),{next(){const{value:u,done:d}=l.next();return d?{value:u,done:d}:{value:a?[p(u[0]),p(u[1])]:p(u),done:d}},[Symbol.iterator](){return this}}}}function xt(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function ju(){const e={get(o){return Zn(this,o)},get size(){return ts(this)},has:es,add:ei,set:ti,delete:ni,clear:si,forEach:ns(!1,!1)},t={get(o){return Zn(this,o,!1,!0)},get size(){return ts(this)},has:es,add:ei,set:ti,delete:ni,clear:si,forEach:ns(!1,!0)},n={get(o){return Zn(this,o,!0)},get size(){return ts(this,!0)},has(o){return es.call(this,o,!0)},add:xt("add"),set:xt("set"),delete:xt("delete"),clear:xt("clear"),forEach:ns(!0,!1)},s={get(o){return Zn(this,o,!0,!0)},get size(){return ts(this,!0)},has(o){return es.call(this,o,!0)},add:xt("add"),set:xt("set"),delete:xt("delete"),clear:xt("clear"),forEach:ns(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(o=>{e[o]=ss(o,!1,!1),n[o]=ss(o,!0,!1),t[o]=ss(o,!1,!0),s[o]=ss(o,!0,!0)}),[e,n,t,s]}const[Ou,Iu,Mu,Hu]=ju();function yr(e,t){const n=t?e?Hu:Mu:e?Iu:Ou;return(s,r,o)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(de(n,r)&&r in s?n:s,r,o)}const Bu={get:yr(!1,!1)},Du={get:yr(!1,!0)},Fu={get:yr(!0,!1)},Ha=new WeakMap,Ba=new WeakMap,Da=new WeakMap,Uu=new WeakMap;function Gu(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function Wu(e){return e.__v_skip||!Object.isExtensible(e)?0:Gu(uu(e))}function dt(e){return Xt(e)?e:br(e,!1,Cu,Bu,Ha)}function Fa(e){return br(e,!1,$u,Du,Ba)}function _r(e){return br(e,!0,Eu,Fu,Da)}function br(e,t,n,s,r){if(!we(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const o=r.get(e);if(o)return o;const i=Wu(e);if(i===0)return e;const a=new Proxy(e,i===2?s:n);return r.set(e,a),a}function un(e){return Xt(e)?un(e.__v_raw):!!(e&&e.__v_isReactive)}function Xt(e){return!!(e&&e.__v_isReadonly)}function xs(e){return!!(e&&e.__v_isShallow)}function Ua(e){return un(e)||Xt(e)}function he(e){const t=e&&e.__v_raw;return t?he(t):e}function Ga(e){return bs(e,"__v_skip",!0),e}const Mn=e=>we(e)?dt(e):e,vr=e=>we(e)?_r(e):e;class Wa{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new dr(()=>t(this._value),()=>$o(this,1)),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=he(this);return Va(t),(!t._cacheable||t.effect.dirty)&&Mt(t._value,t._value=t.effect.run())&&$o(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function Vu(e,t,n=!1){let s,r;const o=se(e);return o?(s=e,r=Ye):(s=e.get,r=e.set),new Wa(s,r,o||!r,n)}function Va(e){Ct&&Kt&&(e=he(e),Ea(Kt,e.dep||(e.dep=ja(()=>e.dep=void 0,e instanceof Wa?e:void 0))))}function $o(e,t=3,n){e=he(e);const s=e.dep;s&&$a(s,t)}function $e(e){return!!(e&&e.__v_isRef===!0)}function Te(e){return qa(e,!1)}function jo(e){return qa(e,!0)}function qa(e,t){return $e(e)?e:new qu(e,t)}class qu{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:he(t),this._value=n?t:Mn(t)}get value(){return Va(this),this._value}set value(t){const n=this.__v_isShallow||xs(t)||Xt(t);t=n?t:he(t),Mt(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Mn(t),$o(this,3))}}function ie(e){return $e(e)?e.value:e}function zu(e){return se(e)?e():ie(e)}const Ku={get:(e,t,n)=>ie(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return $e(r)&&!$e(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function za(e){return un(e)?e:new Proxy(e,Ku)}class Ju{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,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 Tu(he(this._object),this._key)}}class Xu{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Ka(e,t,n){return $e(e)?e:se(e)?new Xu(e):we(e)&&arguments.length>1?Qu(e,t,n):Te(e)}function Qu(e,t,n){const s=e[t];return $e(s)?s:new Ju(e,t,n)}function Et(e,t,n,s){let r;try{r=s?e(...s):e()}catch(o){vn(o,t,n)}return r}function st(e,t,n,s){if(se(e)){const o=Et(e,t,n,s);return o&&fr(o)&&o.catch(i=>{vn(i,t,n)}),o}const r=[];for(let o=0;o<e.length;o++)r.push(st(e[o],t,n,s));return r}function vn(e,t,n,s=!0){const r=t?t.vnode:null;if(t){let o=t.parent;const i=t.proxy,a=`https://vuejs.org/errors/#runtime-${n}`;for(;o;){const l=o.ec;if(l){for(let p=0;p<l.length;p++)if(l[p](e,i,a)===!1)return}o=o.parent}const c=t.appContext.config.errorHandler;if(c){Et(c,null,10,[e,i,a]);return}}Yu(e,n,r,s)}function Yu(e,t,n,s=!0){console.error(e)}let Hn=!1,Oo=!1;const He=[];let lt=0;const fn=[];let yt=null,Vt=0;const Ja=Promise.resolve();let wr=null;function nn(e){const t=wr||Ja;return e?t.then(this?e.bind(this):e):t}function Zu(e){let t=lt+1,n=He.length;for(;t<n;){const s=t+n>>>1,r=He[s],o=Bn(r);o<e||o===e&&r.pre?t=s+1:n=s}return t}function qs(e){(!He.length||!He.includes(e,Hn&&e.allowRecurse?lt+1:lt))&&(e.id==null?He.push(e):He.splice(Zu(e.id),0,e),Xa())}function Xa(){!Hn&&!Oo&&(Oo=!0,wr=Ja.then(Qa))}function ef(e){const t=He.indexOf(e);t>lt&&He.splice(t,1)}function Io(e){ne(e)?fn.push(...e):(!yt||!yt.includes(e,e.allowRecurse?Vt+1:Vt))&&fn.push(e),Xa()}function oi(e,t,n=Hn?lt+1:0){for(;n<He.length;n++){const s=He[n];if(s&&s.pre){if(e&&s.id!==e.uid)continue;He.splice(n,1),n--,s()}}}function ks(e){if(fn.length){const t=[...new Set(fn)];if(fn.length=0,yt){yt.push(...t);return}for(yt=t,yt.sort((n,s)=>Bn(n)-Bn(s)),Vt=0;Vt<yt.length;Vt++)yt[Vt]();yt=null,Vt=0}}const Bn=e=>e.id==null?1/0:e.id,tf=(e,t)=>{const n=Bn(e)-Bn(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Qa(e){Oo=!1,Hn=!0,He.sort(tf);try{for(lt=0;lt<He.length;lt++){const t=He[lt];t&&t.active!==!1&&Et(t,null,14)}}finally{lt=0,He.length=0,ks(),Hn=!1,wr=null,(He.length||fn.length)&&Qa()}}function nf(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||ke;let r=n;const o=t.startsWith("update:"),i=o&&t.slice(7);if(i&&i in s){const p=`${i==="modelValue"?"model":i}Modifiers`,{number:u,trim:d}=s[p]||ke;d&&(r=n.map(b=>Le(b)?b.trim():b)),u&&(r=n.map(du))}let a,c=s[a=co(t)]||s[a=co(pt(t))];!c&&o&&(c=s[a=co(Zt(t))]),c&&st(c,e,6,r);const l=s[a+"Once"];if(l){if(!e.emitted)e.emitted={};else if(e.emitted[a])return;e.emitted[a]=!0,st(l,e,6,r)}}function Ya(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const o=e.emits;let i={},a=!1;if(!se(e)){const c=l=>{const p=Ya(l,t,!0);p&&(a=!0,Oe(i,p))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!o&&!a?(we(e)&&s.set(e,null),null):(ne(o)?o.forEach(c=>i[c]=null):Oe(i,o),we(e)&&s.set(e,i),i)}function zs(e,t){return!e||!Jn(t)?!1:(t=t.slice(2).replace(/Once$/,""),de(e,t[0].toLowerCase()+t.slice(1))||de(e,Zt(t))||de(e,t))}let Ee=null,Ks=null;function Ns(e){const t=Ee;return Ee=e,Ks=e&&e.type.__scopeId||null,t}function Za(e){Ks=e}function el(){Ks=null}const sf=e=>ae;function ae(e,t=Ee,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&gi(-1);const o=Ns(t);let i;try{i=e(...r)}finally{Ns(o),s._d&&gi(1)}return i};return s._n=!0,s._c=!0,s._d=!0,s}function fo(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:o,propsOptions:[i],slots:a,attrs:c,emit:l,render:p,renderCache:u,data:d,setupState:b,ctx:y,inheritAttrs:T}=e;let L,S;const k=Ns(e);try{if(n.shapeFlag&4){const v=r||s,_=v;L=Qe(p.call(_,v,u,o,b,d,y)),S=c}else{const v=t;L=Qe(v.length>1?v(o,{attrs:c,slots:a,emit:l}):v(o,null)),S=t.props?c:rf(c)}}catch(v){Cn.length=0,vn(v,e,1),L=Y(rt)}let h=L;if(S&&T!==!1){const v=Object.keys(S),{shapeFlag:_}=h;v.length&&_&7&&(i&&v.some(cr)&&(S=af(S,i)),h=bn(h,S))}return n.dirs&&(h=bn(h),h.dirs=h.dirs?h.dirs.concat(n.dirs):n.dirs),n.transition&&(h.transition=n.transition),L=h,Ns(k),L}function of(e){let t;for(let n=0;n<e.length;n++){const s=e[n];if(Un(s)){if(s.type!==rt||s.children==="v-if"){if(t)return;t=s}}else return}return t}const rf=e=>{let t;for(const n in e)(n==="class"||n==="style"||Jn(n))&&((t||(t={}))[n]=e[n]);return t},af=(e,t)=>{const n={};for(const s in e)(!cr(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function lf(e,t,n){const{props:s,children:r,component:o}=e,{props:i,children:a,patchFlag:c}=t,l=o.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?ri(s,i,l):!!i;if(c&8){const p=t.dynamicProps;for(let u=0;u<p.length;u++){const d=p[u];if(i[d]!==s[d]&&!zs(l,d))return!0}}}else return(r||a)&&(!a||!a.$stable)?!0:s===i?!1:s?i?ri(s,i,l):!0:!!i;return!1}function ri(e,t,n){const s=Object.keys(t);if(s.length!==Object.keys(e).length)return!0;for(let r=0;r<s.length;r++){const o=s[r];if(t[o]!==e[o]&&!zs(n,o))return!0}return!1}function xr({vnode:e,parent:t},n){if(n)for(;t;){const s=t.subTree;if(s.suspense&&s.suspense.activeBranch===e&&(s.el=e.el),s===e)(e=t.vnode).el=n,t=t.parent;else break}}const kr="components";function Qt(e,t){return nl(kr,e,!0,t)||e}const tl=Symbol.for("v-ndc");function cf(e){return Le(e)?nl(kr,e,!1)||e:e||tl}function nl(e,t,n=!0,s=!1){const r=Ee||Re;if(r){const o=r.type;if(e===kr){const a=ip(o,!1);if(a&&(a===t||a===pt(t)||a===Ws(pt(t))))return o}const i=ii(r[e]||o[e],t)||ii(r.appContext[e],t);return!i&&s?o:i}}function ii(e,t){return e&&(e[t]||e[pt(t)]||e[Ws(pt(t))])}const uf=e=>e.__isSuspense;let Mo=0;const ff={name:"Suspense",__isSuspense:!0,process(e,t,n,s,r,o,i,a,c,l){e==null?df(t,n,s,r,o,i,a,c,l):hf(e,t,n,s,r,i,a,c,l)},hydrate:mf,create:Nr,normalize:gf},pf=ff;function Dn(e,t){const n=e.props&&e.props[t];se(n)&&n()}function df(e,t,n,s,r,o,i,a,c){const{p:l,o:{createElement:p}}=c,u=p("div"),d=e.suspense=Nr(e,r,s,t,u,n,o,i,a,c);l(null,d.pendingBranch=e.ssContent,u,null,s,d,o,i),d.deps>0?(Dn(e,"onPending"),Dn(e,"onFallback"),l(null,e.ssFallback,t,n,s,null,o,i),pn(d,e.ssFallback)):d.resolve(!1,!0)}function hf(e,t,n,s,r,o,i,a,{p:c,um:l,o:{createElement:p}}){const u=t.suspense=e.suspense;u.vnode=t,t.el=e.el;const d=t.ssContent,b=t.ssFallback,{activeBranch:y,pendingBranch:T,isInFallback:L,isHydrating:S}=u;if(T)u.pendingBranch=d,At(d,T)?(c(T,d,u.hiddenContainer,null,r,u,o,i,a),u.deps<=0?u.resolve():L&&(S||(c(y,b,n,s,r,null,o,i,a),pn(u,b)))):(u.pendingId=Mo++,S?(u.isHydrating=!1,u.activeBranch=T):l(T,r,u),u.deps=0,u.effects.length=0,u.hiddenContainer=p("div"),L?(c(null,d,u.hiddenContainer,null,r,u,o,i,a),u.deps<=0?u.resolve():(c(y,b,n,s,r,null,o,i,a),pn(u,b))):y&&At(d,y)?(c(y,d,n,s,r,u,o,i,a),u.resolve(!0)):(c(null,d,u.hiddenContainer,null,r,u,o,i,a),u.deps<=0&&u.resolve()));else if(y&&At(d,y))c(y,d,n,s,r,u,o,i,a),pn(u,d);else if(Dn(t,"onPending"),u.pendingBranch=d,d.shapeFlag&512?u.pendingId=d.component.suspenseId:u.pendingId=Mo++,c(null,d,u.hiddenContainer,null,r,u,o,i,a),u.deps<=0)u.resolve();else{const{timeout:k,pendingId:h}=u;k>0?setTimeout(()=>{u.pendingId===h&&u.fallback(b)},k):k===0&&u.fallback(b)}}function Nr(e,t,n,s,r,o,i,a,c,l,p=!1){const{p:u,m:d,um:b,n:y,o:{parentNode:T,remove:L}}=l;let S;const k=yf(e);k&&t!=null&&t.pendingBranch&&(S=t.pendingId,t.deps++);const h=e.props?hu(e.props.timeout):void 0,v={vnode:e,parent:t,parentComponent:n,namespace:i,container:s,hiddenContainer:r,anchor:o,deps:0,pendingId:Mo++,timeout:typeof h=="number"?h:-1,activeBranch:null,pendingBranch:null,isInFallback:!p,isHydrating:p,isUnmounted:!1,effects:[],resolve(_=!1,f=!1){const{vnode:m,activeBranch:w,pendingBranch:g,pendingId:x,effects:N,parentComponent:P,container:C}=v;let O=!1;if(v.isHydrating)v.isHydrating=!1;else if(!_){O=w&&g.transition&&g.transition.mode==="out-in",O&&(w.transition.afterLeave=()=>{x===v.pendingId&&(d(g,C,y(w),0),Io(N))});let{anchor:K}=v;w&&(K=y(w),b(w,P,v,!0)),O||d(g,C,K,0)}pn(v,g),v.pendingBranch=null,v.isInFallback=!1;let B=v.parent,j=!1;for(;B;){if(B.pendingBranch){B.effects.push(...N),j=!0;break}B=B.parent}!j&&!O&&Io(N),v.effects=[],k&&t&&t.pendingBranch&&S===t.pendingId&&(t.deps--,t.deps===0&&!f&&t.resolve()),Dn(m,"onResolve")},fallback(_){if(!v.pendingBranch)return;const{vnode:f,activeBranch:m,parentComponent:w,container:g,namespace:x}=v;Dn(f,"onFallback");const N=y(m),P=()=>{v.isInFallback&&(u(null,_,g,N,w,null,x,a,c),pn(v,_))},C=_.transition&&_.transition.mode==="out-in";C&&(m.transition.afterLeave=P),v.isInFallback=!0,b(m,w,null,!0),C||P()},move(_,f,m){v.activeBranch&&d(v.activeBranch,_,f,m),v.container=_},next(){return v.activeBranch&&y(v.activeBranch)},registerDep(_,f){const m=!!v.pendingBranch;m&&v.deps++;const w=_.vnode.el;_.asyncDep.catch(g=>{vn(g,_,0)}).then(g=>{if(_.isUnmounted||v.isUnmounted||v.pendingId!==_.suspenseId)return;_.asyncResolved=!0;const{vnode:x}=_;Go(_,g,!1),w&&(x.el=w);const N=!w&&_.subTree.el;f(_,x,T(w||_.subTree.el),w?null:y(_.subTree),v,i,c),N&&L(N),xr(_,x.el),m&&--v.deps===0&&v.resolve()})},unmount(_,f){v.isUnmounted=!0,v.activeBranch&&b(v.activeBranch,n,_,f),v.pendingBranch&&b(v.pendingBranch,n,_,f)}};return v}function mf(e,t,n,s,r,o,i,a,c){const l=t.suspense=Nr(t,s,n,e.parentNode,document.createElement("div"),null,r,o,i,a,!0),p=c(e,l.pendingBranch=t.ssContent,n,l,o,i);return l.deps===0&&l.resolve(!1,!0),p}function gf(e){const{shapeFlag:t,children:n}=e,s=t&32;e.ssContent=ai(s?n.default:n),e.ssFallback=s?ai(n.fallback):Y(rt)}function ai(e){let t;if(se(e)){const n=_n&&e._c;n&&(e._d=!1,X()),e=e(),n&&(e._d=!0,t=Ze,Nl())}return ne(e)&&(e=of(e)),e=Qe(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function sl(e,t){t&&t.pendingBranch?ne(e)?t.effects.push(...e):t.effects.push(e):Io(e)}function pn(e,t){e.activeBranch=t;const{vnode:n,parentComponent:s}=e,r=n.el=t.el;s&&s.subTree===n&&(s.vnode.el=r,xr(s,r))}function yf(e){var t;return((t=e.props)==null?void 0:t.suspensible)!=null&&e.props.suspensible!==!1}const _f=Symbol.for("v-scx"),bf=()=>hn(_f);function ol(e,t){return Js(e,null,t)}function vf(e,t){return Js(e,null,{flush:"post"})}const os={};function ct(e,t,n){return Js(e,t,n)}function Js(e,t,{immediate:n,deep:s,flush:r,once:o,onTrack:i,onTrigger:a}=ke){if(t&&o){const f=t;t=(...m)=>{f(...m),_()}}const c=Re,l=f=>s===!0?f:qt(f,s===!1?1:void 0);let p,u=!1,d=!1;if($e(e)?(p=()=>e.value,u=xs(e)):un(e)?(p=()=>l(e),u=!0):ne(e)?(d=!0,u=e.some(f=>un(f)||xs(f)),p=()=>e.map(f=>{if($e(f))return f.value;if(un(f))return l(f);if(se(f))return Et(f,c,2)})):se(e)?t?p=()=>Et(e,c,2):p=()=>(b&&b(),st(e,c,3,[y])):p=Ye,t&&s){const f=p;p=()=>qt(f())}let b,y=f=>{b=h.onStop=()=>{Et(f,c,4),b=h.onStop=void 0}},T;if(Qn)if(y=Ye,t?n&&st(t,c,3,[p(),d?[]:void 0,y]):p(),r==="sync"){const f=bf();T=f.__watcherHandles||(f.__watcherHandles=[])}else return Ye;let L=d?new Array(e.length).fill(os):os;const S=()=>{if(!(!h.active||!h.dirty))if(t){const f=h.run();(s||u||(d?f.some((m,w)=>Mt(m,L[w])):Mt(f,L)))&&(b&&b(),st(t,c,3,[f,L===os?void 0:d&&L[0]===os?[]:L,y]),L=f)}else h.run()};S.allowRecurse=!!t;let k;r==="sync"?k=S:r==="post"?k=()=>Fe(S,c&&c.suspense):(S.pre=!0,c&&(S.id=c.uid),k=()=>qs(S));const h=new dr(p,Ye,k),v=Aa(),_=()=>{h.stop(),v&&ur(v.effects,h)};return t?n?S():L=h.run():r==="post"?Fe(h.run.bind(h),c&&c.suspense):h.run(),T&&T.push(_),_}function wf(e,t,n){const s=this.proxy,r=Le(e)?e.includes(".")?rl(s,e):()=>s[e]:e.bind(s,s);let o;se(t)?o=t:(o=t.handler,n=t);const i=Re;Ht(this);const a=Js(r,o.bind(s),n);return i?Ht(i):$t(),a}function rl(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r<n.length&&s;r++)s=s[n[r]];return s}}function qt(e,t,n=0,s){if(!we(e)||e.__v_skip)return e;if(t&&t>0){if(n>=t)return e;n++}if(s=s||new Set,s.has(e))return e;if(s.add(e),$e(e))qt(e.value,t,n,s);else if(ne(e))for(let r=0;r<e.length;r++)qt(e[r],t,n,s);else if(wa(e)||cn(e))e.forEach(r=>{qt(r,t,n,s)});else if(ka(e))for(const r in e)qt(e[r],t,n,s);return e}function xf(e,t){const n=Ee;if(n===null)return e;const s=Zs(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let o=0;o<t.length;o++){let[i,a,c,l=ke]=t[o];i&&(se(i)&&(i={mounted:i,updated:i}),i.deep&&qt(a),r.push({dir:i,instance:s,value:a,oldValue:void 0,arg:c,modifiers:l}))}return e}function at(e,t,n,s){const r=e.dirs,o=t&&t.dirs;for(let i=0;i<r.length;i++){const a=r[i];o&&(a.oldValue=o[i].value);let c=a.dir[s];c&&(en(),st(c,n,8,[e.el,a,e,t]),tn())}}/*! #__NO_SIDE_EFFECTS__ */function Ve(e,t){return se(e)?Oe({name:e.name},t,{setup:e}):e}const dn=e=>!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function Ss(e){se(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:s,delay:r=200,timeout:o,suspensible:i=!0,onError:a}=e;let c=null,l,p=0;const u=()=>(p++,c=null,d()),d=()=>{let b;return c||(b=c=t().catch(y=>{if(y=y instanceof Error?y:new Error(String(y)),a)return new Promise((T,L)=>{a(y,()=>T(u()),()=>L(y),p+1)});throw y}).then(y=>b!==c&&c?c:(y&&(y.__esModule||y[Symbol.toStringTag]==="Module")&&(y=y.default),l=y,y)))};return Ve({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return l},setup(){const b=Re;if(l)return()=>po(l,b);const y=k=>{c=null,vn(k,b,13,!s)};if(i&&b.suspense||Qn)return d().then(k=>()=>po(k,b)).catch(k=>(y(k),()=>s?Y(s,{error:k}):null));const T=Te(!1),L=Te(),S=Te(!!r);return r&&setTimeout(()=>{S.value=!1},r),o!=null&&setTimeout(()=>{if(!T.value&&!L.value){const k=new Error(`Async component timed out after ${o}ms.`);y(k),L.value=k}},o),d().then(()=>{T.value=!0,b.parent&&Sr(b.parent.vnode)&&(b.parent.effect.dirty=!0,qs(b.parent.update))}).catch(k=>{y(k),L.value=k}),()=>{if(T.value&&l)return po(l,b);if(L.value&&s)return Y(s,{error:L.value});if(n&&!S.value)return Y(n)}}})}function po(e,t){const{ref:n,props:s,children:r,ce:o}=t.vnode,i=Y(e,s,r);return i.ref=n,i.ce=o,delete t.vnode.ce,i}const Sr=e=>e.type.__isKeepAlive;function il(e,t){ll(e,"a",t)}function al(e,t){ll(e,"da",t)}function ll(e,t,n=Re){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Xs(t,s,n),n){let r=n.parent;for(;r&&r.parent;)Sr(r.parent.vnode)&&kf(s,t,n,r),r=r.parent}}function kf(e,t,n,s){const r=Xs(t,e,s,!0);Lr(()=>{ur(s[t],r)},n)}function Xs(e,t,n=Re,s=!1){if(n){const r=n[e]||(n[e]=[]),o=t.__weh||(t.__weh=(...i)=>{if(n.isUnmounted)return;en(),Ht(n);const a=st(t,n,e,i);return $t(),tn(),a});return s?r.unshift(o):r.push(o),o}}const wt=e=>(t,n=Re)=>(!Qn||e==="sp")&&Xs(e,(...s)=>t(...s),n),Nf=wt("bm"),Qs=wt("m"),Sf=wt("bu"),Tf=wt("u"),Tr=wt("bum"),Lr=wt("um"),Lf=wt("sp"),Pf=wt("rtg"),Af=wt("rtc");function cl(e,t=Re){Xs("ec",e,t)}function an(e,t,n,s){let r;const o=n&&n[s];if(ne(e)||Le(e)){r=new Array(e.length);for(let i=0,a=e.length;i<a;i++)r[i]=t(e[i],i,void 0,o&&o[i])}else if(typeof e=="number"){r=new Array(e);for(let i=0;i<e;i++)r[i]=t(i+1,i,void 0,o&&o[i])}else if(we(e))if(e[Symbol.iterator])r=Array.from(e,(i,a)=>t(i,a,void 0,o&&o[a]));else{const i=Object.keys(e);r=new Array(i.length);for(let a=0,c=i.length;a<c;a++){const l=i[a];r[a]=t(e[l],l,a,o&&o[a])}}else r=[];return n&&(n[s]=r),r}function Ge(e,t,n={},s,r){if(Ee.isCE||Ee.parent&&dn(Ee.parent)&&Ee.parent.isCE)return t!=="default"&&(n.name=t),Y("slot",n,s&&s());let o=e[t];o&&o._c&&(o._d=!1),X();const i=o&&ul(o(n)),a=Se(Ne,{key:n.key||i&&i.key||`_${t}`},i||(s?s():[]),i&&e._===1?64:-2);return!r&&a.scopeId&&(a.slotScopeIds=[a.scopeId+"-s"]),o&&o._c&&(o._d=!0),a}function ul(e){return e.some(t=>Un(t)?!(t.type===rt||t.type===Ne&&!ul(t.children)):!0)?e:null}const Ho=e=>e?Ll(e)?Zs(e)||e.proxy:Ho(e.parent):null,Rn=Oe(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=>Ho(e.parent),$root:e=>Ho(e.root),$emit:e=>e.emit,$options:e=>Pr(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,qs(e.update)}),$nextTick:e=>e.n||(e.n=nn.bind(e.proxy)),$watch:e=>wf.bind(e)}),ho=(e,t)=>e!==ke&&!e.__isScriptSetup&&de(e,t),Rf={get({_:e},t){const{ctx:n,setupState:s,data:r,props:o,accessCache:i,type:a,appContext:c}=e;let l;if(t[0]!=="$"){const b=i[t];if(b!==void 0)switch(b){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return o[t]}else{if(ho(s,t))return i[t]=1,s[t];if(r!==ke&&de(r,t))return i[t]=2,r[t];if((l=e.propsOptions[0])&&de(l,t))return i[t]=3,o[t];if(n!==ke&&de(n,t))return i[t]=4,n[t];Bo&&(i[t]=0)}}const p=Rn[t];let u,d;if(p)return t==="$attrs"&&We(e,"get",t),p(e);if((u=a.__cssModules)&&(u=u[t]))return u;if(n!==ke&&de(n,t))return i[t]=4,n[t];if(d=c.config.globalProperties,de(d,t))return d[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:o}=e;return ho(r,t)?(r[t]=n,!0):s!==ke&&de(s,t)?(s[t]=n,!0):de(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(o[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:o}},i){let a;return!!n[i]||e!==ke&&de(e,i)||ho(t,i)||(a=o[0])&&de(a,i)||de(s,i)||de(Rn,i)||de(r.config.globalProperties,i)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:de(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};function li(e){return ne(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function Cf(e){const t=wn();let n=e();return $t(),fr(n)&&(n=n.catch(s=>{throw Ht(t),s})),[n,()=>Ht(t)]}let Bo=!0;function Ef(e){const t=Pr(e),n=e.proxy,s=e.ctx;Bo=!1,t.beforeCreate&&ci(t.beforeCreate,e,"bc");const{data:r,computed:o,methods:i,watch:a,provide:c,inject:l,created:p,beforeMount:u,mounted:d,beforeUpdate:b,updated:y,activated:T,deactivated:L,beforeDestroy:S,beforeUnmount:k,destroyed:h,unmounted:v,render:_,renderTracked:f,renderTriggered:m,errorCaptured:w,serverPrefetch:g,expose:x,inheritAttrs:N,components:P,directives:C,filters:O}=t;if(l&&$f(l,s,null),i)for(const K in i){const q=i[K];se(q)&&(s[K]=q.bind(n))}if(r){const K=r.call(n,n);we(K)&&(e.data=dt(K))}if(Bo=!0,o)for(const K in o){const q=o[K],oe=se(q)?q.bind(n,n):se(q.get)?q.get.bind(n,n):Ye,be=!se(q)&&se(q.set)?q.set.bind(n):Ye,me=Je({get:oe,set:be});Object.defineProperty(s,K,{enumerable:!0,configurable:!0,get:()=>me.value,set:le=>me.value=le})}if(a)for(const K in a)fl(a[K],s,n,K);if(c){const K=se(c)?c.call(n):c;Reflect.ownKeys(K).forEach(q=>{dl(q,K[q])})}p&&ci(p,e,"c");function j(K,q){ne(q)?q.forEach(oe=>K(oe.bind(n))):q&&K(q.bind(n))}if(j(Nf,u),j(Qs,d),j(Sf,b),j(Tf,y),j(il,T),j(al,L),j(cl,w),j(Af,f),j(Pf,m),j(Tr,k),j(Lr,v),j(Lf,g),ne(x))if(x.length){const K=e.exposed||(e.exposed={});x.forEach(q=>{Object.defineProperty(K,q,{get:()=>n[q],set:oe=>n[q]=oe})})}else e.exposed||(e.exposed={});_&&e.render===Ye&&(e.render=_),N!=null&&(e.inheritAttrs=N),P&&(e.components=P),C&&(e.directives=C)}function $f(e,t,n=Ye){ne(e)&&(e=Do(e));for(const s in e){const r=e[s];let o;we(r)?"default"in r?o=hn(r.from||s,r.default,!0):o=hn(r.from||s):o=hn(r),$e(o)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>o.value,set:i=>o.value=i}):t[s]=o}}function ci(e,t,n){st(ne(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function fl(e,t,n,s){const r=s.includes(".")?rl(n,s):()=>n[s];if(Le(e)){const o=t[e];se(o)&&ct(r,o)}else if(se(e))ct(r,e.bind(n));else if(we(e))if(ne(e))e.forEach(o=>fl(o,t,n,s));else{const o=se(e.handler)?e.handler.bind(n):t[e.handler];se(o)&&ct(r,o,e)}}function Pr(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:o,config:{optionMergeStrategies:i}}=e.appContext,a=o.get(t);let c;return a?c=a:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(l=>Ts(c,l,i,!0)),Ts(c,t,i)),we(t)&&o.set(t,c),c}function Ts(e,t,n,s=!1){const{mixins:r,extends:o}=t;o&&Ts(e,o,n,!0),r&&r.forEach(i=>Ts(e,i,n,!0));for(const i in t)if(!(s&&i==="expose")){const a=jf[i]||n&&n[i];e[i]=a?a(e[i],t[i]):t[i]}return e}const jf={data:ui,props:fi,emits:fi,methods:Pn,computed:Pn,beforeCreate:Be,created:Be,beforeMount:Be,mounted:Be,beforeUpdate:Be,updated:Be,beforeDestroy:Be,beforeUnmount:Be,destroyed:Be,unmounted:Be,activated:Be,deactivated:Be,errorCaptured:Be,serverPrefetch:Be,components:Pn,directives:Pn,watch:If,provide:ui,inject:Of};function ui(e,t){return t?e?function(){return Oe(se(e)?e.call(this,this):e,se(t)?t.call(this,this):t)}:t:e}function Of(e,t){return Pn(Do(e),Do(t))}function Do(e){if(ne(e)){const t={};for(let n=0;n<e.length;n++)t[e[n]]=e[n];return t}return e}function Be(e,t){return e?[...new Set([].concat(e,t))]:t}function Pn(e,t){return e?Oe(Object.create(null),e,t):t}function fi(e,t){return e?ne(e)&&ne(t)?[...new Set([...e,...t])]:Oe(Object.create(null),li(e),li(t??{})):t}function If(e,t){if(!e)return t;if(!t)return e;const n=Oe(Object.create(null),e);for(const s in t)n[s]=Be(e[s],t[s]);return n}function pl(){return{app:null,config:{isNativeTag:lu,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 Mf=0;function Hf(e,t){return function(s,r=null){se(s)||(s=Oe({},s)),r!=null&&!we(r)&&(r=null);const o=pl(),i=new WeakSet;let a=!1;const c=o.app={_uid:Mf++,_component:s,_props:r,_container:null,_context:o,_instance:null,version:Al,get config(){return o.config},set config(l){},use(l,...p){return i.has(l)||(l&&se(l.install)?(i.add(l),l.install(c,...p)):se(l)&&(i.add(l),l(c,...p))),c},mixin(l){return o.mixins.includes(l)||o.mixins.push(l),c},component(l,p){return p?(o.components[l]=p,c):o.components[l]},directive(l,p){return p?(o.directives[l]=p,c):o.directives[l]},mount(l,p,u){if(!a){const d=Y(s,r);return d.appContext=o,u===!0?u="svg":u===!1&&(u=void 0),p&&t?t(d,l):e(d,l,u),a=!0,c._container=l,l.__vue_app__=c,Zs(d.component)||d.component.proxy}},unmount(){a&&(e(null,c._container),delete c._container.__vue_app__)},provide(l,p){return o.provides[l]=p,c},runWithContext(l){Fn=c;try{return l()}finally{Fn=null}}};return c}}let Fn=null;function dl(e,t){if(Re){let n=Re.provides;const s=Re.parent&&Re.parent.provides;s===n&&(n=Re.provides=Object.create(s)),n[e]=t}}function hn(e,t,n=!1){const s=Re||Ee;if(s||Fn){const r=s?s.parent==null?s.vnode.appContext&&s.vnode.appContext.provides:s.parent.provides:Fn._context.provides;if(r&&e in r)return r[e];if(arguments.length>1)return n&&se(t)?t.call(s&&s.proxy):t}}function hl(){return!!(Re||Ee||Fn)}function Bf(e,t,n,s=!1){const r={},o={};bs(o,Ys,1),e.propsDefaults=Object.create(null),ml(e,t,r,o);for(const i in e.propsOptions[0])i in r||(r[i]=void 0);n?e.props=s?r:Fa(r):e.type.props?e.props=r:e.props=o,e.attrs=o}function Df(e,t,n,s){const{props:r,attrs:o,vnode:{patchFlag:i}}=e,a=he(r),[c]=e.propsOptions;let l=!1;if((s||i>0)&&!(i&16)){if(i&8){const p=e.vnode.dynamicProps;for(let u=0;u<p.length;u++){let d=p[u];if(zs(e.emitsOptions,d))continue;const b=t[d];if(c)if(de(o,d))b!==o[d]&&(o[d]=b,l=!0);else{const y=pt(d);r[y]=Fo(c,a,y,b,e,!1)}else b!==o[d]&&(o[d]=b,l=!0)}}}else{ml(e,t,r,o)&&(l=!0);let p;for(const u in a)(!t||!de(t,u)&&((p=Zt(u))===u||!de(t,p)))&&(c?n&&(n[u]!==void 0||n[p]!==void 0)&&(r[u]=Fo(c,a,u,void 0,e,!0)):delete r[u]);if(o!==a)for(const u in o)(!t||!de(t,u))&&(delete o[u],l=!0)}l&&bt(e,"set","$attrs")}function ml(e,t,n,s){const[r,o]=e.propsOptions;let i=!1,a;if(t)for(let c in t){if(An(c))continue;const l=t[c];let p;r&&de(r,p=pt(c))?!o||!o.includes(p)?n[p]=l:(a||(a={}))[p]=l:zs(e.emitsOptions,c)||(!(c in s)||l!==s[c])&&(s[c]=l,i=!0)}if(o){const c=he(n),l=a||ke;for(let p=0;p<o.length;p++){const u=o[p];n[u]=Fo(r,c,u,l[u],e,!de(l,u))}}return i}function Fo(e,t,n,s,r,o){const i=e[n];if(i!=null){const a=de(i,"default");if(a&&s===void 0){const c=i.default;if(i.type!==Function&&!i.skipFactory&&se(c)){const{propsDefaults:l}=r;n in l?s=l[n]:(Ht(r),s=l[n]=c.call(null,t),$t())}else s=c}i[0]&&(o&&!a?s=!1:i[1]&&(s===""||s===Zt(n))&&(s=!0))}return s}function gl(e,t,n=!1){const s=t.propsCache,r=s.get(e);if(r)return r;const o=e.props,i={},a=[];let c=!1;if(!se(e)){const p=u=>{c=!0;const[d,b]=gl(u,t,!0);Oe(i,d),b&&a.push(...b)};!n&&t.mixins.length&&t.mixins.forEach(p),e.extends&&p(e.extends),e.mixins&&e.mixins.forEach(p)}if(!o&&!c)return we(e)&&s.set(e,ln),ln;if(ne(o))for(let p=0;p<o.length;p++){const u=pt(o[p]);pi(u)&&(i[u]=ke)}else if(o)for(const p in o){const u=pt(p);if(pi(u)){const d=o[p],b=i[u]=ne(d)||se(d)?{type:d}:Oe({},d);if(b){const y=mi(Boolean,b.type),T=mi(String,b.type);b[0]=y>-1,b[1]=T<0||y<T,(y>-1||de(b,"default"))&&a.push(u)}}}const l=[i,a];return we(e)&&s.set(e,l),l}function pi(e){return e[0]!=="$"}function di(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function hi(e,t){return di(e)===di(t)}function mi(e,t){return ne(t)?t.findIndex(n=>hi(n,e)):se(t)&&hi(t,e)?0:-1}const yl=e=>e[0]==="_"||e==="$stable",Ar=e=>ne(e)?e.map(Qe):[Qe(e)],Ff=(e,t,n)=>{if(t._n)return t;const s=ae((...r)=>Ar(t(...r)),n);return s._c=!1,s},_l=(e,t,n)=>{const s=e._ctx;for(const r in e){if(yl(r))continue;const o=e[r];if(se(o))t[r]=Ff(r,o,s);else if(o!=null){const i=Ar(o);t[r]=()=>i}}},bl=(e,t)=>{const n=Ar(t);e.slots.default=()=>n},Uf=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=he(t),bs(t,"_",n)):_l(t,e.slots={})}else e.slots={},t&&bl(e,t);bs(e.slots,Ys,1)},Gf=(e,t,n)=>{const{vnode:s,slots:r}=e;let o=!0,i=ke;if(s.shapeFlag&32){const a=t._;a?n&&a===1?o=!1:(Oe(r,t),!n&&a===1&&delete r._):(o=!t.$stable,_l(t,r)),i=t}else t&&(bl(e,t),i={default:1});if(o)for(const a in r)!yl(a)&&i[a]==null&&delete r[a]};function Ls(e,t,n,s,r=!1){if(ne(e)){e.forEach((d,b)=>Ls(d,t&&(ne(t)?t[b]:t),n,s,r));return}if(dn(s)&&!r)return;const o=s.shapeFlag&4?Zs(s.component)||s.component.proxy:s.el,i=r?null:o,{i:a,r:c}=e,l=t&&t.r,p=a.refs===ke?a.refs={}:a.refs,u=a.setupState;if(l!=null&&l!==c&&(Le(l)?(p[l]=null,de(u,l)&&(u[l]=null)):$e(l)&&(l.value=null)),se(c))Et(c,a,12,[i,p]);else{const d=Le(c),b=$e(c);if(d||b){const y=()=>{if(e.f){const T=d?de(u,c)?u[c]:p[c]:c.value;r?ne(T)&&ur(T,o):ne(T)?T.includes(o)||T.push(o):d?(p[c]=[o],de(u,c)&&(u[c]=p[c])):(c.value=[o],e.k&&(p[e.k]=c.value))}else d?(p[c]=i,de(u,c)&&(u[c]=i)):b&&(c.value=i,e.k&&(p[e.k]=i))};i?(y.id=-1,Fe(y,n)):y()}}}let kt=!1;const Wf=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",Vf=e=>e.namespaceURI.includes("MathML"),rs=e=>{if(Wf(e))return"svg";if(Vf(e))return"mathml"},is=e=>e.nodeType===8;function qf(e){const{mt:t,p:n,o:{patchProp:s,createText:r,nextSibling:o,parentNode:i,remove:a,insert:c,createComment:l}}=e,p=(h,v)=>{if(!v.hasChildNodes()){n(null,h,v),ks(),v._vnode=h;return}kt=!1,u(v.firstChild,h,null,null,null),ks(),v._vnode=h,kt&&console.error("Hydration completed but contains mismatches.")},u=(h,v,_,f,m,w=!1)=>{const g=is(h)&&h.data==="[",x=()=>T(h,v,_,f,m,g),{type:N,ref:P,shapeFlag:C,patchFlag:O}=v;let B=h.nodeType;v.el=h,O===-2&&(w=!1,v.dynamicChildren=null);let j=null;switch(N){case yn:B!==3?v.children===""?(c(v.el=r(""),i(h),h),j=h):j=x():(h.data!==v.children&&(kt=!0,h.data=v.children),j=o(h));break;case rt:k(h)?(j=o(h),S(v.el=h.content.firstChild,h,_)):B!==8||g?j=x():j=o(h);break;case mn:if(g&&(h=o(h),B=h.nodeType),B===1||B===3){j=h;const K=!v.children.length;for(let q=0;q<v.staticCount;q++)K&&(v.children+=j.nodeType===1?j.outerHTML:j.data),q===v.staticCount-1&&(v.anchor=j),j=o(j);return g?o(j):j}else x();break;case Ne:g?j=y(h,v,_,f,m,w):j=x();break;default:if(C&1)(B!==1||v.type.toLowerCase()!==h.tagName.toLowerCase())&&!k(h)?j=x():j=d(h,v,_,f,m,w);else if(C&6){v.slotScopeIds=m;const K=i(h);if(g?j=L(h):is(h)&&h.data==="teleport start"?j=L(h,h.data,"teleport end"):j=o(h),t(v,K,null,_,f,rs(K),w),dn(v)){let q;g?(q=Y(Ne),q.anchor=j?j.previousSibling:K.lastChild):q=h.nodeType===3?ue(""):Y("div"),q.el=h,v.component.subTree=q}}else C&64?B!==8?j=x():j=v.type.hydrate(h,v,_,f,m,w,e,b):C&128&&(j=v.type.hydrate(h,v,_,f,rs(i(h)),m,w,e,u))}return P!=null&&Ls(P,null,f,v),j},d=(h,v,_,f,m,w)=>{w=w||!!v.dynamicChildren;const{type:g,props:x,patchFlag:N,shapeFlag:P,dirs:C,transition:O}=v,B=g==="input"||g==="option";if(B||N!==-1){C&&at(v,null,_,"created");let j=!1;if(k(h)){j=wl(f,O)&&_&&_.vnode.props&&_.vnode.props.appear;const q=h.content.firstChild;j&&O.beforeEnter(q),S(q,h,_),v.el=h=q}if(P&16&&!(x&&(x.innerHTML||x.textContent))){let q=b(h.firstChild,v,h,_,f,m,w);for(;q;){kt=!0;const oe=q;q=q.nextSibling,a(oe)}}else P&8&&h.textContent!==v.children&&(kt=!0,h.textContent=v.children);if(x)if(B||!w||N&48)for(const q in x)(B&&(q.endsWith("value")||q==="indeterminate")||Jn(q)&&!An(q)||q[0]===".")&&s(h,q,null,x[q],void 0,void 0,_);else x.onClick&&s(h,"onClick",null,x.onClick,void 0,void 0,_);let K;(K=x&&x.onVnodeBeforeMount)&&Xe(K,_,v),C&&at(v,null,_,"beforeMount"),((K=x&&x.onVnodeMounted)||C||j)&&sl(()=>{K&&Xe(K,_,v),j&&O.enter(h),C&&at(v,null,_,"mounted")},f)}return h.nextSibling},b=(h,v,_,f,m,w,g)=>{g=g||!!v.dynamicChildren;const x=v.children,N=x.length;for(let P=0;P<N;P++){const C=g?x[P]:x[P]=Qe(x[P]);if(h)h=u(h,C,f,m,w,g);else{if(C.type===yn&&!C.children)continue;kt=!0,n(null,C,_,null,f,m,rs(_),w)}}return h},y=(h,v,_,f,m,w)=>{const{slotScopeIds:g}=v;g&&(m=m?m.concat(g):g);const x=i(h),N=b(o(h),v,x,_,f,m,w);return N&&is(N)&&N.data==="]"?o(v.anchor=N):(kt=!0,c(v.anchor=l("]"),x,N),N)},T=(h,v,_,f,m,w)=>{if(kt=!0,v.el=null,w){const N=L(h);for(;;){const P=o(h);if(P&&P!==N)a(P);else break}}const g=o(h),x=i(h);return a(h),n(null,v,x,g,_,f,rs(x),m),g},L=(h,v="[",_="]")=>{let f=0;for(;h;)if(h=o(h),h&&is(h)&&(h.data===v&&f++,h.data===_)){if(f===0)return o(h);f--}return h},S=(h,v,_)=>{const f=v.parentNode;f&&f.replaceChild(h,v);let m=_;for(;m;)m.vnode.el===v&&(m.vnode.el=m.subTree.el=h),m=m.parent},k=h=>h.nodeType===1&&h.tagName.toLowerCase()==="template";return[p,u]}const Fe=sl;function zf(e){return vl(e)}function Kf(e){return vl(e,qf)}function vl(e,t){const n=Na();n.__VUE__=!0;const{insert:s,remove:r,patchProp:o,createElement:i,createText:a,createComment:c,setText:l,setElementText:p,parentNode:u,nextSibling:d,setScopeId:b=Ye,insertStaticContent:y}=e,T=(A,R,E,I=null,M=null,W=null,z=void 0,U=null,G=!!R.dynamicChildren)=>{if(A===R)return;A&&!At(A,R)&&(I=F(A),le(A,M,W,!0),A=null),R.patchFlag===-2&&(G=!1,R.dynamicChildren=null);const{type:D,ref:J,shapeFlag:$}=R;switch(D){case yn:L(A,R,E,I);break;case rt:S(A,R,E,I);break;case mn:A==null&&k(R,E,I,z);break;case Ne:P(A,R,E,I,M,W,z,U,G);break;default:$&1?_(A,R,E,I,M,W,z,U,G):$&6?C(A,R,E,I,M,W,z,U,G):($&64||$&128)&&D.process(A,R,E,I,M,W,z,U,G,fe)}J!=null&&M&&Ls(J,A&&A.ref,W,R||A,!R)},L=(A,R,E,I)=>{if(A==null)s(R.el=a(R.children),E,I);else{const M=R.el=A.el;R.children!==A.children&&l(M,R.children)}},S=(A,R,E,I)=>{A==null?s(R.el=c(R.children||""),E,I):R.el=A.el},k=(A,R,E,I)=>{[A.el,A.anchor]=y(A.children,R,E,I,A.el,A.anchor)},h=({el:A,anchor:R},E,I)=>{let M;for(;A&&A!==R;)M=d(A),s(A,E,I),A=M;s(R,E,I)},v=({el:A,anchor:R})=>{let E;for(;A&&A!==R;)E=d(A),r(A),A=E;r(R)},_=(A,R,E,I,M,W,z,U,G)=>{R.type==="svg"?z="svg":R.type==="math"&&(z="mathml"),A==null?f(R,E,I,M,W,z,U,G):g(A,R,M,W,z,U,G)},f=(A,R,E,I,M,W,z,U)=>{let G,D;const{props:J,shapeFlag:$,transition:H,dirs:Q}=A;if(G=A.el=i(A.type,W,J&&J.is,J),$&8?p(G,A.children):$&16&&w(A.children,G,null,I,M,mo(A,W),z,U),Q&&at(A,null,I,"created"),m(G,A,A.scopeId,z,I),J){for(const Z in J)Z!=="value"&&!An(Z)&&o(G,Z,null,J[Z],W,A.children,I,M,ve);"value"in J&&o(G,"value",null,J.value,W),(D=J.onVnodeBeforeMount)&&Xe(D,I,A)}Q&&at(A,null,I,"beforeMount");const te=wl(M,H);te&&H.beforeEnter(G),s(G,R,E),((D=J&&J.onVnodeMounted)||te||Q)&&Fe(()=>{D&&Xe(D,I,A),te&&H.enter(G),Q&&at(A,null,I,"mounted")},M)},m=(A,R,E,I,M)=>{if(E&&b(A,E),I)for(let W=0;W<I.length;W++)b(A,I[W]);if(M){let W=M.subTree;if(R===W){const z=M.vnode;m(A,z,z.scopeId,z.slotScopeIds,M.parent)}}},w=(A,R,E,I,M,W,z,U,G=0)=>{for(let D=G;D<A.length;D++){const J=A[D]=U?Lt(A[D]):Qe(A[D]);T(null,J,R,E,I,M,W,z,U)}},g=(A,R,E,I,M,W,z)=>{const U=R.el=A.el;let{patchFlag:G,dynamicChildren:D,dirs:J}=R;G|=A.patchFlag&16;const $=A.props||ke,H=R.props||ke;let Q;if(E&&Ft(E,!1),(Q=H.onVnodeBeforeUpdate)&&Xe(Q,E,R,A),J&&at(R,A,E,"beforeUpdate"),E&&Ft(E,!0),D?x(A.dynamicChildren,D,U,E,I,mo(R,M),W):z||q(A,R,U,null,E,I,mo(R,M),W,!1),G>0){if(G&16)N(U,R,$,H,E,I,M);else if(G&2&&$.class!==H.class&&o(U,"class",null,H.class,M),G&4&&o(U,"style",$.style,H.style,M),G&8){const te=R.dynamicProps;for(let Z=0;Z<te.length;Z++){const ee=te[Z],ce=$[ee],Ce=H[ee];(Ce!==ce||ee==="value")&&o(U,ee,ce,Ce,M,A.children,E,I,ve)}}G&1&&A.children!==R.children&&p(U,R.children)}else!z&&D==null&&N(U,R,$,H,E,I,M);((Q=H.onVnodeUpdated)||J)&&Fe(()=>{Q&&Xe(Q,E,R,A),J&&at(R,A,E,"updated")},I)},x=(A,R,E,I,M,W,z)=>{for(let U=0;U<R.length;U++){const G=A[U],D=R[U],J=G.el&&(G.type===Ne||!At(G,D)||G.shapeFlag&70)?u(G.el):E;T(G,D,J,null,I,M,W,z,!0)}},N=(A,R,E,I,M,W,z)=>{if(E!==I){if(E!==ke)for(const U in E)!An(U)&&!(U in I)&&o(A,U,E[U],null,z,R.children,M,W,ve);for(const U in I){if(An(U))continue;const G=I[U],D=E[U];G!==D&&U!=="value"&&o(A,U,D,G,z,R.children,M,W,ve)}"value"in I&&o(A,"value",E.value,I.value,z)}},P=(A,R,E,I,M,W,z,U,G)=>{const D=R.el=A?A.el:a(""),J=R.anchor=A?A.anchor:a("");let{patchFlag:$,dynamicChildren:H,slotScopeIds:Q}=R;Q&&(U=U?U.concat(Q):Q),A==null?(s(D,E,I),s(J,E,I),w(R.children,E,J,M,W,z,U,G)):$>0&&$&64&&H&&A.dynamicChildren?(x(A.dynamicChildren,H,E,M,W,z,U),(R.key!=null||M&&R===M.subTree)&&xl(A,R,!0)):q(A,R,E,J,M,W,z,U,G)},C=(A,R,E,I,M,W,z,U,G)=>{R.slotScopeIds=U,A==null?R.shapeFlag&512?M.ctx.activate(R,E,I,z,G):O(R,E,I,M,W,z,G):B(A,R,G)},O=(A,R,E,I,M,W,z)=>{const U=A.component=tp(A,I,M);if(Sr(A)&&(U.ctx.renderer=fe),np(U),U.asyncDep){if(M&&M.registerDep(U,j),!A.el){const G=U.subTree=Y(rt);S(null,G,R,E)}}else j(U,A,R,E,M,W,z)},B=(A,R,E)=>{const I=R.component=A.component;if(lf(A,R,E))if(I.asyncDep&&!I.asyncResolved){K(I,R,E);return}else I.next=R,ef(I.update),I.effect.dirty=!0,I.update();else R.el=A.el,I.vnode=R},j=(A,R,E,I,M,W,z)=>{const U=()=>{if(A.isMounted){let{next:J,bu:$,u:H,parent:Q,vnode:te}=A;{const qe=kl(A);if(qe){J&&(J.el=te.el,K(A,J,z)),qe.asyncDep.then(()=>{A.isUnmounted||U()});return}}let Z=J,ee;Ft(A,!1),J?(J.el=te.el,K(A,J,z)):J=te,$&&ds($),(ee=J.props&&J.props.onVnodeBeforeUpdate)&&Xe(ee,Q,J,te),Ft(A,!0);const ce=fo(A),Ce=A.subTree;A.subTree=ce,T(Ce,ce,u(Ce.el),F(Ce),A,M,W),J.el=ce.el,Z===null&&xr(A,ce.el),H&&Fe(H,M),(ee=J.props&&J.props.onVnodeUpdated)&&Fe(()=>Xe(ee,Q,J,te),M)}else{let J;const{el:$,props:H}=R,{bm:Q,m:te,parent:Z}=A,ee=dn(R);if(Ft(A,!1),Q&&ds(Q),!ee&&(J=H&&H.onVnodeBeforeMount)&&Xe(J,Z,R),Ft(A,!0),$&&tt){const ce=()=>{A.subTree=fo(A),tt($,A.subTree,A,M,null)};ee?R.type.__asyncLoader().then(()=>!A.isUnmounted&&ce()):ce()}else{const ce=A.subTree=fo(A);T(null,ce,E,I,A,M,W),R.el=ce.el}if(te&&Fe(te,M),!ee&&(J=H&&H.onVnodeMounted)){const ce=R;Fe(()=>Xe(J,Z,ce),M)}(R.shapeFlag&256||Z&&dn(Z.vnode)&&Z.vnode.shapeFlag&256)&&A.a&&Fe(A.a,M),A.isMounted=!0,R=E=I=null}},G=A.effect=new dr(U,Ye,()=>qs(D),A.scope),D=A.update=()=>{G.dirty&&G.run()};D.id=A.uid,Ft(A,!0),D()},K=(A,R,E)=>{R.component=A;const I=A.vnode.props;A.vnode=R,A.next=null,Df(A,R.props,I,E),Gf(A,R.children,E),en(),oi(A),tn()},q=(A,R,E,I,M,W,z,U,G=!1)=>{const D=A&&A.children,J=A?A.shapeFlag:0,$=R.children,{patchFlag:H,shapeFlag:Q}=R;if(H>0){if(H&128){be(D,$,E,I,M,W,z,U,G);return}else if(H&256){oe(D,$,E,I,M,W,z,U,G);return}}Q&8?(J&16&&ve(D,M,W),$!==D&&p(E,$)):J&16?Q&16?be(D,$,E,I,M,W,z,U,G):ve(D,M,W,!0):(J&8&&p(E,""),Q&16&&w($,E,I,M,W,z,U,G))},oe=(A,R,E,I,M,W,z,U,G)=>{A=A||ln,R=R||ln;const D=A.length,J=R.length,$=Math.min(D,J);let H;for(H=0;H<$;H++){const Q=R[H]=G?Lt(R[H]):Qe(R[H]);T(A[H],Q,E,null,M,W,z,U,G)}D>J?ve(A,M,W,!0,!1,$):w(R,E,I,M,W,z,U,G,$)},be=(A,R,E,I,M,W,z,U,G)=>{let D=0;const J=R.length;let $=A.length-1,H=J-1;for(;D<=$&&D<=H;){const Q=A[D],te=R[D]=G?Lt(R[D]):Qe(R[D]);if(At(Q,te))T(Q,te,E,null,M,W,z,U,G);else break;D++}for(;D<=$&&D<=H;){const Q=A[$],te=R[H]=G?Lt(R[H]):Qe(R[H]);if(At(Q,te))T(Q,te,E,null,M,W,z,U,G);else break;$--,H--}if(D>$){if(D<=H){const Q=H+1,te=Q<J?R[Q].el:I;for(;D<=H;)T(null,R[D]=G?Lt(R[D]):Qe(R[D]),E,te,M,W,z,U,G),D++}}else if(D>H)for(;D<=$;)le(A[D],M,W,!0),D++;else{const Q=D,te=D,Z=new Map;for(D=te;D<=H;D++){const ze=R[D]=G?Lt(R[D]):Qe(R[D]);ze.key!=null&&Z.set(ze.key,D)}let ee,ce=0;const Ce=H-te+1;let qe=!1,Nn=0;const Sn=new Array(Ce);for(D=0;D<Ce;D++)Sn[D]=0;for(D=Q;D<=$;D++){const ze=A[D];if(ce>=Ce){le(ze,M,W,!0);continue}let it;if(ze.key!=null)it=Z.get(ze.key);else for(ee=te;ee<=H;ee++)if(Sn[ee-te]===0&&At(ze,R[ee])){it=ee;break}it===void 0?le(ze,M,W,!0):(Sn[it-te]=D+1,it>=Nn?Nn=it:qe=!0,T(ze,R[it],E,null,M,W,z,U,G),ce++)}const zr=qe?Jf(Sn):ln;for(ee=zr.length-1,D=Ce-1;D>=0;D--){const ze=te+D,it=R[ze],Kr=ze+1<J?R[ze+1].el:I;Sn[D]===0?T(null,it,E,Kr,M,W,z,U,G):qe&&(ee<0||D!==zr[ee]?me(it,E,Kr,2):ee--)}}},me=(A,R,E,I,M=null)=>{const{el:W,type:z,transition:U,children:G,shapeFlag:D}=A;if(D&6){me(A.component.subTree,R,E,I);return}if(D&128){A.suspense.move(R,E,I);return}if(D&64){z.move(A,R,E,fe);return}if(z===Ne){s(W,R,E);for(let $=0;$<G.length;$++)me(G[$],R,E,I);s(A.anchor,R,E);return}if(z===mn){h(A,R,E);return}if(I!==2&&D&1&&U)if(I===0)U.beforeEnter(W),s(W,R,E),Fe(()=>U.enter(W),M);else{const{leave:$,delayLeave:H,afterLeave:Q}=U,te=()=>s(W,R,E),Z=()=>{$(W,()=>{te(),Q&&Q()})};H?H(W,te,Z):Z()}else s(W,R,E)},le=(A,R,E,I=!1,M=!1)=>{const{type:W,props:z,ref:U,children:G,dynamicChildren:D,shapeFlag:J,patchFlag:$,dirs:H}=A;if(U!=null&&Ls(U,null,E,A,!0),J&256){R.ctx.deactivate(A);return}const Q=J&1&&H,te=!dn(A);let Z;if(te&&(Z=z&&z.onVnodeBeforeUnmount)&&Xe(Z,R,A),J&6)_e(A.component,E,I);else{if(J&128){A.suspense.unmount(E,I);return}Q&&at(A,null,R,"beforeUnmount"),J&64?A.type.remove(A,R,E,M,fe,I):D&&(W!==Ne||$>0&&$&64)?ve(D,R,E,!1,!0):(W===Ne&&$&384||!M&&J&16)&&ve(G,R,E),I&&ge(A)}(te&&(Z=z&&z.onVnodeUnmounted)||Q)&&Fe(()=>{Z&&Xe(Z,R,A),Q&&at(A,null,R,"unmounted")},E)},ge=A=>{const{type:R,el:E,anchor:I,transition:M}=A;if(R===Ne){ye(E,I);return}if(R===mn){v(A);return}const W=()=>{r(E),M&&!M.persisted&&M.afterLeave&&M.afterLeave()};if(A.shapeFlag&1&&M&&!M.persisted){const{leave:z,delayLeave:U}=M,G=()=>z(E,W);U?U(A.el,W,G):G()}else W()},ye=(A,R)=>{let E;for(;A!==R;)E=d(A),r(A),A=E;r(R)},_e=(A,R,E)=>{const{bum:I,scope:M,update:W,subTree:z,um:U}=A;I&&ds(I),M.stop(),W&&(W.active=!1,le(z,A,R,E)),U&&Fe(U,R),Fe(()=>{A.isUnmounted=!0},R),R&&R.pendingBranch&&!R.isUnmounted&&A.asyncDep&&!A.asyncResolved&&A.suspenseId===R.pendingId&&(R.deps--,R.deps===0&&R.resolve())},ve=(A,R,E,I=!1,M=!1,W=0)=>{for(let z=W;z<A.length;z++)le(A[z],R,E,I,M)},F=A=>A.shapeFlag&6?F(A.component.subTree):A.shapeFlag&128?A.suspense.next():d(A.anchor||A.el),xe=(A,R,E)=>{A==null?R._vnode&&le(R._vnode,null,null,!0):T(R._vnode||null,A,R,null,null,null,E),oi(),ks(),R._vnode=A},fe={p:T,um:le,m:me,r:ge,mt:O,mc:w,pc:q,pbc:x,n:F,o:e};let Ie,tt;return t&&([Ie,tt]=t(fe)),{render:xe,hydrate:Ie,createApp:Hf(xe,Ie)}}function mo({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function Ft({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function wl(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function xl(e,t,n=!1){const s=e.children,r=t.children;if(ne(s)&&ne(r))for(let o=0;o<s.length;o++){const i=s[o];let a=r[o];a.shapeFlag&1&&!a.dynamicChildren&&((a.patchFlag<=0||a.patchFlag===32)&&(a=r[o]=Lt(r[o]),a.el=i.el),n||xl(i,a)),a.type===yn&&(a.el=i.el)}}function Jf(e){const t=e.slice(),n=[0];let s,r,o,i,a;const c=e.length;for(s=0;s<c;s++){const l=e[s];if(l!==0){if(r=n[n.length-1],e[r]<l){t[s]=r,n.push(s);continue}for(o=0,i=n.length-1;o<i;)a=o+i>>1,e[n[a]]<l?o=a+1:i=a;l<e[n[o]]&&(o>0&&(t[s]=n[o-1]),n[o]=s)}}for(o=n.length,i=n[o-1];o-- >0;)n[o]=i,i=t[i];return n}function kl(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:kl(t)}const Xf=e=>e.__isTeleport,Ne=Symbol.for("v-fgt"),yn=Symbol.for("v-txt"),rt=Symbol.for("v-cmt"),mn=Symbol.for("v-stc"),Cn=[];let Ze=null;function X(e=!1){Cn.push(Ze=e?null:[])}function Nl(){Cn.pop(),Ze=Cn[Cn.length-1]||null}let _n=1;function gi(e){_n+=e}function Sl(e){return e.dynamicChildren=_n>0?Ze||ln:null,Nl(),_n>0&&Ze&&Ze.push(e),e}function re(e,t,n,s,r,o){return Sl(V(e,t,n,s,r,o,!0))}function Se(e,t,n,s,r){return Sl(Y(e,t,n,s,r,!0))}function Un(e){return e?e.__v_isVNode===!0:!1}function At(e,t){return e.type===t.type&&e.key===t.key}const Ys="__vInternal",Tl=({key:e})=>e??null,hs=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?Le(e)||$e(e)||se(e)?{i:Ee,r:e,k:t,f:!!n}:e:null);function V(e,t=null,n=null,s=0,r=null,o=e===Ne?0:1,i=!1,a=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Tl(t),ref:t&&hs(t),scopeId:Ks,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:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:Ee};return a?(Cr(c,n),o&128&&e.normalize(c)):n&&(c.shapeFlag|=Le(n)?8:16),_n>0&&!i&&Ze&&(c.patchFlag>0||o&6)&&c.patchFlag!==32&&Ze.push(c),c}const Y=Qf;function Qf(e,t=null,n=null,s=0,r=null,o=!1){if((!e||e===tl)&&(e=rt),Un(e)){const a=bn(e,t,!0);return n&&Cr(a,n),_n>0&&!o&&Ze&&(a.shapeFlag&6?Ze[Ze.indexOf(e)]=a:Ze.push(a)),a.patchFlag|=-2,a}if(ap(e)&&(e=e.__vccOpts),t){t=Rr(t);let{class:a,style:c}=t;a&&!Le(a)&&(t.class=Pe(a)),we(c)&&(Ua(c)&&!ne(c)&&(c=Oe({},c)),t.style=zt(c))}const i=Le(e)?1:uf(e)?128:Xf(e)?64:we(e)?4:se(e)?2:0;return V(e,t,n,s,r,i,o,!0)}function Rr(e){return e?Ua(e)||Ys in e?Oe({},e):e:null}function bn(e,t,n=!1){const{props:s,ref:r,patchFlag:o,children:i}=e,a=t?Er(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&Tl(a),ref:t&&t.ref?n&&r?ne(r)?r.concat(hs(t)):[r,hs(t)]:hs(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:i,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==Ne?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&&bn(e.ssContent),ssFallback:e.ssFallback&&bn(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function ue(e=" ",t=0){return Y(yn,null,e,t)}function Yf(e,t){const n=Y(mn,null,e);return n.staticCount=t,n}function je(e="",t=!1){return t?(X(),Se(rt,null,e)):Y(rt,null,e)}function Qe(e){return e==null||typeof e=="boolean"?Y(rt):ne(e)?Y(Ne,null,e.slice()):typeof e=="object"?Lt(e):Y(yn,null,String(e))}function Lt(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:bn(e)}function Cr(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(ne(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Cr(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(Ys in t)?t._ctx=Ee:r===3&&Ee&&(Ee.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else se(t)?(t={default:t,_ctx:Ee},n=32):(t=String(t),s&64?(n=16,t=[ue(t)]):n=8);e.children=t,e.shapeFlag|=n}function Er(...e){const t={};for(let n=0;n<e.length;n++){const s=e[n];for(const r in s)if(r==="class")t.class!==s.class&&(t.class=Pe([t.class,s.class]));else if(r==="style")t.style=zt([t.style,s.style]);else if(Jn(r)){const o=t[r],i=s[r];i&&o!==i&&!(ne(o)&&o.includes(i))&&(t[r]=o?[].concat(o,i):i)}else r!==""&&(t[r]=s[r])}return t}function Xe(e,t,n,s=null){st(e,t,7,[n,s])}const Zf=pl();let ep=0;function tp(e,t,n){const s=e.type,r=(t?t.appContext:e.appContext)||Zf,o={uid:ep++,vnode:e,type:s,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new Pa(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:gl(s,r),emitsOptions:Ya(s,r),emit:null,emitted:null,propsDefaults:ke,inheritAttrs:s.inheritAttrs,ctx:ke,data:ke,props:ke,attrs:ke,slots:ke,refs:ke,setupState:ke,setupContext:null,attrsProxy:null,slotsProxy: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=nf.bind(null,o),e.ce&&e.ce(o),o}let Re=null;const wn=()=>Re||Ee;let $r,Uo;{const e=Na(),t=(n,s)=>{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),o=>{r.length>1?r.forEach(i=>i(o)):r[0](o)}};$r=t("__VUE_INSTANCE_SETTERS__",n=>Re=n),Uo=t("__VUE_SSR_SETTERS__",n=>Qn=n)}const Ht=e=>{$r(e),e.scope.on()},$t=()=>{Re&&Re.scope.off(),$r(null)};function Ll(e){return e.vnode.shapeFlag&4}let Qn=!1;function np(e,t=!1){t&&Uo(t);const{props:n,children:s}=e.vnode,r=Ll(e);Bf(e,n,r,t),Uf(e,s);const o=r?sp(e,t):void 0;return t&&Uo(!1),o}function sp(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ga(new Proxy(e.ctx,Rf));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?rp(e):null;Ht(e),en();const o=Et(s,e,0,[e.props,r]);if(tn(),$t(),fr(o)){if(o.then($t,$t),t)return o.then(i=>{Go(e,i,t)}).catch(i=>{vn(i,e,0)});e.asyncDep=o}else Go(e,o,t)}else Pl(e,t)}function Go(e,t,n){se(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:we(t)&&(e.setupState=za(t)),Pl(e,n)}let yi;function Pl(e,t,n){const s=e.type;if(!e.render){if(!t&&yi&&!s.render){const r=s.template||Pr(e).template;if(r){const{isCustomElement:o,compilerOptions:i}=e.appContext.config,{delimiters:a,compilerOptions:c}=s,l=Oe(Oe({isCustomElement:o,delimiters:a},i),c);s.render=yi(r,l)}}e.render=s.render||Ye}{Ht(e),en();try{Ef(e)}finally{tn(),$t()}}}function op(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return We(e,"get","$attrs"),t[n]}}))}function rp(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return op(e)},slots:e.slots,emit:e.emit,expose:t}}function Zs(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(za(Ga(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Rn)return Rn[n](e)},has(t,n){return n in t||n in Rn}}))}function ip(e,t=!0){return se(e)?e.displayName||e.name:e.name||t&&e.__name}function ap(e){return se(e)&&"__vccOpts"in e}const Je=(e,t)=>Vu(e,t,Qn);function Ps(e,t,n){const s=arguments.length;return s===2?we(t)&&!ne(t)?Un(t)?Y(e,null,[t]):Y(e,t):Y(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&Un(n)&&(n=[n]),Y(e,t,n))}const Al="3.4.5",lp="http://www.w3.org/2000/svg",cp="http://www.w3.org/1998/Math/MathML",Pt=typeof document<"u"?document:null,_i=Pt&&Pt.createElement("template"),up={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?Pt.createElementNS(lp,e):t==="mathml"?Pt.createElementNS(cp,e):Pt.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Pt.createTextNode(e),createComment:e=>Pt.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Pt.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,o){const i=n?n.previousSibling:t.lastChild;if(r&&(r===o||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===o||!(r=r.nextSibling)););else{_i.innerHTML=s==="svg"?`<svg>${e}</svg>`:s==="mathml"?`<math>${e}</math>`:e;const a=_i.content;if(s==="svg"||s==="mathml"){const c=a.firstChild;for(;c.firstChild;)a.appendChild(c.firstChild);a.removeChild(c)}t.insertBefore(a,n)}return[i?i.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},fp=Symbol("_vtc");function pp(e,t,n){const s=e[fp];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const dp=Symbol("_vod"),Rl=Symbol("");function C0(e){const t=wn();if(!t)return;const n=t.ut=(r=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(o=>Vo(o,r))},s=()=>{const r=e(t.proxy);Wo(t.subTree,r),n(r)};vf(s),Qs(()=>{const r=new MutationObserver(s);r.observe(t.subTree.el.parentNode,{childList:!0}),Lr(()=>r.disconnect())})}function Wo(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{Wo(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Vo(e.el,t);else if(e.type===Ne)e.children.forEach(n=>Wo(n,t));else if(e.type===mn){let{el:n,anchor:s}=e;for(;n&&(Vo(n,t),n!==s);)n=n.nextSibling}}function Vo(e,t){if(e.nodeType===1){const n=e.style;let s="";for(const r in t)n.setProperty(`--${r}`,t[r]),s+=`--${r}: ${t[r]};`;n[Rl]=s}}function hp(e,t,n){const s=e.style,r=Le(n);if(n&&!r){if(t&&!Le(t))for(const o in t)n[o]==null&&qo(s,o,"");for(const o in n)qo(s,o,n[o])}else{const o=s.display;if(r){if(t!==n){const i=s[Rl];i&&(n+=";"+i),s.cssText=n}}else t&&e.removeAttribute("style");dp in e&&(s.display=o)}}const bi=/\s*!important$/;function qo(e,t,n){if(ne(n))n.forEach(s=>qo(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=mp(e,t);bi.test(n)?e.setProperty(Zt(s),n.replace(bi,""),"important"):e[s]=n}}const vi=["Webkit","Moz","ms"],go={};function mp(e,t){const n=go[t];if(n)return n;let s=pt(t);if(s!=="filter"&&s in e)return go[t]=s;s=Ws(s);for(let r=0;r<vi.length;r++){const o=vi[r]+s;if(o in e)return go[t]=o}return t}const wi="http://www.w3.org/1999/xlink";function gp(e,t,n,s,r){if(s&&t.startsWith("xlink:"))n==null?e.removeAttributeNS(wi,t.slice(6,t.length)):e.setAttributeNS(wi,t,n);else{const o=vu(t);n==null||o&&!Ta(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}function yp(e,t,n,s,r,o,i){if(t==="innerHTML"||t==="textContent"){s&&i(s,r,o),e[t]=n??"";return}const a=e.tagName;if(t==="value"&&a!=="PROGRESS"&&!a.includes("-")){e._value=n;const l=a==="OPTION"?e.getAttribute("value"):e.value,p=n??"";l!==p&&(e.value=p),n==null&&e.removeAttribute(t);return}let c=!1;if(n===""||n==null){const l=typeof e[t];l==="boolean"?n=Ta(n):n==null&&l==="string"?(n="",c=!0):l==="number"&&(n=0,c=!0)}try{e[t]=n}catch{}c&&e.removeAttribute(t)}function Cl(e,t,n,s){e.addEventListener(t,n,s)}function _p(e,t,n,s){e.removeEventListener(t,n,s)}const xi=Symbol("_vei");function bp(e,t,n,s,r=null){const o=e[xi]||(e[xi]={}),i=o[t];if(s&&i)i.value=s;else{const[a,c]=vp(t);if(s){const l=o[t]=kp(s,r);Cl(e,a,l,c)}else i&&(_p(e,a,i,c),o[t]=void 0)}}const ki=/(?:Once|Passive|Capture)$/;function vp(e){let t;if(ki.test(e)){t={};let s;for(;s=e.match(ki);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):Zt(e.slice(2)),t]}let yo=0;const wp=Promise.resolve(),xp=()=>yo||(wp.then(()=>yo=0),yo=Date.now());function kp(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;st(Np(s,n.value),t,5,[s])};return n.value=e,n.attached=xp(),n}function Np(e,t){if(ne(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Ni=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,Sp=(e,t,n,s,r,o,i,a,c)=>{const l=r==="svg";t==="class"?pp(e,s,l):t==="style"?hp(e,n,s):Jn(t)?cr(t)||bp(e,t,n,s,i):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Tp(e,t,s,l))?yp(e,t,s,o,i,a,c):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),gp(e,t,s,l))};function Tp(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Ni(t)&&se(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return Ni(t)&&Le(n)?!1:t in e}const Si=e=>{const t=e.props["onUpdate:modelValue"]||!1;return ne(t)?n=>ds(t,n):t},_o=Symbol("_assign"),Lp={created(e,{value:t},n){e.checked=vs(t,n.props.value),e[_o]=Si(n),Cl(e,"change",()=>{e[_o](Pp(e))})},beforeUpdate(e,{value:t,oldValue:n},s){e[_o]=Si(s),t!==n&&(e.checked=vs(t,s.props.value))}};function Pp(e){return"_value"in e?e._value:e.value}const Ap={esc:"escape",space:" ",up:"arrow-up",left:"arrow-left",right:"arrow-right",down:"arrow-down",delete:"backspace"},Rp=(e,t)=>{const n=e._withKeys||(e._withKeys={}),s=t.join(".");return n[s]||(n[s]=r=>{if(!("key"in r))return;const o=Zt(r.key);if(t.some(i=>i===o||Ap[i]===o))return e(r)})},El=Oe({patchProp:Sp},up);let En,Ti=!1;function Cp(){return En||(En=zf(El))}function Ep(){return En=Ti?En:Kf(El),Ti=!0,En}const $l=(...e)=>{const t=Cp().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Ol(s);if(!r)return;const o=t._component;!se(o)&&!o.render&&!o.template&&(o.template=r.innerHTML),r.innerHTML="";const i=n(r,!1,jl(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),i},t},$p=(...e)=>{const t=Ep().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Ol(s);if(r)return n(r,!0,jl(r))},t};function jl(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Ol(e){return Le(e)?document.querySelector(e):e}const jp=/#/g,Op=/&/g,Ip=/=/g,jr=/\+/g,Mp=/%5e/gi,Hp=/%60/gi,Bp=/%7c/gi,Dp=/%20/gi;function Fp(e){return encodeURI(""+e).replace(Bp,"|")}function zo(e){return Fp(typeof e=="string"?e:JSON.stringify(e)).replace(jr,"%2B").replace(Dp,"+").replace(jp,"%23").replace(Op,"%26").replace(Hp,"`").replace(Mp,"^")}function bo(e){return zo(e).replace(Ip,"%3D")}function As(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function Up(e){return As(e.replace(jr," "))}function Gp(e){return As(e.replace(jr," "))}function Or(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const n of e.split("&")){const s=n.match(/([^=]+)=?(.*)/)||[];if(s.length<2)continue;const r=Up(s[1]);if(r==="__proto__"||r==="constructor")continue;const o=Gp(s[2]||"");t[r]===void 0?t[r]=o:Array.isArray(t[r])?t[r].push(o):t[r]=[t[r],o]}return t}function Wp(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(n=>`${bo(e)}=${zo(n)}`).join("&"):`${bo(e)}=${zo(t)}`:bo(e)}function Il(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>Wp(t,e[t])).filter(Boolean).join("&")}const Vp=/^[\s\w\0+.-]{2,}:([/\\]{1,2})/,qp=/^[\s\w\0+.-]{2,}:([/\\]{2})?/,zp=/^([/\\]\s*){2,}[^/\\]/;function xn(e,t={}){return typeof t=="boolean"&&(t={acceptRelative:t}),t.strict?Vp.test(e):qp.test(e)||(t.acceptRelative?zp.test(e):!1)}const Kp=/^[\s\0]*(blob|data|javascript|vbscript):$/i;function Jp(e){return!!e&&Kp.test(e)}const Xp=/\/$|\/\?|\/#/;function Ko(e="",t){return t?Xp.test(e):e.endsWith("/")}function eo(e="",t){if(!t)return(Ko(e)?e.slice(0,-1):e)||"/";if(!Ko(e,!0))return e||"/";let n=e,s="";const r=e.indexOf("#");r>=0&&(n=e.slice(0,r),s=e.slice(r));const[o,...i]=n.split("?");return(o.slice(0,-1)||"/")+(i.length>0?`?${i.join("?")}`:"")+s}function Rs(e="",t){if(!t)return e.endsWith("/")?e:e+"/";if(Ko(e,!0))return e||"/";let n=e,s="";const r=e.indexOf("#");if(r>=0&&(n=e.slice(0,r),s=e.slice(r),!n))return s;const[o,...i]=n.split("?");return o+"/"+(i.length>0?`?${i.join("?")}`:"")+s}function Qp(e=""){return e.startsWith("/")}function Li(e=""){return Qp(e)?e:"/"+e}function Yp(e,t){if(Hl(t)||xn(e))return e;const n=eo(t);return e.startsWith(n)?e:Dt(n,e)}function Zp(e,t){if(Hl(t))return e;const n=eo(t);if(!e.startsWith(n))return e;const s=e.slice(n.length);return s[0]==="/"?s:"/"+s}function Ml(e,t){const n=kn(e),s={...Or(n.search),...t};return n.search=Il(s),Bl(n)}function Hl(e){return!e||e==="/"}function ed(e){return e&&e!=="/"}const td=/^\.?\//;function Dt(e,...t){let n=e||"";for(const s of t.filter(r=>ed(r)))if(n){const r=s.replace(td,"");n=Rs(n)+r}else n=s;return n}function nd(e,t,n={}){return n.trailingSlash||(e=Rs(e),t=Rs(t)),n.leadingSlash||(e=Li(e),t=Li(t)),n.encoding||(e=As(e),t=As(t)),e===t}function kn(e="",t){const n=e.match(/^[\s\0]*(blob:|data:|javascript:|vbscript:)(.*)/i);if(n){const[,u,d=""]=n;return{protocol:u.toLowerCase(),pathname:d,href:u+d,auth:"",host:"",search:"",hash:""}}if(!xn(e,{acceptRelative:!0}))return t?kn(t+e):Pi(e);const[,s="",r,o=""]=e.replace(/\\/g,"/").match(/^[\s\0]*([\w+.-]{2,}:)?\/\/([^/@]+@)?(.*)/)||[],[,i="",a=""]=o.match(/([^#/?]*)(.*)?/)||[],{pathname:c,search:l,hash:p}=Pi(a.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:s.toLowerCase(),auth:r?r.slice(0,Math.max(0,r.length-1)):"",host:i,pathname:c,search:l,hash:p}}function Pi(e=""){const[t="",n="",s=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:n,hash:s}}function Bl(e){const t=e.pathname||"",n=e.search?(e.search.startsWith("?")?"":"?")+e.search:"",s=e.hash||"",r=e.auth?e.auth+"@":"",o=e.host||"";return(e.protocol?e.protocol+"//":"")+r+o+t+n+s}const sd=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},Cs=sd().app,od=()=>Cs.baseURL,rd=()=>Cs.buildAssetsDir,Ir=(...e)=>Dt(Dl(),rd(),...e),Dl=(...e)=>{const t=Cs.cdnURL||Cs.baseURL;return e.length?Dt(t,...e):t};globalThis.__buildAssetsURL=Ir,globalThis.__publicAssetsURL=Dl;const id=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,ad=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,ld=/^\s*["[{]|^\s*-?\d{1,16}(\.\d{1,17})?([Ee][+-]?\d+)?\s*$/;function cd(e,t){if(e==="__proto__"||e==="constructor"&&t&&typeof t=="object"&&"prototype"in t){ud(e);return}return t}function ud(e){console.warn(`[destr] Dropping "${e}" key to prevent prototype pollution.`)}function Es(e,t={}){if(typeof e!="string")return e;const n=e.trim();if(e[0]==='"'&&e.at(-1)==='"'&&!e.includes("\\"))return n.slice(1,-1);if(n.length<=9){const s=n.toLowerCase();if(s==="true")return!0;if(s==="false")return!1;if(s==="undefined")return;if(s==="null")return null;if(s==="nan")return Number.NaN;if(s==="infinity")return Number.POSITIVE_INFINITY;if(s==="-infinity")return Number.NEGATIVE_INFINITY}if(!ld.test(e)){if(t.strict)throw new SyntaxError("[destr] Invalid JSON");return e}try{if(id.test(e)||ad.test(e)){if(t.strict)throw new Error("[destr] Possible prototype pollution");return JSON.parse(e,cd)}return JSON.parse(e)}catch(s){if(t.strict)throw s;return e}}class fd extends Error{constructor(t,n){super(t,n),this.name="FetchError",n!=null&&n.cause&&!this.cause&&(this.cause=n.cause)}}function pd(e){var c,l,p,u,d;const t=((c=e.error)==null?void 0:c.message)||((l=e.error)==null?void 0:l.toString())||"",n=((p=e.request)==null?void 0:p.method)||((u=e.options)==null?void 0:u.method)||"GET",s=((d=e.request)==null?void 0:d.url)||String(e.request)||"/",r=`[${n}] ${JSON.stringify(s)}`,o=e.response?`${e.response.status} ${e.response.statusText}`:"<no response>",i=`${r}: ${o}${t?` ${t}`:""}`,a=new fd(i,e.error?{cause:e.error}:void 0);for(const b of["request","options","response"])Object.defineProperty(a,b,{get(){return e[b]}});for(const[b,y]of[["data","_data"],["status","status"],["statusCode","status"],["statusText","statusText"],["statusMessage","statusText"]])Object.defineProperty(a,b,{get(){return e.response&&e.response[y]}});return a}const dd=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Ai(e="GET"){return dd.has(e.toUpperCase())}function hd(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.buffer?!1:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const md=new Set(["image/svg","application/xml","application/xhtml","application/html"]),gd=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function yd(e=""){if(!e)return"json";const t=e.split(";").shift()||"";return gd.test(t)?"json":md.has(t)||t.startsWith("text/")?"text":"blob"}function _d(e,t,n=globalThis.Headers){const s={...t,...e};if(t!=null&&t.params&&(e!=null&&e.params)&&(s.params={...t==null?void 0:t.params,...e==null?void 0:e.params}),t!=null&&t.query&&(e!=null&&e.query)&&(s.query={...t==null?void 0:t.query,...e==null?void 0:e.query}),t!=null&&t.headers&&(e!=null&&e.headers)){s.headers=new n((t==null?void 0:t.headers)||{});for(const[r,o]of new n((e==null?void 0:e.headers)||{}))s.headers.set(r,o)}return s}const bd=new Set([408,409,425,429,500,502,503,504]),vd=new Set([101,204,205,304]);function Fl(e={}){const{fetch:t=globalThis.fetch,Headers:n=globalThis.Headers,AbortController:s=globalThis.AbortController}=e;async function r(a){const c=a.error&&a.error.name==="AbortError"&&!a.options.timeout||!1;if(a.options.retry!==!1&&!c){let p;typeof a.options.retry=="number"?p=a.options.retry:p=Ai(a.options.method)?0:1;const u=a.response&&a.response.status||500;if(p>0&&(Array.isArray(a.options.retryStatusCodes)?a.options.retryStatusCodes.includes(u):bd.has(u))){const d=a.options.retryDelay||0;return d>0&&await new Promise(b=>setTimeout(b,d)),o(a.request,{...a.options,retry:p-1,timeout:a.options.timeout})}}const l=pd(a);throw Error.captureStackTrace&&Error.captureStackTrace(l,o),l}const o=async function(c,l={}){var d;const p={request:c,options:_d(l,e.defaults,n),response:void 0,error:void 0};if(p.options.method=(d=p.options.method)==null?void 0:d.toUpperCase(),p.options.onRequest&&await p.options.onRequest(p),typeof p.request=="string"&&(p.options.baseURL&&(p.request=Yp(p.request,p.options.baseURL)),(p.options.query||p.options.params)&&(p.request=Ml(p.request,{...p.options.params,...p.options.query}))),p.options.body&&Ai(p.options.method)&&(hd(p.options.body)?(p.options.body=typeof p.options.body=="string"?p.options.body:JSON.stringify(p.options.body),p.options.headers=new n(p.options.headers||{}),p.options.headers.has("content-type")||p.options.headers.set("content-type","application/json"),p.options.headers.has("accept")||p.options.headers.set("accept","application/json")):("pipeTo"in p.options.body&&typeof p.options.body.pipeTo=="function"||typeof p.options.body.pipe=="function")&&("duplex"in p.options||(p.options.duplex="half"))),!p.options.signal&&p.options.timeout){const b=new s;setTimeout(()=>b.abort(),p.options.timeout),p.options.signal=b.signal}try{p.response=await t(p.request,p.options)}catch(b){return p.error=b,p.options.onRequestError&&await p.options.onRequestError(p),await r(p)}if(p.response.body&&!vd.has(p.response.status)&&p.options.method!=="HEAD"){const b=(p.options.parseResponse?"json":p.options.responseType)||yd(p.response.headers.get("content-type")||"");switch(b){case"json":{const y=await p.response.text(),T=p.options.parseResponse||Es;p.response._data=T(y);break}case"stream":{p.response._data=p.response.body;break}default:p.response._data=await p.response[b]()}}return p.options.onResponse&&await p.options.onResponse(p),!p.options.ignoreResponseError&&p.response.status>=400&&p.response.status<600?(p.options.onResponseError&&await p.options.onResponseError(p),await r(p)):p.response},i=async function(c,l){return(await o(c,l))._data};return i.raw=o,i.native=(...a)=>t(...a),i.create=(a={})=>Fl({...e,defaults:{...e.defaults,...a}}),i}const Mr=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")}(),wd=Mr.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),xd=Mr.Headers,kd=Mr.AbortController,Nd=Fl({fetch:wd,Headers:xd,AbortController:kd}),Sd=Nd;globalThis.$fetch||(globalThis.$fetch=Sd.create({baseURL:od()}));function Jo(e,t={},n){for(const s in e){const r=e[s],o=n?`${n}:${s}`:s;typeof r=="object"&&r!==null?Jo(r,t,o):typeof r=="function"&&(t[o]=r)}return t}const Td={run:e=>e()},Ld=()=>Td,Ul=typeof console.createTask<"u"?console.createTask:Ld;function Pd(e,t){const n=t.shift(),s=Ul(n);return e.reduce((r,o)=>r.then(()=>s.run(()=>o(...t))),Promise.resolve())}function Ad(e,t){const n=t.shift(),s=Ul(n);return Promise.all(e.map(r=>s.run(()=>r(...t))))}function vo(e,t){for(const n of[...e])n(t)}class Rd{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,s={}){if(!t||typeof n!="function")return()=>{};const r=t;let o;for(;this._deprecatedHooks[t];)o=this._deprecatedHooks[t],t=o.to;if(o&&!s.allowDeprecated){let i=o.message;i||(i=`${r} 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 s,r=(...o)=>(typeof s=="function"&&s(),s=void 0,r=void 0,n(...o));return s=this.hook(t,r),s}removeHook(t,n){if(this._hooks[t]){const s=this._hooks[t].indexOf(n);s!==-1&&this._hooks[t].splice(s,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,n){this._deprecatedHooks[t]=typeof n=="string"?{to:n}:n;const s=this._hooks[t]||[];delete this._hooks[t];for(const r of s)this.hook(t,r)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const n in t)this.deprecateHook(n,t[n])}addHooks(t){const n=Jo(t),s=Object.keys(n).map(r=>this.hook(r,n[r]));return()=>{for(const r of s.splice(0,s.length))r()}}removeHooks(t){const n=Jo(t);for(const s in n)this.removeHook(s,n[s])}removeAllHooks(){for(const t in this._hooks)delete this._hooks[t]}callHook(t,...n){return n.unshift(t),this.callHookWith(Pd,t,...n)}callHookParallel(t,...n){return n.unshift(t),this.callHookWith(Ad,t,...n)}callHookWith(t,n,...s){const r=this._before||this._after?{name:n,args:s,context:{}}:void 0;this._before&&vo(this._before,r);const o=t(n in this._hooks?[...this._hooks[n]]:[],s);return o instanceof Promise?o.finally(()=>{this._after&&r&&vo(this._after,r)}):(this._after&&r&&vo(this._after,r),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 Gl(){return new Rd}function Cd(e={}){let t,n=!1;const s=i=>{if(t&&t!==i)throw new Error("Context conflict")};let r;if(e.asyncContext){const i=e.AsyncLocalStorage||globalThis.AsyncLocalStorage;i?r=new i:console.warn("[unctx] `AsyncLocalStorage` is not provided.")}const o=()=>{if(r&&t===void 0){const i=r.getStore();if(i!==void 0)return i}return t};return{use:()=>{const i=o();if(i===void 0)throw new Error("Context is not available");return i},tryUse:()=>o(),set:(i,a)=>{a||s(i),t=i,n=!0},unset:()=>{t=void 0,n=!1},call:(i,a)=>{s(i),t=i;try{return r?r.run(i,a):a()}finally{n||(t=void 0)}},async callAsync(i,a){t=i;const c=()=>{t=i},l=()=>t===i?c:void 0;Xo.add(l);try{const p=r?r.run(i,a):a();return n||(t=void 0),await p}finally{Xo.delete(l)}}}}function Ed(e={}){const t={};return{get(n,s={}){return t[n]||(t[n]=Cd({...e,...s})),t[n],t[n]}}}const $s=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},Ri="__unctx__",$d=$s[Ri]||($s[Ri]=Ed()),jd=(e,t={})=>$d.get(e,t),Ci="__unctx_async_handlers__",Xo=$s[Ci]||($s[Ci]=new Set);function Wl(e){const t=[];for(const r of Xo){const o=r();o&&t.push(o)}const n=()=>{for(const r of t)r()};let s=e();return s&&typeof s=="object"&&"catch"in s&&(s=s.catch(r=>{throw n(),r})),[s,n]}const Vl=jd("nuxt-app",{asyncContext:!1}),Od="__nuxt_plugin";function Id(e){let t=0;const n={_scope:xu(),provide:void 0,globalName:"nuxt",versions:{get nuxt(){return"3.9.1"},get vue(){return n.vueApp.version}},payload:dt({data:{},state:{},once:new Set,_errors:{},...window.__NUXT__??{}}),static:{data:{}},runWithContext:r=>n._scope.run(()=>Bd(n,r)),isHydrating:!0,deferHydration(){if(!n.isHydrating)return()=>{};t++;let r=!1;return()=>{if(!r&&(r=!0,t--,t===0))return n.isHydrating=!1,n.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},_payloadRevivers:{},...e};n.hooks=Gl(),n.hook=n.hooks.hook,n.callHook=n.hooks.callHook,n.provide=(r,o)=>{const i="$"+r;as(n,i,o),as(n.vueApp.config.globalProperties,i,o)},as(n.vueApp,"$nuxt",n),as(n.vueApp.config.globalProperties,"$nuxt",n);{window.addEventListener("nuxt.preloadError",o=>{n.callHook("app:chunkError",{error:o.payload})}),window.useNuxtApp=window.useNuxtApp||Ae;const r=n.hook("app:error",(...o)=>{console.error("[nuxt] error caught during app initialization",...o)});n.hook("app:mounted",r)}const s=dt(n.payload.config);return n.provide("config",s),n}async function Md(e,t){if(t.hooks&&e.hooks.addHooks(t.hooks),typeof t=="function"){const{provide:n}=await e.runWithContext(()=>t(e))||{};if(n&&typeof n=="object")for(const s in n)e.provide(s,n[s])}}async function Hd(e,t){const n=[],s=[],r=[],o=[];let i=0;async function a(c){if(c.dependsOn&&!c.dependsOn.every(l=>n.includes(l)))s.push([new Set(c.dependsOn),c]);else{const l=Md(e,c).then(async()=>{c._name&&(n.push(c._name),await Promise.all(s.map(async([p,u])=>{p.has(c._name)&&(p.delete(c._name),p.size===0&&(i++,await a(u)))})))});c.parallel?r.push(l.catch(p=>o.push(p))):await l}}for(const c of t)await a(c);if(await Promise.all(r),i)for(let c=0;c<i;c++)await Promise.all(r);if(o.length)throw o[0]}function mt(e){if(typeof e=="function")return e;const t=e._name||e.name;return delete e.name,Object.assign(e.setup||(()=>{}),e,{[Od]:!0,_name:t})}function Bd(e,t,n){const s=()=>n?t(...n):t();return Vl.set(e),e.vueApp.runWithContext(s)}function Ae(){var t;let e;if(hl()&&(e=(t=wn())==null?void 0:t.appContext.app.$nuxt),e=e||Vl.tryUse(),!e)throw new Error("[nuxt] instance unavailable");return e}function Gn(){return Ae().$config}function as(e,t,n){Object.defineProperty(e,t,{get:()=>n})}const Dd="modulepreload",Fd=function(e,t){return e[0]==="."?new URL(e,t).href:e},Ei={},Ud=function(t,n,s){let r=Promise.resolve();if(n&&n.length>0){const o=document.getElementsByTagName("link");r=Promise.all(n.map(i=>{if(i=Fd(i,s),i in Ei)return;Ei[i]=!0;const a=i.endsWith(".css"),c=a?'[rel="stylesheet"]':"";if(!!s)for(let u=o.length-1;u>=0;u--){const d=o[u];if(d.href===i&&(!a||d.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${i}"]${c}`))return;const p=document.createElement("link");if(p.rel=a?"stylesheet":Dd,a||(p.as="script",p.crossOrigin=""),p.href=i,document.head.appendChild(p),a)return new Promise((u,d)=>{p.addEventListener("load",u),p.addEventListener("error",()=>d(new Error(`Unable to preload CSS for ${i}`)))})}))}return r.then(()=>t()).catch(o=>{const i=new Event("vite:preloadError",{cancelable:!0});if(i.payload=o,window.dispatchEvent(i),!i.defaultPrevented)throw o})},js=(...e)=>Ud(...e).catch(t=>{const n=new Event("nuxt.preloadError");throw n.payload=t,window.dispatchEvent(n),t}),Gd=-1,Wd=-2,Vd=-3,qd=-4,zd=-5,Kd=-6;function Jd(e,t){return Xd(JSON.parse(e),t)}function Xd(e,t){if(typeof e=="number")return r(e,!0);if(!Array.isArray(e)||e.length===0)throw new Error("Invalid input");const n=e,s=Array(n.length);function r(o,i=!1){if(o===Gd)return;if(o===Vd)return NaN;if(o===qd)return 1/0;if(o===zd)return-1/0;if(o===Kd)return-0;if(i)throw new Error("Invalid input");if(o in s)return s[o];const a=n[o];if(!a||typeof a!="object")s[o]=a;else if(Array.isArray(a))if(typeof a[0]=="string"){const c=a[0],l=t==null?void 0:t[c];if(l)return s[o]=l(r(a[1]));switch(c){case"Date":s[o]=new Date(a[1]);break;case"Set":const p=new Set;s[o]=p;for(let b=1;b<a.length;b+=1)p.add(r(a[b]));break;case"Map":const u=new Map;s[o]=u;for(let b=1;b<a.length;b+=2)u.set(r(a[b]),r(a[b+1]));break;case"RegExp":s[o]=new RegExp(a[1],a[2]);break;case"Object":s[o]=Object(a[1]);break;case"BigInt":s[o]=BigInt(a[1]);break;case"null":const d=Object.create(null);s[o]=d;for(let b=1;b<a.length;b+=2)d[a[b]]=r(a[b+1]);break;default:throw new Error(`Unknown type ${c}`)}}else{const c=new Array(a.length);s[o]=c;for(let l=0;l<a.length;l+=1){const p=a[l];p!==Wd&&(c[l]=r(p))}}else{const c={};s[o]=c;for(const l in a){const p=a[l];c[l]=r(p)}}return s[o]}return r(0)}function Qd(e){return Array.isArray(e)?e:[e]}const Yd=["title","titleTemplate","script","style","noscript"],ms=["base","meta","link","style","script","noscript"],Zd=["title","titleTemplate","templateParams","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],eh=["base","title","titleTemplate","bodyAttrs","htmlAttrs","templateParams"],ql=["tagPosition","tagPriority","tagDuplicateStrategy","children","innerHTML","textContent","processTemplateParams"],th=typeof window<"u";function Hr(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 $i(e){return e._h||Hr(e._d?e._d:`${e.tag}:${e.textContent||e.innerHTML||""}:${Object.entries(e.props).map(([t,n])=>`${t}:${String(n)}`).join(",")}`)}function zl(e,t){const{props:n,tag:s}=e;if(eh.includes(s))return s;if(s==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const r=["id"];s==="meta"&&r.push("name","property","http-equiv");for(const o of r)if(typeof n[o]<"u"){const i=String(n[o]);return t&&!t(i)?!1:`${s}:${o}:${i}`}return!1}function ji(e,t){return e==null?t||null:typeof e=="function"?e(t):e}async function nh(e,t,n){const s={tag:e,props:await Kl(typeof t=="object"&&typeof t!="function"&&!(t instanceof Promise)?{...t}:{[["script","noscript","style"].includes(e)?"innerHTML":"textContent"]:t},["templateParams","titleTemplate"].includes(e))};return ql.forEach(r=>{const o=typeof s.props[r]<"u"?s.props[r]:n[r];typeof o<"u"&&((!["innerHTML","textContent","children"].includes(r)||Yd.includes(s.tag))&&(s[r==="children"?"innerHTML":r]=o),delete s.props[r])}),s.props.body&&(s.tagPosition="bodyClose",delete s.props.body),s.tag==="script"&&typeof s.innerHTML=="object"&&(s.innerHTML=JSON.stringify(s.innerHTML),s.props.type=s.props.type||"application/json"),Array.isArray(s.props.content)?s.props.content.map(r=>({...s,props:{...s.props,content:r}})):s}function sh(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 Kl(e,t){for(const n of Object.keys(e)){if(n==="class"){e[n]=sh(e[n]);continue}if(e[n]instanceof Promise&&(e[n]=await e[n]),!t&&!ql.includes(n)){const s=String(e[n]),r=n.startsWith("data-");s==="true"||s===""?e[n]=r?"true":!0:e[n]||(r&&s==="false"?e[n]="false":delete e[n])}}return e}const oh=10;async function rh(e){const t=[];return Object.entries(e.resolvedInput).filter(([n,s])=>typeof s<"u"&&Zd.includes(n)).forEach(([n,s])=>{const r=Qd(s);t.push(...r.map(o=>nh(n,o,e)).flat())}),(await Promise.all(t)).flat().filter(Boolean).map((n,s)=>(n._e=e._i,e.mode&&(n._m=e.mode),n._p=(e._i<<oh)+s,n))}const Oi={base:-10,title:10},Ii={critical:-80,high:-10,low:20};function Os(e){let t=100;const n=e.tagPriority;return typeof n=="number"?n:(e.tag==="meta"?(e.props["http-equiv"]==="content-security-policy"&&(t=-30),e.props.charset&&(t=-20),e.props.name==="viewport"&&(t=-15)):e.tag==="link"&&e.props.rel==="preconnect"?t=20:e.tag in Oi&&(t=Oi[e.tag]),typeof n=="string"&&n in Ii?t+Ii[n]:t)}const ih=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}],Jl=["onload","onerror","onabort","onprogress","onloadstart"],Nt="%separator";function gs(e,t,n){if(typeof e!="string"||!e.includes("%"))return e;function s(i){let a;return["s","pageTitle"].includes(i)?a=t.pageTitle:i.includes(".")?a=i.split(".").reduce((c,l)=>c&&c[l]||void 0,t):a=t[i],typeof a<"u"?(a||"").replace(/"/g,'\\"'):!1}let r=e;try{r=decodeURI(e)}catch{}return(r.match(/%(\w+\.+\w+)|%(\w+)/g)||[]).sort().reverse().forEach(i=>{const a=s(i.slice(1));typeof a=="string"&&(e=e.replace(new RegExp(`\\${i}(\\W|$)`,"g"),(c,l)=>`${a}${l}`).trim())}),e.includes(Nt)&&(e.endsWith(Nt)&&(e=e.slice(0,-Nt.length).trim()),e.startsWith(Nt)&&(e=e.slice(Nt.length).trim()),e=e.replace(new RegExp(`\\${Nt}\\s*\\${Nt}`,"g"),Nt),e=gs(e,{separator:n},n)),e}async function ah(e){const t={tag:e.tagName.toLowerCase(),props:await Kl(e.getAttributeNames().reduce((n,s)=>({...n,[s]:e.getAttribute(s)}),{})),innerHTML:e.innerHTML};return t._d=zl(t),t}async function Xl(e,t={}){var p;const n=t.document||e.resolvedOptions.document;if(!n)return;const s={shouldRender:e.dirty,tags:[]};if(await e.hooks.callHook("dom:beforeRender",s),!s.shouldRender)return;const r=(await e.resolveTags()).map(u=>({tag:u,id:ms.includes(u.tag)?$i(u):u.tag,shouldRender:!0}));let o=e._dom;if(!o){o={elMap:{htmlAttrs:n.documentElement,bodyAttrs:n.body}};for(const u of["body","head"]){const d=(p=n==null?void 0:n[u])==null?void 0:p.children;for(const b of[...d].filter(y=>ms.includes(y.tagName.toLowerCase())))o.elMap[b.getAttribute("data-hid")||$i(await ah(b))]=b}}o.pendingSideEffects={...o.sideEffects||{}},o.sideEffects={};function i(u,d,b){const y=`${u}:${d}`;o.sideEffects[y]=b,delete o.pendingSideEffects[y]}function a({id:u,$el:d,tag:b}){const y=b.tag.endsWith("Attrs");o.elMap[u]=d,y||(["textContent","innerHTML"].forEach(T=>{b[T]&&b[T]!==d[T]&&(d[T]=b[T])}),i(u,"el",()=>{o.elMap[u].remove(),delete o.elMap[u]})),Object.entries(b.props).forEach(([T,L])=>{const S=`attr:${T}`;if(T==="class")for(const k of(L||"").split(" ").filter(Boolean))y&&i(u,`${S}:${k}`,()=>d.classList.remove(k)),!d.classList.contains(k)&&d.classList.add(k);else d.getAttribute(T)!==L&&d.setAttribute(T,L===!0?"":String(L)),y&&i(u,S,()=>d.removeAttribute(T))})}const c=[],l={bodyClose:void 0,bodyOpen:void 0,head:void 0};for(const u of r){const{tag:d,shouldRender:b,id:y}=u;if(b){if(d.tag==="title"){n.title=d.textContent;continue}u.$el=u.$el||o.elMap[y],u.$el?a(u):ms.includes(d.tag)&&c.push(u)}}for(const u of c){const d=u.tag.tagPosition||"head";u.$el=n.createElement(u.tag.tag),a(u),l[d]=l[d]||n.createDocumentFragment(),l[d].appendChild(u.$el)}for(const u of r)await e.hooks.callHook("dom:renderTag",u,n,i);l.head&&n.head.appendChild(l.head),l.bodyOpen&&n.body.insertBefore(l.bodyOpen,n.body.firstChild),l.bodyClose&&n.body.appendChild(l.bodyClose),Object.values(o.pendingSideEffects).forEach(u=>u()),e._dom=o,e.dirty=!1,await e.hooks.callHook("dom:rendered",{renders:r})}async function lh(e,t={}){const n=t.delayFn||(s=>setTimeout(s,10));return e._domUpdatePromise=e._domUpdatePromise||new Promise(s=>n(async()=>{await Xl(e,t),delete e._domUpdatePromise,s()}))}function ch(e){return t=>{var s,r;const n=((r=(s=t.resolvedOptions.document)==null?void 0:s.head.querySelector('script[id="unhead:payload"]'))==null?void 0:r.innerHTML)||!1;return n&&t.push(JSON.parse(n)),{mode:"client",hooks:{"entries:updated":function(o){lh(o,e)}}}}}const uh=["templateParams","htmlAttrs","bodyAttrs"],fh={hooks:{"tag:normalise":function({tag:e}){["hid","vmid","key"].forEach(s=>{e.props[s]&&(e.key=e.props[s],delete e.props[s])});const n=zl(e)||(e.key?`${e.tag}:${e.key}`:!1);n&&(e._d=n)},"tags:resolve":function(e){const t={};e.tags.forEach(s=>{const r=(s.key?`${s.tag}:${s.key}`:s._d)||s._p,o=t[r];if(o){let a=s==null?void 0:s.tagDuplicateStrategy;if(!a&&uh.includes(s.tag)&&(a="merge"),a==="merge"){const c=o.props;["class","style"].forEach(l=>{c[l]&&(s.props[l]?(l==="style"&&!c[l].endsWith(";")&&(c[l]+=";"),s.props[l]=`${c[l]} ${s.props[l]}`):s.props[l]=c[l])}),t[r].props={...c,...s.props};return}else if(s._e===o._e){o._duped=o._duped||[],s._d=`${o._d}:${o._duped.length+1}`,o._duped.push(s);return}else if(Os(s)>Os(o))return}const i=Object.keys(s.props).length+(s.innerHTML?1:0)+(s.textContent?1:0);if(ms.includes(s.tag)&&i===0){delete t[r];return}t[r]=s});const n=[];Object.values(t).forEach(s=>{const r=s._duped;delete s._duped,n.push(s),r&&n.push(...r)}),e.tags=n,e.tags=e.tags.filter(s=>!(s.tag==="meta"&&(s.props.name||s.props.property)&&!s.props.content))}}},ph={mode:"server",hooks:{"tags:resolve":function(e){const t={};e.tags.filter(n=>["titleTemplate","templateParams","title"].includes(n.tag)&&n._m==="server").forEach(n=>{t[n.tag]=n.tag.startsWith("title")?n.textContent:n.props}),Object.keys(t).length&&e.tags.push({tag:"script",innerHTML:JSON.stringify(t),props:{id:"unhead:payload",type:"application/json"}})}}},dh=["script","link","bodyAttrs"];function hh(e){const t={},n={};return Object.entries(e.props).forEach(([s,r])=>{s.startsWith("on")&&typeof r=="function"?(Jl.includes(s)&&(t[s]=`this.dataset.${s} = true`),n[s]=r):t[s]=r}),{props:t,eventHandlers:n}}const mh=e=>({hooks:{"tags:resolve":function(t){for(const n of t.tags)if(dh.includes(n.tag)){const{props:s,eventHandlers:r}=hh(n);n.props=s,Object.keys(r).length&&((n.props.src||n.props.href)&&(n.key=n.key||Hr(n.props.src||n.props.href)),n._eventHandlers=r)}},"dom:renderTag":function(t,n,s){if(!t.tag._eventHandlers)return;const r=t.tag.tag==="bodyAttrs"?n.defaultView:t.$el;Object.entries(t.tag._eventHandlers).forEach(([o,i])=>{const a=`${t.tag._d||t.tag._p}:${o}`,c=o.slice(2).toLowerCase(),l=`data-h-${c}`;if(s(t.id,a,()=>{}),t.$el.hasAttribute(l))return;t.$el.setAttribute(l,"");let p;const u=d=>{i(d),p==null||p.disconnect()};o in t.$el.dataset?u(new Event(o.replace("on",""))):Jl.includes(o)&&typeof MutationObserver<"u"?(p=new MutationObserver(d=>{d.some(y=>y.attributeName===`data-${o}`)&&(u(new Event(o.replace("on",""))),p==null||p.disconnect())}),p.observe(t.$el,{attributes:!0})):r.addEventListener(c,u),s(t.id,a,()=>{p==null||p.disconnect(),r.removeEventListener(c,u),t.$el.removeAttribute(l)})})}}}),gh=["link","style","script","noscript"],yh={hooks:{"tag:normalise":({tag:e})=>{e.key&&gh.includes(e.tag)&&(e.props["data-hid"]=e._h=Hr(e.key))}}},_h={hooks:{"tags:resolve":e=>{const t=n=>{var s;return(s=e.tags.find(r=>r._d===n))==null?void 0:s._p};for(const{prefix:n,offset:s}of ih)for(const r of e.tags.filter(o=>typeof o.tagPriority=="string"&&o.tagPriority.startsWith(n))){const o=t(r.tagPriority.replace(n,""));typeof o<"u"&&(r._p=o+s)}e.tags.sort((n,s)=>n._p-s._p).sort((n,s)=>Os(n)-Os(s))}}},bh={meta:"content",link:"href",htmlAttrs:"lang"},vh=e=>({hooks:{"tags:resolve":t=>{var a;const{tags:n}=t,s=(a=n.find(c=>c.tag==="title"))==null?void 0:a.textContent,r=n.findIndex(c=>c.tag==="templateParams"),o=r!==-1?n[r].props:{},i=o.separator||"|";delete o.separator,o.pageTitle=gs(o.pageTitle||s||"",o,i);for(const c of n.filter(l=>l.processTemplateParams!==!1)){const l=bh[c.tag];l&&typeof c.props[l]=="string"?c.props[l]=gs(c.props[l],o,i):(c.processTemplateParams===!0||["titleTemplate","title"].includes(c.tag))&&["innerHTML","textContent"].forEach(p=>{typeof c[p]=="string"&&(c[p]=gs(c[p],o,i))})}e._templateParams=o,e._separator=i,t.tags=n.filter(c=>c.tag!=="templateParams")}}}),wh={hooks:{"tags:resolve":e=>{const{tags:t}=e;let n=t.findIndex(r=>r.tag==="titleTemplate");const s=t.findIndex(r=>r.tag==="title");if(s!==-1&&n!==-1){const r=ji(t[n].textContent,t[s].textContent);r!==null?t[s].textContent=r||t[s].textContent:delete t[s]}else if(n!==-1){const r=ji(t[n].textContent);r!==null&&(t[n].textContent=r,t[n].tag="title",n=-1)}n!==-1&&delete t[n],e.tags=t.filter(Boolean)}}},xh={hooks:{"tags:afterResolve":function(e){for(const t of e.tags)typeof t.innerHTML=="string"&&(t.innerHTML&&["application/ld+json","application/json"].includes(t.props.type)?t.innerHTML=t.innerHTML.replace(/</g,"\\u003C"):t.innerHTML=t.innerHTML.replace(new RegExp(`</${t.tag}`,"g"),`<\\/${t.tag}`))}}};let Ql;function kh(e={}){const t=Nh(e);return t.use(ch()),Ql=t}function Mi(e,t){return!e||e==="server"&&t||e==="client"&&!t}function Nh(e={}){const t=Gl();t.addHooks(e.hooks||{}),e.document=e.document||(th?document:void 0);const n=!e.document,s=()=>{a.dirty=!0,t.callHook("entries:updated",a)};let r=0,o=[];const i=[],a={plugins:i,dirty:!1,resolvedOptions:e,hooks:t,headEntries(){return o},use(c){const l=typeof c=="function"?c(a):c;(!l.key||!i.some(p=>p.key===l.key))&&(i.push(l),Mi(l.mode,n)&&t.addHooks(l.hooks||{}))},push(c,l){l==null||delete l.head;const p={_i:r++,input:c,...l};return Mi(p.mode,n)&&(o.push(p),s()),{dispose(){o=o.filter(u=>u._i!==p._i),t.callHook("entries:updated",a),s()},patch(u){o=o.map(d=>(d._i===p._i&&(d.input=p.input=u),d)),s()}}},async resolveTags(){const c={tags:[],entries:[...o]};await t.callHook("entries:resolve",c);for(const l of c.entries){const p=l.resolvedInput||l.input;if(l.resolvedInput=await(l.transform?l.transform(p):p),l.resolvedInput)for(const u of await rh(l)){const d={tag:u,entry:l,resolvedOptions:a.resolvedOptions};await t.callHook("tag:normalise",d),c.tags.push(d.tag)}}return await t.callHook("tags:beforeResolve",c),await t.callHook("tags:resolve",c),await t.callHook("tags:afterResolve",c),c.tags},ssr:n};return[fh,ph,mh,yh,_h,vh,wh,xh,...(e==null?void 0:e.plugins)||[]].forEach(c=>a.use(c)),a.hooks.callHook("init",a),a}function Sh(){return Ql}const Th=Al.startsWith("3");function Lh(e){return typeof e=="function"?e():ie(e)}function Is(e,t=""){if(e instanceof Promise)return e;const n=Lh(e);return!e||!n?n:Array.isArray(n)?n.map(s=>Is(s,t)):typeof n=="object"?Object.fromEntries(Object.entries(n).map(([s,r])=>s==="titleTemplate"||s.startsWith("on")?[s,ie(r)]:[s,Is(r,s)])):n}const Ph={hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=Is(t.input)}}},Yl="usehead";function Ah(e){return{install(n){Th&&(n.config.globalProperties.$unhead=e,n.config.globalProperties.$head=e,n.provide(Yl,e))}}.install}function Rh(e={}){e.domDelayFn=e.domDelayFn||(n=>nn(()=>setTimeout(()=>n(),0)));const t=kh(e);return t.use(Ph),t.install=Ah(t),t}const Qo=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},Yo="__unhead_injection_handler__";function Ch(e){Qo[Yo]=e}function Eh(){if(Yo in Qo)return Qo[Yo]();const e=hn(Yl);return e||Sh()}function $h(e,t={}){const n=t.head||Eh();if(n)return n.ssr?n.push(e,t):jh(n,e,t)}function jh(e,t,n={}){const s=Te(!1),r=Te({});ol(()=>{r.value=s.value?{}:Is(t)});const o=e.push(r.value,n);return ct(r,a=>{o.patch(a)}),wn()&&(Tr(()=>{o.dispose()}),al(()=>{s.value=!0}),il(()=>{s.value=!1})),o}function Oh(e){return{ctx:{table:e},matchAll:t=>ec(t,e)}}function Zl(e){const t={};for(const n in e)t[n]=n==="dynamic"?new Map(Object.entries(e[n]).map(([s,r])=>[s,Zl(r)])):new Map(Object.entries(e[n]));return t}function Ih(e){return Oh(Zl(e))}function ec(e,t){const n=[];for(const[r,o]of Hi(t.wildcard))e.startsWith(r)&&n.push(o);for(const[r,o]of Hi(t.dynamic))if(e.startsWith(r+"/")){const i="/"+e.slice(r.length).split("/").splice(2).join("/");n.push(...ec(i,o))}const s=t.static.get(e);return s&&n.push(s),n.filter(Boolean)}function Hi(e){return[...e.entries()].sort((t,n)=>t[0].length-n[0].length)}function wo(e){if(e===null||typeof e!="object")return!1;const t=Object.getPrototypeOf(e);return t!==null&&t!==Object.prototype&&Object.getPrototypeOf(t)!==null||Symbol.iterator in e?!1:Symbol.toStringTag in e?Object.prototype.toString.call(e)==="[object Module]":!0}function Zo(e,t,n=".",s){if(!wo(t))return Zo(e,{},n,s);const r=Object.assign({},t);for(const o in e){if(o==="__proto__"||o==="constructor")continue;const i=e[o];i!=null&&(s&&s(r,o,i,n)||(Array.isArray(i)&&Array.isArray(r[o])?r[o]=[...i,...r[o]]:wo(i)&&wo(r[o])?r[o]=Zo(i,r[o],(n?`${n}.`:"")+o.toString(),s):r[o]=i))}return r}function tc(e){return(...t)=>t.reduce((n,s)=>Zo(n,s,"",e),{})}const Mh=tc(),Hh=tc((e,t,n)=>{if(e[t]!==void 0&&typeof n=="function")return e[t]=n(e[t]),!0});function Bh(e,t){try{return t in e}catch{return!1}}var Dh=Object.defineProperty,Fh=(e,t,n)=>t in e?Dh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Gt=(e,t,n)=>(Fh(e,typeof t!="symbol"?t+"":t,n),n);class er extends Error{constructor(t,n={}){super(t,n),Gt(this,"statusCode",500),Gt(this,"fatal",!1),Gt(this,"unhandled",!1),Gt(this,"statusMessage"),Gt(this,"data"),Gt(this,"cause"),n.cause&&!this.cause&&(this.cause=n.cause)}toJSON(){const t={message:this.message,statusCode:tr(this.statusCode,500)};return this.statusMessage&&(t.statusMessage=nc(this.statusMessage)),this.data!==void 0&&(t.data=this.data),t}}Gt(er,"__h3_error__",!0);function Uh(e){if(typeof e=="string")return new er(e);if(Gh(e))return e;const t=new er(e.message??e.statusMessage??"",{cause:e.cause||e});if(Bh(e,"stack"))try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}if(e.data&&(t.data=e.data),e.statusCode?t.statusCode=tr(e.statusCode,t.statusCode):e.status&&(t.statusCode=tr(e.status,t.statusCode)),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),t.statusMessage){const n=t.statusMessage;nc(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 Gh(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const Wh=/[^\u0009\u0020-\u007E]/g;function nc(e=""){return e.replace(Wh,"")}function tr(e,t=200){return!e||(typeof e=="string"&&(e=Number.parseInt(e,10)),e<100||e>999)?t:e}const sc=Symbol("route"),oc="__nuxt_error",Br=()=>Ka(Ae().payload,"error"),Vh=e=>{const t=rc(e);try{const n=Ae(),s=Br();n.hooks.callHook("app:error",t),s.value=s.value||t}catch{throw t}return t},qh=async(e={})=>{const t=Ae(),n=Br();t.callHook("app:error:cleared",e),e.redirect&&await sn().replace(e.redirect),n.value=null},zh=e=>!!e&&typeof e=="object"&&oc in e,rc=e=>{const t=Uh(e);return Object.defineProperty(t,oc,{value:!0,configurable:!1,writable:!1}),t},sn=()=>{var e;return(e=Ae())==null?void 0:e.$router},ic=()=>hl()?hn(sc,Ae()._route):Ae()._route;const Kh=()=>{try{if(Ae()._processingMiddleware)return!0}catch{return!0}return!1},ac=(e,t)=>{e||(e="/");const n=typeof e=="string"?e:Ml(e.path||"/",e.query||{})+(e.hash||"");if(t!=null&&t.open){{const{target:a="_blank",windowFeatures:c={}}=t.open,l=Object.entries(c).filter(([p,u])=>u!==void 0).map(([p,u])=>`${p.toLowerCase()}=${u}`).join(", ");open(n,a,l)}return Promise.resolve()}const s=(t==null?void 0:t.external)||xn(n,{acceptRelative:!0});if(s){if(!(t!=null&&t.external))throw new Error("Navigating to an external URL is not allowed by default. Use `navigateTo(url, { external: true })`.");const a=kn(n).protocol;if(a&&Jp(a))throw new Error(`Cannot navigate to a URL with '${a}' protocol.`)}const r=Kh();if(!s&&r)return e;const o=sn(),i=Ae();return s?(i._scope.stop(),t!=null&&t.replace?location.replace(n):location.href=n,r?i.isHydrating?new Promise(()=>{}):!1:Promise.resolve()):t!=null&&t.replace?o.replace(e):o.push(e)},Jh={nuxt:{buildId:"4ef99937-9859-42d8-9d63-62e7809c4b65"}},Xh=Hh(Jh);function Qh(){const e=Ae();return e._appConfig||(e._appConfig=dt(Xh)),e._appConfig}const Yh={componentName:"NuxtLink"},Zh="#__nuxt";let ys,lc;function em(){var t;const e=(t=Qh().nuxt)==null?void 0:t.buildId;return ys=$fetch(Ir(`builds/meta/${e}.json`)),ys.then(n=>{lc=Ih(n.matcher)}),ys}function to(){return ys||em()}async function cc(e){return await to(),Mh({},...lc.matchAll(e).reverse())}function Bi(e,t={}){const n=tm(e,t),s=Ae(),r=s._payloadCache=s._payloadCache||{};return n in r||(r[n]=nm(e).then(o=>o?uc(n).then(i=>i||(delete r[n],null)):(r[n]=null,null))),r[n]}const Di="json";function tm(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 s=t.hash||(t.fresh?Date.now():"");return Dt(Gn().app.baseURL,n.pathname,s?`_payload.${s}.${Di}`:`_payload.${Di}`)}async function uc(e){const t=fetch(e).then(n=>n.text().then(fc));try{return await t}catch(n){console.warn("[nuxt] Cannot load payload ",e,n)}return null}async function nm(e=ic().path){if(e=eo(e),(await to()).prerendered.includes(e))return!0;const n=await cc(e);return!!n.prerender&&!n.redirect}let ls=null;async function sm(){if(ls)return ls;const e=document.getElementById("__NUXT_DATA__");if(!e)return{};const t=fc(e.textContent||""),n=e.dataset.src?await uc(e.dataset.src):void 0;return ls={...t,...n,...window.__NUXT__},ls}function fc(e){return Jd(e,Ae()._payloadRevivers)}function om(e,t){Ae()._payloadRevivers[e]=t}const Fi={NuxtError:e=>rc(e),EmptyShallowRef:e=>jo(e==="_"?void 0:e==="0n"?BigInt(0):Es(e)),EmptyRef:e=>Te(e==="_"?void 0:e==="0n"?BigInt(0):Es(e)),ShallowRef:e=>jo(e),ShallowReactive:e=>Fa(e),Ref:e=>Te(e),Reactive:e=>dt(e)},rm=mt({name:"nuxt:revive-payload:client",order:-30,async setup(e){let t,n;for(const s in Fi)om(s,Fi[s]);Object.assign(e.payload,([t,n]=Wl(()=>e.runWithContext(sm)),t=await t,n(),t)),window.__NUXT__=e.payload}}),im=[],am=mt({name:"nuxt:head",enforce:"pre",setup(e){const t=Rh({plugins:im});Ch(()=>Ae().vueApp._context.provides.usehead),e.vueApp.use(t);{let n=!0;const s=async()=>{n=!1,await Xl(t)};t.hooks.hook("dom:beforeRender",r=>{r.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",()=>{e.isHydrating||s()}),e.hooks.hook("app:error",s),e.hooks.hook("app:suspense:resolve",s)}}}),lm=async e=>{let t,n;const s=([t,n]=Wl(()=>cc(e.path)),t=await t,n(),t);if(s.redirect)return s.redirect},cm=[lm];function xo(e){typeof e=="object"&&(e=Bl({pathname:e.path||"",search:Il(e.query||{}),hash:e.hash||""}));const t=kn(e.toString());return{path:t.pathname,fullPath:e,query:Or(t.search),hash:t.hash,params:{},name:void 0,matched:[],redirectedFrom:void 0,meta:{},href:e}}const um=mt({name:"nuxt:router",enforce:"pre",setup(e){const t=Zp(window.location.pathname,Gn().app.baseURL)+window.location.search+window.location.hash,n=[],s={"navigate:before":[],"resolve:before":[],"navigate:after":[],error:[]},r=(u,d)=>(s[u].push(d),()=>s[u].splice(s[u].indexOf(d),1)),o=Gn().app.baseURL,i=dt(xo(t));async function a(u,d){try{const b=xo(u);for(const y of s["navigate:before"]){const T=await y(b,i);if(T===!1||T instanceof Error)return;if(typeof T=="string"&&T.length)return a(T,!0)}for(const y of s["resolve:before"])await y(b,i);Object.assign(i,b),window.history[d?"replaceState":"pushState"]({},"",Dt(o,b.fullPath)),e.isHydrating||await e.runWithContext(qh);for(const y of s["navigate:after"])await y(b,i)}catch(b){for(const y of s.error)await y(b)}}const c=Je(()=>i);for(const u in i)Object.defineProperty(c,u,{get(){return i[u]}});const l={currentRoute:c,isReady:()=>Promise.resolve(),options:{},install:()=>Promise.resolve(),push:u=>a(u,!1),replace:u=>a(u,!0),back:()=>window.history.go(-1),go:u=>window.history.go(u),forward:()=>window.history.go(1),beforeResolve:u=>r("resolve:before",u),beforeEach:u=>r("navigate:before",u),afterEach:u=>r("navigate:after",u),onError:u=>r("error",u),resolve:xo,addRoute:(u,d)=>{n.push(d)},getRoutes:()=>n,hasRoute:u=>n.some(d=>d.name===u),removeRoute:u=>{const d=n.findIndex(b=>b.name===u);d!==-1&&n.splice(d,1)}};e.vueApp.component("RouterLink",Ve({functional:!0,props:{to:{type:String,required:!0},custom:Boolean,replace:Boolean,activeClass:String,exactActiveClass:String,ariaCurrentValue:String},setup:(u,{slots:d})=>{const b=()=>a(u.to,u.replace);return()=>{var T;const y=l.resolve(u.to);return u.custom?(T=d.default)==null?void 0:T.call(d,{href:u.to,navigate:b,route:y}):Ps("a",{href:u.to,onClick:L=>(L.preventDefault(),b())},d)}}})),window.addEventListener("popstate",u=>{const d=u.target.location;l.replace(d.href.replace(d.origin,""))}),e._route=i,e._middleware=e._middleware||{global:[],named:{}};const p=e.payload.state._layout;return e.hooks.hookOnce("app:created",async()=>{l.beforeEach(async(u,d)=>{u.meta=dt(u.meta||{}),e.isHydrating&&p&&!Xt(u.meta.layout)&&(u.meta.layout=p),e._processingMiddleware=!0;{const b=new Set([...cm,...e._middleware.global]);for(const y of b){const T=await e.runWithContext(()=>y(u,d));if(T!==!0&&(T||T===!1))return T}}}),l.afterEach(()=>{delete e._processingMiddleware}),await l.replace(t),nd(i.fullPath,t)||await e.runWithContext(()=>ac(i.fullPath))}),{provide:{route:i,router:l}}}}),nr=globalThis.requestIdleCallback||(e=>{const t=Date.now(),n={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(n)},1)}),fm=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),Dr=e=>{const t=Ae();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{nr(e)}):nr(e)},pm=mt({name:"nuxt:payload",setup(e){sn().beforeResolve(async(t,n)=>{if(t.path===n.path)return;const s=await Bi(t.path);s&&Object.assign(e.static.data,s.data)}),Dr(()=>{var t;e.hooks.hook("link:prefetch",async n=>{kn(n).protocol||await Bi(n)}),((t=navigator.connection)==null?void 0:t.effectiveType)!=="slow-2g"&&setTimeout(to,1e3)})}}),dm=mt(e=>{let t;async function n(){const s=await to();t&&clearTimeout(t),t=setTimeout(n,1e3*60*60);const r=await $fetch(Ir("builds/latest.json"));r.id!==s.id&&e.hooks.callHook("app:manifest:update",r)}Dr(()=>{t=setTimeout(n,1e3*60*60)})}),hm=Ss(()=>js(()=>import("./Icon.Y7HhHHAz.js"),__vite__mapDeps([0,1,2]),import.meta.url).then(e=>e.default)),mm=Ss(()=>js(()=>import("./IconCSS.Q-iLbQkL.js"),__vite__mapDeps([3,1,4]),import.meta.url).then(e=>e.default)),gm=[["Icon",hm],["IconCSS",mm]],ym=mt({name:"nuxt:global-components",setup(e){for(const[t,n]of gm)e.vueApp.component(t,n),e.vueApp.component("Lazy"+t,n)}}),_m="$s";function bm(...e){const t=typeof e[e.length-1]=="string"?e.pop():void 0;typeof e[0]!="string"&&e.unshift(t);const[n,s]=e;if(!n||typeof n!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+n);if(s!==void 0&&typeof s!="function")throw new Error("[nuxt] [useState] init must be a function: "+s);const r=_m+n,o=Ae(),i=Ka(o.payload.state,r);if(i.value===void 0&&s){const a=s();if($e(a))return o.payload.state[r]=a,a;i.value=a}return i}const vm="__NUXT_COLOR_MODE__",wm="nuxt-color-mode",gt=window[vm]||{},xm=mt(e=>{const t=bm("color-mode",()=>dt({preference:gt.preference,value:gt.value,unknown:!1,forced:!1})).value;sn().afterEach(r=>{const o=r.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"?gt.getColorScheme():t.preference)});let n;function s(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=gt.getColorScheme())}))}ct(()=>t.preference,r=>{var o;t.forced||(r==="system"?(t.value=gt.getColorScheme(),s()):t.value=r,(o=window.localStorage)==null||o.setItem(wm,r))},{immediate:!0}),ct(()=>t.value,(r,o)=>{gt.removeColorScheme(o),gt.addColorScheme(r)}),t.preference==="system"&&s(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=gt.preference,t.value=gt.value,t.unknown=!1)}),e.provide("colorMode",t)}),km=mt(()=>{});function Nm(e={}){const t=e.path||window.location.pathname;let n={};try{n=Es(sessionStorage.getItem("nuxt:reload")||"{}")}catch{}if(e.force||(n==null?void 0:n.path)!==t||(n==null?void 0: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:Ae().payload.state}))}catch{}window.location.pathname!==t?window.location.href=t:window.location.reload()}}const Sm=mt({name:"nuxt:chunk-reload",setup(e){const t=sn(),n=Gn(),s=new Set;t.beforeEach(()=>{s.clear()}),e.hook("app:chunkError",({error:o})=>{s.add(o)});function r(o){const a="href"in o&&o.href[0]==="#"?n.app.baseURL+o.href:Dt(n.app.baseURL,o.fullPath);Nm({path:a,persistState:!0})}e.hook("app:manifest:update",()=>{t.beforeResolve(r)}),t.onError((o,i)=>{s.has(o)&&r(i)})}}),Tm=["top","right","bottom","left"],Ui=["start","end"],Gi=Tm.reduce((e,t)=>e.concat(t,t+"-"+Ui[0],t+"-"+Ui[1]),[]),Wn=Math.min,Wt=Math.max,Lm={left:"right",right:"left",bottom:"top",top:"bottom"},Pm={start:"end",end:"start"};function sr(e,t,n){return Wt(e,Wn(t,n))}function on(e,t){return typeof e=="function"?e(t):e}function ht(e){return e.split("-")[0]}function ot(e){return e.split("-")[1]}function pc(e){return e==="x"?"y":"x"}function Fr(e){return e==="y"?"height":"width"}function Yn(e){return["top","bottom"].includes(ht(e))?"y":"x"}function Ur(e){return pc(Yn(e))}function dc(e,t,n){n===void 0&&(n=!1);const s=ot(e),r=Ur(e),o=Fr(r);let i=r==="x"?s===(n?"end":"start")?"right":"left":s==="start"?"bottom":"top";return t.reference[o]>t.floating[o]&&(i=Hs(i)),[i,Hs(i)]}function Am(e){const t=Hs(e);return[Ms(e),t,Ms(t)]}function Ms(e){return e.replace(/start|end/g,t=>Pm[t])}function Rm(e,t,n){const s=["left","right"],r=["right","left"],o=["top","bottom"],i=["bottom","top"];switch(e){case"top":case"bottom":return n?t?r:s:t?s:r;case"left":case"right":return t?o:i;default:return[]}}function Cm(e,t,n,s){const r=ot(e);let o=Rm(ht(e),n==="start",s);return r&&(o=o.map(i=>i+"-"+r),t&&(o=o.concat(o.map(Ms)))),o}function Hs(e){return e.replace(/left|right|bottom|top/g,t=>Lm[t])}function Em(e){return{top:0,right:0,bottom:0,left:0,...e}}function hc(e){return typeof e!="number"?Em(e):{top:e,right:e,bottom:e,left:e}}function $n(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function Wi(e,t,n){let{reference:s,floating:r}=e;const o=Yn(t),i=Ur(t),a=Fr(i),c=ht(t),l=o==="y",p=s.x+s.width/2-r.width/2,u=s.y+s.height/2-r.height/2,d=s[a]/2-r[a]/2;let b;switch(c){case"top":b={x:p,y:s.y-r.height};break;case"bottom":b={x:p,y:s.y+s.height};break;case"right":b={x:s.x+s.width,y:u};break;case"left":b={x:s.x-r.width,y:u};break;default:b={x:s.x,y:s.y}}switch(ot(t)){case"start":b[i]-=d*(n&&l?-1:1);break;case"end":b[i]+=d*(n&&l?-1:1);break}return b}const $m=async(e,t,n)=>{const{placement:s="bottom",strategy:r="absolute",middleware:o=[],platform:i}=n,a=o.filter(Boolean),c=await(i.isRTL==null?void 0:i.isRTL(t));let l=await i.getElementRects({reference:e,floating:t,strategy:r}),{x:p,y:u}=Wi(l,s,c),d=s,b={},y=0;for(let T=0;T<a.length;T++){const{name:L,fn:S}=a[T],{x:k,y:h,data:v,reset:_}=await S({x:p,y:u,initialPlacement:s,placement:d,strategy:r,middlewareData:b,rects:l,platform:i,elements:{reference:e,floating:t}});if(p=k??p,u=h??u,b={...b,[L]:{...b[L],...v}},_&&y<=50){y++,typeof _=="object"&&(_.placement&&(d=_.placement),_.rects&&(l=_.rects===!0?await i.getElementRects({reference:e,floating:t,strategy:r}):_.rects),{x:p,y:u}=Wi(l,d,c)),T=-1;continue}}return{x:p,y:u,placement:d,strategy:r,middlewareData:b}};async function no(e,t){var n;t===void 0&&(t={});const{x:s,y:r,platform:o,rects:i,elements:a,strategy:c}=e,{boundary:l="clippingAncestors",rootBoundary:p="viewport",elementContext:u="floating",altBoundary:d=!1,padding:b=0}=on(t,e),y=hc(b),L=a[d?u==="floating"?"reference":"floating":u],S=$n(await o.getClippingRect({element:(n=await(o.isElement==null?void 0:o.isElement(L)))==null||n?L:L.contextElement||await(o.getDocumentElement==null?void 0:o.getDocumentElement(a.floating)),boundary:l,rootBoundary:p,strategy:c})),k=u==="floating"?{...i.floating,x:s,y:r}:i.reference,h=await(o.getOffsetParent==null?void 0:o.getOffsetParent(a.floating)),v=await(o.isElement==null?void 0:o.isElement(h))?await(o.getScale==null?void 0:o.getScale(h))||{x:1,y:1}:{x:1,y:1},_=$n(o.convertOffsetParentRelativeRectToViewportRelativeRect?await o.convertOffsetParentRelativeRectToViewportRelativeRect({rect:k,offsetParent:h,strategy:c}):k);return{top:(S.top-_.top+y.top)/v.y,bottom:(_.bottom-S.bottom+y.bottom)/v.y,left:(S.left-_.left+y.left)/v.x,right:(_.right-S.right+y.right)/v.x}}const jm=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:s,placement:r,rects:o,platform:i,elements:a,middlewareData:c}=t,{element:l,padding:p=0}=on(e,t)||{};if(l==null)return{};const u=hc(p),d={x:n,y:s},b=Ur(r),y=Fr(b),T=await i.getDimensions(l),L=b==="y",S=L?"top":"left",k=L?"bottom":"right",h=L?"clientHeight":"clientWidth",v=o.reference[y]+o.reference[b]-d[b]-o.floating[y],_=d[b]-o.reference[b],f=await(i.getOffsetParent==null?void 0:i.getOffsetParent(l));let m=f?f[h]:0;(!m||!await(i.isElement==null?void 0:i.isElement(f)))&&(m=a.floating[h]||o.floating[y]);const w=v/2-_/2,g=m/2-T[y]/2-1,x=Wn(u[S],g),N=Wn(u[k],g),P=x,C=m-T[y]-N,O=m/2-T[y]/2+w,B=sr(P,O,C),j=!c.arrow&&ot(r)!=null&&O!=B&&o.reference[y]/2-(O<P?x:N)-T[y]/2<0,K=j?O<P?O-P:O-C:0;return{[b]:d[b]+K,data:{[b]:B,centerOffset:O-B-K,...j&&{alignmentOffset:K}},reset:j}}});function Om(e,t,n){return(e?[...n.filter(r=>ot(r)===e),...n.filter(r=>ot(r)!==e)]:n.filter(r=>ht(r)===r)).filter(r=>e?ot(r)===e||(t?Ms(r)!==r:!1):!0)}const Im=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(t){var n,s,r;const{rects:o,middlewareData:i,placement:a,platform:c,elements:l}=t,{crossAxis:p=!1,alignment:u,allowedPlacements:d=Gi,autoAlignment:b=!0,...y}=on(e,t),T=u!==void 0||d===Gi?Om(u||null,b,d):d,L=await no(t,y),S=((n=i.autoPlacement)==null?void 0:n.index)||0,k=T[S];if(k==null)return{};const h=dc(k,o,await(c.isRTL==null?void 0:c.isRTL(l.floating)));if(a!==k)return{reset:{placement:T[0]}};const v=[L[ht(k)],L[h[0]],L[h[1]]],_=[...((s=i.autoPlacement)==null?void 0:s.overflows)||[],{placement:k,overflows:v}],f=T[S+1];if(f)return{data:{index:S+1,overflows:_},reset:{placement:f}};const m=_.map(x=>{const N=ot(x.placement);return[x.placement,N&&p?x.overflows.slice(0,2).reduce((P,C)=>P+C,0):x.overflows[0],x.overflows]}).sort((x,N)=>x[1]-N[1]),g=((r=m.filter(x=>x[2].slice(0,ot(x[0])?2:3).every(N=>N<=0))[0])==null?void 0:r[0])||m[0][0];return g!==a?{data:{index:S+1,overflows:_},reset:{placement:g}}:{}}}},Mm=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var n,s;const{placement:r,middlewareData:o,rects:i,initialPlacement:a,platform:c,elements:l}=t,{mainAxis:p=!0,crossAxis:u=!0,fallbackPlacements:d,fallbackStrategy:b="bestFit",fallbackAxisSideDirection:y="none",flipAlignment:T=!0,...L}=on(e,t);if((n=o.arrow)!=null&&n.alignmentOffset)return{};const S=ht(r),k=ht(a)===a,h=await(c.isRTL==null?void 0:c.isRTL(l.floating)),v=d||(k||!T?[Hs(a)]:Am(a));!d&&y!=="none"&&v.push(...Cm(a,T,y,h));const _=[a,...v],f=await no(t,L),m=[];let w=((s=o.flip)==null?void 0:s.overflows)||[];if(p&&m.push(f[S]),u){const P=dc(r,i,h);m.push(f[P[0]],f[P[1]])}if(w=[...w,{placement:r,overflows:m}],!m.every(P=>P<=0)){var g,x;const P=(((g=o.flip)==null?void 0:g.index)||0)+1,C=_[P];if(C)return{data:{index:P,overflows:w},reset:{placement:C}};let O=(x=w.filter(B=>B.overflows[0]<=0).sort((B,j)=>B.overflows[1]-j.overflows[1])[0])==null?void 0:x.placement;if(!O)switch(b){case"bestFit":{var N;const B=(N=w.map(j=>[j.placement,j.overflows.filter(K=>K>0).reduce((K,q)=>K+q,0)]).sort((j,K)=>j[1]-K[1])[0])==null?void 0:N[0];B&&(O=B);break}case"initialPlacement":O=a;break}if(r!==O)return{reset:{placement:O}}}return{}}}};async function Hm(e,t){const{placement:n,platform:s,elements:r}=e,o=await(s.isRTL==null?void 0:s.isRTL(r.floating)),i=ht(n),a=ot(n),c=Yn(n)==="y",l=["left","top"].includes(i)?-1:1,p=o&&c?-1:1,u=on(t,e);let{mainAxis:d,crossAxis:b,alignmentAxis:y}=typeof u=="number"?{mainAxis:u,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...u};return a&&typeof y=="number"&&(b=a==="end"?y*-1:y),c?{x:b*p,y:d*l}:{x:d*l,y:b*p}}const Bm=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var n,s;const{x:r,y:o,placement:i,middlewareData:a}=t,c=await Hm(t,e);return i===((n=a.offset)==null?void 0:n.placement)&&(s=a.arrow)!=null&&s.alignmentOffset?{}:{x:r+c.x,y:o+c.y,data:{...c,placement:i}}}}},Dm=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:s,placement:r}=t,{mainAxis:o=!0,crossAxis:i=!1,limiter:a={fn:L=>{let{x:S,y:k}=L;return{x:S,y:k}}},...c}=on(e,t),l={x:n,y:s},p=await no(t,c),u=Yn(ht(r)),d=pc(u);let b=l[d],y=l[u];if(o){const L=d==="y"?"top":"left",S=d==="y"?"bottom":"right",k=b+p[L],h=b-p[S];b=sr(k,b,h)}if(i){const L=u==="y"?"top":"left",S=u==="y"?"bottom":"right",k=y+p[L],h=y-p[S];y=sr(k,y,h)}const T=a.fn({...t,[d]:b,[u]:y});return{...T,data:{x:T.x-n,y:T.y-s}}}}},Fm=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){const{placement:n,rects:s,platform:r,elements:o}=t,{apply:i=()=>{},...a}=on(e,t),c=await no(t,a),l=ht(n),p=ot(n),u=Yn(n)==="y",{width:d,height:b}=s.floating;let y,T;l==="top"||l==="bottom"?(y=l,T=p===(await(r.isRTL==null?void 0:r.isRTL(o.floating))?"start":"end")?"left":"right"):(T=l,y=p==="end"?"top":"bottom");const L=b-c[y],S=d-c[T],k=!t.middlewareData.shift;let h=L,v=S;if(u){const f=d-c.left-c.right;v=p||k?Wn(S,f):f}else{const f=b-c.top-c.bottom;h=p||k?Wn(L,f):f}if(k&&!p){const f=Wt(c.left,0),m=Wt(c.right,0),w=Wt(c.top,0),g=Wt(c.bottom,0);u?v=d-2*(f!==0||m!==0?f+m:Wt(c.left,c.right)):h=b-2*(w!==0||g!==0?w+g:Wt(c.top,c.bottom))}await i({...t,availableWidth:v,availableHeight:h});const _=await r.getDimensions(o.floating);return d!==_.width||b!==_.height?{reset:{rects:!0}}:{}}}};function et(e){var t;return((t=e.ownerDocument)==null?void 0:t.defaultView)||window}function ut(e){return et(e).getComputedStyle(e)}const Vi=Math.min,jn=Math.max,Bs=Math.round;function mc(e){const t=ut(e);let n=parseFloat(t.width),s=parseFloat(t.height);const r=e.offsetWidth,o=e.offsetHeight,i=Bs(n)!==r||Bs(s)!==o;return i&&(n=r,s=o),{width:n,height:s,fallback:i}}function Bt(e){return yc(e)?(e.nodeName||"").toLowerCase():""}let cs;function gc(){if(cs)return cs;const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?(cs=e.brands.map(t=>t.brand+"/"+t.version).join(" "),cs):navigator.userAgent}function ft(e){return e instanceof et(e).HTMLElement}function jt(e){return e instanceof et(e).Element}function yc(e){return e instanceof et(e).Node}function qi(e){return typeof ShadowRoot>"u"?!1:e instanceof et(e).ShadowRoot||e instanceof ShadowRoot}function so(e){const{overflow:t,overflowX:n,overflowY:s,display:r}=ut(e);return/auto|scroll|overlay|hidden|clip/.test(t+s+n)&&!["inline","contents"].includes(r)}function Um(e){return["table","td","th"].includes(Bt(e))}function or(e){const t=/firefox/i.test(gc()),n=ut(e),s=n.backdropFilter||n.WebkitBackdropFilter;return n.transform!=="none"||n.perspective!=="none"||!!s&&s!=="none"||t&&n.willChange==="filter"||t&&!!n.filter&&n.filter!=="none"||["transform","perspective"].some(r=>n.willChange.includes(r))||["paint","layout","strict","content"].some(r=>{const o=n.contain;return o!=null&&o.includes(r)})}function _c(){return!/^((?!chrome|android).)*safari/i.test(gc())}function Gr(e){return["html","body","#document"].includes(Bt(e))}function bc(e){return jt(e)?e:e.contextElement}const vc={x:1,y:1};function gn(e){const t=bc(e);if(!ft(t))return vc;const n=t.getBoundingClientRect(),{width:s,height:r,fallback:o}=mc(t);let i=(o?Bs(n.width):n.width)/s,a=(o?Bs(n.height):n.height)/r;return i&&Number.isFinite(i)||(i=1),a&&Number.isFinite(a)||(a=1),{x:i,y:a}}function Vn(e,t,n,s){var r,o;t===void 0&&(t=!1),n===void 0&&(n=!1);const i=e.getBoundingClientRect(),a=bc(e);let c=vc;t&&(s?jt(s)&&(c=gn(s)):c=gn(e));const l=a?et(a):window,p=!_c()&&n;let u=(i.left+(p&&((r=l.visualViewport)==null?void 0:r.offsetLeft)||0))/c.x,d=(i.top+(p&&((o=l.visualViewport)==null?void 0:o.offsetTop)||0))/c.y,b=i.width/c.x,y=i.height/c.y;if(a){const T=et(a),L=s&&jt(s)?et(s):s;let S=T.frameElement;for(;S&&s&&L!==T;){const k=gn(S),h=S.getBoundingClientRect(),v=getComputedStyle(S);h.x+=(S.clientLeft+parseFloat(v.paddingLeft))*k.x,h.y+=(S.clientTop+parseFloat(v.paddingTop))*k.y,u*=k.x,d*=k.y,b*=k.x,y*=k.y,u+=h.x,d+=h.y,S=et(S).frameElement}}return{width:b,height:y,top:d,right:u+b,bottom:d+y,left:u,x:u,y:d}}function Ot(e){return((yc(e)?e.ownerDocument:e.document)||window.document).documentElement}function oo(e){return jt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function wc(e){return Vn(Ot(e)).left+oo(e).scrollLeft}function qn(e){if(Bt(e)==="html")return e;const t=e.assignedSlot||e.parentNode||qi(e)&&e.host||Ot(e);return qi(t)?t.host:t}function xc(e){const t=qn(e);return Gr(t)?t.ownerDocument.body:ft(t)&&so(t)?t:xc(t)}function Ds(e,t){var n;t===void 0&&(t=[]);const s=xc(e),r=s===((n=e.ownerDocument)==null?void 0:n.body),o=et(s);return r?t.concat(o,o.visualViewport||[],so(s)?s:[]):t.concat(s,Ds(s))}function zi(e,t,n){return t==="viewport"?$n(function(s,r){const o=et(s),i=Ot(s),a=o.visualViewport;let c=i.clientWidth,l=i.clientHeight,p=0,u=0;if(a){c=a.width,l=a.height;const d=_c();(d||!d&&r==="fixed")&&(p=a.offsetLeft,u=a.offsetTop)}return{width:c,height:l,x:p,y:u}}(e,n)):jt(t)?$n(function(s,r){const o=Vn(s,!0,r==="fixed"),i=o.top+s.clientTop,a=o.left+s.clientLeft,c=ft(s)?gn(s):{x:1,y:1};return{width:s.clientWidth*c.x,height:s.clientHeight*c.y,x:a*c.x,y:i*c.y}}(t,n)):$n(function(s){const r=Ot(s),o=oo(s),i=s.ownerDocument.body,a=jn(r.scrollWidth,r.clientWidth,i.scrollWidth,i.clientWidth),c=jn(r.scrollHeight,r.clientHeight,i.scrollHeight,i.clientHeight);let l=-o.scrollLeft+wc(s);const p=-o.scrollTop;return ut(i).direction==="rtl"&&(l+=jn(r.clientWidth,i.clientWidth)-a),{width:a,height:c,x:l,y:p}}(Ot(e)))}function Ki(e){return ft(e)&&ut(e).position!=="fixed"?e.offsetParent:null}function Ji(e){const t=et(e);let n=Ki(e);for(;n&&Um(n)&&ut(n).position==="static";)n=Ki(n);return n&&(Bt(n)==="html"||Bt(n)==="body"&&ut(n).position==="static"&&!or(n))?t:n||function(s){let r=qn(s);for(;ft(r)&&!Gr(r);){if(or(r))return r;r=qn(r)}return null}(e)||t}function Gm(e,t,n){const s=ft(t),r=Ot(t),o=Vn(e,!0,n==="fixed",t);let i={scrollLeft:0,scrollTop:0};const a={x:0,y:0};if(s||!s&&n!=="fixed")if((Bt(t)!=="body"||so(r))&&(i=oo(t)),ft(t)){const c=Vn(t,!0);a.x=c.x+t.clientLeft,a.y=c.y+t.clientTop}else r&&(a.x=wc(r));return{x:o.left+i.scrollLeft-a.x,y:o.top+i.scrollTop-a.y,width:o.width,height:o.height}}const Wm={getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:s,strategy:r}=e;const o=n==="clippingAncestors"?function(l,p){const u=p.get(l);if(u)return u;let d=Ds(l).filter(L=>jt(L)&&Bt(L)!=="body"),b=null;const y=ut(l).position==="fixed";let T=y?qn(l):l;for(;jt(T)&&!Gr(T);){const L=ut(T),S=or(T);(y?S||b:S||L.position!=="static"||!b||!["absolute","fixed"].includes(b.position))?b=L:d=d.filter(k=>k!==T),T=qn(T)}return p.set(l,d),d}(t,this._c):[].concat(n),i=[...o,s],a=i[0],c=i.reduce((l,p)=>{const u=zi(t,p,r);return l.top=jn(u.top,l.top),l.right=Vi(u.right,l.right),l.bottom=Vi(u.bottom,l.bottom),l.left=jn(u.left,l.left),l},zi(t,a,r));return{width:c.right-c.left,height:c.bottom-c.top,x:c.left,y:c.top}},convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{rect:t,offsetParent:n,strategy:s}=e;const r=ft(n),o=Ot(n);if(n===o)return t;let i={scrollLeft:0,scrollTop:0},a={x:1,y:1};const c={x:0,y:0};if((r||!r&&s!=="fixed")&&((Bt(n)!=="body"||so(o))&&(i=oo(n)),ft(n))){const l=Vn(n);a=gn(n),c.x=l.x+n.clientLeft,c.y=l.y+n.clientTop}return{width:t.width*a.x,height:t.height*a.y,x:t.x*a.x-i.scrollLeft*a.x+c.x,y:t.y*a.y-i.scrollTop*a.y+c.y}},isElement:jt,getDimensions:function(e){return ft(e)?mc(e):e.getBoundingClientRect()},getOffsetParent:Ji,getDocumentElement:Ot,getScale:gn,async getElementRects(e){let{reference:t,floating:n,strategy:s}=e;const r=this.getOffsetParent||Ji,o=this.getDimensions;return{reference:Gm(t,await r(n),s),floating:{x:0,y:0,...await o(n)}}},getClientRects:e=>Array.from(e.getClientRects()),isRTL:e=>ut(e).direction==="rtl"},Vm=(e,t,n)=>{const s=new Map,r={platform:Wm,...n},o={...r.platform,_c:s};return $m(e,t,{...r,platform:o})};function kc(e,t){for(const n in t)Object.prototype.hasOwnProperty.call(t,n)&&(typeof t[n]=="object"&&e[n]?kc(e[n],t[n]):e[n]=t[n])}const vt={disabled:!1,distance:5,skidding:0,container:"body",boundary:void 0,instantMove:!1,disposeTimeout:5e3,popperTriggers:[],strategy:"absolute",preventOverflow:!0,flip:!0,shift:!0,overflowPadding:0,arrowPadding:0,arrowOverflow:!0,themes:{tooltip:{placement:"top",triggers:["hover","focus","touch"],hideTriggers:e=>[...e,"click"],delay:{show:200,hide:0},handleResize:!1,html:!1,loadingContent:"..."},dropdown:{placement:"bottom",triggers:["click"],delay:0,handleResize:!0,autoHide:!0},menu:{$extend:"dropdown",triggers:["hover","focus"],popperTriggers:["hover","focus"],delay:{show:0,hide:400}}}};function zn(e,t){let n=vt.themes[e]||{},s;do s=n[t],typeof s>"u"?n.$extend?n=vt.themes[n.$extend]||{}:(n=null,s=vt[t]):n=null;while(n);return s}function qm(e){const t=[e];let n=vt.themes[e]||{};do n.$extend&&!n.$resetCss?(t.push(n.$extend),n=vt.themes[n.$extend]||{}):n=null;while(n);return t.map(s=>`v-popper--theme-${s}`)}function Xi(e){const t=[e];let n=vt.themes[e]||{};do n.$extend?(t.push(n.$extend),n=vt.themes[n.$extend]||{}):n=null;while(n);return t}let Yt=!1;if(typeof window<"u"){Yt=!1;try{const e=Object.defineProperty({},"passive",{get(){Yt=!0}});window.addEventListener("test",null,e)}catch{}}let Nc=!1;typeof window<"u"&&typeof navigator<"u"&&(Nc=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);const Sc=["auto","top","bottom","left","right"].reduce((e,t)=>e.concat([t,`${t}-start`,`${t}-end`]),[]),Qi={hover:"mouseenter",focus:"focus",click:"click",touch:"touchstart",pointer:"pointerdown"},Yi={hover:"mouseleave",focus:"blur",click:"click",touch:"touchend",pointer:"pointerup"};function Zi(e,t){const n=e.indexOf(t);n!==-1&&e.splice(n,1)}function ko(){return new Promise(e=>requestAnimationFrame(()=>{requestAnimationFrame(e)}))}const nt=[];let Ut=null;const ea={};function ta(e){let t=ea[e];return t||(t=ea[e]=[]),t}let rr=function(){};typeof window<"u"&&(rr=window.Element);function pe(e){return function(t){return zn(t.theme,e)}}const No="__floating-vue__popper",Tc=()=>Ve({name:"VPopper",provide(){return{[No]:{parentPopper:this}}},inject:{[No]:{default:null}},props:{theme:{type:String,required:!0},targetNodes:{type:Function,required:!0},referenceNode:{type:Function,default:null},popperNode:{type:Function,required:!0},shown:{type:Boolean,default:!1},showGroup:{type:String,default:null},ariaId:{default:null},disabled:{type:Boolean,default:pe("disabled")},positioningDisabled:{type:Boolean,default:pe("positioningDisabled")},placement:{type:String,default:pe("placement"),validator:e=>Sc.includes(e)},delay:{type:[String,Number,Object],default:pe("delay")},distance:{type:[Number,String],default:pe("distance")},skidding:{type:[Number,String],default:pe("skidding")},triggers:{type:Array,default:pe("triggers")},showTriggers:{type:[Array,Function],default:pe("showTriggers")},hideTriggers:{type:[Array,Function],default:pe("hideTriggers")},popperTriggers:{type:Array,default:pe("popperTriggers")},popperShowTriggers:{type:[Array,Function],default:pe("popperShowTriggers")},popperHideTriggers:{type:[Array,Function],default:pe("popperHideTriggers")},container:{type:[String,Object,rr,Boolean],default:pe("container")},boundary:{type:[String,rr],default:pe("boundary")},strategy:{type:String,validator:e=>["absolute","fixed"].includes(e),default:pe("strategy")},autoHide:{type:[Boolean,Function],default:pe("autoHide")},handleResize:{type:Boolean,default:pe("handleResize")},instantMove:{type:Boolean,default:pe("instantMove")},eagerMount:{type:Boolean,default:pe("eagerMount")},popperClass:{type:[String,Array,Object],default:pe("popperClass")},computeTransformOrigin:{type:Boolean,default:pe("computeTransformOrigin")},autoMinSize:{type:Boolean,default:pe("autoMinSize")},autoSize:{type:[Boolean,String],default:pe("autoSize")},autoMaxSize:{type:Boolean,default:pe("autoMaxSize")},autoBoundaryMaxSize:{type:Boolean,default:pe("autoBoundaryMaxSize")},preventOverflow:{type:Boolean,default:pe("preventOverflow")},overflowPadding:{type:[Number,String],default:pe("overflowPadding")},arrowPadding:{type:[Number,String],default:pe("arrowPadding")},arrowOverflow:{type:Boolean,default:pe("arrowOverflow")},flip:{type:Boolean,default:pe("flip")},shift:{type:Boolean,default:pe("shift")},shiftCrossAxis:{type:Boolean,default:pe("shiftCrossAxis")},noAutoFocus:{type:Boolean,default:pe("noAutoFocus")},disposeTimeout:{type:Number,default:pe("disposeTimeout")}},emits:["show","hide","update:shown","apply-show","apply-hide","close-group","close-directive","auto-hide","resize","dispose"],data(){return{isShown:!1,isMounted:!1,skipTransition:!1,classes:{showFrom:!1,showTo:!1,hideFrom:!1,hideTo:!0},result:{x:0,y:0,placement:"",strategy:this.strategy,arrow:{x:0,y:0,centerOffset:0},transformOrigin:null},shownChildren:new Set,lastAutoHide:!0}},computed:{popperId(){return this.ariaId!=null?this.ariaId:this.randomId},shouldMountContent(){return this.eagerMount||this.isMounted},slotData(){return{popperId:this.popperId,isShown:this.isShown,shouldMountContent:this.shouldMountContent,skipTransition:this.skipTransition,autoHide:typeof this.autoHide=="function"?this.lastAutoHide:this.autoHide,show:this.show,hide:this.hide,handleResize:this.handleResize,onResize:this.onResize,classes:{...this.classes,popperClass:this.popperClass},result:this.positioningDisabled?null:this.result,attrs:this.$attrs}},parentPopper(){var e;return(e=this[No])==null?void 0:e.parentPopper},hasPopperShowTriggerHover(){var e,t;return((e=this.popperTriggers)==null?void 0:e.includes("hover"))||((t=this.popperShowTriggers)==null?void 0:t.includes("hover"))}},watch:{shown:"$_autoShowHide",disabled(e){e?this.dispose():this.init()},async container(){this.isShown&&(this.$_ensureTeleport(),await this.$_computePosition())},...["triggers","positioningDisabled"].reduce((e,t)=>(e[t]="$_refreshListeners",e),{}),...["placement","distance","skidding","boundary","strategy","overflowPadding","arrowPadding","preventOverflow","shift","shiftCrossAxis","flip"].reduce((e,t)=>(e[t]="$_computePosition",e),{})},created(){this.$_isDisposed=!0,this.randomId=`popper_${[Math.random(),Date.now()].map(e=>e.toString(36).substring(2,10)).join("_")}`,this.autoMinSize&&console.warn('[floating-vue] `autoMinSize` option is deprecated. Use `autoSize="min"` instead.'),this.autoMaxSize&&console.warn("[floating-vue] `autoMaxSize` option is deprecated. Use `autoBoundaryMaxSize` instead.")},mounted(){this.init(),this.$_detachPopperNode()},activated(){this.$_autoShowHide()},deactivated(){this.hide()},beforeUnmount(){this.dispose()},methods:{show({event:e=null,skipDelay:t=!1,force:n=!1}={}){var s,r;(s=this.parentPopper)!=null&&s.lockedChild&&this.parentPopper.lockedChild!==this||(this.$_pendingHide=!1,(n||!this.disabled)&&(((r=this.parentPopper)==null?void 0:r.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_scheduleShow(e,t),this.$emit("show"),this.$_showFrameLocked=!0,requestAnimationFrame(()=>{this.$_showFrameLocked=!1})),this.$emit("update:shown",!0))},hide({event:e=null,skipDelay:t=!1}={}){var n;if(!this.$_hideInProgress){if(this.shownChildren.size>0){this.$_pendingHide=!0;return}if(this.hasPopperShowTriggerHover&&this.$_isAimingPopper()){this.parentPopper&&(this.parentPopper.lockedChild=this,clearTimeout(this.parentPopper.lockedChildTimer),this.parentPopper.lockedChildTimer=setTimeout(()=>{this.parentPopper.lockedChild===this&&(this.parentPopper.lockedChild.hide({skipDelay:t}),this.parentPopper.lockedChild=null)},1e3));return}((n=this.parentPopper)==null?void 0:n.lockedChild)===this&&(this.parentPopper.lockedChild=null),this.$_pendingHide=!1,this.$_scheduleHide(e,t),this.$emit("hide"),this.$emit("update:shown",!1)}},init(){var e;this.$_isDisposed&&(this.$_isDisposed=!1,this.isMounted=!1,this.$_events=[],this.$_preventShow=!1,this.$_referenceNode=((e=this.referenceNode)==null?void 0:e.call(this))??this.$el,this.$_targetNodes=this.targetNodes().filter(t=>t.nodeType===t.ELEMENT_NODE),this.$_popperNode=this.popperNode(),this.$_innerNode=this.$_popperNode.querySelector(".v-popper__inner"),this.$_arrowNode=this.$_popperNode.querySelector(".v-popper__arrow-container"),this.$_swapTargetAttrs("title","data-original-title"),this.$_detachPopperNode(),this.triggers.length&&this.$_addEventListeners(),this.shown&&this.show())},dispose(){this.$_isDisposed||(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.$_detachPopperNode(),this.isMounted=!1,this.isShown=!1,this.$_updateParentShownChildren(!1),this.$_swapTargetAttrs("data-original-title","title"),this.$emit("dispose"))},async onResize(){this.isShown&&(await this.$_computePosition(),this.$emit("resize"))},async $_computePosition(){if(this.$_isDisposed||this.positioningDisabled)return;const e={strategy:this.strategy,middleware:[]};(this.distance||this.skidding)&&e.middleware.push(Bm({mainAxis:this.distance,crossAxis:this.skidding}));const t=this.placement.startsWith("auto");if(t?e.middleware.push(Im({alignment:this.placement.split("-")[1]??""})):e.placement=this.placement,this.preventOverflow&&(this.shift&&e.middleware.push(Dm({padding:this.overflowPadding,boundary:this.boundary,crossAxis:this.shiftCrossAxis})),!t&&this.flip&&e.middleware.push(Mm({padding:this.overflowPadding,boundary:this.boundary}))),e.middleware.push(jm({element:this.$_arrowNode,padding:this.arrowPadding})),this.arrowOverflow&&e.middleware.push({name:"arrowOverflow",fn:({placement:s,rects:r,middlewareData:o})=>{let i;const{centerOffset:a}=o.arrow;return s.startsWith("top")||s.startsWith("bottom")?i=Math.abs(a)>r.reference.width/2:i=Math.abs(a)>r.reference.height/2,{data:{overflow:i}}}}),this.autoMinSize||this.autoSize){const s=this.autoSize?this.autoSize:this.autoMinSize?"min":null;e.middleware.push({name:"autoSize",fn:({rects:r,placement:o,middlewareData:i})=>{var a;if((a=i.autoSize)!=null&&a.skip)return{};let c,l;return o.startsWith("top")||o.startsWith("bottom")?c=r.reference.width:l=r.reference.height,this.$_innerNode.style[s==="min"?"minWidth":s==="max"?"maxWidth":"width"]=c!=null?`${c}px`:null,this.$_innerNode.style[s==="min"?"minHeight":s==="max"?"maxHeight":"height"]=l!=null?`${l}px`:null,{data:{skip:!0},reset:{rects:!0}}}})}(this.autoMaxSize||this.autoBoundaryMaxSize)&&(this.$_innerNode.style.maxWidth=null,this.$_innerNode.style.maxHeight=null,e.middleware.push(Fm({boundary:this.boundary,padding:this.overflowPadding,apply:({availableWidth:s,availableHeight:r})=>{this.$_innerNode.style.maxWidth=s!=null?`${s}px`:null,this.$_innerNode.style.maxHeight=r!=null?`${r}px`:null}})));const n=await Vm(this.$_referenceNode,this.$_popperNode,e);Object.assign(this.result,{x:n.x,y:n.y,placement:n.placement,strategy:n.strategy,arrow:{...n.middlewareData.arrow,...n.middlewareData.arrowOverflow}})},$_scheduleShow(e=null,t=!1){if(this.$_updateParentShownChildren(!0),this.$_hideInProgress=!1,clearTimeout(this.$_scheduleTimer),Ut&&this.instantMove&&Ut.instantMove&&Ut!==this.parentPopper){Ut.$_applyHide(!0),this.$_applyShow(!0);return}t?this.$_applyShow():this.$_scheduleTimer=setTimeout(this.$_applyShow.bind(this),this.$_computeDelay("show"))},$_scheduleHide(e=null,t=!1){if(this.shownChildren.size>0){this.$_pendingHide=!0;return}this.$_updateParentShownChildren(!1),this.$_hideInProgress=!0,clearTimeout(this.$_scheduleTimer),this.isShown&&(Ut=this),t?this.$_applyHide():this.$_scheduleTimer=setTimeout(this.$_applyHide.bind(this),this.$_computeDelay("hide"))},$_computeDelay(e){const t=this.delay;return parseInt(t&&t[e]||t||0)},async $_applyShow(e=!1){clearTimeout(this.$_disposeTimer),clearTimeout(this.$_scheduleTimer),this.skipTransition=e,!this.isShown&&(this.$_ensureTeleport(),await ko(),await this.$_computePosition(),await this.$_applyShowEffect(),this.positioningDisabled||this.$_registerEventListeners([...Ds(this.$_referenceNode),...Ds(this.$_popperNode)],"scroll",()=>{this.$_computePosition()}))},async $_applyShowEffect(){if(this.$_hideInProgress)return;if(this.computeTransformOrigin){const t=this.$_referenceNode.getBoundingClientRect(),n=this.$_popperNode.querySelector(".v-popper__wrapper"),s=n.parentNode.getBoundingClientRect(),r=t.x+t.width/2-(s.left+n.offsetLeft),o=t.y+t.height/2-(s.top+n.offsetTop);this.result.transformOrigin=`${r}px ${o}px`}this.isShown=!0,this.$_applyAttrsToTarget({"aria-describedby":this.popperId,"data-popper-shown":""});const e=this.showGroup;if(e){let t;for(let n=0;n<nt.length;n++)t=nt[n],t.showGroup!==e&&(t.hide(),t.$emit("close-group"))}nt.push(this),document.body.classList.add("v-popper--some-open");for(const t of Xi(this.theme))ta(t).push(this),document.body.classList.add(`v-popper--some-open--${t}`);this.$emit("apply-show"),this.classes.showFrom=!0,this.classes.showTo=!1,this.classes.hideFrom=!1,this.classes.hideTo=!1,await ko(),this.classes.showFrom=!1,this.classes.showTo=!0,this.noAutoFocus||this.$_popperNode.focus()},async $_applyHide(e=!1){if(this.shownChildren.size>0){this.$_pendingHide=!0,this.$_hideInProgress=!1;return}if(clearTimeout(this.$_scheduleTimer),!this.isShown)return;this.skipTransition=e,Zi(nt,this),nt.length===0&&document.body.classList.remove("v-popper--some-open");for(const n of Xi(this.theme)){const s=ta(n);Zi(s,this),s.length===0&&document.body.classList.remove(`v-popper--some-open--${n}`)}Ut===this&&(Ut=null),this.isShown=!1,this.$_applyAttrsToTarget({"aria-describedby":void 0,"data-popper-shown":void 0}),clearTimeout(this.$_disposeTimer);const t=this.disposeTimeout;t!==null&&(this.$_disposeTimer=setTimeout(()=>{this.$_popperNode&&(this.$_detachPopperNode(),this.isMounted=!1)},t)),this.$_removeEventListeners("scroll"),this.$emit("apply-hide"),this.classes.showFrom=!1,this.classes.showTo=!1,this.classes.hideFrom=!0,this.classes.hideTo=!1,await ko(),this.classes.hideFrom=!1,this.classes.hideTo=!0},$_autoShowHide(){this.shown?this.show():this.hide()},$_ensureTeleport(){if(this.$_isDisposed)return;let e=this.container;if(typeof e=="string"?e=window.document.querySelector(e):e===!1&&(e=this.$_targetNodes[0].parentNode),!e)throw new Error("No container for popover: "+this.container);e.appendChild(this.$_popperNode),this.isMounted=!0},$_addEventListeners(){const e=n=>{this.isShown&&!this.$_hideInProgress||(n.usedByTooltip=!0,!this.$_preventShow&&this.show({event:n}))};this.$_registerTriggerListeners(this.$_targetNodes,Qi,this.triggers,this.showTriggers,e),this.$_registerTriggerListeners([this.$_popperNode],Qi,this.popperTriggers,this.popperShowTriggers,e);const t=n=>{n.usedByTooltip||this.hide({event:n})};this.$_registerTriggerListeners(this.$_targetNodes,Yi,this.triggers,this.hideTriggers,t),this.$_registerTriggerListeners([this.$_popperNode],Yi,this.popperTriggers,this.popperHideTriggers,t)},$_registerEventListeners(e,t,n){this.$_events.push({targetNodes:e,eventType:t,handler:n}),e.forEach(s=>s.addEventListener(t,n,Yt?{passive:!0}:void 0))},$_registerTriggerListeners(e,t,n,s,r){let o=n;s!=null&&(o=typeof s=="function"?s(o):s),o.forEach(i=>{const a=t[i];a&&this.$_registerEventListeners(e,a,r)})},$_removeEventListeners(e){const t=[];this.$_events.forEach(n=>{const{targetNodes:s,eventType:r,handler:o}=n;!e||e===r?s.forEach(i=>i.removeEventListener(r,o)):t.push(n)}),this.$_events=t},$_refreshListeners(){this.$_isDisposed||(this.$_removeEventListeners(),this.$_addEventListeners())},$_handleGlobalClose(e,t=!1){this.$_showFrameLocked||(this.hide({event:e}),e.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),t&&(this.$_preventShow=!0,setTimeout(()=>{this.$_preventShow=!1},300)))},$_detachPopperNode(){this.$_popperNode.parentNode&&this.$_popperNode.parentNode.removeChild(this.$_popperNode)},$_swapTargetAttrs(e,t){for(const n of this.$_targetNodes){const s=n.getAttribute(e);s&&(n.removeAttribute(e),n.setAttribute(t,s))}},$_applyAttrsToTarget(e){for(const t of this.$_targetNodes)for(const n in e){const s=e[n];s==null?t.removeAttribute(n):t.setAttribute(n,s)}},$_updateParentShownChildren(e){let t=this.parentPopper;for(;t;)e?t.shownChildren.add(this.randomId):(t.shownChildren.delete(this.randomId),t.$_pendingHide&&t.hide()),t=t.parentPopper},$_isAimingPopper(){const e=this.$_referenceNode.getBoundingClientRect();if(On>=e.left&&On<=e.right&&In>=e.top&&In<=e.bottom){const t=this.$_popperNode.getBoundingClientRect(),n=On-St,s=In-Tt,r=t.left+t.width/2-St+(t.top+t.height/2)-Tt+t.width+t.height,o=St+n*r,i=Tt+s*r;return us(St,Tt,o,i,t.left,t.top,t.left,t.bottom)||us(St,Tt,o,i,t.left,t.top,t.right,t.top)||us(St,Tt,o,i,t.right,t.top,t.right,t.bottom)||us(St,Tt,o,i,t.left,t.bottom,t.right,t.bottom)}return!1}},render(){return this.$slots.default(this.slotData)}});typeof document<"u"&&typeof window<"u"&&(Nc?(document.addEventListener("touchstart",na,Yt?{passive:!0,capture:!0}:!0),document.addEventListener("touchend",Km,Yt?{passive:!0,capture:!0}:!0)):(window.addEventListener("mousedown",na,!0),window.addEventListener("click",zm,!0)),window.addEventListener("resize",Qm));function na(e){for(let t=0;t<nt.length;t++){const n=nt[t];try{const s=n.popperNode();n.$_mouseDownContains=s.contains(e.target)}catch{}}}function zm(e){Lc(e)}function Km(e){Lc(e,!0)}function Lc(e,t=!1){const n={};for(let s=nt.length-1;s>=0;s--){const r=nt[s];try{const o=r.$_containsGlobalTarget=Jm(r,e);r.$_pendingHide=!1,requestAnimationFrame(()=>{if(r.$_pendingHide=!1,!n[r.randomId]&&sa(r,o,e)){if(r.$_handleGlobalClose(e,t),!e.closeAllPopover&&e.closePopover&&o){let a=r.parentPopper;for(;a;)n[a.randomId]=!0,a=a.parentPopper;return}let i=r.parentPopper;for(;i&&sa(i,i.$_containsGlobalTarget,e);)i.$_handleGlobalClose(e,t),i=i.parentPopper}})}catch{}}}function Jm(e,t){const n=e.popperNode();return e.$_mouseDownContains||n.contains(t.target)}function sa(e,t,n){return n.closeAllPopover||n.closePopover&&t||Xm(e,n)&&!t}function Xm(e,t){if(typeof e.autoHide=="function"){const n=e.autoHide(t);return e.lastAutoHide=n,n}return e.autoHide}function Qm(e){for(let t=0;t<nt.length;t++)nt[t].$_computePosition(e)}let St=0,Tt=0,On=0,In=0;typeof window<"u"&&window.addEventListener("mousemove",e=>{St=On,Tt=In,On=e.clientX,In=e.clientY},Yt?{passive:!0}:void 0);function us(e,t,n,s,r,o,i,a){const c=((i-r)*(t-o)-(a-o)*(e-r))/((a-o)*(n-e)-(i-r)*(s-t)),l=((n-e)*(t-o)-(s-t)*(e-r))/((a-o)*(n-e)-(i-r)*(s-t));return c>=0&&c<=1&&l>=0&&l<=1}const Ym={extends:Tc()},ro=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n};function Zm(e,t,n,s,r,o){return X(),re("div",{ref:"reference",class:Pe(["v-popper",{"v-popper--shown":e.slotData.isShown}])},[Ge(e.$slots,"default",Sa(Rr(e.slotData)))],2)}const eg=ro(Ym,[["render",Zm]]);function tg(){var e=window.navigator.userAgent,t=e.indexOf("MSIE ");if(t>0)return parseInt(e.substring(t+5,e.indexOf(".",t)),10);var n=e.indexOf("Trident/");if(n>0){var s=e.indexOf("rv:");return parseInt(e.substring(s+3,e.indexOf(".",s)),10)}var r=e.indexOf("Edge/");return r>0?parseInt(e.substring(r+5,e.indexOf(".",r)),10):-1}let _s;function ir(){ir.init||(ir.init=!0,_s=tg()!==-1)}var io={name:"ResizeObserver",props:{emitOnMount:{type:Boolean,default:!1},ignoreWidth:{type:Boolean,default:!1},ignoreHeight:{type:Boolean,default:!1}},emits:["notify"],mounted(){ir(),nn(()=>{this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitOnMount&&this.emitSize()});const e=document.createElement("object");this._resizeObject=e,e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",_s&&this.$el.appendChild(e),e.data="about:blank",_s||this.$el.appendChild(e)},beforeUnmount(){this.removeResizeHandlers()},methods:{compareAndNotify(){(!this.ignoreWidth&&this._w!==this.$el.offsetWidth||!this.ignoreHeight&&this._h!==this.$el.offsetHeight)&&(this._w=this.$el.offsetWidth,this._h=this.$el.offsetHeight,this.emitSize())},emitSize(){this.$emit("notify",{width:this._w,height:this._h})},addResizeHandlers(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.compareAndNotify),this.compareAndNotify()},removeResizeHandlers(){this._resizeObject&&this._resizeObject.onload&&(!_s&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.compareAndNotify),this.$el.removeChild(this._resizeObject),this._resizeObject.onload=null,this._resizeObject=null)}}};const ng=sf();Za("data-v-b329ee4c");const sg={class:"resize-observer",tabindex:"-1"};el();const og=ng((e,t,n,s,r,o)=>(X(),Se("div",sg)));io.render=og;io.__scopeId="data-v-b329ee4c";io.__file="src/components/ResizeObserver.vue";const Pc=(e="theme")=>({computed:{themeClass(){return qm(this[e])}}}),rg=Ve({name:"VPopperContent",components:{ResizeObserver:io},mixins:[Pc()],props:{popperId:String,theme:String,shown:Boolean,mounted:Boolean,skipTransition:Boolean,autoHide:Boolean,handleResize:Boolean,classes:Object,result:Object},emits:["hide","resize"],methods:{toPx(e){return e!=null&&!isNaN(e)?`${e}px`:null}}}),ig=["id","aria-hidden","tabindex","data-popper-placement"],ag={ref:"inner",class:"v-popper__inner"},lg=V("div",{class:"v-popper__arrow-outer"},null,-1),cg=V("div",{class:"v-popper__arrow-inner"},null,-1),ug=[lg,cg];function fg(e,t,n,s,r,o){const i=Qt("ResizeObserver");return X(),re("div",{id:e.popperId,ref:"popover",class:Pe(["v-popper__popper",[e.themeClass,e.classes.popperClass,{"v-popper__popper--shown":e.shown,"v-popper__popper--hidden":!e.shown,"v-popper__popper--show-from":e.classes.showFrom,"v-popper__popper--show-to":e.classes.showTo,"v-popper__popper--hide-from":e.classes.hideFrom,"v-popper__popper--hide-to":e.classes.hideTo,"v-popper__popper--skip-transition":e.skipTransition,"v-popper__popper--arrow-overflow":e.result&&e.result.arrow.overflow,"v-popper__popper--no-positioning":!e.result}]]),style:zt(e.result?{position:e.result.strategy,transform:`translate3d(${Math.round(e.result.x)}px,${Math.round(e.result.y)}px,0)`}:void 0),"aria-hidden":e.shown?"false":"true",tabindex:e.autoHide?0:void 0,"data-popper-placement":e.result?e.result.placement:void 0,onKeyup:t[2]||(t[2]=Rp(a=>e.autoHide&&e.$emit("hide"),["esc"]))},[V("div",{class:"v-popper__backdrop",onClick:t[0]||(t[0]=a=>e.autoHide&&e.$emit("hide"))}),V("div",{class:"v-popper__wrapper",style:zt(e.result?{transformOrigin:e.result.transformOrigin}:void 0)},[V("div",ag,[e.mounted?(X(),re(Ne,{key:0},[V("div",null,[Ge(e.$slots,"default")]),e.handleResize?(X(),Se(i,{key:0,onNotify:t[1]||(t[1]=a=>e.$emit("resize",a))})):je("",!0)],64)):je("",!0)],512),V("div",{ref:"arrow",class:"v-popper__arrow-container",style:zt(e.result?{left:e.toPx(e.result.arrow.x),top:e.toPx(e.result.arrow.y)}:void 0)},ug,4)],4)],46,ig)}const Ac=ro(rg,[["render",fg]]),Rc={methods:{show(...e){return this.$refs.popper.show(...e)},hide(...e){return this.$refs.popper.hide(...e)},dispose(...e){return this.$refs.popper.dispose(...e)},onResize(...e){return this.$refs.popper.onResize(...e)}}},pg=Ve({name:"VPopperWrapper",components:{Popper:eg,PopperContent:Ac},mixins:[Rc,Pc("finalTheme")],props:{theme:{type:String,default:null}},computed:{finalTheme(){return this.theme??this.$options.vPopperTheme}},methods:{getTargetNodes(){return Array.from(this.$el.children).filter(e=>e!==this.$refs.popperContent.$el)}}});function dg(e,t,n,s,r,o){const i=Qt("PopperContent"),a=Qt("Popper");return X(),Se(a,{ref:"popper",theme:e.finalTheme,"target-nodes":e.getTargetNodes,"popper-node":()=>e.$refs.popperContent.$el,class:Pe([e.themeClass])},{default:ae(({popperId:c,isShown:l,shouldMountContent:p,skipTransition:u,autoHide:d,show:b,hide:y,handleResize:T,onResize:L,classes:S,result:k})=>[Ge(e.$slots,"default",{shown:l,show:b,hide:y}),Y(i,{ref:"popperContent","popper-id":c,theme:e.finalTheme,shown:l,mounted:p,"skip-transition":u,"auto-hide":d,"handle-resize":T,classes:S,result:k,onHide:y,onResize:L},{default:ae(()=>[Ge(e.$slots,"popper",{shown:l,hide:y})]),_:2},1032,["popper-id","theme","shown","mounted","skip-transition","auto-hide","handle-resize","classes","result","onHide","onResize"])]),_:3},8,["theme","target-nodes","popper-node","class"])}const Wr=ro(pg,[["render",dg]]),hg={...Wr,name:"VDropdown",vPopperTheme:"dropdown"},mg={...Wr,name:"VMenu",vPopperTheme:"menu"},gg={...Wr,name:"VTooltip",vPopperTheme:"tooltip"},yg=Ve({name:"VTooltipDirective",components:{Popper:Tc(),PopperContent:Ac},mixins:[Rc],inheritAttrs:!1,props:{theme:{type:String,default:"tooltip"},html:{type:Boolean,default:e=>zn(e.theme,"html")},content:{type:[String,Number,Function],default:null},loadingContent:{type:String,default:e=>zn(e.theme,"loadingContent")},targetNodes:{type:Function,required:!0}},data(){return{asyncContent:null}},computed:{isContentAsync(){return typeof this.content=="function"},loading(){return this.isContentAsync&&this.asyncContent==null},finalContent(){return this.isContentAsync?this.loading?this.loadingContent:this.asyncContent:this.content}},watch:{content:{handler(){this.fetchContent(!0)},immediate:!0},async finalContent(){await this.$nextTick(),this.$refs.popper.onResize()}},created(){this.$_fetchId=0},methods:{fetchContent(e){if(typeof this.content=="function"&&this.$_isShown&&(e||!this.$_loading&&this.asyncContent==null)){this.asyncContent=null,this.$_loading=!0;const t=++this.$_fetchId,n=this.content(this);n.then?n.then(s=>this.onResult(t,s)):this.onResult(t,n)}},onResult(e,t){e===this.$_fetchId&&(this.$_loading=!1,this.asyncContent=t)},onShow(){this.$_isShown=!0,this.fetchContent()},onHide(){this.$_isShown=!1}}}),_g=["innerHTML"],bg=["textContent"];function vg(e,t,n,s,r,o){const i=Qt("PopperContent"),a=Qt("Popper");return X(),Se(a,Er({ref:"popper"},e.$attrs,{theme:e.theme,"target-nodes":e.targetNodes,"popper-node":()=>e.$refs.popperContent.$el,onApplyShow:e.onShow,onApplyHide:e.onHide}),{default:ae(({popperId:c,isShown:l,shouldMountContent:p,skipTransition:u,autoHide:d,hide:b,handleResize:y,onResize:T,classes:L,result:S})=>[Y(i,{ref:"popperContent",class:Pe({"v-popper--tooltip-loading":e.loading}),"popper-id":c,theme:e.theme,shown:l,mounted:p,"skip-transition":u,"auto-hide":d,"handle-resize":y,classes:L,result:S,onHide:b,onResize:T},{default:ae(()=>[e.html?(X(),re("div",{key:0,innerHTML:e.finalContent},null,8,_g)):(X(),re("div",{key:1,textContent:Me(e.finalContent)},null,8,bg))]),_:2},1032,["class","popper-id","theme","shown","mounted","skip-transition","auto-hide","handle-resize","classes","result","onHide","onResize"])]),_:1},16,["theme","target-nodes","popper-node","onApplyShow","onApplyHide"])}const wg=ro(yg,[["render",vg]]),Cc="v-popper--has-tooltip";function xg(e,t){let n=e.placement;if(!n&&t)for(const s of Sc)t[s]&&(n=s);return n||(n=zn(e.theme||"tooltip","placement")),n}function Ec(e,t,n){let s;const r=typeof t;return r==="string"?s={content:t}:t&&r==="object"?s=t:s={content:!1},s.placement=xg(s,n),s.targetNodes=()=>[e],s.referenceNode=()=>e,s}let So,Kn,kg=0;function Ng(){if(So)return;Kn=Te([]),So=$l({name:"VTooltipDirectiveApp",setup(){return{directives:Kn}},render(){return this.directives.map(t=>Ps(wg,{...t.options,shown:t.shown||t.options.shown,key:t.id}))},devtools:{hide:!0}});const e=document.createElement("div");document.body.appendChild(e),So.mount(e)}function Sg(e,t,n){Ng();const s=Te(Ec(e,t,n)),r=Te(!1),o={id:kg++,options:s,shown:r};return Kn.value.push(o),e.classList&&e.classList.add(Cc),e.$_popper={options:s,item:o,show(){r.value=!0},hide(){r.value=!1}}}function $c(e){if(e.$_popper){const t=Kn.value.indexOf(e.$_popper.item);t!==-1&&Kn.value.splice(t,1),delete e.$_popper,delete e.$_popperOldShown,delete e.$_popperMountTarget}e.classList&&e.classList.remove(Cc)}function oa(e,{value:t,modifiers:n}){const s=Ec(e,t,n);if(!s.content||zn(s.theme||"tooltip","disabled"))$c(e);else{let r;e.$_popper?(r=e.$_popper,r.options.value=s):r=Sg(e,t,n),typeof t.shown<"u"&&t.shown!==e.$_popperOldShown&&(e.$_popperOldShown=t.shown,t.shown?r.show():r.hide())}}const Tg={beforeMount:oa,updated:oa,beforeUnmount(e){$c(e)}};function ra(e){e.addEventListener("click",jc),e.addEventListener("touchstart",Oc,Yt?{passive:!0}:!1)}function ia(e){e.removeEventListener("click",jc),e.removeEventListener("touchstart",Oc),e.removeEventListener("touchend",Ic),e.removeEventListener("touchcancel",Mc)}function jc(e){const t=e.currentTarget;e.closePopover=!t.$_vclosepopover_touch,e.closeAllPopover=t.$_closePopoverModifiers&&!!t.$_closePopoverModifiers.all}function Oc(e){if(e.changedTouches.length===1){const t=e.currentTarget;t.$_vclosepopover_touch=!0;const n=e.changedTouches[0];t.$_vclosepopover_touchPoint=n,t.addEventListener("touchend",Ic),t.addEventListener("touchcancel",Mc)}}function Ic(e){const t=e.currentTarget;if(t.$_vclosepopover_touch=!1,e.changedTouches.length===1){const n=e.changedTouches[0],s=t.$_vclosepopover_touchPoint;e.closePopover=Math.abs(n.screenY-s.screenY)<20&&Math.abs(n.screenX-s.screenX)<20,e.closeAllPopover=t.$_closePopoverModifiers&&!!t.$_closePopoverModifiers.all}}function Mc(e){const t=e.currentTarget;t.$_vclosepopover_touch=!1}const Lg={beforeMount(e,{value:t,modifiers:n}){e.$_closePopoverModifiers=n,(typeof t>"u"||t)&&ra(e)},updated(e,{value:t,oldValue:n,modifiers:s}){e.$_closePopoverModifiers=s,t!==n&&(typeof t>"u"||t?ra(e):ia(e))},beforeUnmount(e){ia(e)}};function Pg(e,t={}){e.$_vTooltipInstalled||(e.$_vTooltipInstalled=!0,kc(vt,t),e.directive("tooltip",Tg),e.directive("close-popper",Lg),e.component("VTooltip",gg),e.component("VDropdown",hg),e.component("VMenu",mg))}const Ag={version:"2.0.0-beta.24",install:Pg,options:vt},Rg=mt(e=>{e.vueApp.use(Ag)}),Cg=[rm,am,um,pm,dm,ym,xm,km,Sm,Rg],Vr=Ve({__name:"NIcon",props:{icon:{}},setup(e){return(t,n)=>(X(),re("div",{class:Pe(["n-icon",t.icon])},null,2))}}),ao=(e,t)=>{const n=e.__vccOpts||e;for(const[s,r]of t)n[s]=r;return n},Eg={},$g={class:"n-badge"};function jg(e,t){return X(),re("span",$g,[Ge(e.$slots,"default")])}const Hc=ao(Eg,[["render",jg]]);async function Bc(e,t=sn()){const{path:n,matched:s}=t.resolve(e);if(!s.length||(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(n)))return;const r=t._preloadPromises=t._preloadPromises||[];if(r.length>4)return Promise.all(r).then(()=>Bc(e,t));t._routePreloaded.add(n);const o=s.map(i=>{var a;return(a=i.components)==null?void 0:a.default}).filter(i=>typeof i=="function");for(const i of o){const a=Promise.resolve(i()).catch(()=>{}).finally(()=>r.splice(r.indexOf(a)));r.push(a)}await Promise.all(r)}const Og=(...e)=>e.find(t=>t!==void 0),Ig="noopener noreferrer";function Mg(e){const t=e.componentName||"NuxtLink",n=(s,r)=>{if(!s||e.trailingSlash!=="append"&&e.trailingSlash!=="remove")return s;if(typeof s=="string")return aa(s,e.trailingSlash);const o="path"in s?s.path:r(s).path;return{...s,name:void 0,path:aa(o,e.trailingSlash)}};return Ve({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(s,{slots:r}){const o=sn(),i=Gn(),a=Je(()=>{const b=s.to||s.href||"";return n(b,o.resolve)}),c=Je(()=>typeof a.value=="string"&&xn(a.value,{acceptRelative:!0})),l=Je(()=>s.external||s.target&&s.target!=="_self"?!0:typeof a.value=="object"?!1:a.value===""||c.value),p=Te(!1),u=Te(null),d=b=>{var y;u.value=s.custom?(y=b==null?void 0:b.$el)==null?void 0:y.nextElementSibling:b==null?void 0:b.$el};if(s.prefetch!==!1&&s.noPrefetch!==!0&&s.target!=="_blank"&&!Dg()){const y=Ae();let T,L=null;Qs(()=>{const S=Bg();Dr(()=>{T=nr(()=>{var k;(k=u==null?void 0:u.value)!=null&&k.tagName&&(L=S.observe(u.value,async()=>{L==null||L(),L=null;const h=typeof a.value=="string"?a.value:o.resolve(a.value).fullPath;await Promise.all([y.hooks.callHook("link:prefetch",h).catch(()=>{}),!l.value&&Bc(a.value,o).catch(()=>{})]),p.value=!0}))})})}),Tr(()=>{T&&fm(T),L==null||L(),L=null})}return()=>{var S,k;if(!l.value){const h={ref:d,to:a.value,activeClass:s.activeClass||e.activeClass,exactActiveClass:s.exactActiveClass||e.exactActiveClass,replace:s.replace,ariaCurrentValue:s.ariaCurrentValue,custom:s.custom};return s.custom||(p.value&&(h.class=s.prefetchedClass||e.prefetchedClass),h.rel=s.rel),Ps(Qt("RouterLink"),h,r.default)}const b=typeof a.value=="object"?((S=o.resolve(a.value))==null?void 0:S.href)??null:a.value&&!s.external&&!c.value?n(Dt(i.app.baseURL,a.value),o.resolve):a.value||null,y=s.target||null,T=s.noRel?null:Og(s.rel,e.externalRelAttribute,b?Ig:"")||null,L=()=>ac(b,{replace:s.replace});return s.custom?r.default?r.default({href:b,navigate:L,get route(){if(!b)return;const h=kn(b);return{path:h.pathname,fullPath:h.pathname,get query(){return Or(h.search)},hash:h.hash,params:{},name:void 0,matched:[],redirectedFrom:void 0,meta:{},href:b}},rel:T,target:y,isExternal:l.value,isActive:!1,isExactActive:!1}):null:Ps("a",{ref:u,href:b,rel:T,target:y},(k=r.default)==null?void 0:k.call(r))}}})}const Hg=Mg(Yh);function aa(e,t){const n=t==="append"?Rs:eo;return xn(e)&&!e.startsWith("http")?e:n(e,!0)}function Bg(){const e=Ae();if(e._observer)return e._observer;let t=null;const n=new Map,s=(o,i)=>(t||(t=new IntersectionObserver(a=>{for(const c of a){const l=n.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&l&&l()}})),n.set(o,i),t.observe(o),()=>{n.delete(o),t.unobserve(o),n.size===0&&(t.disconnect(),t=null)});return e._observer={observe:s}}function Dg(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const Fg={key:0,"i-carbon:arrow-up-right":"","translate-y--1":"","text-xs":"",op50:""},Dc=Ve({__name:"NLink",props:{to:{},href:{},target:{},underline:{type:Boolean}},setup(e){const t=e,n=Je(()=>t.href||t.to);return(s,r)=>{const o=Hg;return X(),Se(o,Er(n.value?{href:n.value,target:s.target,rel:s.target==="_blank"?"noopener noreferrer":null}:{},{class:{"n-link n-transition hover:n-link-hover n-link-base":n.value||s.underline}}),{default:ae(()=>[Ge(s.$slots,"default"),n.value&&s.target==="_blank"?(X(),re("div",Fg)):je("",!0)]),_:3},16,["class"])}}}),Ug={},Gg={height:"22",viewBox:"0 0 1204 200",fill:"none",xmlns:"http://www.w3.org/2000/svg"},Wg=Yf('<path d="M377 200C379.16 200 381 198.209 381 196V103C381 103 386 112 395 127L434 194C435.785 197.74 439.744 200 443 200H470V50H443C441.202 50 439 51.4941 439 54V148L421 116L385 55C383.248 51.8912 379.479 50 376 50H350V200H377Z" fill="currentColor"></path><path d="M726 92H739C742.314 92 745 89.3137 745 86V60H773V92H800V116H773V159C773 169.5 778.057 174 787 174H800V200H783C759.948 200 745 185.071 745 160V116H726V92Z" fill="currentColor"></path><path d="M591 92V154C591 168.004 585.742 179.809 578 188C570.258 196.191 559.566 200 545 200C530.434 200 518.742 196.191 511 188C503.389 179.809 498 168.004 498 154V92H514C517.412 92 520.769 92.622 523 95C525.231 97.2459 526 98.5652 526 102V154C526 162.059 526.457 167.037 530 171C533.543 174.831 537.914 176 545 176C552.217 176 555.457 174.831 559 171C562.543 167.037 563 162.059 563 154V102C563 98.5652 563.769 96.378 566 94C567.96 91.9107 570.028 91.9599 573 92C573.411 92.0055 574.586 92 575 92H591Z" fill="currentColor"></path><path d="M676 144L710 92H684C680.723 92 677.812 93.1758 676 96L660 120L645 97C643.188 94.1758 639.277 92 636 92H611L645 143L608 200H634C637.25 200 640.182 196.787 642 194L660 167L679 195C680.818 197.787 683.75 200 687 200H713L676 144Z" fill="currentColor"></path><path d="M168 200H279C282.542 200 285.932 198.756 289 197C292.068 195.244 295.23 193.041 297 190C298.77 186.959 300.002 183.51 300 179.999C299.998 176.488 298.773 173.04 297 170.001L222 41C220.23 37.96 218.067 35.7552 215 34C211.933 32.2448 207.542 31 204 31C200.458 31 197.067 32.2448 194 34C190.933 35.7552 188.77 37.96 187 41L168 74L130 9.99764C128.228 6.95784 126.068 3.75491 123 2C119.932 0.245087 116.542 0 113 0C109.458 0 106.068 0.245087 103 2C99.9323 3.75491 96.7717 6.95784 95 9.99764L2 170.001C0.226979 173.04 0.00154312 176.488 1.90993e-06 179.999C-0.0015393 183.51 0.229648 186.959 2 190C3.77035 193.04 6.93245 195.244 10 197C13.0675 198.756 16.4578 200 20 200H90C117.737 200 137.925 187.558 152 164L186 105L204 74L259 168H186L168 200ZM89 168H40L113 42L150 105L125.491 147.725C116.144 163.01 105.488 168 89 168Z" fill="#00DC82"></path><path d="M892 200C881.746 200 873.788 197.911 866 194C858.212 189.959 851.543 184.169 847 177C842.587 169.7 840.389 161.646 840 152H868C868.649 159.039 870.717 163.959 875 168C879.413 172.041 885.861 174 893 174C899.62 174 904.106 172.737 908 170C912.024 167.263 914 164.084 914 159C914 155.48 913.336 152.086 911 150C908.793 147.784 906.375 146.173 903 145C899.625 143.827 894.23 142.564 888 141C878.784 138.784 870.971 136.477 865 134C859.159 131.393 854.283 127.605 850 122C845.717 116.395 844 108.777 844 99C844 91.5698 845.976 84.8659 850 79C854.024 73.1341 859.861 68.2589 867 65C874.139 61.6108 881.914 60 891 60C900.735 60 909.601 61.4805 917 65C924.528 68.5196 929.846 73.4823 934 80C938.283 86.5177 940.74 94.3967 941 103H913C912.481 97.5251 910.894 93.1285 907 90C903.106 86.7411 897.49 85 891 85C885.289 85 880.375 86.5233 877 89C873.625 91.4767 872 94.959 872 99C872 102.78 873.664 105.784 876 108C878.336 110.216 881.366 111.696 885 113C888.634 114.173 893.64 115.566 900 117C909.346 119.216 916.159 121.654 922 124C927.841 126.346 932.846 130.395 937 136C941.283 141.475 944 148.354 944 158C944 166.473 941.283 173.743 937 180C932.717 186.257 926.788 191.611 919 195C911.342 198.389 902.124 200 892 200Z" fill="#00DC82"></path><path d="M1056 200H961V60H1054V87H990V116H1041V141H990V173H1056V200Z" fill="#00DC82"></path><path d="M1134 200C1120.76 200 1108.64 196.996 1098 191C1087.49 184.873 1080.1 176.559 1074 166C1068.03 155.311 1065 143.296 1065 130C1065 116.704 1068.03 104.559 1074 94C1080.1 83.311 1088.49 74.9963 1099 69C1109.64 62.8734 1120.76 60 1134 60C1147.11 60 1159.49 62.8734 1170 69C1180.64 74.9963 1189.03 83.311 1195 94C1201.1 104.559 1204 116.704 1204 130C1204 143.296 1201.1 155.311 1195 166C1189.03 176.559 1180.64 184.873 1170 191C1159.49 196.996 1147.11 200 1134 200ZM1134 174C1141.66 174 1148.9 172.78 1155 169C1161.23 165.089 1165.63 159.778 1169 153C1172.5 146.222 1174 138.473 1174 130C1174 121.527 1172.5 113.778 1169 107C1165.63 100.222 1161.23 94.9106 1155 91C1148.9 87.0894 1141.66 85 1134 85C1126.34 85 1120.1 87.0894 1114 91C1107.9 94.9106 1102.5 100.222 1099 107C1095.63 113.778 1094 121.527 1094 130C1094 138.473 1095.63 146.222 1099 153C1102.5 159.778 1107.9 165.089 1114 169C1120.1 172.78 1126.34 174 1134 174Z" fill="#00DC82"></path>',8),Vg=[Wg];function qg(e,t){return X(),re("svg",Gg,Vg)}const zg=ao(Ug,[["render",qg]]),Kg={},Jg={class:"n-loading n-panel-grids-center"},Xg={class:"flex flex-col animate-pulse items-center text-lg"},Qg=V("div",{class:"i-carbon-circle-dash animate-spin text-4xl op50"},null,-1);function Yg(e,t){return X(),re("div",Jg,[V("div",Xg,[Qg,Ge(e.$slots,"default",{},()=>[ue(" Loading... ")])])])}const Zg=ao(Kg,[["render",Yg]]);var Fc=typeof globalThis<"u"?globalThis:typeof{}<"u"?{}:typeof global<"u"?global:typeof self<"u"?self:{},Uc={exports:{}};(function(e,t){(function(n,s){e.exports=s()})(Fc,()=>{return n={770:function(r,o,i){var a=this&&this.__importDefault||function(L){return L&&L.__esModule?L:{default:L}};Object.defineProperty(o,"__esModule",{value:!0}),o.setDefaultDebugCall=o.createOnigScanner=o.createOnigString=o.loadWASM=o.OnigScanner=o.OnigString=void 0;const c=a(i(418));let l=null,p=!1;class u{static _utf8ByteLength(S){let k=0;for(let h=0,v=S.length;h<v;h++){const _=S.charCodeAt(h);let f=_,m=!1;if(_>=55296&&_<=56319&&h+1<v){const w=S.charCodeAt(h+1);w>=56320&&w<=57343&&(f=65536+(_-55296<<10)|w-56320,m=!0)}k+=f<=127?1:f<=2047?2:f<=65535?3:4,m&&h++}return k}constructor(S){const k=S.length,h=u._utf8ByteLength(S),v=h!==k,_=v?new Uint32Array(k+1):null;v&&(_[k]=h);const f=v?new Uint32Array(h+1):null;v&&(f[h]=k);const m=new Uint8Array(h);let w=0;for(let g=0;g<k;g++){const x=S.charCodeAt(g);let N=x,P=!1;if(x>=55296&&x<=56319&&g+1<k){const C=S.charCodeAt(g+1);C>=56320&&C<=57343&&(N=65536+(x-55296<<10)|C-56320,P=!0)}v&&(_[g]=w,P&&(_[g+1]=w),N<=127?f[w+0]=g:N<=2047?(f[w+0]=g,f[w+1]=g):N<=65535?(f[w+0]=g,f[w+1]=g,f[w+2]=g):(f[w+0]=g,f[w+1]=g,f[w+2]=g,f[w+3]=g)),N<=127?m[w++]=N:N<=2047?(m[w++]=192|(1984&N)>>>6,m[w++]=128|(63&N)>>>0):N<=65535?(m[w++]=224|(61440&N)>>>12,m[w++]=128|(4032&N)>>>6,m[w++]=128|(63&N)>>>0):(m[w++]=240|(1835008&N)>>>18,m[w++]=128|(258048&N)>>>12,m[w++]=128|(4032&N)>>>6,m[w++]=128|(63&N)>>>0),P&&g++}this.utf16Length=k,this.utf8Length=h,this.utf16Value=S,this.utf8Value=m,this.utf16OffsetToUtf8=_,this.utf8OffsetToUtf16=f}createString(S){const k=S._omalloc(this.utf8Length);return S.HEAPU8.set(this.utf8Value,k),k}}class d{constructor(S){if(this.id=++d.LAST_ID,!l)throw new Error("Must invoke loadWASM first.");this._onigBinding=l,this.content=S;const k=new u(S);this.utf16Length=k.utf16Length,this.utf8Length=k.utf8Length,this.utf16OffsetToUtf8=k.utf16OffsetToUtf8,this.utf8OffsetToUtf16=k.utf8OffsetToUtf16,this.utf8Length<1e4&&!d._sharedPtrInUse?(d._sharedPtr||(d._sharedPtr=l._omalloc(1e4)),d._sharedPtrInUse=!0,l.HEAPU8.set(k.utf8Value,d._sharedPtr),this.ptr=d._sharedPtr):this.ptr=k.createString(l)}convertUtf8OffsetToUtf16(S){return this.utf8OffsetToUtf16?S<0?0:S>this.utf8Length?this.utf16Length:this.utf8OffsetToUtf16[S]:S}convertUtf16OffsetToUtf8(S){return this.utf16OffsetToUtf8?S<0?0:S>this.utf16Length?this.utf8Length:this.utf16OffsetToUtf8[S]:S}dispose(){this.ptr===d._sharedPtr?d._sharedPtrInUse=!1:this._onigBinding._ofree(this.ptr)}}o.OnigString=d,d.LAST_ID=0,d._sharedPtr=0,d._sharedPtrInUse=!1;class b{constructor(S){if(!l)throw new Error("Must invoke loadWASM first.");const k=[],h=[];for(let m=0,w=S.length;m<w;m++){const g=new u(S[m]);k[m]=g.createString(l),h[m]=g.utf8Length}const v=l._omalloc(4*S.length);l.HEAPU32.set(k,v/4);const _=l._omalloc(4*S.length);l.HEAPU32.set(h,_/4);const f=l._createOnigScanner(v,_,S.length);for(let m=0,w=S.length;m<w;m++)l._ofree(k[m]);l._ofree(_),l._ofree(v),f===0&&function(m){throw new Error(m.UTF8ToString(m._getLastOnigError()))}(l),this._onigBinding=l,this._ptr=f}dispose(){this._onigBinding._freeOnigScanner(this._ptr)}findNextMatchSync(S,k,h){let v=p,_=0;if(typeof h=="number"?(8&h&&(v=!0),_=h):typeof h=="boolean"&&(v=h),typeof S=="string"){S=new d(S);const f=this._findNextMatchSync(S,k,v,_);return S.dispose(),f}return this._findNextMatchSync(S,k,v,_)}_findNextMatchSync(S,k,h,v){const _=this._onigBinding;let f;if(f=h?_._findNextOnigScannerMatchDbg(this._ptr,S.id,S.ptr,S.utf8Length,S.convertUtf16OffsetToUtf8(k),v):_._findNextOnigScannerMatch(this._ptr,S.id,S.ptr,S.utf8Length,S.convertUtf16OffsetToUtf8(k),v),f===0)return null;const m=_.HEAPU32;let w=f/4;const g=m[w++],x=m[w++];let N=[];for(let P=0;P<x;P++){const C=S.convertUtf8OffsetToUtf16(m[w++]),O=S.convertUtf8OffsetToUtf16(m[w++]);N[P]={start:C,end:O,length:O-C}}return{index:g,captureIndices:N}}}o.OnigScanner=b;let y=!1,T=null;o.loadWASM=function(L){if(y)return T;let S,k,h,v;if(y=!0,function(_){return typeof _.instantiator=="function"}(L))S=L.instantiator,k=L.print;else{let _;(function(f){return f.data!==void 0})(L)?(_=L.data,k=L.print):_=L,S=function(f){return typeof Response<"u"&&f instanceof Response}(_)?typeof WebAssembly.instantiateStreaming=="function"?function(f){return m=>WebAssembly.instantiateStreaming(f,m)}(_):function(f){return async m=>{const w=await f.arrayBuffer();return WebAssembly.instantiate(w,m)}}(_):function(f){return m=>WebAssembly.instantiate(f,m)}(_)}return T=new Promise((_,f)=>{h=_,v=f}),function(_,f,m,w){(0,c.default)({print:f,instantiateWasm:(g,x)=>{if(typeof performance>"u"){const N=()=>Date.now();g.env.emscripten_get_now=N,g.wasi_snapshot_preview1.emscripten_get_now=N}return _(g).then(N=>x(N.instance),w),{}}}).then(g=>{l=g,m()})}(S,k,h,v),T},o.createOnigString=function(L){return new d(L)},o.createOnigScanner=function(L){return new b(L)},o.setDefaultDebugCall=function(L){p=L}},418:r=>{var o=(typeof document<"u"&&document.currentScript&&document.currentScript.src,function(i){var a,c,l=(i=i||{})!==void 0?i:{};l.ready=new Promise(function($,H){a=$,c=H});var p,u=Object.assign({},l),d=!1,b="";function y($){return l.locateFile?l.locateFile($,b):b+$}p=function($){let H;return typeof readbuffer=="function"?new Uint8Array(readbuffer($)):(H=read($,"binary"),v(typeof H=="object"),H)},typeof scriptArgs<"u"&&scriptArgs,typeof onig_print<"u"&&(typeof console>"u"&&(console={}),console.log=onig_print,console.warn=console.error=typeof printErr<"u"?printErr:onig_print);var T,L,S=l.print||console.log.bind(console),k=l.printErr||console.warn.bind(console);Object.assign(l,u),u=null,l.arguments&&l.arguments,l.thisProgram&&l.thisProgram,l.quit&&l.quit,l.wasmBinary&&(T=l.wasmBinary),l.noExitRuntime,typeof WebAssembly!="object"&&_e("no native wasm support detected");var h=!1;function v($,H){$||_e(H)}var _,f,m,w=typeof TextDecoder<"u"?new TextDecoder("utf8"):void 0;function g($,H,Q){for(var te=H+Q,Z=H;$[Z]&&!(Z>=te);)++Z;if(Z-H>16&&$.buffer&&w)return w.decode($.subarray(H,Z));for(var ee="";H<Z;){var ce=$[H++];if(128&ce){var Ce=63&$[H++];if((224&ce)!=192){var qe=63&$[H++];if((ce=(240&ce)==224?(15&ce)<<12|Ce<<6|qe:(7&ce)<<18|Ce<<12|qe<<6|63&$[H++])<65536)ee+=String.fromCharCode(ce);else{var Nn=ce-65536;ee+=String.fromCharCode(55296|Nn>>10,56320|1023&Nn)}}else ee+=String.fromCharCode((31&ce)<<6|Ce)}else ee+=String.fromCharCode(ce)}return ee}function x($,H){return $?g(f,$,H):""}function N($){_=$,l.HEAP8=new Int8Array($),l.HEAP16=new Int16Array($),l.HEAP32=new Int32Array($),l.HEAPU8=f=new Uint8Array($),l.HEAPU16=new Uint16Array($),l.HEAPU32=m=new Uint32Array($),l.HEAPF32=new Float32Array($),l.HEAPF64=new Float64Array($)}l.INITIAL_MEMORY;var P=[],C=[],O=[];function B(){if(l.preRun)for(typeof l.preRun=="function"&&(l.preRun=[l.preRun]);l.preRun.length;)q(l.preRun.shift());R(P)}function j(){R(C)}function K(){if(l.postRun)for(typeof l.postRun=="function"&&(l.postRun=[l.postRun]);l.postRun.length;)be(l.postRun.shift());R(O)}function q($){P.unshift($)}function oe($){C.unshift($)}function be($){O.unshift($)}var me=0,le=null;function ge($){me++,l.monitorRunDependencies&&l.monitorRunDependencies(me)}function ye($){if(me--,l.monitorRunDependencies&&l.monitorRunDependencies(me),me==0&&le){var H=le;le=null,H()}}function _e($){l.onAbort&&l.onAbort($),k($="Aborted("+$+")"),h=!0,$+=". Build with -sASSERTIONS for more info.";var H=new WebAssembly.RuntimeError($);throw c(H),H}var ve,F,xe="data:application/octet-stream;base64,";function fe($){return $.startsWith(xe)}function Ie($){try{if($==ve&&T)return new Uint8Array(T);if(p)return p($);throw"both async and sync fetching of the wasm failed"}catch(H){_e(H)}}function tt(){return T||!d||typeof fetch!="function"?Promise.resolve().then(function(){return Ie(ve)}):fetch(ve,{credentials:"same-origin"}).then(function($){if(!$.ok)throw"failed to load wasm binary file at '"+ve+"'";return $.arrayBuffer()}).catch(function(){return Ie(ve)})}function A(){var $={env:D,wasi_snapshot_preview1:D};function H(Z,ee){var ce=Z.exports;l.asm=ce,N((L=l.asm.memory).buffer),l.asm.__indirect_function_table,oe(l.asm.__wasm_call_ctors),ye()}function Q(Z){H(Z.instance)}function te(Z){return tt().then(function(ee){return WebAssembly.instantiate(ee,$)}).then(function(ee){return ee}).then(Z,function(ee){k("failed to asynchronously prepare wasm: "+ee),_e(ee)})}if(ge(),l.instantiateWasm)try{return l.instantiateWasm($,H)}catch(Z){k("Module.instantiateWasm callback failed with error: "+Z),c(Z)}return(T||typeof WebAssembly.instantiateStreaming!="function"||fe(ve)||typeof fetch!="function"?te(Q):fetch(ve,{credentials:"same-origin"}).then(function(Z){return WebAssembly.instantiateStreaming(Z,$).then(Q,function(ee){return k("wasm streaming compile failed: "+ee),k("falling back to ArrayBuffer instantiation"),te(Q)})})).catch(c),{}}function R($){for(;$.length>0;)$.shift()(l)}function E($,H,Q){f.copyWithin($,H,H+Q)}function I($){try{return L.grow($-_.byteLength+65535>>>16),N(L.buffer),1}catch{}}function M($){var H,Q=f.length,te=2147483648;if(($>>>=0)>te)return!1;for(var Z=1;Z<=4;Z*=2){var ee=Q*(1+.2/Z);if(ee=Math.min(ee,$+100663296),I(Math.min(te,(H=Math.max($,ee))+(65536-H%65536)%65536)))return!0}return!1}fe(ve="onig.wasm")||(ve=y(ve)),F=typeof dateNow<"u"?dateNow:()=>performance.now();var W=[null,[],[]];function z($,H){var Q=W[$];H===0||H===10?(($===1?S:k)(g(Q,0)),Q.length=0):Q.push(H)}function U($,H,Q,te){for(var Z=0,ee=0;ee<Q;ee++){var ce=m[H>>2],Ce=m[H+4>>2];H+=8;for(var qe=0;qe<Ce;qe++)z($,f[ce+qe]);Z+=Ce}return m[te>>2]=Z,0}var G,D={emscripten_get_now:F,emscripten_memcpy_big:E,emscripten_resize_heap:M,fd_write:U};function J($){function H(){G||(G=!0,l.calledRun=!0,h||(j(),a(l),l.onRuntimeInitialized&&l.onRuntimeInitialized(),K()))}me>0||(B(),me>0||(l.setStatus?(l.setStatus("Running..."),setTimeout(function(){setTimeout(function(){l.setStatus("")},1),H()},1)):H()))}if(A(),l.___wasm_call_ctors=function(){return(l.___wasm_call_ctors=l.asm.__wasm_call_ctors).apply(null,arguments)},l.___errno_location=function(){return(l.___errno_location=l.asm.__errno_location).apply(null,arguments)},l._omalloc=function(){return(l._omalloc=l.asm.omalloc).apply(null,arguments)},l._ofree=function(){return(l._ofree=l.asm.ofree).apply(null,arguments)},l._getLastOnigError=function(){return(l._getLastOnigError=l.asm.getLastOnigError).apply(null,arguments)},l._createOnigScanner=function(){return(l._createOnigScanner=l.asm.createOnigScanner).apply(null,arguments)},l._freeOnigScanner=function(){return(l._freeOnigScanner=l.asm.freeOnigScanner).apply(null,arguments)},l._findNextOnigScannerMatch=function(){return(l._findNextOnigScannerMatch=l.asm.findNextOnigScannerMatch).apply(null,arguments)},l._findNextOnigScannerMatchDbg=function(){return(l._findNextOnigScannerMatchDbg=l.asm.findNextOnigScannerMatchDbg).apply(null,arguments)},l.stackSave=function(){return(l.stackSave=l.asm.stackSave).apply(null,arguments)},l.stackRestore=function(){return(l.stackRestore=l.asm.stackRestore).apply(null,arguments)},l.stackAlloc=function(){return(l.stackAlloc=l.asm.stackAlloc).apply(null,arguments)},l.dynCall_jiji=function(){return(l.dynCall_jiji=l.asm.dynCall_jiji).apply(null,arguments)},l.UTF8ToString=x,le=function $(){G||J(),G||(le=$)},l.preInit)for(typeof l.preInit=="function"&&(l.preInit=[l.preInit]);l.preInit.length>0;)l.preInit.pop()();return J(),i.ready});r.exports=o}},s={},function r(o){var i=s[o];if(i!==void 0)return i.exports;var a=s[o]={exports:{}};return n[o].call(a.exports,a,a.exports,r),a.exports}(770);var n,s})})(Uc);var To=Uc.exports,Gc={exports:{}};(function(e,t){(function(n,s){e.exports=s()})(Fc,function(){return(()=>{var n={350:(r,o)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.UseOnigurumaFindOptions=o.DebugFlags=void 0,o.DebugFlags={InDebugMode:typeof process<"u"&&!1},o.UseOnigurumaFindOptions=!1},36:(r,o)=>{var i;Object.defineProperty(o,"__esModule",{value:!0}),o.toOptionalTokenType=o.EncodedTokenAttributes=void 0,(i=o.EncodedTokenAttributes||(o.EncodedTokenAttributes={})).toBinaryStr=function(a){let c=a.toString(2);for(;c.length<32;)c="0"+c;return c},i.print=function(a){const c=i.getLanguageId(a),l=i.getTokenType(a),p=i.getFontStyle(a),u=i.getForeground(a),d=i.getBackground(a);console.log({languageId:c,tokenType:l,fontStyle:p,foreground:u,background:d})},i.getLanguageId=function(a){return(255&a)>>>0},i.getTokenType=function(a){return(768&a)>>>8},i.containsBalancedBrackets=function(a){return(1024&a)!=0},i.getFontStyle=function(a){return(30720&a)>>>11},i.getForeground=function(a){return(16744448&a)>>>15},i.getBackground=function(a){return(4278190080&a)>>>24},i.set=function(a,c,l,p,u,d,b){let y=i.getLanguageId(a),T=i.getTokenType(a),L=i.containsBalancedBrackets(a)?1:0,S=i.getFontStyle(a),k=i.getForeground(a),h=i.getBackground(a);return c!==0&&(y=c),l!==8&&(T=l),p!==null&&(L=p?1:0),u!==-1&&(S=u),d!==0&&(k=d),b!==0&&(h=b),(y<<0|T<<8|L<<10|S<<11|k<<15|h<<24)>>>0},o.toOptionalTokenType=function(a){return a}},996:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.BasicScopeAttributesProvider=o.BasicScopeAttributes=void 0;const a=i(878);class c{constructor(d,b){this.languageId=d,this.tokenType=b}}o.BasicScopeAttributes=c;class l{constructor(d,b){this._getBasicScopeAttributes=new a.CachedFn(y=>{const T=this._scopeToLanguage(y),L=this._toStandardTokenType(y);return new c(T,L)}),this._defaultAttributes=new c(d,8),this._embeddedLanguagesMatcher=new p(Object.entries(b||{}))}getDefaultAttributes(){return this._defaultAttributes}getBasicScopeAttributes(d){return d===null?l._NULL_SCOPE_METADATA:this._getBasicScopeAttributes.get(d)}_scopeToLanguage(d){return this._embeddedLanguagesMatcher.match(d)||0}_toStandardTokenType(d){const b=d.match(l.STANDARD_TOKEN_TYPE_REGEXP);if(!b)return 8;switch(b[1]){case"comment":return 1;case"string":return 2;case"regex":return 3;case"meta.embedded":return 0}throw new Error("Unexpected match for standard token type!")}}o.BasicScopeAttributesProvider=l,l._NULL_SCOPE_METADATA=new c(0,0),l.STANDARD_TOKEN_TYPE_REGEXP=/\b(comment|string|regex|meta\.embedded)\b/;class p{constructor(d){if(d.length===0)this.values=null,this.scopesRegExp=null;else{this.values=new Map(d);const b=d.map(([y,T])=>a.escapeRegExpCharacters(y));b.sort(),b.reverse(),this.scopesRegExp=new RegExp(`^((${b.join(")|(")}))($|\\.)`,"")}}match(d){if(!this.scopesRegExp)return;const b=d.match(this.scopesRegExp);return b?this.values.get(b[1]):void 0}}},947:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.LineTokens=o.BalancedBracketSelectors=o.StateStack=o.AttributedScopeStack=o.Grammar=o.createGrammar=void 0;const a=i(350),c=i(36),l=i(736),p=i(44),u=i(792),d=i(583),b=i(878),y=i(996),T=i(47);function L(w,g,x,N,P){const C=l.createMatchers(g,S),O=u.RuleFactory.getCompiledRuleId(x,N,P.repository);for(const B of C)w.push({debugSelector:g,matcher:B.matcher,ruleId:O,grammar:P,priority:B.priority})}function S(w,g){if(g.length<w.length)return!1;let x=0;return w.every(N=>{for(let P=x;P<g.length;P++)if(k(g[P],N))return x=P+1,!0;return!1})}function k(w,g){if(!w)return!1;if(w===g)return!0;const x=g.length;return w.length>x&&w.substr(0,x)===g&&w[x]==="."}o.createGrammar=function(w,g,x,N,P,C,O,B){return new h(w,g,x,N,P,C,O,B)};class h{constructor(g,x,N,P,C,O,B,j){if(this._rootScopeName=g,this.balancedBracketSelectors=O,this._onigLib=j,this._basicScopeAttributesProvider=new y.BasicScopeAttributesProvider(N,P),this._rootId=-1,this._lastRuleId=0,this._ruleId2desc=[null],this._includedGrammars={},this._grammarRepository=B,this._grammar=v(x,null),this._injections=null,this._tokenTypeMatchers=[],C)for(const K of Object.keys(C)){const q=l.createMatchers(K,S);for(const oe of q)this._tokenTypeMatchers.push({matcher:oe.matcher,type:C[K]})}}get themeProvider(){return this._grammarRepository}dispose(){for(const g of this._ruleId2desc)g&&g.dispose()}createOnigScanner(g){return this._onigLib.createOnigScanner(g)}createOnigString(g){return this._onigLib.createOnigString(g)}getMetadataForScope(g){return this._basicScopeAttributesProvider.getBasicScopeAttributes(g)}_collectInjections(){const g=[],x=this._rootScopeName,N=(P=>P===this._rootScopeName?this._grammar:this.getExternalGrammar(P))(x);if(N){const P=N.injections;if(P)for(let O in P)L(g,O,P[O],this,N);const C=this._grammarRepository.injections(x);C&&C.forEach(O=>{const B=this.getExternalGrammar(O);if(B){const j=B.injectionSelector;j&&L(g,j,B,this,B)}})}return g.sort((P,C)=>P.priority-C.priority),g}getInjections(){if(this._injections===null&&(this._injections=this._collectInjections(),a.DebugFlags.InDebugMode&&this._injections.length>0)){console.log(`Grammar ${this._rootScopeName} contains the following injections:`);for(const g of this._injections)console.log(` - ${g.debugSelector}`)}return this._injections}registerRule(g){const x=++this._lastRuleId,N=g(u.ruleIdFromNumber(x));return this._ruleId2desc[x]=N,N}getRule(g){return this._ruleId2desc[u.ruleIdToNumber(g)]}getExternalGrammar(g,x){if(this._includedGrammars[g])return this._includedGrammars[g];if(this._grammarRepository){const N=this._grammarRepository.lookup(g);if(N)return this._includedGrammars[g]=v(N,x&&x.$base),this._includedGrammars[g]}}tokenizeLine(g,x,N=0){const P=this._tokenize(g,x,!1,N);return{tokens:P.lineTokens.getResult(P.ruleStack,P.lineLength),ruleStack:P.ruleStack,stoppedEarly:P.stoppedEarly}}tokenizeLine2(g,x,N=0){const P=this._tokenize(g,x,!0,N);return{tokens:P.lineTokens.getBinaryResult(P.ruleStack,P.lineLength),ruleStack:P.ruleStack,stoppedEarly:P.stoppedEarly}}_tokenize(g,x,N,P){let C;if(this._rootId===-1&&(this._rootId=u.RuleFactory.getCompiledRuleId(this._grammar.repository.$self,this,this._grammar.repository)),x&&x!==f.NULL)C=!1,x.reset();else{C=!0;const q=this._basicScopeAttributesProvider.getDefaultAttributes(),oe=this.themeProvider.getDefaults(),be=c.EncodedTokenAttributes.set(0,q.languageId,q.tokenType,null,oe.fontStyle,oe.foregroundId,oe.backgroundId),me=this.getRule(this._rootId).getName(null,null);let le;le=me?_.createRootAndLookUpScopeName(me,be,this):_.createRoot("unknown",be),x=new f(null,this._rootId,-1,-1,!1,null,le,le)}g+=`
2
+ `;const O=this.createOnigString(g),B=O.content.length,j=new m(N,g,this._tokenTypeMatchers,this.balancedBracketSelectors),K=T._tokenizeString(this,O,C,0,x,j,!0,P);return p.disposeOnigString(O),{lineLength:B,lineTokens:j,ruleStack:K.stack,stoppedEarly:K.stoppedEarly}}}function v(w,g){return(w=b.clone(w)).repository=w.repository||{},w.repository.$self={$vscodeTextmateLocation:w.$vscodeTextmateLocation,patterns:w.patterns,name:w.scopeName},w.repository.$base=g||w.repository.$self,w}o.Grammar=h;class _{constructor(g,x,N){this.parent=g,this.scopePath=x,this.tokenAttributes=N}static createRoot(g,x){return new _(null,new d.ScopeStack(null,g),x)}static createRootAndLookUpScopeName(g,x,N){const P=N.getMetadataForScope(g),C=new d.ScopeStack(null,g),O=N.themeProvider.themeMatch(C),B=_.mergeAttributes(x,P,O);return new _(null,C,B)}get scopeName(){return this.scopePath.scopeName}equals(g){return _._equals(this,g)}static _equals(g,x){for(;;){if(g===x||!g&&!x)return!0;if(!g||!x||g.scopeName!==x.scopeName||g.tokenAttributes!==x.tokenAttributes)return!1;g=g.parent,x=x.parent}}static mergeAttributes(g,x,N){let P=-1,C=0,O=0;return N!==null&&(P=N.fontStyle,C=N.foregroundId,O=N.backgroundId),c.EncodedTokenAttributes.set(g,x.languageId,x.tokenType,null,P,C,O)}pushAttributed(g,x){if(g===null)return this;if(g.indexOf(" ")===-1)return _._pushAttributed(this,g,x);const N=g.split(/ /g);let P=this;for(const C of N)P=_._pushAttributed(P,C,x);return P}static _pushAttributed(g,x,N){const P=N.getMetadataForScope(x),C=g.scopePath.push(x),O=N.themeProvider.themeMatch(C),B=_.mergeAttributes(g.tokenAttributes,P,O);return new _(g,C,B)}getScopeNames(){return this.scopePath.getSegments()}}o.AttributedScopeStack=_;class f{constructor(g,x,N,P,C,O,B,j){this.parent=g,this.ruleId=x,this.beginRuleCapturedEOL=C,this.endRule=O,this.nameScopesList=B,this.contentNameScopesList=j,this._stackElementBrand=void 0,this.depth=this.parent?this.parent.depth+1:1,this._enterPos=N,this._anchorPos=P}equals(g){return g!==null&&f._equals(this,g)}static _equals(g,x){return g===x||!!this._structuralEquals(g,x)&&g.contentNameScopesList.equals(x.contentNameScopesList)}static _structuralEquals(g,x){for(;;){if(g===x||!g&&!x)return!0;if(!g||!x||g.depth!==x.depth||g.ruleId!==x.ruleId||g.endRule!==x.endRule)return!1;g=g.parent,x=x.parent}}clone(){return this}static _reset(g){for(;g;)g._enterPos=-1,g._anchorPos=-1,g=g.parent}reset(){f._reset(this)}pop(){return this.parent}safePop(){return this.parent?this.parent:this}push(g,x,N,P,C,O,B){return new f(this,g,x,N,P,C,O,B)}getEnterPos(){return this._enterPos}getAnchorPos(){return this._anchorPos}getRule(g){return g.getRule(this.ruleId)}toString(){const g=[];return this._writeString(g,0),"["+g.join(",")+"]"}_writeString(g,x){return this.parent&&(x=this.parent._writeString(g,x)),g[x++]=`(${this.ruleId}, TODO-${this.nameScopesList}, TODO-${this.contentNameScopesList})`,x}withContentNameScopesList(g){return this.contentNameScopesList===g?this:this.parent.push(this.ruleId,this._enterPos,this._anchorPos,this.beginRuleCapturedEOL,this.endRule,this.nameScopesList,g)}withEndRule(g){return this.endRule===g?this:new f(this.parent,this.ruleId,this._enterPos,this._anchorPos,this.beginRuleCapturedEOL,g,this.nameScopesList,this.contentNameScopesList)}hasSameRuleAs(g){let x=this;for(;x&&x._enterPos===g._enterPos;){if(x.ruleId===g.ruleId)return!0;x=x.parent}return!1}}o.StateStack=f,f.NULL=new f(null,0,0,0,!1,null,null,null),o.BalancedBracketSelectors=class{constructor(w,g){this.allowAny=!1,this.balancedBracketScopes=w.flatMap(x=>x==="*"?(this.allowAny=!0,[]):l.createMatchers(x,S).map(N=>N.matcher)),this.unbalancedBracketScopes=g.flatMap(x=>l.createMatchers(x,S).map(N=>N.matcher))}get matchesAlways(){return this.allowAny&&this.unbalancedBracketScopes.length===0}get matchesNever(){return this.balancedBracketScopes.length===0&&!this.allowAny}match(w){for(const g of this.unbalancedBracketScopes)if(g(w))return!1;for(const g of this.balancedBracketScopes)if(g(w))return!0;return this.allowAny}};class m{constructor(g,x,N,P){this.balancedBracketSelectors=P,this._emitBinaryTokens=g,this._tokenTypeOverrides=N,a.DebugFlags.InDebugMode?this._lineText=x:this._lineText=null,this._tokens=[],this._binaryTokens=[],this._lastTokenEndIndex=0}produce(g,x){this.produceFromScopes(g.contentNameScopesList,x)}produceFromScopes(g,x){var P;if(this._lastTokenEndIndex>=x)return;if(this._emitBinaryTokens){let C=g.tokenAttributes,O=!1;if((P=this.balancedBracketSelectors)!=null&&P.matchesAlways&&(O=!0),this._tokenTypeOverrides.length>0||this.balancedBracketSelectors&&!this.balancedBracketSelectors.matchesAlways&&!this.balancedBracketSelectors.matchesNever){const B=g.getScopeNames();for(const j of this._tokenTypeOverrides)j.matcher(B)&&(C=c.EncodedTokenAttributes.set(C,0,c.toOptionalTokenType(j.type),null,-1,0,0));this.balancedBracketSelectors&&(O=this.balancedBracketSelectors.match(B))}if(O&&(C=c.EncodedTokenAttributes.set(C,0,8,O,-1,0,0)),this._binaryTokens.length>0&&this._binaryTokens[this._binaryTokens.length-1]===C)return void(this._lastTokenEndIndex=x);if(a.DebugFlags.InDebugMode){const B=g.getScopeNames();console.log(" token: |"+this._lineText.substring(this._lastTokenEndIndex,x).replace(/\n$/,"\\n")+"|");for(let j=0;j<B.length;j++)console.log(" * "+B[j])}return this._binaryTokens.push(this._lastTokenEndIndex),this._binaryTokens.push(C),void(this._lastTokenEndIndex=x)}const N=g.getScopeNames();if(a.DebugFlags.InDebugMode){console.log(" token: |"+this._lineText.substring(this._lastTokenEndIndex,x).replace(/\n$/,"\\n")+"|");for(let C=0;C<N.length;C++)console.log(" * "+N[C])}this._tokens.push({startIndex:this._lastTokenEndIndex,endIndex:x,scopes:N}),this._lastTokenEndIndex=x}getResult(g,x){return this._tokens.length>0&&this._tokens[this._tokens.length-1].startIndex===x-1&&this._tokens.pop(),this._tokens.length===0&&(this._lastTokenEndIndex=-1,this.produce(g,x),this._tokens[this._tokens.length-1].startIndex=0),this._tokens}getBinaryResult(g,x){this._binaryTokens.length>0&&this._binaryTokens[this._binaryTokens.length-2]===x-1&&(this._binaryTokens.pop(),this._binaryTokens.pop()),this._binaryTokens.length===0&&(this._lastTokenEndIndex=-1,this.produce(g,x),this._binaryTokens[this._binaryTokens.length-2]=0);const N=new Uint32Array(this._binaryTokens.length);for(let P=0,C=this._binaryTokens.length;P<C;P++)N[P]=this._binaryTokens[P];return N}}o.LineTokens=m},965:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.parseInclude=o.TopLevelRepositoryReference=o.TopLevelReference=o.RelativeReference=o.SelfReference=o.BaseReference=o.ScopeDependencyProcessor=o.ExternalReferenceCollector=o.TopLevelRepositoryRuleReference=o.TopLevelRuleReference=void 0;const a=i(878);class c{constructor(f){this.scopeName=f}toKey(){return this.scopeName}}o.TopLevelRuleReference=c;class l{constructor(f,m){this.scopeName=f,this.ruleName=m}toKey(){return`${this.scopeName}#${this.ruleName}`}}o.TopLevelRepositoryRuleReference=l;class p{constructor(){this._references=[],this._seenReferenceKeys=new Set,this.visitedRule=new Set}get references(){return this._references}add(f){const m=f.toKey();this._seenReferenceKeys.has(m)||(this._seenReferenceKeys.add(m),this._references.push(f))}}function u(_,f,m,w){const g=m.lookup(_.scopeName);if(!g){if(_.scopeName===f)throw new Error(`No grammar provided for <${f}>`);return}const x=m.lookup(f);_ instanceof c?b({baseGrammar:x,selfGrammar:g},w):d(_.ruleName,{baseGrammar:x,selfGrammar:g,repository:g.repository},w);const N=m.injections(_.scopeName);if(N)for(const P of N)w.add(new c(P))}function d(_,f,m){f.repository&&f.repository[_]&&y([f.repository[_]],f,m)}function b(_,f){_.selfGrammar.patterns&&Array.isArray(_.selfGrammar.patterns)&&y(_.selfGrammar.patterns,{..._,repository:_.selfGrammar.repository},f),_.selfGrammar.injections&&y(Object.values(_.selfGrammar.injections),{..._,repository:_.selfGrammar.repository},f)}function y(_,f,m){for(const w of _){if(m.visitedRule.has(w))continue;m.visitedRule.add(w);const g=w.repository?a.mergeObjects({},f.repository,w.repository):f.repository;Array.isArray(w.patterns)&&y(w.patterns,{...f,repository:g},m);const x=w.include;if(!x)continue;const N=v(x);switch(N.kind){case 0:b({...f,selfGrammar:f.baseGrammar},m);break;case 1:b(f,m);break;case 2:d(N.ruleName,{...f,repository:g},m);break;case 3:case 4:const P=N.scopeName===f.selfGrammar.scopeName?f.selfGrammar:N.scopeName===f.baseGrammar.scopeName?f.baseGrammar:void 0;if(P){const C={baseGrammar:f.baseGrammar,selfGrammar:P,repository:g};N.kind===4?d(N.ruleName,C,m):b(C,m)}else N.kind===4?m.add(new l(N.scopeName,N.ruleName)):m.add(new c(N.scopeName))}}}o.ExternalReferenceCollector=p,o.ScopeDependencyProcessor=class{constructor(_,f){this.repo=_,this.initialScopeName=f,this.seenFullScopeRequests=new Set,this.seenPartialScopeRequests=new Set,this.seenFullScopeRequests.add(this.initialScopeName),this.Q=[new c(this.initialScopeName)]}processQueue(){const _=this.Q;this.Q=[];const f=new p;for(const m of _)u(m,this.initialScopeName,this.repo,f);for(const m of f.references)if(m instanceof c){if(this.seenFullScopeRequests.has(m.scopeName))continue;this.seenFullScopeRequests.add(m.scopeName),this.Q.push(m)}else{if(this.seenFullScopeRequests.has(m.scopeName)||this.seenPartialScopeRequests.has(m.toKey()))continue;this.seenPartialScopeRequests.add(m.toKey()),this.Q.push(m)}}};class T{constructor(){this.kind=0}}o.BaseReference=T;class L{constructor(){this.kind=1}}o.SelfReference=L;class S{constructor(f){this.ruleName=f,this.kind=2}}o.RelativeReference=S;class k{constructor(f){this.scopeName=f,this.kind=3}}o.TopLevelReference=k;class h{constructor(f,m){this.scopeName=f,this.ruleName=m,this.kind=4}}function v(_){if(_==="$base")return new T;if(_==="$self")return new L;const f=_.indexOf("#");if(f===-1)return new k(_);if(f===0)return new S(_.substring(1));{const m=_.substring(0,f),w=_.substring(f+1);return new h(m,w)}}o.TopLevelRepositoryReference=h,o.parseInclude=v},391:function(r,o,i){var a=this&&this.__createBinding||(Object.create?function(l,p,u,d){d===void 0&&(d=u),Object.defineProperty(l,d,{enumerable:!0,get:function(){return p[u]}})}:function(l,p,u,d){d===void 0&&(d=u),l[d]=p[u]}),c=this&&this.__exportStar||function(l,p){for(var u in l)u==="default"||Object.prototype.hasOwnProperty.call(p,u)||a(p,l,u)};Object.defineProperty(o,"__esModule",{value:!0}),c(i(947),o)},47:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.LocalStackElement=o._tokenizeString=void 0;const a=i(350),c=i(44),l=i(792),p=i(878);class u{constructor(h,v){this.stack=h,this.stoppedEarly=v}}function d(k,h,v,_,f,m,w,g){const x=h.content.length;let N=!1,P=-1;if(w){const B=function(j,K,q,oe,be,me){let le=be.beginRuleCapturedEOL?0:-1;const ge=[];for(let ye=be;ye;ye=ye.pop()){const _e=ye.getRule(j);_e instanceof l.BeginWhileRule&&ge.push({rule:_e,stack:ye})}for(let ye=ge.pop();ye;ye=ge.pop()){const{ruleScanner:_e,findOptions:ve}=y(ye.rule,j,ye.stack.endRule,q,oe===le),F=_e.findNextMatchSync(K,oe,ve);if(a.DebugFlags.InDebugMode&&(console.log(" scanning for while rule"),console.log(_e.toString())),!F){a.DebugFlags.InDebugMode&&console.log(" popping "+ye.rule.debugName+" - "+ye.rule.debugWhileRegExp),be=ye.stack.pop();break}if(F.ruleId!==l.whileRuleId){be=ye.stack.pop();break}F.captureIndices&&F.captureIndices.length&&(me.produce(ye.stack,F.captureIndices[0].start),L(j,K,q,ye.stack,me,ye.rule.whileCaptures,F.captureIndices),me.produce(ye.stack,F.captureIndices[0].end),le=F.captureIndices[0].end,F.captureIndices[0].end>oe&&(oe=F.captureIndices[0].end,q=!1))}return{stack:be,linePos:oe,anchorPosition:le,isFirstLine:q}}(k,h,v,_,f,m);f=B.stack,_=B.linePos,v=B.isFirstLine,P=B.anchorPosition}const C=Date.now();for(;!N;){if(g!==0&&Date.now()-C>g)return new u(f,!0);O()}return new u(f,!1);function O(){a.DebugFlags.InDebugMode&&(console.log(""),console.log(`@@scanNext ${_}: |${h.content.substr(_).replace(/\n$/,"\\n")}|`));const B=function(oe,be,me,le,ge,ye){const _e=function(Ie,tt,A,R,E,I){const M=E.getRule(Ie),{ruleScanner:W,findOptions:z}=b(M,Ie,E.endRule,A,R===I);let U=0;a.DebugFlags.InDebugMode&&(U=p.performanceNow());const G=W.findNextMatchSync(tt,R,z);if(a.DebugFlags.InDebugMode){const D=p.performanceNow()-U;D>5&&console.warn(`Rule ${M.debugName} (${M.id}) matching took ${D} against '${tt}'`),console.log(` scanning for (linePos: ${R}, anchorPosition: ${I})`),console.log(W.toString()),G&&console.log(`matched rule id: ${G.ruleId} from ${G.captureIndices[0].start} to ${G.captureIndices[0].end}`)}return G?{captureIndices:G.captureIndices,matchedRuleId:G.ruleId}:null}(oe,be,me,le,ge,ye),ve=oe.getInjections();if(ve.length===0)return _e;const F=function(Ie,tt,A,R,E,I,M){let W,z=Number.MAX_VALUE,U=null,G=0;const D=I.contentNameScopesList.getScopeNames();for(let J=0,$=Ie.length;J<$;J++){const H=Ie[J];if(!H.matcher(D))continue;const Q=tt.getRule(H.ruleId),{ruleScanner:te,findOptions:Z}=b(Q,tt,null,R,E===M),ee=te.findNextMatchSync(A,E,Z);if(!ee)continue;a.DebugFlags.InDebugMode&&(console.log(` matched injection: ${H.debugSelector}`),console.log(te.toString()));const ce=ee.captureIndices[0].start;if(!(ce>=z)&&(z=ce,U=ee.captureIndices,W=ee.ruleId,G=H.priority,z===E))break}return U?{priorityMatch:G===-1,captureIndices:U,matchedRuleId:W}:null}(ve,oe,be,me,le,ge,ye);if(!F)return _e;if(!_e)return F;const xe=_e.captureIndices[0].start,fe=F.captureIndices[0].start;return fe<xe||F.priorityMatch&&fe===xe?F:_e}(k,h,v,_,f,P);if(!B)return a.DebugFlags.InDebugMode&&console.log(" no more matches."),m.produce(f,x),void(N=!0);const j=B.captureIndices,K=B.matchedRuleId,q=!!(j&&j.length>0)&&j[0].end>_;if(K===l.endRuleId){const oe=f.getRule(k);a.DebugFlags.InDebugMode&&console.log(" popping "+oe.debugName+" - "+oe.debugEndRegExp),m.produce(f,j[0].start),f=f.withContentNameScopesList(f.nameScopesList),L(k,h,v,f,m,oe.endCaptures,j),m.produce(f,j[0].end);const be=f;if(f=f.parent,P=be.getAnchorPos(),!q&&be.getEnterPos()===_)return a.DebugFlags.InDebugMode&&console.error("[1] - Grammar is in an endless loop - Grammar pushed & popped a rule without advancing"),f=be,m.produce(f,x),void(N=!0)}else{const oe=k.getRule(K);m.produce(f,j[0].start);const be=f,me=oe.getName(h.content,j),le=f.contentNameScopesList.pushAttributed(me,k);if(f=f.push(K,_,P,j[0].end===x,null,le,le),oe instanceof l.BeginEndRule){const ge=oe;a.DebugFlags.InDebugMode&&console.log(" pushing "+ge.debugName+" - "+ge.debugBeginRegExp),L(k,h,v,f,m,ge.beginCaptures,j),m.produce(f,j[0].end),P=j[0].end;const ye=ge.getContentName(h.content,j),_e=le.pushAttributed(ye,k);if(f=f.withContentNameScopesList(_e),ge.endHasBackReferences&&(f=f.withEndRule(ge.getEndWithResolvedBackReferences(h.content,j))),!q&&be.hasSameRuleAs(f))return a.DebugFlags.InDebugMode&&console.error("[2] - Grammar is in an endless loop - Grammar pushed the same rule without advancing"),f=f.pop(),m.produce(f,x),void(N=!0)}else if(oe instanceof l.BeginWhileRule){const ge=oe;a.DebugFlags.InDebugMode&&console.log(" pushing "+ge.debugName),L(k,h,v,f,m,ge.beginCaptures,j),m.produce(f,j[0].end),P=j[0].end;const ye=ge.getContentName(h.content,j),_e=le.pushAttributed(ye,k);if(f=f.withContentNameScopesList(_e),ge.whileHasBackReferences&&(f=f.withEndRule(ge.getWhileWithResolvedBackReferences(h.content,j))),!q&&be.hasSameRuleAs(f))return a.DebugFlags.InDebugMode&&console.error("[3] - Grammar is in an endless loop - Grammar pushed the same rule without advancing"),f=f.pop(),m.produce(f,x),void(N=!0)}else{const ge=oe;if(a.DebugFlags.InDebugMode&&console.log(" matched "+ge.debugName+" - "+ge.debugMatchRegExp),L(k,h,v,f,m,ge.captures,j),m.produce(f,j[0].end),f=f.pop(),!q)return a.DebugFlags.InDebugMode&&console.error("[4] - Grammar is in an endless loop - Grammar is not advancing, nor is it pushing/popping"),f=f.safePop(),m.produce(f,x),void(N=!0)}}j[0].end>_&&(_=j[0].end,v=!1)}}function b(k,h,v,_,f){return a.UseOnigurumaFindOptions?{ruleScanner:k.compile(h,v),findOptions:T(_,f)}:{ruleScanner:k.compileAG(h,v,_,f),findOptions:0}}function y(k,h,v,_,f){return a.UseOnigurumaFindOptions?{ruleScanner:k.compileWhile(h,v),findOptions:T(_,f)}:{ruleScanner:k.compileWhileAG(h,v,_,f),findOptions:0}}function T(k,h){let v=0;return k||(v|=1),h||(v|=4),v}function L(k,h,v,_,f,m,w){if(m.length===0)return;const g=h.content,x=Math.min(m.length,w.length),N=[],P=w[0].end;for(let C=0;C<x;C++){const O=m[C];if(O===null)continue;const B=w[C];if(B.length===0)continue;if(B.start>P)break;for(;N.length>0&&N[N.length-1].endPos<=B.start;)f.produceFromScopes(N[N.length-1].scopes,N[N.length-1].endPos),N.pop();if(N.length>0?f.produceFromScopes(N[N.length-1].scopes,B.start):f.produce(_,B.start),O.retokenizeCapturedWithRuleId){const K=O.getName(g,w),q=_.contentNameScopesList.pushAttributed(K,k),oe=O.getContentName(g,w),be=q.pushAttributed(oe,k),me=_.push(O.retokenizeCapturedWithRuleId,B.start,-1,!1,null,q,be),le=k.createOnigString(g.substring(0,B.end));d(k,le,v&&B.start===0,B.start,me,f,!1,0),c.disposeOnigString(le);continue}const j=O.getName(g,w);if(j!==null){const K=(N.length>0?N[N.length-1].scopes:_.contentNameScopesList).pushAttributed(j,k);N.push(new S(K,B.end))}}for(;N.length>0;)f.produceFromScopes(N[N.length-1].scopes,N[N.length-1].endPos),N.pop()}o._tokenizeString=d;class S{constructor(h,v){this.scopes=h,this.endPos=v}}o.LocalStackElement=S},974:(r,o)=>{function i(p,u){throw new Error("Near offset "+p.pos+": "+u+" ~~~"+p.source.substr(p.pos,50)+"~~~")}Object.defineProperty(o,"__esModule",{value:!0}),o.parseJSON=void 0,o.parseJSON=function(p,u,d){let b=new a(p),y=new c,T=0,L=null,S=[],k=[];function h(){S.push(T),k.push(L)}function v(){T=S.pop(),L=k.pop()}function _(f){i(b,f)}for(;l(b,y);){if(T===0){if(L!==null&&_("too many constructs in root"),y.type===3){L={},d&&(L.$vscodeTextmateLocation=y.toLocation(u)),h(),T=1;continue}if(y.type===2){L=[],h(),T=4;continue}_("unexpected token in root")}if(T===2){if(y.type===5){v();continue}if(y.type===7){T=3;continue}_("expected , or }")}if(T===1||T===3){if(T===1&&y.type===5){v();continue}if(y.type===1){let f=y.value;if(l(b,y)&&y.type===6||_("expected colon"),l(b,y)||_("expected value"),T=2,y.type===1){L[f]=y.value;continue}if(y.type===8){L[f]=null;continue}if(y.type===9){L[f]=!0;continue}if(y.type===10){L[f]=!1;continue}if(y.type===11){L[f]=parseFloat(y.value);continue}if(y.type===2){let m=[];L[f]=m,h(),T=4,L=m;continue}if(y.type===3){let m={};d&&(m.$vscodeTextmateLocation=y.toLocation(u)),L[f]=m,h(),T=1,L=m;continue}}_("unexpected token in dict")}if(T===5){if(y.type===4){v();continue}if(y.type===7){T=6;continue}_("expected , or ]")}if(T===4||T===6){if(T===4&&y.type===4){v();continue}if(T=5,y.type===1){L.push(y.value);continue}if(y.type===8){L.push(null);continue}if(y.type===9){L.push(!0);continue}if(y.type===10){L.push(!1);continue}if(y.type===11){L.push(parseFloat(y.value));continue}if(y.type===2){let f=[];L.push(f),h(),T=4,L=f;continue}if(y.type===3){let f={};d&&(f.$vscodeTextmateLocation=y.toLocation(u)),L.push(f),h(),T=1,L=f;continue}_("unexpected token in array")}_("unknown state")}return k.length!==0&&_("unclosed constructs"),L};class a{constructor(u){this.source=u,this.pos=0,this.len=u.length,this.line=1,this.char=0}}class c{constructor(){this.value=null,this.type=0,this.offset=-1,this.len=-1,this.line=-1,this.char=-1}toLocation(u){return{filename:u,line:this.line,char:this.char}}}function l(p,u){u.value=null,u.type=0,u.offset=-1,u.len=-1,u.line=-1,u.char=-1;let d,b=p.source,y=p.pos,T=p.len,L=p.line,S=p.char;for(;;){if(y>=T)return!1;if(d=b.charCodeAt(y),d!==32&&d!==9&&d!==13){if(d!==10)break;y++,L++,S=0}else y++,S++}if(u.offset=y,u.line=L,u.char=S,d===34){for(u.type=1,y++,S++;;){if(y>=T)return!1;if(d=b.charCodeAt(y),y++,S++,d!==92){if(d===34)break}else y++,S++}u.value=b.substring(u.offset+1,y-1).replace(/\\u([0-9A-Fa-f]{4})/g,(k,h)=>String.fromCodePoint(parseInt(h,16))).replace(/\\(.)/g,(k,h)=>{switch(h){case'"':return'"';case"\\":return"\\";case"/":return"/";case"b":return"\b";case"f":return"\f";case"n":return`
3
+ `;case"r":return"\r";case"t":return" ";default:i(p,"invalid escape sequence")}throw new Error("unreachable")})}else if(d===91)u.type=2,y++,S++;else if(d===123)u.type=3,y++,S++;else if(d===93)u.type=4,y++,S++;else if(d===125)u.type=5,y++,S++;else if(d===58)u.type=6,y++,S++;else if(d===44)u.type=7,y++,S++;else if(d===110){if(u.type=8,y++,S++,d=b.charCodeAt(y),d!==117||(y++,S++,d=b.charCodeAt(y),d!==108)||(y++,S++,d=b.charCodeAt(y),d!==108))return!1;y++,S++}else if(d===116){if(u.type=9,y++,S++,d=b.charCodeAt(y),d!==114||(y++,S++,d=b.charCodeAt(y),d!==117)||(y++,S++,d=b.charCodeAt(y),d!==101))return!1;y++,S++}else if(d===102){if(u.type=10,y++,S++,d=b.charCodeAt(y),d!==97||(y++,S++,d=b.charCodeAt(y),d!==108)||(y++,S++,d=b.charCodeAt(y),d!==115)||(y++,S++,d=b.charCodeAt(y),d!==101))return!1;y++,S++}else for(u.type=11;;){if(y>=T)return!1;if(d=b.charCodeAt(y),!(d===46||d>=48&&d<=57||d===101||d===69||d===45||d===43))break;y++,S++}return u.len=y-u.offset,u.value===null&&(u.value=b.substr(u.offset,u.len)),p.pos=y,p.line=L,p.char=S,!0}},787:function(r,o,i){var a=this&&this.__createBinding||(Object.create?function(y,T,L,S){S===void 0&&(S=L),Object.defineProperty(y,S,{enumerable:!0,get:function(){return T[L]}})}:function(y,T,L,S){S===void 0&&(S=L),y[S]=T[L]}),c=this&&this.__exportStar||function(y,T){for(var L in y)L==="default"||Object.prototype.hasOwnProperty.call(T,L)||a(T,y,L)};Object.defineProperty(o,"__esModule",{value:!0}),o.parseRawGrammar=o.INITIAL=o.Registry=void 0;const l=i(391),p=i(50),u=i(652),d=i(583),b=i(965);c(i(44),o),o.Registry=class{constructor(y){this._options=y,this._syncRegistry=new u.SyncRegistry(d.Theme.createFromRawTheme(y.theme,y.colorMap),y.onigLib),this._ensureGrammarCache=new Map}dispose(){this._syncRegistry.dispose()}setTheme(y,T){this._syncRegistry.setTheme(d.Theme.createFromRawTheme(y,T))}getColorMap(){return this._syncRegistry.getColorMap()}loadGrammarWithEmbeddedLanguages(y,T,L){return this.loadGrammarWithConfiguration(y,T,{embeddedLanguages:L})}loadGrammarWithConfiguration(y,T,L){return this._loadGrammar(y,T,L.embeddedLanguages,L.tokenTypes,new l.BalancedBracketSelectors(L.balancedBracketSelectors||[],L.unbalancedBracketSelectors||[]))}loadGrammar(y){return this._loadGrammar(y,0,null,null,null)}async _loadGrammar(y,T,L,S,k){const h=new b.ScopeDependencyProcessor(this._syncRegistry,y);for(;h.Q.length>0;)await Promise.all(h.Q.map(v=>this._loadSingleGrammar(v.scopeName))),h.processQueue();return this._grammarForScopeName(y,T,L,S,k)}async _loadSingleGrammar(y){return this._ensureGrammarCache.has(y)||this._ensureGrammarCache.set(y,this._doLoadSingleGrammar(y)),this._ensureGrammarCache.get(y)}async _doLoadSingleGrammar(y){const T=await this._options.loadGrammar(y);if(T){const L=typeof this._options.getInjections=="function"?this._options.getInjections(y):void 0;this._syncRegistry.addGrammar(T,L)}}async addGrammar(y,T=[],L=0,S=null){return this._syncRegistry.addGrammar(y,T),await this._grammarForScopeName(y.scopeName,L,S)}_grammarForScopeName(y,T=0,L=null,S=null,k=null){return this._syncRegistry.grammarForScopeName(y,T,L,S,k)}},o.INITIAL=l.StateStack.NULL,o.parseRawGrammar=p.parseRawGrammar},736:(r,o)=>{function i(a){return!!a&&!!a.match(/[\w\.:]+/)}Object.defineProperty(o,"__esModule",{value:!0}),o.createMatchers=void 0,o.createMatchers=function(a,c){const l=[],p=function(y){let T=/([LR]:|[\w\.:][\w\.:\-]*|[\,\|\-\(\)])/g,L=T.exec(y);return{next:()=>{if(!L)return null;const S=L[0];return L=T.exec(y),S}}}(a);let u=p.next();for(;u!==null;){let y=0;if(u.length===2&&u.charAt(1)===":"){switch(u.charAt(0)){case"R":y=1;break;case"L":y=-1;break;default:console.log(`Unknown priority ${u} in scope selector`)}u=p.next()}let T=b();if(l.push({matcher:T,priority:y}),u!==",")break;u=p.next()}return l;function d(){if(u==="-"){u=p.next();const y=d();return T=>!!y&&!y(T)}if(u==="("){u=p.next();const y=function(){const T=[];let L=b();for(;L&&(T.push(L),u==="|"||u===",");){do u=p.next();while(u==="|"||u===",");L=b()}return S=>T.some(k=>k(S))}();return u===")"&&(u=p.next()),y}if(i(u)){const y=[];do y.push(u),u=p.next();while(i(u));return T=>c(y,T)}return null}function b(){const y=[];let T=d();for(;T;)y.push(T),T=d();return L=>y.every(S=>S(L))}}},44:(r,o)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.disposeOnigString=void 0,o.disposeOnigString=function(i){typeof i.dispose=="function"&&i.dispose()}},50:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.parseRawGrammar=void 0;const a=i(69),c=i(350),l=i(974);o.parseRawGrammar=function(p,u=null){return u!==null&&/\.json$/.test(u)?(d=p,b=u,c.DebugFlags.InDebugMode?l.parseJSON(d,b,!0):JSON.parse(d)):function(y,T){return c.DebugFlags.InDebugMode?a.parseWithLocation(y,T,"$vscodeTextmateLocation"):a.parsePLIST(y)}(p,u);var d,b}},69:(r,o)=>{function i(a,c,l){const p=a.length;let u=0,d=1,b=0;function y(F){if(l===null)u+=F;else for(;F>0;)a.charCodeAt(u)===10?(u++,d++,b=0):(u++,b++),F--}function T(F){l===null?u=F:y(F-u)}function L(){for(;u<p;){let F=a.charCodeAt(u);if(F!==32&&F!==9&&F!==13&&F!==10)break;y(1)}}function S(F){return a.substr(u,F.length)===F&&(y(F.length),!0)}function k(F){let xe=a.indexOf(F,u);T(xe!==-1?xe+F.length:p)}function h(F){let xe=a.indexOf(F,u);if(xe!==-1){let fe=a.substring(u,xe);return T(xe+F.length),fe}{let fe=a.substr(u);return T(p),fe}}p>0&&a.charCodeAt(0)===65279&&(u=1);let v=0,_=null,f=[],m=[],w=null;function g(F,xe){f.push(v),m.push(_),v=F,_=xe}function x(){if(f.length===0)return N("illegal state stack");v=f.pop(),_=m.pop()}function N(F){throw new Error("Near offset "+u+": "+F+" ~~~"+a.substr(u,50)+"~~~")}const P=function(){if(w===null)return N("missing <key>");let F={};l!==null&&(F[l]={filename:c,line:d,char:b}),_[w]=F,w=null,g(1,F)},C=function(){if(w===null)return N("missing <key>");let F=[];_[w]=F,w=null,g(2,F)},O=function(){let F={};l!==null&&(F[l]={filename:c,line:d,char:b}),_.push(F),g(1,F)},B=function(){let F=[];_.push(F),g(2,F)};function j(){if(v!==1)return N("unexpected </dict>");x()}function K(){return v===1||v!==2?N("unexpected </array>"):void x()}function q(F){if(v===1){if(w===null)return N("missing <key>");_[w]=F,w=null}else v===2?_.push(F):_=F}function oe(F){if(isNaN(F))return N("cannot parse float");if(v===1){if(w===null)return N("missing <key>");_[w]=F,w=null}else v===2?_.push(F):_=F}function be(F){if(isNaN(F))return N("cannot parse integer");if(v===1){if(w===null)return N("missing <key>");_[w]=F,w=null}else v===2?_.push(F):_=F}function me(F){if(v===1){if(w===null)return N("missing <key>");_[w]=F,w=null}else v===2?_.push(F):_=F}function le(F){if(v===1){if(w===null)return N("missing <key>");_[w]=F,w=null}else v===2?_.push(F):_=F}function ge(F){if(v===1){if(w===null)return N("missing <key>");_[w]=F,w=null}else v===2?_.push(F):_=F}function ye(){let F=h(">"),xe=!1;return F.charCodeAt(F.length-1)===47&&(xe=!0,F=F.substring(0,F.length-1)),{name:F.trim(),isClosed:xe}}function _e(F){if(F.isClosed)return"";let xe=h("</");return k(">"),xe.replace(/&#([0-9]+);/g,function(fe,Ie){return String.fromCodePoint(parseInt(Ie,10))}).replace(/&#x([0-9a-f]+);/g,function(fe,Ie){return String.fromCodePoint(parseInt(Ie,16))}).replace(/&amp;|&lt;|&gt;|&quot;|&apos;/g,function(fe){switch(fe){case"&amp;":return"&";case"&lt;":return"<";case"&gt;":return">";case"&quot;":return'"';case"&apos;":return"'"}return fe})}for(;u<p&&(L(),!(u>=p));){const F=a.charCodeAt(u);if(y(1),F!==60)return N("expected <");if(u>=p)return N("unexpected end of input");const xe=a.charCodeAt(u);if(xe===63){y(1),k("?>");continue}if(xe===33){if(y(1),S("--")){k("-->");continue}k(">");continue}if(xe===47){if(y(1),L(),S("plist")){k(">");continue}if(S("dict")){k(">"),j();continue}if(S("array")){k(">"),K();continue}return N("unexpected closed tag")}let fe=ye();switch(fe.name){case"dict":v===1?P():v===2?O():(_={},l!==null&&(_[l]={filename:c,line:d,char:b}),g(1,_)),fe.isClosed&&j();continue;case"array":v===1?C():v===2?B():(_=[],g(2,_)),fe.isClosed&&K();continue;case"key":ve=_e(fe),v!==1?N("unexpected <key>"):w!==null?N("too many <key>"):w=ve;continue;case"string":q(_e(fe));continue;case"real":oe(parseFloat(_e(fe)));continue;case"integer":be(parseInt(_e(fe),10));continue;case"date":me(new Date(_e(fe)));continue;case"data":le(_e(fe));continue;case"true":_e(fe),ge(!0);continue;case"false":_e(fe),ge(!1);continue}if(!/^plist/.test(fe.name))return N("unexpected opened tag "+fe.name)}var ve;return _}Object.defineProperty(o,"__esModule",{value:!0}),o.parsePLIST=o.parseWithLocation=void 0,o.parseWithLocation=function(a,c,l){return i(a,c,l)},o.parsePLIST=function(a){return i(a,null,null)}},652:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.SyncRegistry=void 0;const a=i(391);o.SyncRegistry=class{constructor(c,l){this._onigLibPromise=l,this._grammars=new Map,this._rawGrammars=new Map,this._injectionGrammars=new Map,this._theme=c}dispose(){for(const c of this._grammars.values())c.dispose()}setTheme(c){this._theme=c}getColorMap(){return this._theme.getColorMap()}addGrammar(c,l){this._rawGrammars.set(c.scopeName,c),l&&this._injectionGrammars.set(c.scopeName,l)}lookup(c){return this._rawGrammars.get(c)}injections(c){return this._injectionGrammars.get(c)}getDefaults(){return this._theme.getDefaults()}themeMatch(c){return this._theme.match(c)}async grammarForScopeName(c,l,p,u,d){if(!this._grammars.has(c)){let b=this._rawGrammars.get(c);if(!b)return null;this._grammars.set(c,a.createGrammar(c,b,l,p,u,d,this,await this._onigLibPromise))}return this._grammars.get(c)}}},792:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.CompiledRule=o.RegExpSourceList=o.RegExpSource=o.RuleFactory=o.BeginWhileRule=o.BeginEndRule=o.IncludeOnlyRule=o.MatchRule=o.CaptureRule=o.Rule=o.ruleIdToNumber=o.ruleIdFromNumber=o.whileRuleId=o.endRuleId=void 0;const a=i(878),c=i(965),l=/\\(\d+)/,p=/\\(\d+)/g;o.endRuleId=-1,o.whileRuleId=-2,o.ruleIdFromNumber=function(_){return _},o.ruleIdToNumber=function(_){return _};class u{constructor(f,m,w,g){this.$location=f,this.id=m,this._name=w||null,this._nameIsCapturing=a.RegexSource.hasCaptures(this._name),this._contentName=g||null,this._contentNameIsCapturing=a.RegexSource.hasCaptures(this._contentName)}get debugName(){const f=this.$location?`${a.basename(this.$location.filename)}:${this.$location.line}`:"unknown";return`${this.constructor.name}#${this.id} @ ${f}`}getName(f,m){return this._nameIsCapturing&&this._name!==null&&f!==null&&m!==null?a.RegexSource.replaceCaptures(this._name,f,m):this._name}getContentName(f,m){return this._contentNameIsCapturing&&this._contentName!==null?a.RegexSource.replaceCaptures(this._contentName,f,m):this._contentName}}o.Rule=u;class d extends u{constructor(f,m,w,g,x){super(f,m,w,g),this.retokenizeCapturedWithRuleId=x}dispose(){}collectPatterns(f,m){throw new Error("Not supported!")}compile(f,m){throw new Error("Not supported!")}compileAG(f,m,w,g){throw new Error("Not supported!")}}o.CaptureRule=d;class b extends u{constructor(f,m,w,g,x){super(f,m,w,null),this._match=new k(g,this.id),this.captures=x,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null)}get debugMatchRegExp(){return`${this._match.source}`}collectPatterns(f,m){m.push(this._match)}compile(f,m){return this._getCachedCompiledPatterns(f).compile(f)}compileAG(f,m,w,g){return this._getCachedCompiledPatterns(f).compileAG(f,w,g)}_getCachedCompiledPatterns(f){return this._cachedCompiledPatterns||(this._cachedCompiledPatterns=new h,this.collectPatterns(f,this._cachedCompiledPatterns)),this._cachedCompiledPatterns}}o.MatchRule=b;class y extends u{constructor(f,m,w,g,x){super(f,m,w,g),this.patterns=x.patterns,this.hasMissingPatterns=x.hasMissingPatterns,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null)}collectPatterns(f,m){for(const w of this.patterns)f.getRule(w).collectPatterns(f,m)}compile(f,m){return this._getCachedCompiledPatterns(f).compile(f)}compileAG(f,m,w,g){return this._getCachedCompiledPatterns(f).compileAG(f,w,g)}_getCachedCompiledPatterns(f){return this._cachedCompiledPatterns||(this._cachedCompiledPatterns=new h,this.collectPatterns(f,this._cachedCompiledPatterns)),this._cachedCompiledPatterns}}o.IncludeOnlyRule=y;class T extends u{constructor(f,m,w,g,x,N,P,C,O,B){super(f,m,w,g),this._begin=new k(x,this.id),this.beginCaptures=N,this._end=new k(P||"￿",-1),this.endHasBackReferences=this._end.hasBackReferences,this.endCaptures=C,this.applyEndPatternLast=O||!1,this.patterns=B.patterns,this.hasMissingPatterns=B.hasMissingPatterns,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null)}get debugBeginRegExp(){return`${this._begin.source}`}get debugEndRegExp(){return`${this._end.source}`}getEndWithResolvedBackReferences(f,m){return this._end.resolveBackReferences(f,m)}collectPatterns(f,m){m.push(this._begin)}compile(f,m){return this._getCachedCompiledPatterns(f,m).compile(f)}compileAG(f,m,w,g){return this._getCachedCompiledPatterns(f,m).compileAG(f,w,g)}_getCachedCompiledPatterns(f,m){if(!this._cachedCompiledPatterns){this._cachedCompiledPatterns=new h;for(const w of this.patterns)f.getRule(w).collectPatterns(f,this._cachedCompiledPatterns);this.applyEndPatternLast?this._cachedCompiledPatterns.push(this._end.hasBackReferences?this._end.clone():this._end):this._cachedCompiledPatterns.unshift(this._end.hasBackReferences?this._end.clone():this._end)}return this._end.hasBackReferences&&(this.applyEndPatternLast?this._cachedCompiledPatterns.setSource(this._cachedCompiledPatterns.length()-1,m):this._cachedCompiledPatterns.setSource(0,m)),this._cachedCompiledPatterns}}o.BeginEndRule=T;class L extends u{constructor(f,m,w,g,x,N,P,C,O){super(f,m,w,g),this._begin=new k(x,this.id),this.beginCaptures=N,this.whileCaptures=C,this._while=new k(P,o.whileRuleId),this.whileHasBackReferences=this._while.hasBackReferences,this.patterns=O.patterns,this.hasMissingPatterns=O.hasMissingPatterns,this._cachedCompiledPatterns=null,this._cachedCompiledWhilePatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null),this._cachedCompiledWhilePatterns&&(this._cachedCompiledWhilePatterns.dispose(),this._cachedCompiledWhilePatterns=null)}get debugBeginRegExp(){return`${this._begin.source}`}get debugWhileRegExp(){return`${this._while.source}`}getWhileWithResolvedBackReferences(f,m){return this._while.resolveBackReferences(f,m)}collectPatterns(f,m){m.push(this._begin)}compile(f,m){return this._getCachedCompiledPatterns(f).compile(f)}compileAG(f,m,w,g){return this._getCachedCompiledPatterns(f).compileAG(f,w,g)}_getCachedCompiledPatterns(f){if(!this._cachedCompiledPatterns){this._cachedCompiledPatterns=new h;for(const m of this.patterns)f.getRule(m).collectPatterns(f,this._cachedCompiledPatterns)}return this._cachedCompiledPatterns}compileWhile(f,m){return this._getCachedCompiledWhilePatterns(f,m).compile(f)}compileWhileAG(f,m,w,g){return this._getCachedCompiledWhilePatterns(f,m).compileAG(f,w,g)}_getCachedCompiledWhilePatterns(f,m){return this._cachedCompiledWhilePatterns||(this._cachedCompiledWhilePatterns=new h,this._cachedCompiledWhilePatterns.push(this._while.hasBackReferences?this._while.clone():this._while)),this._while.hasBackReferences&&this._cachedCompiledWhilePatterns.setSource(0,m||"￿"),this._cachedCompiledWhilePatterns}}o.BeginWhileRule=L;class S{static createCaptureRule(f,m,w,g,x){return f.registerRule(N=>new d(m,N,w,g,x))}static getCompiledRuleId(f,m,w){return f.id||m.registerRule(g=>{if(f.id=g,f.match)return new b(f.$vscodeTextmateLocation,f.id,f.name,f.match,S._compileCaptures(f.captures,m,w));if(f.begin===void 0){f.repository&&(w=a.mergeObjects({},w,f.repository));let x=f.patterns;return x===void 0&&f.include&&(x=[{include:f.include}]),new y(f.$vscodeTextmateLocation,f.id,f.name,f.contentName,S._compilePatterns(x,m,w))}return f.while?new L(f.$vscodeTextmateLocation,f.id,f.name,f.contentName,f.begin,S._compileCaptures(f.beginCaptures||f.captures,m,w),f.while,S._compileCaptures(f.whileCaptures||f.captures,m,w),S._compilePatterns(f.patterns,m,w)):new T(f.$vscodeTextmateLocation,f.id,f.name,f.contentName,f.begin,S._compileCaptures(f.beginCaptures||f.captures,m,w),f.end,S._compileCaptures(f.endCaptures||f.captures,m,w),f.applyEndPatternLast,S._compilePatterns(f.patterns,m,w))}),f.id}static _compileCaptures(f,m,w){let g=[];if(f){let x=0;for(const N in f){if(N==="$vscodeTextmateLocation")continue;const P=parseInt(N,10);P>x&&(x=P)}for(let N=0;N<=x;N++)g[N]=null;for(const N in f){if(N==="$vscodeTextmateLocation")continue;const P=parseInt(N,10);let C=0;f[N].patterns&&(C=S.getCompiledRuleId(f[N],m,w)),g[P]=S.createCaptureRule(m,f[N].$vscodeTextmateLocation,f[N].name,f[N].contentName,C)}}return g}static _compilePatterns(f,m,w){let g=[];if(f)for(let x=0,N=f.length;x<N;x++){const P=f[x];let C=-1;if(P.include){const O=c.parseInclude(P.include);switch(O.kind){case 0:case 1:C=S.getCompiledRuleId(w[P.include],m,w);break;case 2:let B=w[O.ruleName];B&&(C=S.getCompiledRuleId(B,m,w));break;case 3:case 4:const j=O.scopeName,K=O.kind===4?O.ruleName:null,q=m.getExternalGrammar(j,w);if(q)if(K){let oe=q.repository[K];oe&&(C=S.getCompiledRuleId(oe,m,q.repository))}else C=S.getCompiledRuleId(q.repository.$self,m,q.repository)}}else C=S.getCompiledRuleId(P,m,w);if(C!==-1){const O=m.getRule(C);let B=!1;if((O instanceof y||O instanceof T||O instanceof L)&&O.hasMissingPatterns&&O.patterns.length===0&&(B=!0),B)continue;g.push(C)}}return{patterns:g,hasMissingPatterns:(f?f.length:0)!==g.length}}}o.RuleFactory=S;class k{constructor(f,m){if(f){const w=f.length;let g=0,x=[],N=!1;for(let P=0;P<w;P++)if(f.charAt(P)==="\\"&&P+1<w){const C=f.charAt(P+1);C==="z"?(x.push(f.substring(g,P)),x.push("$(?!\\n)(?<!\\n)"),g=P+2):C!=="A"&&C!=="G"||(N=!0),P++}this.hasAnchor=N,g===0?this.source=f:(x.push(f.substring(g,w)),this.source=x.join(""))}else this.hasAnchor=!1,this.source=f;this.hasAnchor?this._anchorCache=this._buildAnchorCache():this._anchorCache=null,this.ruleId=m,this.hasBackReferences=l.test(this.source)}clone(){return new k(this.source,this.ruleId)}setSource(f){this.source!==f&&(this.source=f,this.hasAnchor&&(this._anchorCache=this._buildAnchorCache()))}resolveBackReferences(f,m){let w=m.map(g=>f.substring(g.start,g.end));return p.lastIndex=0,this.source.replace(p,(g,x)=>a.escapeRegExpCharacters(w[parseInt(x,10)]||""))}_buildAnchorCache(){let f,m,w,g,x=[],N=[],P=[],C=[];for(f=0,m=this.source.length;f<m;f++)w=this.source.charAt(f),x[f]=w,N[f]=w,P[f]=w,C[f]=w,w==="\\"&&f+1<m&&(g=this.source.charAt(f+1),g==="A"?(x[f+1]="￿",N[f+1]="￿",P[f+1]="A",C[f+1]="A"):g==="G"?(x[f+1]="￿",N[f+1]="G",P[f+1]="￿",C[f+1]="G"):(x[f+1]=g,N[f+1]=g,P[f+1]=g,C[f+1]=g),f++);return{A0_G0:x.join(""),A0_G1:N.join(""),A1_G0:P.join(""),A1_G1:C.join("")}}resolveAnchors(f,m){return this.hasAnchor&&this._anchorCache?f?m?this._anchorCache.A1_G1:this._anchorCache.A1_G0:m?this._anchorCache.A0_G1:this._anchorCache.A0_G0:this.source}}o.RegExpSource=k;class h{constructor(){this._items=[],this._hasAnchors=!1,this._cached=null,this._anchorCache={A0_G0:null,A0_G1:null,A1_G0:null,A1_G1:null}}dispose(){this._disposeCaches()}_disposeCaches(){this._cached&&(this._cached.dispose(),this._cached=null),this._anchorCache.A0_G0&&(this._anchorCache.A0_G0.dispose(),this._anchorCache.A0_G0=null),this._anchorCache.A0_G1&&(this._anchorCache.A0_G1.dispose(),this._anchorCache.A0_G1=null),this._anchorCache.A1_G0&&(this._anchorCache.A1_G0.dispose(),this._anchorCache.A1_G0=null),this._anchorCache.A1_G1&&(this._anchorCache.A1_G1.dispose(),this._anchorCache.A1_G1=null)}push(f){this._items.push(f),this._hasAnchors=this._hasAnchors||f.hasAnchor}unshift(f){this._items.unshift(f),this._hasAnchors=this._hasAnchors||f.hasAnchor}length(){return this._items.length}setSource(f,m){this._items[f].source!==m&&(this._disposeCaches(),this._items[f].setSource(m))}compile(f){if(!this._cached){let m=this._items.map(w=>w.source);this._cached=new v(f,m,this._items.map(w=>w.ruleId))}return this._cached}compileAG(f,m,w){return this._hasAnchors?m?w?(this._anchorCache.A1_G1||(this._anchorCache.A1_G1=this._resolveAnchors(f,m,w)),this._anchorCache.A1_G1):(this._anchorCache.A1_G0||(this._anchorCache.A1_G0=this._resolveAnchors(f,m,w)),this._anchorCache.A1_G0):w?(this._anchorCache.A0_G1||(this._anchorCache.A0_G1=this._resolveAnchors(f,m,w)),this._anchorCache.A0_G1):(this._anchorCache.A0_G0||(this._anchorCache.A0_G0=this._resolveAnchors(f,m,w)),this._anchorCache.A0_G0):this.compile(f)}_resolveAnchors(f,m,w){let g=this._items.map(x=>x.resolveAnchors(m,w));return new v(f,g,this._items.map(x=>x.ruleId))}}o.RegExpSourceList=h;class v{constructor(f,m,w){this.regExps=m,this.rules=w,this.scanner=f.createOnigScanner(m)}dispose(){typeof this.scanner.dispose=="function"&&this.scanner.dispose()}toString(){const f=[];for(let m=0,w=this.rules.length;m<w;m++)f.push(" - "+this.rules[m]+": "+this.regExps[m]);return f.join(`
4
+ `)}findNextMatchSync(f,m,w){const g=this.scanner.findNextMatchSync(f,m,w);return g?{ruleId:this.rules[g.index],captureIndices:g.captureIndices}:null}}o.CompiledRule=v},583:(r,o,i)=>{Object.defineProperty(o,"__esModule",{value:!0}),o.ThemeTrieElement=o.ThemeTrieElementRule=o.ColorMap=o.fontStyleToString=o.ParsedThemeRule=o.parseTheme=o.StyleAttributes=o.ScopeStack=o.Theme=void 0;const a=i(878);class c{constructor(k,h,v){this._colorMap=k,this._defaults=h,this._root=v,this._cachedMatchRoot=new a.CachedFn(_=>this._root.match(_))}static createFromRawTheme(k,h){return this.createFromParsedTheme(d(k),h)}static createFromParsedTheme(k,h){return function(v,_){v.sort((P,C)=>{let O=a.strcmp(P.scope,C.scope);return O!==0?O:(O=a.strArrCmp(P.parentScopes,C.parentScopes),O!==0?O:P.index-C.index)});let f=0,m="#000000",w="#ffffff";for(;v.length>=1&&v[0].scope==="";){let P=v.shift();P.fontStyle!==-1&&(f=P.fontStyle),P.foreground!==null&&(m=P.foreground),P.background!==null&&(w=P.background)}let g=new y(_),x=new u(f,g.getId(m),g.getId(w)),N=new L(new T(0,null,-1,0,0),[]);for(let P=0,C=v.length;P<C;P++){let O=v[P];N.insert(0,O.scope,O.parentScopes,O.fontStyle,g.getId(O.foreground),g.getId(O.background))}return new c(g,x,N)}(k,h)}getColorMap(){return this._colorMap.getColorMap()}getDefaults(){return this._defaults}match(k){if(k===null)return this._defaults;const h=k.scopeName,v=this._cachedMatchRoot.get(h).find(_=>function(f,m){if(m===null)return!0;let w=0,g=m[w];for(;f;){if(p(f.scopeName,g)){if(w++,w===m.length)return!0;g=m[w]}f=f.parent}return!1}(k.parent,_.parentScopes));return v?new u(v.fontStyle,v.foreground,v.background):null}}o.Theme=c;class l{constructor(k,h){this.parent=k,this.scopeName=h}static from(...k){let h=null;for(let v=0;v<k.length;v++)h=new l(h,k[v]);return h}push(k){return new l(this,k)}getSegments(){let k=this;const h=[];for(;k;)h.push(k.scopeName),k=k.parent;return h.reverse(),h}toString(){return this.getSegments().join(" ")}}function p(S,k){return k===S||S.startsWith(k)&&S[k.length]==="."}o.ScopeStack=l;class u{constructor(k,h,v){this.fontStyle=k,this.foregroundId=h,this.backgroundId=v}}function d(S){if(!S)return[];if(!S.settings||!Array.isArray(S.settings))return[];let k=S.settings,h=[],v=0;for(let _=0,f=k.length;_<f;_++){let m,w=k[_];if(!w.settings)continue;if(typeof w.scope=="string"){let P=w.scope;P=P.replace(/^[,]+/,""),P=P.replace(/[,]+$/,""),m=P.split(",")}else m=Array.isArray(w.scope)?w.scope:[""];let g=-1;if(typeof w.settings.fontStyle=="string"){g=0;let P=w.settings.fontStyle.split(" ");for(let C=0,O=P.length;C<O;C++)switch(P[C]){case"italic":g|=1;break;case"bold":g|=2;break;case"underline":g|=4;break;case"strikethrough":g|=8}}let x=null;typeof w.settings.foreground=="string"&&a.isValidHexColor(w.settings.foreground)&&(x=w.settings.foreground);let N=null;typeof w.settings.background=="string"&&a.isValidHexColor(w.settings.background)&&(N=w.settings.background);for(let P=0,C=m.length;P<C;P++){let O=m[P].trim().split(" "),B=O[O.length-1],j=null;O.length>1&&(j=O.slice(0,O.length-1),j.reverse()),h[v++]=new b(B,j,_,g,x,N)}}return h}o.StyleAttributes=u,o.parseTheme=d;class b{constructor(k,h,v,_,f,m){this.scope=k,this.parentScopes=h,this.index=v,this.fontStyle=_,this.foreground=f,this.background=m}}o.ParsedThemeRule=b,o.fontStyleToString=function(S){if(S===-1)return"not set";let k="";return 1&S&&(k+="italic "),2&S&&(k+="bold "),4&S&&(k+="underline "),8&S&&(k+="strikethrough "),k===""&&(k="none"),k.trim()};class y{constructor(k){if(this._lastColorId=0,this._id2color=[],this._color2id=Object.create(null),Array.isArray(k)){this._isFrozen=!0;for(let h=0,v=k.length;h<v;h++)this._color2id[k[h]]=h,this._id2color[h]=k[h]}else this._isFrozen=!1}getId(k){if(k===null)return 0;k=k.toUpperCase();let h=this._color2id[k];if(h)return h;if(this._isFrozen)throw new Error(`Missing color in color map - ${k}`);return h=++this._lastColorId,this._color2id[k]=h,this._id2color[h]=k,h}getColorMap(){return this._id2color.slice(0)}}o.ColorMap=y;class T{constructor(k,h,v,_,f){this.scopeDepth=k,this.parentScopes=h,this.fontStyle=v,this.foreground=_,this.background=f}clone(){return new T(this.scopeDepth,this.parentScopes,this.fontStyle,this.foreground,this.background)}static cloneArr(k){let h=[];for(let v=0,_=k.length;v<_;v++)h[v]=k[v].clone();return h}acceptOverwrite(k,h,v,_){this.scopeDepth>k?console.log("how did this happen?"):this.scopeDepth=k,h!==-1&&(this.fontStyle=h),v!==0&&(this.foreground=v),_!==0&&(this.background=_)}}o.ThemeTrieElementRule=T;class L{constructor(k,h=[],v={}){this._mainRule=k,this._children=v,this._rulesWithParentScopes=h}static _sortBySpecificity(k){return k.length===1||k.sort(this._cmpBySpecificity),k}static _cmpBySpecificity(k,h){if(k.scopeDepth===h.scopeDepth){const v=k.parentScopes,_=h.parentScopes;let f=v===null?0:v.length,m=_===null?0:_.length;if(f===m)for(let w=0;w<f;w++){const g=v[w].length,x=_[w].length;if(g!==x)return x-g}return m-f}return h.scopeDepth-k.scopeDepth}match(k){if(k==="")return L._sortBySpecificity([].concat(this._mainRule).concat(this._rulesWithParentScopes));let h,v,_=k.indexOf(".");return _===-1?(h=k,v=""):(h=k.substring(0,_),v=k.substring(_+1)),this._children.hasOwnProperty(h)?this._children[h].match(v):L._sortBySpecificity([].concat(this._mainRule).concat(this._rulesWithParentScopes))}insert(k,h,v,_,f,m){if(h==="")return void this._doInsertHere(k,v,_,f,m);let w,g,x,N=h.indexOf(".");N===-1?(w=h,g=""):(w=h.substring(0,N),g=h.substring(N+1)),this._children.hasOwnProperty(w)?x=this._children[w]:(x=new L(this._mainRule.clone(),T.cloneArr(this._rulesWithParentScopes)),this._children[w]=x),x.insert(k+1,g,v,_,f,m)}_doInsertHere(k,h,v,_,f){if(h!==null){for(let m=0,w=this._rulesWithParentScopes.length;m<w;m++){let g=this._rulesWithParentScopes[m];if(a.strArrCmp(g.parentScopes,h)===0)return void g.acceptOverwrite(k,v,_,f)}v===-1&&(v=this._mainRule.fontStyle),_===0&&(_=this._mainRule.foreground),f===0&&(f=this._mainRule.background),this._rulesWithParentScopes.push(new T(k,h,v,_,f))}else this._mainRule.acceptOverwrite(k,v,_,f)}}o.ThemeTrieElement=L},878:(r,o)=>{function i(l){return Array.isArray(l)?function(p){let u=[];for(let d=0,b=p.length;d<b;d++)u[d]=i(p[d]);return u}(l):typeof l=="object"?function(p){let u={};for(let d in p)u[d]=i(p[d]);return u}(l):l}Object.defineProperty(o,"__esModule",{value:!0}),o.performanceNow=o.CachedFn=o.escapeRegExpCharacters=o.isValidHexColor=o.strArrCmp=o.strcmp=o.RegexSource=o.basename=o.mergeObjects=o.clone=void 0,o.clone=function(l){return i(l)},o.mergeObjects=function(l,...p){return p.forEach(u=>{for(let d in u)l[d]=u[d]}),l},o.basename=function l(p){const u=~p.lastIndexOf("/")||~p.lastIndexOf("\\");return u===0?p:~u==p.length-1?l(p.substring(0,p.length-1)):p.substr(1+~u)};let a=/\$(\d+)|\${(\d+):\/(downcase|upcase)}/g;function c(l,p){return l<p?-1:l>p?1:0}o.RegexSource=class{static hasCaptures(l){return l!==null&&(a.lastIndex=0,a.test(l))}static replaceCaptures(l,p,u){return l.replace(a,(d,b,y,T)=>{let L=u[parseInt(b||y,10)];if(!L)return d;{let S=p.substring(L.start,L.end);for(;S[0]===".";)S=S.substring(1);switch(T){case"downcase":return S.toLowerCase();case"upcase":return S.toUpperCase();default:return S}}})}},o.strcmp=c,o.strArrCmp=function(l,p){if(l===null&&p===null)return 0;if(!l)return-1;if(!p)return 1;let u=l.length,d=p.length;if(u===d){for(let b=0;b<u;b++){let y=c(l[b],p[b]);if(y!==0)return y}return 0}return u-d},o.isValidHexColor=function(l){return!!(/^#[0-9a-f]{6}$/i.test(l)||/^#[0-9a-f]{8}$/i.test(l)||/^#[0-9a-f]{3}$/i.test(l)||/^#[0-9a-f]{4}$/i.test(l))},o.escapeRegExpCharacters=function(l){return l.replace(/[\-\\\{\}\*\+\?\|\^\$\.\,\[\]\(\)\#\s]/g,"\\$&")},o.CachedFn=class{constructor(l){this.fn=l,this.cache=new Map}get(l){if(this.cache.has(l))return this.cache.get(l);const p=this.fn(l);return this.cache.set(l,p),p}},o.performanceNow=typeof performance>"u"?function(){return Date.now()}:function(){return performance.now()}}},s={};return function r(o){var i=s[o];if(i!==void 0)return i.exports;var a=s[o]={exports:{}};return n[o].call(a.exports,a,a.exports,r),a.exports}(787)})()})})(Gc);var Wc=Gc.exports;const lo=[{id:"abap",scopeName:"source.abap",path:"abap.tmLanguage.json",displayName:"ABAP",samplePath:"abap.sample"},{id:"actionscript-3",scopeName:"source.actionscript.3",path:"actionscript-3.tmLanguage.json",displayName:"ActionScript",samplePath:"actionscript-3.sample"},{id:"ada",scopeName:"source.ada",path:"ada.tmLanguage.json",displayName:"Ada",samplePath:"ada.sample"},{id:"apache",scopeName:"source.apacheconf",path:"apache.tmLanguage.json",displayName:"Apache Conf"},{id:"apex",scopeName:"source.apex",path:"apex.tmLanguage.json",displayName:"Apex",samplePath:"apex.sample"},{id:"apl",scopeName:"source.apl",path:"apl.tmLanguage.json",displayName:"APL",embeddedLangs:["html","xml","css","javascript","json"]},{id:"applescript",scopeName:"source.applescript",path:"applescript.tmLanguage.json",displayName:"AppleScript",samplePath:"applescript.sample"},{id:"ara",scopeName:"source.ara",path:"ara.tmLanguage.json",displayName:"Ara",samplePath:"ara.sample"},{id:"asm",scopeName:"source.asm.x86_64",path:"asm.tmLanguage.json",displayName:"Assembly",samplePath:"asm.sample"},{id:"astro",scopeName:"source.astro",path:"astro.tmLanguage.json",displayName:"Astro",samplePath:"astro.sample",embeddedLangs:["json","javascript","typescript","stylus","sass","css","scss","less","postcss","tsx"]},{id:"awk",scopeName:"source.awk",path:"awk.tmLanguage.json",displayName:"AWK",samplePath:"awk.sample"},{id:"ballerina",scopeName:"source.ballerina",path:"ballerina.tmLanguage.json",displayName:"Ballerina",samplePath:"ballerina.sample"},{id:"bat",scopeName:"source.batchfile",path:"bat.tmLanguage.json",displayName:"Batch",samplePath:"bat.sample",aliases:["batch"]},{id:"beancount",scopeName:"text.beancount",path:"beancount.tmLanguage.json",displayName:"Beancount",samplePath:"beancount.sample"},{id:"berry",scopeName:"source.berry",path:"berry.tmLanguage.json",displayName:"Berry",samplePath:"berry.sample",aliases:["be"]},{id:"bibtex",scopeName:"text.bibtex",path:"bibtex.tmLanguage.json",displayName:"BibTeX"},{id:"bicep",scopeName:"source.bicep",path:"bicep.tmLanguage.json",displayName:"Bicep",samplePath:"bicep.sample"},{id:"blade",scopeName:"text.html.php.blade",path:"blade.tmLanguage.json",displayName:"Blade",samplePath:"blade.sample",embeddedLangs:["html","xml","sql","javascript","json","css"]},{id:"c",scopeName:"source.c",path:"c.tmLanguage.json",displayName:"C",samplePath:"c.sample"},{id:"cadence",scopeName:"source.cadence",path:"cadence.tmLanguage.json",displayName:"Cadence",samplePath:"cadence.sample",aliases:["cdc"]},{id:"clarity",scopeName:"source.clar",path:"clarity.tmLanguage.json",displayName:"Clarity",samplePath:"clarity.sample"},{id:"clojure",scopeName:"source.clojure",path:"clojure.tmLanguage.json",displayName:"Clojure",samplePath:"clojure.sample",aliases:["clj"]},{id:"cmake",scopeName:"source.cmake",path:"cmake.tmLanguage.json",displayName:"CMake",samplePath:"cmake.sample"},{id:"cobol",scopeName:"source.cobol",path:"cobol.tmLanguage.json",displayName:"COBOL",samplePath:"cobol.sample",embeddedLangs:["sql","html","java"]},{id:"codeql",scopeName:"source.ql",path:"codeql.tmLanguage.json",displayName:"CodeQL",samplePath:"codeql.sample",aliases:["ql"],embeddedLangs:["markdown"]},{id:"coffee",scopeName:"source.coffee",path:"coffee.tmLanguage.json",displayName:"CoffeeScript",samplePath:"coffee.sample",embeddedLangs:["javascript"]},{id:"cpp",scopeName:"source.cpp",path:"cpp.tmLanguage.json",displayName:"C++",samplePath:"cpp.sample",embeddedLangs:["glsl","sql"]},{id:"crystal",scopeName:"source.crystal",path:"crystal.tmLanguage.json",displayName:"Crystal",samplePath:"crystal.sample",embeddedLangs:["html","sql","css","c","javascript","shellscript"]},{id:"csharp",scopeName:"source.cs",path:"csharp.tmLanguage.json",displayName:"C#",samplePath:"csharp.sample",aliases:["c#","cs"]},{id:"css",scopeName:"source.css",path:"css.tmLanguage.json",displayName:"CSS",samplePath:"css.sample"},{id:"cue",scopeName:"source.cue",path:"cue.tmLanguage.json",displayName:"CUE",samplePath:"cue.sample"},{id:"cypher",scopeName:"source.cypher",path:"cypher.tmLanguage.json",displayName:"Cypher",samplePath:"cypher.sample",aliases:["cql"]},{id:"d",scopeName:"source.d",path:"d.tmLanguage.json",displayName:"D",samplePath:"d.sample"},{id:"dart",scopeName:"source.dart",path:"dart.tmLanguage.json",displayName:"Dart",samplePath:"dart.sample"},{id:"dax",scopeName:"source.dax",path:"dax.tmLanguage.json",displayName:"DAX",samplePath:"dax.sample"},{id:"diff",scopeName:"source.diff",path:"diff.tmLanguage.json",displayName:"Diff",samplePath:"diff.sample"},{id:"docker",scopeName:"source.dockerfile",path:"docker.tmLanguage.json",displayName:"Docker",samplePath:"docker.sample",aliases:["dockerfile"]},{id:"dream-maker",scopeName:"source.dm",path:"dream-maker.tmLanguage.json",displayName:"Dream Maker"},{id:"elixir",scopeName:"source.elixir",path:"elixir.tmLanguage.json",displayName:"Elixir",samplePath:"elixir.sample",embeddedLangs:["html"]},{id:"elm",scopeName:"source.elm",path:"elm.tmLanguage.json",displayName:"Elm",samplePath:"elm.sample",embeddedLangs:["glsl"]},{id:"erb",scopeName:"text.html.erb",path:"erb.tmLanguage.json",displayName:"ERB",samplePath:"erb.sample",embeddedLangs:["html","ruby"]},{id:"erlang",scopeName:"source.erlang",path:"erlang.tmLanguage.json",displayName:"Erlang",samplePath:"erlang.sample",aliases:["erl"]},{id:"fish",scopeName:"source.fish",path:"fish.tmLanguage.json",displayName:"Fish",samplePath:"fish.sample"},{id:"fsharp",scopeName:"source.fsharp",path:"fsharp.tmLanguage.json",displayName:"F#",samplePath:"fsharp.sample",aliases:["f#","fs"],embeddedLangs:["markdown"]},{id:"gdresource",scopeName:"source.gdresource",path:"gdresource.tmLanguage.json",displayName:"GDResource",samplePath:"gdresource.sample",embeddedLangs:["gdshader","gdscript"]},{id:"gdscript",scopeName:"source.gdscript",path:"gdscript.tmLanguage.json",displayName:"GDScript",samplePath:"gdscript.sample"},{id:"gdshader",scopeName:"source.gdshader",path:"gdshader.tmLanguage.json",displayName:"GDShader",samplePath:"gdshader.sample"},{id:"gherkin",scopeName:"text.gherkin.feature",path:"gherkin.tmLanguage.json",displayName:"Gherkin"},{id:"git-commit",scopeName:"text.git-commit",path:"git-commit.tmLanguage.json",displayName:"Git Commit Message",embeddedLangs:["diff"]},{id:"git-rebase",scopeName:"text.git-rebase",path:"git-rebase.tmLanguage.json",displayName:"Git Rebase Message",embeddedLangs:["shellscript"]},{id:"glimmer-js",scopeName:"source.gjs",path:"glimmer-js.tmLanguage.json",displayName:"Glimmer JS",aliases:["gjs"],embeddedLangs:["javascript","handlebars"]},{id:"glimmer-ts",scopeName:"source.gts",path:"glimmer-ts.tmLanguage.json",displayName:"Glimmer TS",aliases:["gts"],embeddedLangs:["typescript","handlebars"]},{id:"glsl",scopeName:"source.glsl",path:"glsl.tmLanguage.json",displayName:"GLSL",samplePath:"glsl.sample",embeddedLangs:["c"]},{id:"gnuplot",scopeName:"source.gnuplot",path:"gnuplot.tmLanguage.json",displayName:"Gnuplot"},{id:"go",scopeName:"source.go",path:"go.tmLanguage.json",displayName:"Go",samplePath:"go.sample"},{id:"graphql",scopeName:"source.graphql",path:"graphql.tmLanguage.json",displayName:"GraphQL",embeddedLangs:["javascript","typescript","jsx","tsx"]},{id:"groovy",scopeName:"source.groovy",path:"groovy.tmLanguage.json",displayName:"Groovy"},{id:"hack",scopeName:"source.hack",path:"hack.tmLanguage.json",displayName:"Hack",embeddedLangs:["html","sql"]},{id:"haml",scopeName:"text.haml",path:"haml.tmLanguage.json",displayName:"Ruby Haml",embeddedLangs:["ruby","javascript","sass","coffee","markdown","css"]},{id:"handlebars",scopeName:"text.html.handlebars",path:"handlebars.tmLanguage.json",displayName:"Handlebars",aliases:["hbs"],embeddedLangs:["html","css","javascript","yaml"]},{id:"haskell",scopeName:"source.haskell",path:"haskell.tmLanguage.json",displayName:"Haskell",aliases:["hs"]},{id:"hcl",scopeName:"source.hcl",path:"hcl.tmLanguage.json",displayName:"HashiCorp HCL",samplePath:"hcl.sample"},{id:"hjson",scopeName:"source.hjson",path:"hjson.tmLanguage.json",displayName:"Hjson",samplePath:"hjson.sample"},{id:"hlsl",scopeName:"source.hlsl",path:"hlsl.tmLanguage.json",displayName:"HLSL"},{id:"html",scopeName:"text.html.basic",path:"html.tmLanguage.json",displayName:"HTML",samplePath:"html.sample",embeddedLangs:["javascript","css"]},{id:"http",scopeName:"source.http",path:"http.tmLanguage.json",displayName:"HTTP",samplePath:"http.sample",embeddedLangs:["shellscript","json","xml","graphql"]},{id:"imba",scopeName:"source.imba",path:"imba.tmLanguage.json",displayName:"Imba",samplePath:"imba.sample"},{id:"ini",scopeName:"source.ini",path:"ini.tmLanguage.json",displayName:"INI",aliases:["properties"]},{id:"java",scopeName:"source.java",path:"java.tmLanguage.json",displayName:"Java",samplePath:"java.sample"},{id:"javascript",scopeName:"source.js",path:"javascript.tmLanguage.json",displayName:"JavaScript",samplePath:"javascript.sample",aliases:["js"]},{id:"jinja-html",scopeName:"text.html.jinja",path:"jinja-html.tmLanguage.json",displayName:"Jinja",embeddedLangs:["html"]},{id:"jison",scopeName:"source.jison",path:"jison.tmLanguage.json",displayName:"Jison",samplePath:"jison.sample",embeddedLangs:["javascript"]},{id:"json",scopeName:"source.json",path:"json.tmLanguage.json",displayName:"JSON"},{id:"json5",scopeName:"source.json5",path:"json5.tmLanguage.json",displayName:"JSON5",samplePath:"json5.sample"},{id:"jsonc",scopeName:"source.json.comments",path:"jsonc.tmLanguage.json",displayName:"JSON with Comments"},{id:"jsonl",scopeName:"source.json.lines",path:"jsonl.tmLanguage.json",displayName:"JSON Lines"},{id:"jsonnet",scopeName:"source.jsonnet",path:"jsonnet.tmLanguage.json",displayName:"Jsonnet"},{id:"jssm",scopeName:"source.jssm",path:"jssm.tmLanguage.json",displayName:"JSSM",samplePath:"jssm.sample",aliases:["fsl"]},{id:"jsx",scopeName:"source.js.jsx",path:"jsx.tmLanguage.json",displayName:"JSX"},{id:"julia",scopeName:"source.julia",path:"julia.tmLanguage.json",displayName:"Julia",embeddedLangs:["cpp","python","javascript","r","sql"]},{id:"kotlin",scopeName:"source.kotlin",path:"kotlin.tmLanguage.json",displayName:"Kotlin",samplePath:"kotlin.sample"},{id:"kusto",scopeName:"source.kusto",path:"kusto.tmLanguage.json",displayName:"Kusto",samplePath:"kusto.sample",aliases:["kql"]},{id:"latex",scopeName:"text.tex.latex",path:"latex.tmLanguage.json",displayName:"LaTeX",embeddedLangs:["tex","css","haskell","html","xml","java","lua","julia","ruby","javascript","typescript","python","yaml","rust","scala","gnuplot"]},{id:"less",scopeName:"source.css.less",path:"less.tmLanguage.json",displayName:"Less",embeddedLangs:["css"]},{id:"liquid",scopeName:"text.html.liquid",path:"liquid.tmLanguage.json",displayName:"Liquid",samplePath:"liquid.sample",embeddedLangs:["html","css","json","javascript"]},{id:"lisp",scopeName:"source.lisp",path:"lisp.tmLanguage.json",displayName:"Lisp"},{id:"logo",scopeName:"source.logo",path:"logo.tmLanguage.json",displayName:"Logo"},{id:"lua",scopeName:"source.lua",path:"lua.tmLanguage.json",displayName:"Lua",embeddedLangs:["c"]},{id:"make",scopeName:"source.makefile",path:"make.tmLanguage.json",displayName:"Makefile",aliases:["makefile"]},{id:"markdown",scopeName:"text.html.markdown",path:"markdown.tmLanguage.json",displayName:"Markdown",aliases:["md"],embeddedLangs:["css","html","ini","java","lua","make","perl","r","ruby","php","sql","vb","xml","xsl","yaml","bat","clojure","coffee","c","cpp","diff","docker","git-commit","git-rebase","go","groovy","pug","javascript","json","jsonc","less","objective-c","swift","scss","raku","powershell","python","julia","rust","scala","shellscript","typescript","tsx","csharp","fsharp","dart","handlebars","erlang","elixir","latex","bibtex"]},{id:"marko",scopeName:"text.marko",path:"marko.tmLanguage.json",displayName:"Marko",embeddedLangs:["css","less","scss","javascript"]},{id:"matlab",scopeName:"source.matlab",path:"matlab.tmLanguage.json",displayName:"MATLAB"},{id:"mdx",scopeName:"source.mdx",path:"mdx.tmLanguage.json",displayName:"MDX",embeddedLangs:["tsx","toml","yaml","c","clojure","coffee","cpp","csharp","css","diff","docker","elixir","elm","erlang","go","graphql","haskell","html","ini","java","javascript","json","julia","kotlin","less","lua","make","markdown","objective-c","perl","python","r","ruby","rust","scala","scss","shellscript","sql","xml","swift","typescript"]},{id:"mermaid",scopeName:"source.mermaid",path:"mermaid.tmLanguage.json",displayName:"Mermaid"},{id:"narrat",scopeName:"source.narrat",path:"narrat.tmLanguage.json",displayName:"Narrat Language",samplePath:"narrat.sample",aliases:["nar"]},{id:"nextflow",scopeName:"source.nextflow",path:"nextflow.tmLanguage.json",displayName:"Nextflow",samplePath:"nextflow.sample",aliases:["nf"]},{id:"nginx",scopeName:"source.nginx",path:"nginx.tmLanguage.json",displayName:"Nginx",embeddedLangs:["lua"]},{id:"nim",scopeName:"source.nim",path:"nim.tmLanguage.json",displayName:"Nim",embeddedLangs:["c","html","xml","javascript","css","glsl","markdown"]},{id:"nix",scopeName:"source.nix",path:"nix.tmLanguage.json",displayName:"Nix"},{id:"objective-c",scopeName:"source.objc",path:"objective-c.tmLanguage.json",displayName:"Objective-C",aliases:["objc"]},{id:"objective-cpp",scopeName:"source.objcpp",path:"objective-cpp.tmLanguage.json",displayName:"Objective-C++"},{id:"ocaml",scopeName:"source.ocaml",path:"ocaml.tmLanguage.json",displayName:"OCaml"},{id:"pascal",scopeName:"source.pascal",path:"pascal.tmLanguage.json",displayName:"Pascal"},{id:"perl",scopeName:"source.perl",path:"perl.tmLanguage.json",displayName:"Perl",embeddedLangs:["html","xml","css","javascript","sql"]},{id:"php",scopeName:"source.php",path:"php.tmLanguage.json",displayName:"PHP",embeddedLangs:["html","xml","sql","javascript","json","css"]},{id:"plsql",scopeName:"source.plsql.oracle",path:"plsql.tmLanguage.json",displayName:"PL/SQL"},{id:"postcss",scopeName:"source.css.postcss",path:"postcss.tmLanguage.json",displayName:"PostCSS"},{id:"powerquery",scopeName:"source.powerquery",path:"powerquery.tmLanguage.json",displayName:"PowerQuery",samplePath:"powerquery.sample"},{id:"powershell",scopeName:"source.powershell",path:"powershell.tmLanguage.json",displayName:"PowerShell",aliases:["ps","ps1"]},{id:"prisma",scopeName:"source.prisma",path:"prisma.tmLanguage.json",displayName:"Prisma",samplePath:"prisma.sample"},{id:"prolog",scopeName:"source.prolog",path:"prolog.tmLanguage.json",displayName:"Prolog"},{id:"proto",scopeName:"source.proto",path:"proto.tmLanguage.json",displayName:"Protocol Buffer 3",samplePath:"proto.sample"},{id:"pug",scopeName:"text.pug",path:"pug.tmLanguage.json",displayName:"Pug",aliases:["jade"],embeddedLangs:["javascript","css","sass","scss","stylus","coffee","html"]},{id:"puppet",scopeName:"source.puppet",path:"puppet.tmLanguage.json",displayName:"Puppet"},{id:"purescript",scopeName:"source.purescript",path:"purescript.tmLanguage.json",displayName:"PureScript"},{id:"python",scopeName:"source.python",path:"python.tmLanguage.json",displayName:"Python",samplePath:"python.sample",aliases:["py"]},{id:"r",scopeName:"source.r",path:"r.tmLanguage.json",displayName:"R"},{id:"raku",scopeName:"source.perl.6",path:"raku.tmLanguage.json",displayName:"Perl 6",aliases:["perl6"]},{id:"razor",scopeName:"text.aspnetcorerazor",path:"razor.tmLanguage.json",displayName:"ASP.NET Razor",embeddedLangs:["html","csharp"]},{id:"reg",scopeName:"source.reg",path:"reg.tmLanguage.json",displayName:"Windows Registry Script",samplePath:"reg.sample"},{id:"rel",scopeName:"source.rel",path:"rel.tmLanguage.json",displayName:"Rel",samplePath:"rel.sample"},{id:"riscv",scopeName:"source.riscv",path:"riscv.tmLanguage.json",displayName:"RISC-V"},{id:"rst",scopeName:"source.rst",path:"rst.tmLanguage.json",displayName:"reStructuredText",embeddedLangs:["cpp","python","javascript","shellscript","yaml","cmake","ruby"]},{id:"ruby",scopeName:"source.ruby",path:"ruby.tmLanguage.json",displayName:"Ruby",samplePath:"ruby.sample",aliases:["rb"],embeddedLangs:["html","xml","sql","css","c","javascript","shellscript","lua"]},{id:"rust",scopeName:"source.rust",path:"rust.tmLanguage.json",displayName:"Rust",aliases:["rs"]},{id:"sas",scopeName:"source.sas",path:"sas.tmLanguage.json",displayName:"SAS",embeddedLangs:["sql"]},{id:"sass",scopeName:"source.sass",path:"sass.tmLanguage.json",displayName:"Sass"},{id:"scala",scopeName:"source.scala",path:"scala.tmLanguage.json",displayName:"Scala"},{id:"scheme",scopeName:"source.scheme",path:"scheme.tmLanguage.json",displayName:"Scheme"},{id:"scss",scopeName:"source.css.scss",path:"scss.tmLanguage.json",displayName:"SCSS",embeddedLangs:["css"]},{id:"shaderlab",scopeName:"source.shaderlab",path:"shaderlab.tmLanguage.json",displayName:"ShaderLab",aliases:["shader"],embeddedLangs:["hlsl"]},{id:"shellscript",scopeName:"source.shell",path:"shellscript.tmLanguage.json",displayName:"Shell",aliases:["bash","console","sh","shell","zsh"]},{id:"smalltalk",scopeName:"source.smalltalk",path:"smalltalk.tmLanguage.json",displayName:"Smalltalk"},{id:"solidity",scopeName:"source.solidity",path:"solidity.tmLanguage.json",displayName:"Solidity"},{id:"sparql",scopeName:"source.sparql",path:"sparql.tmLanguage.json",displayName:"SPARQL",samplePath:"sparql.sample",embeddedLangs:["turtle"]},{id:"sql",scopeName:"source.sql",path:"sql.tmLanguage.json",displayName:"SQL"},{id:"ssh-config",scopeName:"source.ssh-config",path:"ssh-config.tmLanguage.json",displayName:"SSH Config"},{id:"stata",scopeName:"source.stata",path:"stata.tmLanguage.json",displayName:"Stata",samplePath:"stata.sample",embeddedLangs:["sql"]},{id:"stylus",scopeName:"source.stylus",path:"stylus.tmLanguage.json",displayName:"Stylus",aliases:["styl"]},{id:"svelte",scopeName:"source.svelte",path:"svelte.tmLanguage.json",displayName:"Svelte",embeddedLangs:["javascript","typescript","coffee","stylus","sass","css","scss","less","postcss","pug","markdown"]},{id:"swift",scopeName:"source.swift",path:"swift.tmLanguage.json",displayName:"Swift"},{id:"system-verilog",scopeName:"source.systemverilog",path:"system-verilog.tmLanguage.json",displayName:"SystemVerilog"},{id:"tasl",scopeName:"source.tasl",path:"tasl.tmLanguage.json",displayName:"Tasl",samplePath:"tasl.sample"},{id:"tcl",scopeName:"source.tcl",path:"tcl.tmLanguage.json",displayName:"Tcl"},{id:"tex",scopeName:"text.tex",path:"tex.tmLanguage.json",displayName:"TeX",embeddedLangs:["r"]},{id:"toml",scopeName:"source.toml",path:"toml.tmLanguage.json",displayName:"TOML"},{id:"tsx",scopeName:"source.tsx",path:"tsx.tmLanguage.json",displayName:"TSX",samplePath:"tsx.sample"},{id:"turtle",scopeName:"source.turtle",path:"turtle.tmLanguage.json",displayName:"Turtle",samplePath:"turtle.sample"},{id:"twig",scopeName:"text.html.twig",path:"twig.tmLanguage.json",displayName:"Twig",embeddedLangs:["css","javascript","php","python","ruby"]},{id:"typescript",scopeName:"source.ts",path:"typescript.tmLanguage.json",displayName:"TypeScript",aliases:["ts"]},{id:"v",scopeName:"source.v",path:"v.tmLanguage.json",displayName:"V",samplePath:"v.sample"},{id:"vb",scopeName:"source.asp.vb.net",path:"vb.tmLanguage.json",displayName:"Visual Basic",aliases:["cmd"]},{id:"verilog",scopeName:"source.verilog",path:"verilog.tmLanguage.json",displayName:"Verilog"},{id:"vhdl",scopeName:"source.vhdl",path:"vhdl.tmLanguage.json",displayName:"VHDL"},{id:"viml",scopeName:"source.viml",path:"viml.tmLanguage.json",displayName:"Vim Script",aliases:["vim","vimscript"]},{id:"vue-html",scopeName:"text.html.vue-html",path:"vue-html.tmLanguage.json",displayName:"Vue HTML",embeddedLangs:["vue","javascript"]},{id:"vue",scopeName:"source.vue",path:"vue.tmLanguage.json",displayName:"Vue",embeddedLangs:["html","markdown","pug","stylus","sass","css","scss","less","javascript","typescript","jsx","tsx","json","jsonc","json5","yaml","toml","graphql"]},{id:"vyper",scopeName:"source.vyper",path:"vyper.tmLanguage.json",displayName:"Vyper",samplePath:"vyper.sample",aliases:["vy"]},{id:"wasm",scopeName:"source.wat",path:"wasm.tmLanguage.json",displayName:"WebAssembly"},{id:"wenyan",scopeName:"source.wenyan",path:"wenyan.tmLanguage.json",displayName:"Wenyan",aliases:["文言"]},{id:"wgsl",scopeName:"source.wgsl",path:"wgsl.tmLanguage.json",displayName:"WGSL",samplePath:"wgsl.sample"},{id:"wolfram",scopeName:"source.wolfram",path:"wolfram.tmLanguage.json",displayName:"Wolfram",samplePath:"wolfram.sample"},{id:"xml",scopeName:"text.xml",path:"xml.tmLanguage.json",displayName:"XML",embeddedLangs:["java"]},{id:"xsl",scopeName:"text.xml.xsl",path:"xsl.tmLanguage.json",displayName:"XSL",embeddedLangs:["xml"]},{id:"yaml",scopeName:"source.yaml",path:"yaml.tmLanguage.json",displayName:"YAML",aliases:["yml"]},{id:"zenscript",scopeName:"source.zenscript",path:"zenscript.tmLanguage.json",displayName:"ZenScript",samplePath:"zenscript.sample"}];var Rt=(e=>(e[e.NotSet=-1]="NotSet",e[e.None=0]="None",e[e.Italic=1]="Italic",e[e.Bold=2]="Bold",e[e.Underline=4]="Underline",e))(Rt||{});class Ue{static toBinaryStr(t){let n=t.toString(2);for(;n.length<32;)n="0"+n;return n}static printMetadata(t){let n=Ue.getLanguageId(t),s=Ue.getTokenType(t),r=Ue.getFontStyle(t),o=Ue.getForeground(t),i=Ue.getBackground(t);console.log({languageId:n,tokenType:s,fontStyle:r,foreground:o,background:i})}static getLanguageId(t){return(t&255)>>>0}static getTokenType(t){return(t&768)>>>8}static getFontStyle(t){return(t&14336)>>>11}static getForeground(t){return(t&8372224)>>>15}static getBackground(t){return(t&4286578688)>>>24}static containsBalancedBrackets(t){return(t&1024)!==0}static set(t,n,s,r,o,i){let a=Ue.getLanguageId(t),c=Ue.getTokenType(t),l=Ue.getFontStyle(t),p=Ue.getForeground(t),u=Ue.getBackground(t),d=Ue.containsBalancedBrackets(t)?1:0;return n!==0&&(a=n),s!==0&&(c=s===8?0:s),r!==-1&&(l=r),o!==0&&(p=o),i!==0&&(u=i),(a<<0|c<<8|l<<11|d<<10|p<<15|u<<24)>>>0}}function ey(e){return e.endsWith("/")||e.endsWith("\\")?e.slice(0,-1):e}function ty(e){return e.startsWith("./")?e.slice(2):e}function Vc(e){const t=e.split(/[\/\\]/g);return t.slice(0,t.length-1)}function qc(...e){return e.map(ey).map(ty).join("/")}function ny(e,t){const n=new Map;for(const s of e){const r=t(s);n.has(r)?n.get(r).push(s):n.set(r,[s])}return n}function sy(e,t=!1){const n=e.length;let s=0,r="",o=0,i=16,a=0,c=0,l=0,p=0,u=0;function d(h,v){let _=0,f=0;for(;_<h||!v;){let m=e.charCodeAt(s);if(m>=48&&m<=57)f=f*16+m-48;else if(m>=65&&m<=70)f=f*16+m-65+10;else if(m>=97&&m<=102)f=f*16+m-97+10;else break;s++,_++}return _<h&&(f=-1),f}function b(h){s=h,r="",o=0,i=16,u=0}function y(){let h=s;if(e.charCodeAt(s)===48)s++;else for(s++;s<e.length&&rn(e.charCodeAt(s));)s++;if(s<e.length&&e.charCodeAt(s)===46)if(s++,s<e.length&&rn(e.charCodeAt(s)))for(s++;s<e.length&&rn(e.charCodeAt(s));)s++;else return u=3,e.substring(h,s);let v=s;if(s<e.length&&(e.charCodeAt(s)===69||e.charCodeAt(s)===101))if(s++,(s<e.length&&e.charCodeAt(s)===43||e.charCodeAt(s)===45)&&s++,s<e.length&&rn(e.charCodeAt(s))){for(s++;s<e.length&&rn(e.charCodeAt(s));)s++;v=s}else u=3;return e.substring(h,v)}function T(){let h="",v=s;for(;;){if(s>=n){h+=e.substring(v,s),u=2;break}const _=e.charCodeAt(s);if(_===34){h+=e.substring(v,s),s++;break}if(_===92){if(h+=e.substring(v,s),s++,s>=n){u=2;break}switch(e.charCodeAt(s++)){case 34:h+='"';break;case 92:h+="\\";break;case 47:h+="/";break;case 98:h+="\b";break;case 102:h+="\f";break;case 110:h+=`
5
+ `;break;case 114:h+="\r";break;case 116:h+=" ";break;case 117:const m=d(4,!0);m>=0?h+=String.fromCharCode(m):u=4;break;default:u=5}v=s;continue}if(_>=0&&_<=31)if(Tn(_)){h+=e.substring(v,s),u=2;break}else u=6;s++}return h}function L(){if(r="",u=0,o=s,c=a,p=l,s>=n)return o=n,i=17;let h=e.charCodeAt(s);if(Lo(h)){do s++,r+=String.fromCharCode(h),h=e.charCodeAt(s);while(Lo(h));return i=15}if(Tn(h))return s++,r+=String.fromCharCode(h),h===13&&e.charCodeAt(s)===10&&(s++,r+=`
6
+ `),a++,l=s,i=14;switch(h){case 123:return s++,i=1;case 125:return s++,i=2;case 91:return s++,i=3;case 93:return s++,i=4;case 58:return s++,i=6;case 44:return s++,i=5;case 34:return s++,r=T(),i=10;case 47:const v=s-1;if(e.charCodeAt(s+1)===47){for(s+=2;s<n&&!Tn(e.charCodeAt(s));)s++;return r=e.substring(v,s),i=12}if(e.charCodeAt(s+1)===42){s+=2;const _=n-1;let f=!1;for(;s<_;){const m=e.charCodeAt(s);if(m===42&&e.charCodeAt(s+1)===47){s+=2,f=!0;break}s++,Tn(m)&&(m===13&&e.charCodeAt(s)===10&&s++,a++,l=s)}return f||(s++,u=1),r=e.substring(v,s),i=13}return r+=String.fromCharCode(h),s++,i=16;case 45:if(r+=String.fromCharCode(h),s++,s===n||!rn(e.charCodeAt(s)))return i=16;case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return r+=y(),i=11;default:for(;s<n&&S(h);)s++,h=e.charCodeAt(s);if(o!==s){switch(r=e.substring(o,s),r){case"true":return i=8;case"false":return i=9;case"null":return i=7}return i=16}return r+=String.fromCharCode(h),s++,i=16}}function S(h){if(Lo(h)||Tn(h))return!1;switch(h){case 125:case 93:case 123:case 91:case 34:case 58:case 44:case 47:return!1}return!0}function k(){let h;do h=L();while(h>=12&&h<=15);return h}return{setPosition:b,getPosition:()=>s,scan:t?k:L,getToken:()=>i,getTokenValue:()=>r,getTokenOffset:()=>o,getTokenLength:()=>s-o,getTokenStartLine:()=>c,getTokenStartCharacter:()=>o-p,getTokenError:()=>u}}function Lo(e){return e===32||e===9}function Tn(e){return e===10||e===13}function rn(e){return e>=48&&e<=57}var la;(function(e){e[e.lineFeed=10]="lineFeed",e[e.carriageReturn=13]="carriageReturn",e[e.space=32]="space",e[e._0=48]="_0",e[e._1=49]="_1",e[e._2=50]="_2",e[e._3=51]="_3",e[e._4=52]="_4",e[e._5=53]="_5",e[e._6=54]="_6",e[e._7=55]="_7",e[e._8=56]="_8",e[e._9=57]="_9",e[e.a=97]="a",e[e.b=98]="b",e[e.c=99]="c",e[e.d=100]="d",e[e.e=101]="e",e[e.f=102]="f",e[e.g=103]="g",e[e.h=104]="h",e[e.i=105]="i",e[e.j=106]="j",e[e.k=107]="k",e[e.l=108]="l",e[e.m=109]="m",e[e.n=110]="n",e[e.o=111]="o",e[e.p=112]="p",e[e.q=113]="q",e[e.r=114]="r",e[e.s=115]="s",e[e.t=116]="t",e[e.u=117]="u",e[e.v=118]="v",e[e.w=119]="w",e[e.x=120]="x",e[e.y=121]="y",e[e.z=122]="z",e[e.A=65]="A",e[e.B=66]="B",e[e.C=67]="C",e[e.D=68]="D",e[e.E=69]="E",e[e.F=70]="F",e[e.G=71]="G",e[e.H=72]="H",e[e.I=73]="I",e[e.J=74]="J",e[e.K=75]="K",e[e.L=76]="L",e[e.M=77]="M",e[e.N=78]="N",e[e.O=79]="O",e[e.P=80]="P",e[e.Q=81]="Q",e[e.R=82]="R",e[e.S=83]="S",e[e.T=84]="T",e[e.U=85]="U",e[e.V=86]="V",e[e.W=87]="W",e[e.X=88]="X",e[e.Y=89]="Y",e[e.Z=90]="Z",e[e.asterisk=42]="asterisk",e[e.backslash=92]="backslash",e[e.closeBrace=125]="closeBrace",e[e.closeBracket=93]="closeBracket",e[e.colon=58]="colon",e[e.comma=44]="comma",e[e.dot=46]="dot",e[e.doubleQuote=34]="doubleQuote",e[e.minus=45]="minus",e[e.openBrace=123]="openBrace",e[e.openBracket=91]="openBracket",e[e.plus=43]="plus",e[e.slash=47]="slash",e[e.formFeed=12]="formFeed",e[e.tab=9]="tab"})(la||(la={}));var Fs;(function(e){e.DEFAULT={allowTrailingComma:!1}})(Fs||(Fs={}));function oy(e,t=[],n=Fs.DEFAULT){let s=null,r=[];const o=[];function i(c){Array.isArray(r)?r.push(c):s!==null&&(r[s]=c)}return ry(e,{onObjectBegin:()=>{const c={};i(c),o.push(r),r=c,s=null},onObjectProperty:c=>{s=c},onObjectEnd:()=>{r=o.pop()},onArrayBegin:()=>{const c=[];i(c),o.push(r),r=c,s=null},onArrayEnd:()=>{r=o.pop()},onLiteralValue:i,onError:(c,l,p)=>{t.push({error:c,offset:l,length:p})}},n),r[0]}function ry(e,t,n=Fs.DEFAULT){const s=sy(e,!1),r=[];function o(P){return P?()=>P(s.getTokenOffset(),s.getTokenLength(),s.getTokenStartLine(),s.getTokenStartCharacter()):()=>!0}function i(P){return P?()=>P(s.getTokenOffset(),s.getTokenLength(),s.getTokenStartLine(),s.getTokenStartCharacter(),()=>r.slice()):()=>!0}function a(P){return P?C=>P(C,s.getTokenOffset(),s.getTokenLength(),s.getTokenStartLine(),s.getTokenStartCharacter()):()=>!0}function c(P){return P?C=>P(C,s.getTokenOffset(),s.getTokenLength(),s.getTokenStartLine(),s.getTokenStartCharacter(),()=>r.slice()):()=>!0}const l=i(t.onObjectBegin),p=c(t.onObjectProperty),u=o(t.onObjectEnd),d=i(t.onArrayBegin),b=o(t.onArrayEnd),y=c(t.onLiteralValue),T=a(t.onSeparator),L=o(t.onComment),S=a(t.onError),k=n&&n.disallowComments,h=n&&n.allowTrailingComma;function v(){for(;;){const P=s.scan();switch(s.getTokenError()){case 4:_(14);break;case 5:_(15);break;case 3:_(13);break;case 1:k||_(11);break;case 2:_(12);break;case 6:_(16);break}switch(P){case 12:case 13:k?_(10):L();break;case 16:_(1);break;case 15:case 14:break;default:return P}}}function _(P,C=[],O=[]){if(S(P),C.length+O.length>0){let B=s.getToken();for(;B!==17;){if(C.indexOf(B)!==-1){v();break}else if(O.indexOf(B)!==-1)break;B=v()}}}function f(P){const C=s.getTokenValue();return P?y(C):(p(C),r.push(C)),v(),!0}function m(){switch(s.getToken()){case 11:const P=s.getTokenValue();let C=Number(P);isNaN(C)&&(_(2),C=0),y(C);break;case 7:y(null);break;case 8:y(!0);break;case 9:y(!1);break;default:return!1}return v(),!0}function w(){return s.getToken()!==10?(_(3,[],[2,5]),!1):(f(!1),s.getToken()===6?(T(":"),v(),N()||_(4,[],[2,5])):_(5,[],[2,5]),r.pop(),!0)}function g(){l(),v();let P=!1;for(;s.getToken()!==2&&s.getToken()!==17;){if(s.getToken()===5){if(P||_(4,[],[]),T(","),v(),s.getToken()===2&&h)break}else P&&_(6,[],[]);w()||_(4,[],[2,5]),P=!0}return u(),s.getToken()!==2?_(7,[2],[]):v(),!0}function x(){d(),v();let P=!0,C=!1;for(;s.getToken()!==4&&s.getToken()!==17;){if(s.getToken()===5){if(C||_(4,[],[]),T(","),v(),s.getToken()===4&&h)break}else C&&_(6,[],[]);P?(r.push(0),P=!1):r[r.length-1]++,N()||_(4,[],[4,5]),C=!0}return b(),P||r.pop(),s.getToken()!==4?_(8,[4],[]):v(),!0}function N(){switch(s.getToken()){case 3:return x();case 1:return g();case 10:return f(!0);default:return m()}}return v(),s.getToken()===17?n.allowEmptyContent?!0:(_(4,[],[]),!1):N()?(s.getToken()!==17&&_(9,[],[]),!0):(_(4,[],[]),!1)}var ca;(function(e){e[e.None=0]="None",e[e.UnexpectedEndOfComment=1]="UnexpectedEndOfComment",e[e.UnexpectedEndOfString=2]="UnexpectedEndOfString",e[e.UnexpectedEndOfNumber=3]="UnexpectedEndOfNumber",e[e.InvalidUnicode=4]="InvalidUnicode",e[e.InvalidEscapeCharacter=5]="InvalidEscapeCharacter",e[e.InvalidCharacter=6]="InvalidCharacter"})(ca||(ca={}));var ua;(function(e){e[e.OpenBraceToken=1]="OpenBraceToken",e[e.CloseBraceToken=2]="CloseBraceToken",e[e.OpenBracketToken=3]="OpenBracketToken",e[e.CloseBracketToken=4]="CloseBracketToken",e[e.CommaToken=5]="CommaToken",e[e.ColonToken=6]="ColonToken",e[e.NullKeyword=7]="NullKeyword",e[e.TrueKeyword=8]="TrueKeyword",e[e.FalseKeyword=9]="FalseKeyword",e[e.StringLiteral=10]="StringLiteral",e[e.NumericLiteral=11]="NumericLiteral",e[e.LineCommentTrivia=12]="LineCommentTrivia",e[e.BlockCommentTrivia=13]="BlockCommentTrivia",e[e.LineBreakTrivia=14]="LineBreakTrivia",e[e.Trivia=15]="Trivia",e[e.Unknown=16]="Unknown",e[e.EOF=17]="EOF"})(ua||(ua={}));const iy=oy;var fa;(function(e){e[e.InvalidSymbol=1]="InvalidSymbol",e[e.InvalidNumberFormat=2]="InvalidNumberFormat",e[e.PropertyNameExpected=3]="PropertyNameExpected",e[e.ValueExpected=4]="ValueExpected",e[e.ColonExpected=5]="ColonExpected",e[e.CommaExpected=6]="CommaExpected",e[e.CloseBraceExpected=7]="CloseBraceExpected",e[e.CloseBracketExpected=8]="CloseBracketExpected",e[e.EndOfFileExpected=9]="EndOfFileExpected",e[e.InvalidCommentToken=10]="InvalidCommentToken",e[e.UnexpectedEndOfComment=11]="UnexpectedEndOfComment",e[e.UnexpectedEndOfString=12]="UnexpectedEndOfString",e[e.UnexpectedEndOfNumber=13]="UnexpectedEndOfNumber",e[e.InvalidUnicode=14]="InvalidUnicode",e[e.InvalidEscapeCharacter=15]="InvalidEscapeCharacter",e[e.InvalidCharacter=16]="InvalidCharacter"})(fa||(fa={}));"process"in globalThis&&typeof process<"u"&&typeof process.release<"u"&&process.release.name;let zc="";const ay="dist/";function ly(e){zc=e.endsWith("/")?e:e+"/"}let Po=null;async function cy(e){if(!Po){let t;t=To.loadWASM({data:await(globalThis.__shiki_fetch__||globalThis.fetch)(Kc(qc(...Vc(e),"onig.wasm")))}),Po=t.then(()=>({createOnigScanner(n){return To.createOnigScanner(n)},createOnigString(n){return To.createOnigString(n)}}))}return Po}function Kc(e){return`${zc}${e}`}async function uy(e){const t=Kc(e);return await(globalThis.__shiki_fetch__||globalThis.fetch)(t).then(n=>n.text())}async function Jc(e){const t=[],n=await uy(e);let s;try{s=JSON.parse(n)}catch{if(s=iy(n,t,{allowTrailingComma:!0}),t.length)throw t[0]}return s}async function Xc(e){let t=await Jc(e);const n=Qc(t);if(n.include){const s=await Xc(qc(...Vc(e),n.include));s.settings&&(n.settings=s.settings.concat(n.settings)),s.bg&&!n.bg&&(n.bg=s.bg),s.colors&&(n.colors={...s.colors,...n.colors}),delete n.include}return n}async function fy(e){return await Jc(e)}function py(e){e.settings||(e.settings=[]),!(e.settings[0]&&e.settings[0].settings&&!e.settings[0].scope)&&e.settings.unshift({settings:{foreground:e.fg,background:e.bg}})}function Qc(e){const t=e.type||"dark",n={name:e.name,type:t,...e,...dy(e)};return e.include&&(n.include=e.include),e.tokenColors&&(n.settings=e.tokenColors,delete n.tokenColors),py(n),n}const pa={light:"#333333",dark:"#bbbbbb"},da={light:"#fffffe",dark:"#1e1e1e"};function dy(e){var o,i,a,c;let t,n,s=e.settings?e.settings:e.tokenColors;const r=s?s.find(l=>!l.name&&!l.scope):void 0;return(o=r==null?void 0:r.settings)!=null&&o.foreground&&(t=r.settings.foreground),(i=r==null?void 0:r.settings)!=null&&i.background&&(n=r.settings.background),!t&&((a=e==null?void 0:e.colors)!=null&&a["editor.foreground"])&&(t=e.colors["editor.foreground"]),!n&&((c=e==null?void 0:e.colors)!=null&&c["editor.background"])&&(n=e.colors["editor.background"]),t||(t=e.type==="light"?pa.light:pa.dark),n||(n=e.type==="light"?da.light:da.dark),{fg:t,bg:n}}class hy{constructor(t,n){this.languagesPath="languages/",this.languageMap={},this.scopeToLangMap={},this._onigLibPromise=t,this._onigLibName=n}get onigLib(){return this._onigLibPromise}getOnigLibName(){return this._onigLibName}getLangRegistration(t){return this.languageMap[t]}async loadGrammar(t){const n=this.scopeToLangMap[t];if(!n)return null;if(n.grammar)return n.grammar;const s=await fy(lo.includes(n)?`${this.languagesPath}${n.path}`:n.path);return n.grammar=s,s}addLanguage(t){this.languageMap[t.id]=t,t.aliases&&t.aliases.forEach(n=>{this.languageMap[n]=t}),this.scopeToLangMap[t.scopeName]=t}}function my(e,t,n,s,r){let o=n.split(/\r\n|\r|\n/),i=Wc.INITIAL,a=[],c=[];for(let l=0,p=o.length;l<p;l++){let u=o[l];if(u===""){a=[],c.push([]);continue}let d,b,y;r.includeExplanation&&(d=s.tokenizeLine(u,i),b=d.tokens,y=0);let T=s.tokenizeLine2(u,i),L=T.tokens.length/2;for(let S=0;S<L;S++){let k=T.tokens[2*S],h=S+1<L?T.tokens[2*S+2]:u.length;if(k===h)continue;let v=T.tokens[2*S+1],_=Ue.getForeground(v),f=t[_],m=Ue.getFontStyle(v),w=[];if(r.includeExplanation){let g=0;for(;k+g<h;){let x=b[y],N=u.substring(x.startIndex,x.endIndex);g+=N.length,w.push({content:N,scopes:gy(e,x.scopes)}),y++}}a.push({content:u.substring(k,h),color:f,fontStyle:m,explanation:w})}c.push(a),a=[],i=T.ruleStack}return c}function gy(e,t){let n=[];for(let s=0,r=t.length;s<r;s++){let o=t.slice(0,s),i=t[s];n[s]={scopeName:i,themeMatches:_y(e,i,o)}}return n}function ha(e,t){let n=e+".";return e===t||t.substring(0,n.length)===n}function yy(e,t,n,s){if(!ha(e,n))return!1;let r=t.length-1,o=s.length-1;for(;r>=0&&o>=0;)ha(t[r],s[o])&&r--,o--;return r===-1}function _y(e,t,n){let s=[],r=0;for(let o=0,i=e.settings.length;o<i;o++){let a=e.settings[o],c;if(typeof a.scope=="string")c=a.scope.split(/,/).map(l=>l.trim());else if(Array.isArray(a.scope))c=a.scope;else continue;for(let l=0,p=c.length;l<p;l++){let d=c[l].split(/ /),b=d[d.length-1],y=d.slice(0,d.length-1);yy(b,y,t,n)&&(s[r++]=a,l=p)}}return s}var _t=["black","red","green","yellow","blue","magenta","cyan","white","brightBlack","brightRed","brightGreen","brightYellow","brightBlue","brightMagenta","brightCyan","brightWhite"],Ao={1:"bold",2:"dim",3:"italic",4:"underline",7:"reverse",9:"strikethrough"};function by(e,t){const n=e.indexOf("\x1B",t);if(n!==-1&&e[n+1]==="["){const s=e.indexOf("m",n);return{sequence:e.substring(n+2,s).split(";"),startPosition:n,position:s+1}}return{position:e.length}}function ma(e){const t=e.shift();if(t==="2"){const n=e.splice(0,3).map(s=>Number.parseInt(s));return n.length!==3||n.some(s=>Number.isNaN(s))?void 0:{type:"rgb",rgb:n}}else if(t==="5"){const n=e.shift();if(n)return{type:"table",index:Number(n)}}}function vy(e){const t=[];for(;e.length>0;){const n=e.shift();if(!n)continue;const s=Number.parseInt(n);if(!Number.isNaN(s))if(s===0)t.push({type:"resetAll"});else if(s<=9)Ao[s]&&t.push({type:"setDecoration",value:Ao[s]});else if(s<=29){const r=Ao[s-20];r&&t.push({type:"resetDecoration",value:r})}else if(s<=37)t.push({type:"setForegroundColor",value:{type:"named",name:_t[s-30]}});else if(s===38){const r=ma(e);r&&t.push({type:"setForegroundColor",value:r})}else if(s===39)t.push({type:"resetForegroundColor"});else if(s<=47)t.push({type:"setBackgroundColor",value:{type:"named",name:_t[s-40]}});else if(s===48){const r=ma(e);r&&t.push({type:"setBackgroundColor",value:r})}else s===49?t.push({type:"resetBackgroundColor"}):s>=90&&s<=97?t.push({type:"setForegroundColor",value:{type:"named",name:_t[s-90+8]}}):s>=100&&s<=107&&t.push({type:"setBackgroundColor",value:{type:"named",name:_t[s-100+8]}})}return t}function wy(){let e=null,t=null,n=new Set;return{parse(s){const r=[];let o=0;do{const i=by(s,o),a=i.sequence?s.substring(o,i.startPosition):s.substring(o);if(a.length>0&&r.push({value:a,foreground:e,background:t,decorations:new Set(n)}),i.sequence){const c=vy(i.sequence);for(const l of c)l.type==="resetAll"?(e=null,t=null,n.clear()):l.type==="resetForegroundColor"?e=null:l.type==="resetBackgroundColor"?t=null:l.type==="resetDecoration"&&n.delete(l.value);for(const l of c)l.type==="setForegroundColor"?e=l.value:l.type==="setBackgroundColor"?t=l.value:l.type==="setDecoration"&&n.add(l.value)}o=i.position}while(o<s.length);return r}}}var xy={black:"#000000",red:"#bb0000",green:"#00bb00",yellow:"#bbbb00",blue:"#0000bb",magenta:"#ff00ff",cyan:"#00bbbb",white:"#eeeeee",brightBlack:"#555555",brightRed:"#ff5555",brightGreen:"#00ff00",brightYellow:"#ffff55",brightBlue:"#5555ff",brightMagenta:"#ff55ff",brightCyan:"#55ffff",brightWhite:"#ffffff"};function ky(e=xy){function t(a){return e[a]}function n(a){return`#${a.map(c=>Math.max(0,Math.min(c,255)).toString(16).padStart(2,"0")).join("")}`}let s;function r(){if(s)return s;s=[];for(let l=0;l<_t.length;l++)s.push(t(_t[l]));let a=[0,95,135,175,215,255];for(let l=0;l<6;l++)for(let p=0;p<6;p++)for(let u=0;u<6;u++)s.push(n([a[l],a[p],a[u]]));let c=8;for(let l=0;l<24;l++,c+=10)s.push(n([c,c,c]));return s}function o(a){return r()[a]}function i(a){switch(a.type){case"named":return t(a.name);case"rgb":return n(a.rgb);case"table":return o(a.index)}}return{value:i}}function Ny(e,t){const n=t.split(/\r?\n/),s=ky(Object.fromEntries(_t.map(o=>[o,e.colors[`terminal.ansi${o[0].toUpperCase()}${o.substring(1)}`]]))),r=wy();return n.map(o=>r.parse(o).map(i=>{let a;i.decorations.has("reverse")?a=i.background?s.value(i.background):e.bg:a=i.foreground?s.value(i.foreground):e.fg,i.decorations.has("dim")&&(a=Sy(a));let c=Rt.None;return i.decorations.has("bold")&&(c|=Rt.Bold),i.decorations.has("italic")&&(c|=Rt.Italic),i.decorations.has("underline")&&(c|=Rt.Underline),{content:i.value,color:a,fontStyle:c}}))}function Sy(e){const t=e.match(/#([0-9a-f]{3})([0-9a-f]{3})?([0-9a-f]{2})?/);if(t)if(t[3]){const s=Math.round(Number.parseInt(t[3],16)/2).toString(16).padStart(2,"0");return`#${t[1]}${t[2]}${s}`}else return t[2]?`#${t[1]}${t[2]}80`:`#${Array.from(t[1]).map(s=>`${s}${s}`).join("")}80`;const n=e.match(/var\((--shiki-color-ansi-[\w-]+)\)/);return n?`var(${n[1]}-dim)`:e}const Ty={pre({className:e,style:t,children:n}){return`<pre class="${e}" style="${t}" tabindex="0">${n}</pre>`},code({children:e}){return`<code>${e}</code>`},line({className:e,children:t}){return`<span class="${e}">${t}</span>`},token({style:e,children:t}){return`<span style="${e}">${t}</span>`}};function ga(e,t={}){const n=t.bg||"#fff",s=ny(t.lineOptions??[],i=>i.line),r=t.elements||{};function o(i="",a={},c){const l=r[i]||Ty[i];return l?(c=c.filter(Boolean),l({...a,children:i==="code"?c.join(`
7
+ `):c.join("")})):""}return o("pre",{className:"shiki "+(t.themeName||""),style:`background-color: ${n}`},[t.langId?`<div class="language-id">${t.langId}</div>`:"",o("code",{},e.map((i,a)=>{const c=a+1,l=s.get(c)??[],p=Ay(l).join(" ");return o("line",{className:p,lines:e,line:i,index:a},i.map((u,d)=>{const b=[`color: ${u.color||t.fg}`];return u.fontStyle&Rt.Italic&&b.push("font-style: italic"),u.fontStyle&Rt.Bold&&b.push("font-weight: bold"),u.fontStyle&Rt.Underline&&b.push("text-decoration: underline"),o("token",{style:b.join("; "),tokens:i,token:u,index:d},[Py(u.content)])}))}))])}const Ly={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"};function Py(e){return e.replace(/[&<>"']/g,t=>Ly[t])}function Ay(e){const t=new Set(["line"]);for(const n of e)for(const s of n.classes??[])t.add(s);return Array.from(t)}class Ry extends Wc.Registry{constructor(t){super(t),this._resolver=t,this.themesPath="themes/",this._resolvedThemes={},this._resolvedGrammars={},this._langGraph=new Map,this._langMap=lo.reduce((n,s)=>(n[s.id]=s,n),{})}getTheme(t){return typeof t=="string"?this._resolvedThemes[t]:t}async loadTheme(t){return typeof t=="string"?(this._resolvedThemes[t]||(this._resolvedThemes[t]=await Xc(`${this.themesPath}${t}.json`)),this._resolvedThemes[t]):(t=Qc(t),t.name&&(this._resolvedThemes[t.name]=t),t)}async loadThemes(t){return await Promise.all(t.map(n=>this.loadTheme(n)))}getLoadedThemes(){return Object.keys(this._resolvedThemes)}getGrammar(t){return this._resolvedGrammars[t]}async loadLanguage(t){var o;const s={embeddedLanguages:(o=t.embeddedLangs)==null?void 0:o.reduce(async(i,a,c)=>{if(!this.getLoadedLanguages().includes(a)&&this._resolver.getLangRegistration(a))return await this._resolver.loadGrammar(this._resolver.getLangRegistration(a).scopeName),i[this._resolver.getLangRegistration(a).scopeName]=c+2,i},{}),balancedBracketSelectors:t.balancedBracketSelectors||["*"],unbalancedBracketSelectors:t.unbalancedBracketSelectors||[]},r=await this.loadGrammarWithConfiguration(t.scopeName,1,s);this._resolvedGrammars[t.id]=r,t.aliases&&t.aliases.forEach(i=>{this._resolvedGrammars[i]=r})}async loadLanguages(t){for(const s of t)this.resolveEmbeddedLanguages(s);const n=Array.from(this._langGraph.values());for(const s of n)this._resolver.addLanguage(s);for(const s of n)await this.loadLanguage(s)}getLoadedLanguages(){return Object.keys(this._resolvedGrammars)}resolveEmbeddedLanguages(t){if(this._langGraph.has(t.id)||this._langGraph.set(t.id,t),t.embeddedLangs)for(const n of t.embeddedLangs)this._langGraph.set(n,this._langMap[n])}}function Yc(e){return typeof e=="string"?lo.find(t=>{var n;return t.id===e||((n=t.aliases)==null?void 0:n.includes(e))}):e}function Cy(e){var r;let t=lo,n=e.themes||[],s=(r=e.paths)!=null&&r.wasm?e.paths.wasm.endsWith("/")?e.paths.wasm:e.paths.wasm+"/":ay;return e.langs&&(t=e.langs.map(Yc)),e.theme&&n.unshift(e.theme),n.length||(n=["nord"]),{_languages:t,_themes:n,_wasmPath:s}}function Ey(){const e={"#000001":"var(--shiki-color-text)","#000002":"var(--shiki-color-background)","#000004":"var(--shiki-token-constant)","#000005":"var(--shiki-token-string)","#000006":"var(--shiki-token-comment)","#000007":"var(--shiki-token-keyword)","#000008":"var(--shiki-token-parameter)","#000009":"var(--shiki-token-function)","#000010":"var(--shiki-token-string-expression)","#000011":"var(--shiki-token-punctuation)","#000012":"var(--shiki-token-link)"};for(let t=0;t<_t.length;t++){const n=`#A${t.toString().padStart(5,"0")}`,s=_t[t].replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();e[n]=`var(--shiki-color-ansi-${s})`}return e}async function $y(e){var w,g;const{_languages:t,_themes:n,_wasmPath:s}=Cy(e),r=new hy(cy(s),"vscode-oniguruma"),o=new Ry(r);(w=e.paths)!=null&&w.themes&&(o.themesPath=e.paths.themes.endsWith("/")?e.paths.themes:e.paths.themes+"/"),(g=e.paths)!=null&&g.languages&&(r.languagesPath=e.paths.languages.endsWith("/")?e.paths.languages:e.paths.languages+"/");const a=(await o.loadThemes(n))[0];let c;await o.loadLanguages(t);let l=Ey();function p(x){l=x}function u(x,N){x.bg=l[x.bg]||x.bg,x.fg=l[x.fg]||x.fg,Object.entries(x.colors).forEach(([P,C])=>{x.colors[P]=l[C]||C}),N.forEach((P,C)=>{N[C]=l[P]||P})}function d(x){const N=x?o.getTheme(x):a;if(!N)throw Error(`No theme registration for ${x}`);(!c||c.name!==N.name)&&(o.setTheme(N),c=N);const P=o.getColorMap();return N.type==="css"&&u(N,P),{_theme:N,_colorMap:P}}function b(x){const N=o.getGrammar(x);if(!N)throw Error(`No language registration for ${x}`);return{_grammar:N}}function y(x,N="text",P,C={includeExplanation:!0}){if(jy(N))return[...x.split(/\r\n|\r|\n/).map(q=>[{content:q}])];const{_grammar:O}=b(N),{_theme:B,_colorMap:j}=d(P);return my(B,j,x,O,C)}function T(x,N){const{_theme:P}=d(N);return Ny(P,x)}function L(x,N="text",P){let C;typeof N=="object"?C=N:C={lang:N,theme:P};const O=y(x,C.lang,C.theme,{includeExplanation:!1}),{_theme:B}=d(C.theme);return ga(O,{fg:B.fg,bg:B.bg,lineOptions:C==null?void 0:C.lineOptions,themeName:B.name})}function S(x,N){const P=T(x,N==null?void 0:N.theme),{_theme:C}=d(N==null?void 0:N.theme);return ga(P,{fg:C.fg,bg:C.bg,lineOptions:N==null?void 0:N.lineOptions,themeName:C.name})}async function k(x){await o.loadTheme(x)}async function h(x){const N=Yc(x);r.addLanguage(N),await o.loadLanguage(N)}function v(){return o.getLoadedThemes()}function _(){return o.getLoadedLanguages()}function f(x){const{_theme:N}=d(x);return N.bg}function m(x){const{_theme:N}=d(x);return N.fg}return{codeToThemedTokens:y,codeToHtml:L,ansiToThemedTokens:T,ansiToHtml:S,getTheme:x=>d(x)._theme,loadTheme:k,loadLanguage:h,getBackgroundColor:f,getForegroundColor:m,getLoadedThemes:v,getLoadedLanguages:_,setColorReplacements:p}}function jy(e){return!e||["plaintext","txt","text"].includes(e)}const Oy="0.14.0";ly(`https://cdn.jsdelivr.net/npm/shiki-es@${Oy}/dist/assets/`);let Iy;const Ln=[];function My(e){if(Ln.push(e),!(typeof window>"u"))return window.__NUXT_DEVTOOLS__&&Ln.forEach(t=>t(window.__NUXT_DEVTOOLS__)),Object.defineProperty(window,"__NUXT_DEVTOOLS__",{set(t){t&&Ln.forEach(n=>n(t))},get(){return Iy.value},configurable:!0}),()=>{Ln.splice(Ln.indexOf(e),1)}}const De=Te(null);async function Zc(){ar.value&&(De.value=await ar.value("/__sitemap__/debug.json"))}const ar=Te(),eu=Te(),tu=Te();My(async e=>{ar.value=e.host.app.$fetch,ol(()=>{tu.value=e.host.app.colorMode.value}),eu.value=e.devtools,Zc()});const nu=Te();function Hy(){return $y({themes:["vitesse-dark","vitesse-light"],langs:["css","javascript","typescript","html","vue","vue-html","bash","diff"]}).then(e=>{nu.value=e})}function su(e,t){return Je(()=>{var s;const n=((s=eu.value)==null?void 0:s.colorMode)||"light";return nu.value.codeToHtml(zu(e),{lang:t,theme:n==="dark"?"vitesse-dark":"vitesse-light"})||""})}const By=["innerHTML"],ou=Ve({__name:"OCodeBlock",props:{code:{},lang:{},lines:{type:Boolean,default:!0},transformRendered:{}},setup(e){const t=e,n=Je(()=>{const s=su(t.code,t.lang);return t.transformRendered?t.transformRendered(s.value||""):s.value});return(s,r)=>(X(),re("pre",{class:Pe(["n-code-block",s.lines?"n-code-block-lines":""]),innerHTML:n.value},null,10,By))}}),Dy={flex:"~ gap-3","items-center":""},Fy=Ve({__name:"NIconTitle",props:{icon:{},text:{}},setup(e){return(t,n)=>(X(),re("div",Dy,[t.icon?(X(),re("div",{key:0,class:Pe(t.icon)},null,2)):je("",!0),Ge(t.$slots,"default",{},()=>[V("div",null,Me(t.text),1)])]))}});function Uy(e){return Aa()?(Nu(e),!0):!1}function qr(e){return typeof e=="function"?e():ie(e)}const Gy=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const Wy=e=>typeof e<"u",Vy=Object.prototype.toString,qy=e=>Vy.call(e)==="[object Object]",zy=()=>{};function Ky(e,t){function n(...s){return new Promise((r,o)=>{Promise.resolve(e(()=>t.apply(this,s),{fn:t,thisArg:this,args:s})).then(r).catch(o)})}return n}const ru=e=>e();function Jy(e=ru){const t=Te(!0);function n(){t.value=!1}function s(){t.value=!0}const r=(...o)=>{t.value&&e(...o)};return{isActive:_r(t),pause:n,resume:s,eventFilter:r}}function Xy(e){return e||wn()}function Qy(e,t,n={}){const{eventFilter:s=ru,...r}=n;return ct(e,Ky(s,t),r)}function Yy(e,t,n={}){const{eventFilter:s,...r}=n,{eventFilter:o,pause:i,resume:a,isActive:c}=Jy(s);return{stop:Qy(e,t,{...r,eventFilter:o}),pause:i,resume:a,isActive:c}}function Zy(e,t=!0,n){Xy()?Qs(e,n):t?e():nn(e)}function e_(e){var t;const n=qr(e);return(t=n==null?void 0:n.$el)!=null?t:n}const Us=Gy?window:void 0;function ya(...e){let t,n,s,r;if(typeof e[0]=="string"||Array.isArray(e[0])?([n,s,r]=e,t=Us):[t,n,s,r]=e,!t)return zy;Array.isArray(n)||(n=[n]),Array.isArray(s)||(s=[s]);const o=[],i=()=>{o.forEach(p=>p()),o.length=0},a=(p,u,d,b)=>(p.addEventListener(u,d,b),()=>p.removeEventListener(u,d,b)),c=ct(()=>[e_(t),qr(r)],([p,u])=>{if(i(),!p)return;const d=qy(u)?{...u}:u;o.push(...n.flatMap(b=>s.map(y=>a(p,b,y,d))))},{immediate:!0,flush:"post"}),l=()=>{c(),i()};return Uy(l),l}function t_(e){return JSON.parse(JSON.stringify(e))}const fs=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},ps="__vueuse_ssr_handlers__",n_=s_();function s_(){return ps in fs||(fs[ps]=fs[ps]||{}),fs[ps]}function o_(e,t){return n_[e]||t}function r_(e){return e==null?"any":e instanceof Set?"set":e instanceof Map?"map":e instanceof Date?"date":typeof e=="boolean"?"boolean":typeof e=="string"?"string":typeof e=="object"?"object":Number.isNaN(e)?"any":"number"}const i_={boolean:{read:e=>e==="true",write:e=>String(e)},object:{read:e=>JSON.parse(e),write:e=>JSON.stringify(e)},number:{read:e=>Number.parseFloat(e),write:e=>String(e)},any:{read:e=>e,write:e=>String(e)},string:{read:e=>e,write:e=>String(e)},map:{read:e=>new Map(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e.entries()))},set:{read:e=>new Set(JSON.parse(e)),write:e=>JSON.stringify(Array.from(e))},date:{read:e=>new Date(e),write:e=>e.toISOString()}},_a="vueuse-storage";function a_(e,t,n,s={}){var r;const{flush:o="pre",deep:i=!0,listenToStorageChanges:a=!0,writeDefaults:c=!0,mergeDefaults:l=!1,shallow:p,window:u=Us,eventFilter:d,onError:b=g=>{console.error(g)},initOnMounted:y}=s,T=(p?jo:Te)(typeof t=="function"?t():t);if(!n)try{n=o_("getDefaultStorage",()=>{var g;return(g=Us)==null?void 0:g.localStorage})()}catch(g){b(g)}if(!n)return T;const L=qr(t),S=r_(L),k=(r=s.serializer)!=null?r:i_[S],{pause:h,resume:v}=Yy(T,()=>_(T.value),{flush:o,deep:i,eventFilter:d});return u&&a&&Zy(()=>{ya(u,"storage",w),ya(u,_a,m),y&&w()}),y||w(),T;function _(g){try{if(g==null)n.removeItem(e);else{const x=k.write(g),N=n.getItem(e);N!==x&&(n.setItem(e,x),u&&u.dispatchEvent(new CustomEvent(_a,{detail:{key:e,oldValue:N,newValue:x,storageArea:n}})))}}catch(x){b(x)}}function f(g){const x=g?g.newValue:n.getItem(e);if(x==null)return c&&L!=null&&n.setItem(e,k.write(L)),L;if(!g&&l){const N=k.read(x);return typeof l=="function"?l(N,L):S==="object"&&!Array.isArray(N)?{...L,...N}:N}else return typeof x!="string"?x:k.read(x)}function m(g){w(g.detail)}function w(g){if(!(g&&g.storageArea!==n)){if(g&&g.key==null){T.value=L;return}if(!(g&&g.key!==e)){h();try{(g==null?void 0:g.newValue)!==k.write(T.value)&&(T.value=f(g))}catch(x){b(x)}finally{g?nn(v):v()}}}}}function l_(e,t,n={}){const{window:s=Us}=n;return a_(e,t,s==null?void 0:s.localStorage,n)}function c_(e,t,n,s={}){var r,o,i;const{clone:a=!1,passive:c=!1,eventName:l,deep:p=!1,defaultValue:u,shouldEmit:d}=s,b=wn(),y=n||(b==null?void 0:b.emit)||((r=b==null?void 0:b.$emit)==null?void 0:r.bind(b))||((i=(o=b==null?void 0:b.proxy)==null?void 0:o.$emit)==null?void 0:i.bind(b==null?void 0:b.proxy));let T=l;t||(t="modelValue"),T=T||`update:${t.toString()}`;const L=h=>a?typeof a=="function"?a(h):t_(h):h,S=()=>Wy(e[t])?L(e[t]):u,k=h=>{d?d(h)&&y(T,h):y(T,h)};if(c){const h=S(),v=Te(h);let _=!1;return ct(()=>e[t],f=>{_||(_=!0,v.value=L(f),nn(()=>_=!1))}),ct(v,f=>{!_&&(f!==e[t]||p)&&k(f)},{deep:p}),v}else return Je({get(){return S()},set(h){k(h)}})}const iu=e=>(Za("data-v-348c1d92"),e=e(),el(),e),u_=["open"],f_={"text-base":""},p_={key:0,"text-sm":"",op50:""},d_=iu(()=>V("div",{class:"flex-auto"},null,-1)),h_=iu(()=>V("div",{class:"x-divider"},null,-1)),m_=Ve({__name:"OSectionBlock",props:{icon:{},text:{},description:{},containerClass:{default:""},headerClass:{},collapse:{type:Boolean,default:!0},open:{type:Boolean,default:!0},padding:{type:[Boolean,String],default:!0}},setup(e){const n=c_(e,"open");function s(r){n.value=r.target.open}return(r,o)=>{const i=Vr,a=Fy;return X(),re(Ne,null,[V("details",{open:ie(n),onToggle:s},[V("summary",{class:Pe(["cursor-pointer select-none n-bg-active hover:bg-active p4 rounded transition-all",r.collapse?"":"pointer-events-none"])},[Y(a,{icon:r.icon,text:r.text,"text-xl":"",transition:"",class:Pe([ie(n)?"op100":"op60",r.headerClass])},{default:ae(()=>[V("div",null,[V("div",f_,[Ge(r.$slots,"text",{},()=>[ue(Me(r.text),1)],!0)]),r.description||r.$slots.description?(X(),re("div",p_,[Ge(r.$slots,"description",{},()=>[ue(Me(r.description),1)],!0)])):je("",!0)]),d_,Ge(r.$slots,"actions",{},void 0,!0),r.collapse?(X(),Se(i,{key:0,icon:"carbon-chevron-down",class:"chevron","cursor-pointer":"","place-self-start":"","text-base":"",op75:"",transition:"","duration-500":""})):je("",!0)]),_:3},8,["icon","text","class"])],2),V("div",{class:Pe(["flex flex-col flex-gap2 pb6 pt2",typeof r.padding=="string"?r.padding:r.padding?"px4":""])},[Ge(r.$slots,"details",{},void 0,!0),V("div",{class:Pe([r.containerClass,"mt1"])},[Ge(r.$slots,"default",{},void 0,!0)],2),Ge(r.$slots,"footer",{},void 0,!0)],2)],40,u_),h_],64)}}}),au=ao(m_,[["__scopeId","data-v-348c1d92"]]),g_={class:"flex space-x-5"},y_={class:"opacity-80 text-base mb-1 flex space-x-3 items-center"},__={key:0,class:"flex space-x-2"},b_={key:0,class:"opacity-60 text-sm"},v_={class:"flex items-center space-x-3"},w_={key:0},x_={key:1,class:"text-xs mt-1 opacity-70"},k_={key:0},N_={key:2,class:"px-3 py-3 mt-2 dark:bg-gray-900/50 bg-gray-50/50 opacity-70"},S_=V("h3",{class:"text-sm font-bold mb-1"}," Hints ",-1),T_={class:"list-disc ml-5"},L_=["innerHTML"],P_=Ve({__name:"Source",props:{source:{},showContext:{type:Boolean}},setup(e){const t=e,n=Je(()=>{var o;const r=typeof t.source.fetch=="string"?t.source.fetch:t.source.fetch[0];return r.includes("http")?r:Dt(((o=De.value)==null?void 0:o.nitroOrigin)||"localhost",r)});function s(r){return r.replace(/`([^`]+)`/g,"<code>$1</code>")}return(r,o)=>{const i=Vr,a=Hc,c=Dc,l=ou,p=au;return X(),Se(p,null,{text:ae(()=>[V("div",g_,[V("h3",y_,[r.source.fetch?(X(),re("div",__,[Y(i,{icon:"carbon:api-1",class:"opacity-50 text-lg"}),r.source.timeTakenMs?(X(),re("div",b_,Me(r.source.timeTakenMs)+"ms ",1)):je("",!0)])):je("",!0),V("div",null,Me(r.source.context.name),1),V("div",null,[Y(a,null,{default:ae(()=>{var u;return[ue(Me(((u=r.source.urls)==null?void 0:u.length)||0),1)]}),_:1})])])])]),description:ae(()=>[V("div",v_,[r.source.fetch?(X(),re("div",w_,[Y(c,{href:ie(n),target:"_blank"},{default:ae(()=>[ue(Me(r.source.fetch),1)]),_:1},8,["href"])])):je("",!0),r.source.context.description?(X(),re("div",x_,Me(r.source.context.description),1)):je("",!0)])]),default:ae(()=>{var u;return[r.source.error?(X(),re("div",k_,[Y(i,{icon:"carbon:warning",class:"text-red-500"}),ue(" "+Me(r.source.error),1)])):(X(),Se(l,{key:1,class:"max-h-[250px] overflow-y-auto",code:JSON.stringify(r.source.urls,null,2),lang:"json"},null,8,["code"])),(u=r.source.context.tips)!=null&&u.length?(X(),re("div",N_,[S_,V("ul",T_,[(X(!0),re(Ne,null,an(r.source.context.tips,(d,b)=>(X(),re("li",{key:b,class:"text-sm opacity-80 mb-1",innerHTML:s(d)},null,8,L_))),128))])])):je("",!0)]}),_:1})}}}),A_={class:"relative n-bg-base flex flex-col"},R_={class:"sticky top-0 z-2 px-4 pt-4"},C_={class:"flex justify-between items-start",mb2:""},E_={class:"flex space-x-5"},$_={"text-xl":"",flex:"","items-center":"","gap-2":""},j_={class:"flex items-center space-x-3 text-xl"},O_={class:"n-select-tabs flex flex-inline flex-wrap items-center border n-border-base rounded-lg n-bg-base"},I_={class:"px-5 py-2"},M_={"text-lg":"",flex:"","items-center":""},H_={class:"px-5 py-2"},B_={"text-lg":"",flex:"","items-center":""},D_={class:"px-5 py-2"},F_={"text-lg":"",flex:"","items-center":""},U_={class:"px-5 py-2"},G_={"text-lg":"",flex:"","items-center":""},W_={class:"px-5 py-2"},V_={"text-lg":"",flex:"","items-center":""},q_=["value","title"],z_={class:"items-center space-x-3 hidden lg:flex"},K_={class:"opacity-80 text-sm"},J_={class:"opacity-80 text-sm"},X_={href:"https://nuxtseo.com",target:"_blank",class:"flex items-end gap-1.5 font-semibold text-xl dark:text-white font-title"},Q_={class:"flex-row flex p4 h-full",style:{"min-height":"calc(100vh - 64px)"}},Y_={class:"mx-auto flex flex-col w-full bg-white dark:bg-black dark:bg-dark-700 bg-light-200"},Z_={key:0,class:"space-y-5"},e0=V("div",null,[V("h2",{class:"text-lg mb-1"}," Sitemaps "),V("p",{"text-xs":"",op60:""}," The sitemaps generated from your site. ")],-1),t0={class:"opacity-80 text-base mb-1"},n0={class:"px-3 py-2 space-y-5"},s0={key:0},o0=V("div",{class:"text-sm mb-1 opacity-80"}," This is a special sitemap file that links to your other sitemaps. ",-1),r0={class:"text-sm opacity-70"},i0={key:0,class:"flex space-x-5"},a0=V("div",{class:"w-40"},[V("div",{class:"font-bold text-sm mb-1"}," Sources "),V("div",{class:"opacity-40 text-xs max-w-60"},[ue(" Local sources associated with just this sitemap."),V("br"),ue("Example: Load in a dynamic list of URLs from an API endpoint. ")])],-1),l0={class:"flex-grow"},c0={class:"flex space-x-5"},u0=V("div",{class:"w-40"},[V("div",{class:"font-bold text-sm mb-1"}," App Sources "),V("div",{class:"opacity-40 text-xs max-w-60"},[ue(" Configured with the "),V("code",null,"includeAppSources"),ue(" option. ")])],-1),f0={class:"flex-grow flex flex-col justify-center"},p0={key:0,class:"opacity-70"},d0={key:1,class:"opacity-70"},h0={class:"opacity-50 text-xs mt-2"},m0={class:"flex space-x-5"},g0=V("div",{class:"w-40"},[V("div",{class:"font-bold text-sm mb-1"}," Sitemap Options "),V("div",{class:"opacity-40 text-xs max-w-60"}," Extra options used to filter the URLs on the final sitemap and set defaults. ")],-1),y0={class:"n-bg-base/20 flex-grow"},_0={key:1,class:"space-y-5"},b0=V("div",null,[V("h2",{class:"text-lg mb-1"}," App Sources "),V("p",{"text-xs":"",op60:""}," Automatic global sources generated from your application. ")],-1),v0={key:2,class:"space-y-5"},w0=V("div",null,[V("h2",{class:"text-lg mb-1"}," User Sources "),V("p",{"text-xs":"",op60:""}," Manually provided global sources provided by you. ")],-1),x0={key:3,class:"h-full max-h-full overflow-hidden"},k0={class:"opacity-80 text-base mb-1"},N0={class:"px-3 py-2 space-y-5"},S0=["innerHTML"],T0={key:4,class:"h-full max-h-full overflow-hidden"},L0=V("iframe",{src:"https://nuxtseo.com/sitemap",class:"w-full h-full border-none",style:{"min-height":"calc(100vh - 100px)"}},null,-1),P0=[L0],A0=Ve({__name:"app",async setup(e){let t,n;[t,n]=Cf(()=>Hy()),await t,n();const s=Te(!1);async function r(){s.value=!0,De.value=null,await Zc(),setTimeout(()=>{s.value=!1},300)}const o=l_("@nuxtjs/sitemap:tab","sitemaps");function i(u){return De.value?u==="sitemap"||u==="sitemap.xml"?`${De.value.nitroOrigin}sitemap.xml`:u==="index"?`${De.value.nitroOrigin}sitemap_index.xml`:`${De.value.nitroOrigin}${u}-sitemap.xml`:""}function a(u){const d={};return Object.entries(u).forEach(([b,y])=>{y!==void 0&&(!Array.isArray(y)||y.length>0)&&b!=="includeAppSources"&&(d[b]=y)}),d}$h({htmlAttrs:{class:()=>tu.value||""}});const c=Je(()=>{var u,d;return((d=(u=De.value)==null?void 0:u.runtimeConfig)==null?void 0:d.excludeAppSources)||[]}),l=Je(()=>{var u;return(((u=De.value)==null?void 0:u.globalSources)||[]).filter(d=>d.sourceType==="app")}),p=Je(()=>{var u;return(((u=De.value)==null?void 0:u.globalSources)||[]).filter(d=>d.sourceType==="user")});return(u,d)=>{var f;const b=Vr,y=Hc,T=Qt("VTooltip"),L=Dc,S=zg,k=Zg,h=P_,v=ou,_=au;return X(),re("div",A_,[V("header",R_,[V("div",C_,[V("div",E_,[V("h1",$_,[Y(b,{icon:"carbon:load-balancer-application",class:"text-blue-300"}),ue(" Sitemap "),Y(y,{class:"text-sm"},{default:ae(()=>{var m,w;return[ue(Me((w=(m=ie(De))==null?void 0:m.runtimeConfig)==null?void 0:w.version),1)]}),_:1})])]),V("div",j_,[V("fieldset",O_,[(X(),re(Ne,null,an(["sitemaps","user-sources","app-sources","debug","docs"],(m,w)=>V("label",{key:w,class:Pe(["relative n-border-base hover:n-bg-active cursor-pointer",[w?"border-l n-border-base ml--1px":"",m===ie(o)?"n-bg-active":""]])},[m==="sitemaps"?(X(),re("div",{key:0,class:Pe([m===ie(o)?"":"op35"])},[Y(T,null,{popper:ae(()=>[ue(" Sitemaps ")]),default:ae(()=>[V("div",I_,[V("h2",M_,[Y(b,{icon:"carbon:load-balancer-application opacity-50"}),Y(y,{class:"text-sm"},{default:ae(()=>[ue(Me(Object.keys(ie(De).sitemaps).length||0),1)]),_:1})])])]),_:1})],2)):je("",!0),m==="user-sources"?(X(),re("div",{key:1,class:Pe([m===ie(o)?"":"op35"])},[Y(T,null,{popper:ae(()=>[ue(" User Sources ")]),default:ae(()=>[V("div",H_,[V("h2",B_,[Y(b,{icon:"carbon:group-account opacity-50"}),Y(y,{class:"text-sm"},{default:ae(()=>[ue(Me(p.value.length),1)]),_:1})])])]),_:1})],2)):je("",!0),m==="app-sources"?(X(),re("div",{key:2,class:Pe([m===ie(o)?"":"op35"])},[Y(T,null,{popper:ae(()=>[ue(" App Sources ")]),default:ae(()=>[V("div",D_,[V("h2",F_,[Y(b,{icon:"carbon:bot opacity-50"}),Y(y,{class:"text-sm"},{default:ae(()=>[ue(Me(l.value.length),1)]),_:1})])])]),_:1})],2)):m==="debug"?(X(),re("div",{key:3,class:Pe([m===ie(o)?"":"op35"])},[Y(T,null,{popper:ae(()=>[ue(" Debug ")]),default:ae(()=>[V("div",U_,[V("h2",G_,[Y(b,{icon:"carbon:debug opacity-50"})])])]),_:1})],2)):m==="docs"?(X(),re("div",{key:4,class:Pe([m===ie(o)?"":"op35"])},[Y(T,null,{popper:ae(()=>[ue(" Documentation ")]),default:ae(()=>[V("div",W_,[V("h2",V_,[Y(b,{icon:"carbon:book opacity-50"})])])]),_:1})],2)):je("",!0),xf(V("input",{"onUpdate:modelValue":d[0]||(d[0]=g=>$e(o)?o.value=g:null),type:"radio",value:m,title:m,class:"absolute cursor-pointer pointer-events-none inset-0 op-0.1"},null,8,q_),[[Lp,ie(o)]])],2)),64))]),Y(T,null,{popper:ae(()=>[ue(" Refresh ")]),default:ae(()=>[V("button",{"text-lg":"",type:"button",class:"n-icon-button n-button n-transition n-disabled:n-disabled",onClick:r},[Y(b,{icon:"carbon:reset",class:"group-hover:text-green-500"})])]),_:1})]),V("div",z_,[V("div",K_,[Y(L,{href:"https://github.com/sponsors/harlan-zw",target:"_blank"},{default:ae(()=>[Y(b,{icon:"carbon:favorite",class:"mr-[2px]"}),ue(" Sponsor ")]),_:1})]),V("div",J_,[Y(L,{href:"https://github.com/nuxt-modules/sitemap",target:"_blank"},{default:ae(()=>[Y(b,{icon:"logos:github-icon",class:"mr-[2px]"}),ue(" Submit an issue ")]),_:1})]),V("a",X_,[Y(S)])])])]),V("div",Q_,[V("main",Y_,[!((f=ie(De))!=null&&f.globalSources)||s.value?(X(),Se(k,{key:0})):(X(),re(Ne,{key:1},[ie(o)==="sitemaps"?(X(),re("div",Z_,[e0,(X(!0),re(Ne,null,an(ie(De).sitemaps,(m,w)=>(X(),Se(_,{key:w},{text:ae(()=>[V("h3",t0,[ue(Me(m.sitemapName)+" ",1),(m.sources||[]).some(g=>!!g.error)?(X(),Se(b,{key:0,icon:"carbon:warning",class:"text-red-500"})):je("",!0)])]),description:ae(()=>[Y(L,{target:"_blank",href:i(m.sitemapName)},{default:ae(()=>[ue(Me(i(m.sitemapName)),1)]),_:2},1032,["href"])]),default:ae(()=>[V("div",n0,[m.sitemapName==="index"?(X(),re("div",s0,[o0,V("div",r0,[ue(" You can learn about this on the "),Y(L,{underline:"",target:"_blank",href:"https://developers.google.com/search/docs/crawling-indexing/sitemaps/large-sitemaps"},{default:ae(()=>[ue(" Google Search Central ")]),_:1}),ue(". ")])])):(X(),re(Ne,{key:1},[m.sources&&m.sources.length?(X(),re("div",i0,[a0,V("div",l0,[(X(!0),re(Ne,null,an(m.sources,(g,x)=>(X(),Se(h,{key:x,source:g},null,8,["source"]))),128))])])):je("",!0),V("div",c0,[u0,V("div",f0,[m.includeAppSources&&c.value!==!0?(X(),re("div",p0,[Y(b,{icon:"carbon:checkmark",class:"text-green-500 text-lg"}),ue(" Enabled ")])):(X(),re("div",d0,[Y(b,{icon:"carbon:close",class:"text-red-500 text-lg"}),ue(" Disabled ")])),V("div",h0,[ue(" Switch to "),Y(L,{underline:"",class:"cursor-pointer",onClick:d[1]||(d[1]=g=>o.value="app-sources")},{default:ae(()=>[ue(" App sources ")]),_:1}),ue(" to learn more. ")])])]),V("div",m0,[g0,V("div",y0,[Y(v,{class:"max-h-[350px] min-h-full overflow-y-auto",code:JSON.stringify(a(m),null,2),lang:"json"},null,8,["code"])])])],64))])]),_:2},1024))),128))])):ie(o)==="app-sources"?(X(),re("div",_0,[b0,(X(!0),re(Ne,null,an(l.value,(m,w)=>(X(),Se(h,{key:w,source:m},null,8,["source"]))),128))])):ie(o)==="user-sources"?(X(),re("div",v0,[w0,(X(!0),re(Ne,null,an(p.value,(m,w)=>(X(),Se(h,{key:w,source:m},null,8,["source"]))),128))])):ie(o)==="debug"?(X(),re("div",x0,[Y(_,null,{text:ae(()=>[V("h3",k0,[Y(b,{icon:"carbon:settings",class:"mr-1"}),ue(" Runtime Config ")])]),default:ae(()=>{var m;return[V("div",N0,[V("pre",{"of-auto":"","h-full":"","text-sm":"",style:{"white-space":"break-spaces"},innerHTML:ie(su)(JSON.stringify((m=ie(De))==null?void 0:m.runtimeConfig,null,2),"json").value},null,8,S0)])]}),_:1})])):ie(o)==="docs"?(X(),re("div",T0,P0)):je("",!0)],64))])])])}}}),R0={__name:"nuxt-error-page",props:{error:Object},setup(e){const n=e.error;(n.stack||"").split(`
8
+ `).splice(1).map(u=>({text:u.replace("webpack:/","").replace(".vue",".js").trim(),internal:u.includes("node_modules")&&!u.includes(".cache")||u.includes("internal")||u.includes("new Promise")})).map(u=>`<span class="stack${u.internal?" internal":""}">${u.text}</span>`).join(`
9
+ `);const s=Number(n.statusCode||500),r=s===404,o=n.statusMessage??(r?"Page Not Found":"Internal Server Error"),i=n.message||n.toString(),a=void 0,p=r?Ss(()=>js(()=>import("./error-404.Loh33F4g.js"),__vite__mapDeps([5,6]),import.meta.url).then(u=>u.default||u)):Ss(()=>js(()=>import("./error-500.m13OPw8F.js"),__vite__mapDeps([7,8]),import.meta.url).then(u=>u.default||u));return(u,d)=>(X(),Se(ie(p),Sa(Rr({statusCode:ie(s),statusMessage:ie(o),description:ie(i),stack:ie(a)})),null,16))}},ba={__name:"nuxt-root",setup(e){const t=()=>null,n=Ae(),s=n.deferHydration(),r=!1;dl(sc,ic()),n.hooks.callHookWith(a=>a.map(c=>c()),"vue:setup");const o=Br();cl((a,c,l)=>{if(n.hooks.callHook("vue:error",a,c,l).catch(p=>console.error("[nuxt] Error in `vue:error` hook",p)),zh(a)&&(a.fatal||a.unhandled))return n.runWithContext(()=>Vh(a)),!1});const i=!1;return(a,c)=>(X(),Se(pf,{onResolve:ie(s)},{default:ae(()=>[ie(o)?(X(),Se(ie(R0),{key:0,error:ie(o)},null,8,["error"])):ie(i)?(X(),Se(ie(t),{key:1,context:ie(i)},null,8,["context"])):ie(r)?(X(),Se(cf(ie(r)),{key:2})):(X(),Se(ie(A0),{key:3}))]),_:1},8,["onResolve"]))}};let va;{let e;va=async function(){var i,a;if(e)return e;const s=!!((i=window.__NUXT__)!=null&&i.serverRendered||((a=document.getElementById("__NUXT_DATA__"))==null?void 0:a.dataset.ssr)==="true")?$p(ba):$l(ba),r=Id({vueApp:s});async function o(c){await r.callHook("app:error",c),r.payload.error=r.payload.error||c}s.config.errorHandler=o;try{await Hd(r,Cg)}catch(c){o(c)}try{await r.hooks.callHook("app:created",s),await r.hooks.callHook("app:beforeMount",s),s.mount(Zh),await r.hooks.callHook("app:mounted",s),await nn()}catch(c){o(c)}return s.config.errorHandler===o&&(s.config.errorHandler=void 0),s},e=va().catch(t=>{throw console.error("Error while mounting app:",t),t})}export{C0 as A,ao as _,V as a,Y as b,re as c,ue as d,Hg as e,el as f,Ve as g,Ps as h,Qh as i,ct as j,bm as k,Je as l,Cf as m,Pe as n,X as o,Za as p,zt as q,Te as r,Se as s,Me as t,$h as u,ie as v,ae as w,cf as x,Ge as y,Ae as z};
10
+ function __vite__mapDeps(indexes) {
11
+ if (!__vite__mapDeps.viteFileDeps) {
12
+ __vite__mapDeps.viteFileDeps = ["./Icon.Y7HhHHAz.js","./index.lSDm5iYo.js","./Icon.I3NdYkjC.css","./IconCSS.Q-iLbQkL.js","./IconCSS.6oz918NR.css","./error-404.Loh33F4g.js","./error-404.DkXpI38i.css","./error-500.m13OPw8F.js","./error-500.SLhS9LVu.css"]
13
+ }
14
+ return indexes.map((i) => __vite__mapDeps.viteFileDeps[i])
15
+ }