regor 1.3.8 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/regor.d.ts +59 -3
- package/dist/regor.es2015.cjs.js +71 -0
- package/dist/regor.es2015.cjs.prod.js +3 -3
- package/dist/regor.es2015.esm.js +71 -0
- package/dist/regor.es2015.esm.prod.js +3 -3
- package/dist/regor.es2015.iife.js +71 -0
- package/dist/regor.es2015.iife.prod.js +3 -3
- package/dist/regor.es2019.cjs.js +71 -0
- package/dist/regor.es2019.cjs.prod.js +3 -3
- package/dist/regor.es2019.esm.js +71 -0
- package/dist/regor.es2019.esm.prod.js +3 -3
- package/dist/regor.es2019.iife.js +71 -0
- package/dist/regor.es2019.iife.prod.js +3 -3
- package/dist/regor.es2022.cjs.js +69 -0
- package/dist/regor.es2022.cjs.prod.js +3 -3
- package/dist/regor.es2022.esm.js +69 -0
- package/dist/regor.es2022.esm.prod.js +3 -3
- package/dist/regor.es2022.iife.js +69 -0
- package/dist/regor.es2022.iife.prod.js +3 -3
- package/package.json +1 -1
package/dist/regor.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Generated by dts-bundle-generator v9.5.1
|
|
2
2
|
|
|
3
|
-
export type ContextClass<TValue> = abstract new (...args: never[]) => TValue;
|
|
3
|
+
export type ContextClass<TValue extends object> = abstract new (...args: never[]) => TValue;
|
|
4
4
|
/**
|
|
5
5
|
* Runtime metadata passed to a component's `context(head)` factory.
|
|
6
6
|
*
|
|
@@ -149,7 +149,7 @@ export declare class ComponentHead<TContext extends IRegorContext | object = IRe
|
|
|
149
149
|
* @param occurrence - Zero-based index of the matching instance to return.
|
|
150
150
|
* @returns The matching parent context instance, or `undefined` when not found.
|
|
151
151
|
*/
|
|
152
|
-
findContext<TValue>(constructor: ContextClass<TValue>, occurrence?: number): TValue | undefined;
|
|
152
|
+
findContext<TValue extends object>(constructor: ContextClass<TValue>, occurrence?: number): TValue | undefined;
|
|
153
153
|
/**
|
|
154
154
|
* Returns a parent context instance by constructor type from the captured
|
|
155
155
|
* context stack.
|
|
@@ -169,7 +169,7 @@ export declare class ComponentHead<TContext extends IRegorContext | object = IRe
|
|
|
169
169
|
* @returns The parent context instance at the requested occurrence.
|
|
170
170
|
* @throws Error when no matching instance exists at the requested occurrence.
|
|
171
171
|
*/
|
|
172
|
-
requireContext<TValue>(constructor: ContextClass<TValue>, occurrence?: number): TValue;
|
|
172
|
+
requireContext<TValue extends object>(constructor: ContextClass<TValue>, occurrence?: number): TValue;
|
|
173
173
|
/**
|
|
174
174
|
* Unmounts this component instance by removing nodes between `start` and `end`
|
|
175
175
|
* and calling unmount lifecycle handlers for captured contexts.
|
|
@@ -528,6 +528,62 @@ export declare const getBindData: (node: object) => BindData;
|
|
|
528
528
|
export declare const removeNode: (node: ChildNode) => void;
|
|
529
529
|
export declare const drainUnbind: () => Promise<void>;
|
|
530
530
|
export declare const unbind: (node: Node) => void;
|
|
531
|
+
/**
|
|
532
|
+
* Registry for sharing typed context instances across component boundaries.
|
|
533
|
+
*
|
|
534
|
+
* Entries are keyed by the runtime constructor of each registered instance:
|
|
535
|
+
* - one active entry per concrete constructor
|
|
536
|
+
* - registering another instance of the same constructor replaces the previous
|
|
537
|
+
*
|
|
538
|
+
* Lookup is type-based and uses `instanceof`, so querying a base class can
|
|
539
|
+
* resolve a registered subclass instance.
|
|
540
|
+
*/
|
|
541
|
+
export declare class ContextRegistry {
|
|
542
|
+
private readonly byConstructor;
|
|
543
|
+
/**
|
|
544
|
+
* Registers a context instance under its concrete runtime constructor.
|
|
545
|
+
*
|
|
546
|
+
* If an instance with the same constructor already exists, it is replaced.
|
|
547
|
+
*
|
|
548
|
+
* @param context - Context instance to register.
|
|
549
|
+
*/
|
|
550
|
+
register<TContext extends object>(context: TContext): void;
|
|
551
|
+
/**
|
|
552
|
+
* Removes the entry for a constructor.
|
|
553
|
+
*
|
|
554
|
+
* No-op when the constructor is not registered.
|
|
555
|
+
*
|
|
556
|
+
* @param contextClass - Constructor key to remove.
|
|
557
|
+
*/
|
|
558
|
+
unregisterByClass<TContext extends object>(contextClass: ContextClass<TContext>): void;
|
|
559
|
+
/**
|
|
560
|
+
* Removes a specific context instance if it is currently registered for its
|
|
561
|
+
* constructor.
|
|
562
|
+
*
|
|
563
|
+
* This prevents deleting a newer replacement instance of the same class.
|
|
564
|
+
*
|
|
565
|
+
* @param context - Context instance to remove.
|
|
566
|
+
*/
|
|
567
|
+
unregister<TContext extends object>(context: TContext): void;
|
|
568
|
+
/**
|
|
569
|
+
* Finds a context instance by constructor type.
|
|
570
|
+
*
|
|
571
|
+
* The registry is scanned in insertion order and each entry is checked with
|
|
572
|
+
* `instanceof contextClass`.
|
|
573
|
+
*
|
|
574
|
+
* @param contextClass - Class to match via `instanceof`.
|
|
575
|
+
* @returns Matching instance, or `undefined` when not found.
|
|
576
|
+
*/
|
|
577
|
+
find<TContext extends object>(contextClass: ContextClass<TContext>): TContext | undefined;
|
|
578
|
+
/**
|
|
579
|
+
* Resolves a context instance by constructor type and guarantees a value.
|
|
580
|
+
*
|
|
581
|
+
* @param contextClass - Class to match via `instanceof`.
|
|
582
|
+
* @returns Matching context instance.
|
|
583
|
+
* @throws Error when no matching context is registered.
|
|
584
|
+
*/
|
|
585
|
+
require<TContext extends object>(contextClass: ContextClass<TContext>): TContext;
|
|
586
|
+
}
|
|
531
587
|
export declare const onMounted: (onMounted: OnMounted) => void;
|
|
532
588
|
export declare const onUnmounted: (onUnmounted: OnUnmounted, noThrow?: boolean) => void;
|
|
533
589
|
export declare const useScope: <TRegorContext extends IRegorContext | object>(context: () => TRegorContext) => Scope<TRegorContext>;
|
package/dist/regor.es2015.cjs.js
CHANGED
|
@@ -60,6 +60,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
60
60
|
var index_exports = {};
|
|
61
61
|
__export(index_exports, {
|
|
62
62
|
ComponentHead: () => ComponentHead,
|
|
63
|
+
ContextRegistry: () => ContextRegistry,
|
|
63
64
|
RegorConfig: () => RegorConfig,
|
|
64
65
|
addUnbinder: () => addUnbinder,
|
|
65
66
|
batch: () => batch,
|
|
@@ -6027,6 +6028,76 @@ var defineComponent = (template, options = {}) => {
|
|
|
6027
6028
|
};
|
|
6028
6029
|
};
|
|
6029
6030
|
|
|
6031
|
+
// src/composition/ContextRegistry.ts
|
|
6032
|
+
var ContextRegistry = class {
|
|
6033
|
+
constructor() {
|
|
6034
|
+
__publicField(this, "byConstructor", /* @__PURE__ */ new Map());
|
|
6035
|
+
}
|
|
6036
|
+
/**
|
|
6037
|
+
* Registers a context instance under its concrete runtime constructor.
|
|
6038
|
+
*
|
|
6039
|
+
* If an instance with the same constructor already exists, it is replaced.
|
|
6040
|
+
*
|
|
6041
|
+
* @param context - Context instance to register.
|
|
6042
|
+
*/
|
|
6043
|
+
register(context) {
|
|
6044
|
+
this.byConstructor.set(context.constructor, context);
|
|
6045
|
+
}
|
|
6046
|
+
/**
|
|
6047
|
+
* Removes the entry for a constructor.
|
|
6048
|
+
*
|
|
6049
|
+
* No-op when the constructor is not registered.
|
|
6050
|
+
*
|
|
6051
|
+
* @param contextClass - Constructor key to remove.
|
|
6052
|
+
*/
|
|
6053
|
+
unregisterByClass(contextClass) {
|
|
6054
|
+
this.byConstructor.delete(contextClass);
|
|
6055
|
+
}
|
|
6056
|
+
/**
|
|
6057
|
+
* Removes a specific context instance if it is currently registered for its
|
|
6058
|
+
* constructor.
|
|
6059
|
+
*
|
|
6060
|
+
* This prevents deleting a newer replacement instance of the same class.
|
|
6061
|
+
*
|
|
6062
|
+
* @param context - Context instance to remove.
|
|
6063
|
+
*/
|
|
6064
|
+
unregister(context) {
|
|
6065
|
+
const key = context.constructor;
|
|
6066
|
+
if (this.byConstructor.get(key) === context) {
|
|
6067
|
+
this.byConstructor.delete(key);
|
|
6068
|
+
}
|
|
6069
|
+
}
|
|
6070
|
+
/**
|
|
6071
|
+
* Finds a context instance by constructor type.
|
|
6072
|
+
*
|
|
6073
|
+
* The registry is scanned in insertion order and each entry is checked with
|
|
6074
|
+
* `instanceof contextClass`.
|
|
6075
|
+
*
|
|
6076
|
+
* @param contextClass - Class to match via `instanceof`.
|
|
6077
|
+
* @returns Matching instance, or `undefined` when not found.
|
|
6078
|
+
*/
|
|
6079
|
+
find(contextClass) {
|
|
6080
|
+
for (const value of this.byConstructor.values()) {
|
|
6081
|
+
if (value instanceof contextClass) return value;
|
|
6082
|
+
}
|
|
6083
|
+
return void 0;
|
|
6084
|
+
}
|
|
6085
|
+
/**
|
|
6086
|
+
* Resolves a context instance by constructor type and guarantees a value.
|
|
6087
|
+
*
|
|
6088
|
+
* @param contextClass - Class to match via `instanceof`.
|
|
6089
|
+
* @returns Matching context instance.
|
|
6090
|
+
* @throws Error when no matching context is registered.
|
|
6091
|
+
*/
|
|
6092
|
+
require(contextClass) {
|
|
6093
|
+
const value = this.find(contextClass);
|
|
6094
|
+
if (value) return value;
|
|
6095
|
+
throw new Error(
|
|
6096
|
+
`${contextClass.name} is not registered in ContextRegistry.`
|
|
6097
|
+
);
|
|
6098
|
+
}
|
|
6099
|
+
};
|
|
6100
|
+
|
|
6030
6101
|
// src/composition/onMounted.ts
|
|
6031
6102
|
var onMounted = (onMounted2) => {
|
|
6032
6103
|
var _a;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";var dt=Object.defineProperty,Rr=Object.defineProperties,vr=Object.getOwnPropertyDescriptor,wr=Object.getOwnPropertyDescriptors,Sr=Object.getOwnPropertyNames,Fn=Object.getOwnPropertySymbols;var zn=Object.prototype.hasOwnProperty,Ar=Object.prototype.propertyIsEnumerable;var ht=Math.pow,an=(t,e,n)=>e in t?dt(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n,yt=(t,e)=>{for(var n in e||(e={}))zn.call(e,n)&&an(t,n,e[n]);if(Fn)for(var n of Fn(e))Ar.call(e,n)&&an(t,n,e[n]);return t},Kn=(t,e)=>Rr(t,wr(e));var Nr=(t,e)=>{for(var n in e)dt(t,n,{get:e[n],enumerable:!0})},Or=(t,e,n,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Sr(e))!zn.call(t,r)&&r!==n&&dt(t,r,{get:()=>e[r],enumerable:!(o=vr(e,r))||o.enumerable});return t};var Mr=t=>Or(dt({},"__esModule",{value:!0}),t);var d=(t,e,n)=>an(t,typeof e!="symbol"?e+"":e,n);var Wn=(t,e,n)=>new Promise((o,r)=>{var s=c=>{try{a(n.next(c))}catch(l){r(l)}},i=c=>{try{a(n.throw(c))}catch(l){r(l)}},a=c=>c.done?o(c.value):Promise.resolve(c.value).then(s,i);a((n=n.apply(t,e)).next())});var ii={};Nr(ii,{ComponentHead:()=>We,RegorConfig:()=>le,addUnbinder:()=>q,batch:()=>Er,collectRefs:()=>Lt,computeMany:()=>hr,computeRef:()=>yr,computed:()=>dr,createApp:()=>fr,defineComponent:()=>pr,drainUnbind:()=>Jn,endBatch:()=>qn,entangle:()=>Ye,flatten:()=>ae,getBindData:()=>Oe,html:()=>jn,isDeepRef:()=>Ve,isRaw:()=>Ze,isRef:()=>C,markRaw:()=>gr,observe:()=>se,observeMany:()=>xr,observerCount:()=>Cr,onMounted:()=>mr,onUnmounted:()=>ne,pause:()=>Gt,persist:()=>br,raw:()=>Tr,ref:()=>be,removeNode:()=>z,resume:()=>Jt,silence:()=>kt,sref:()=>ie,startBatch:()=>$n,toFragment:()=>$e,toJsonTemplate:()=>rt,trigger:()=>Y,unbind:()=>de,unref:()=>H,useScope:()=>Nt,warningHandler:()=>it,watchEffect:()=>He});module.exports=Mr(ii);var ze=Symbol(":regor");var de=t=>{let e=[t];for(let n=0;n<e.length;++n){let o=e[n];kr(o);for(let r=o.lastChild;r!=null;r=r.previousSibling)e.push(r)}},kr=t=>{let e=t[ze];if(!e)return;let n=e.unbinders;for(let o=0;o<n.length;++o)n[o]();n.length=0,t[ze]=void 0};var Ke=[],gt=!1,bt,Gn=()=>{if(gt=!1,bt=void 0,Ke.length!==0){for(let t=0;t<Ke.length;++t)de(Ke[t]);Ke.length=0}},z=t=>{t.remove(),Ke.push(t),gt||(gt=!0,bt=setTimeout(Gn,1))},Jn=()=>Wn(null,null,function*(){Ke.length===0&&!gt||(bt&&clearTimeout(bt),Gn())});var K=t=>typeof t=="function",W=t=>typeof t=="string",Qn=t=>typeof t=="undefined",fe=t=>t==null||typeof t=="undefined",X=t=>typeof t!="string"||!(t!=null&&t.trim()),Lr=Object.prototype.toString,cn=t=>Lr.call(t),Ae=t=>cn(t)==="[object Map]",ue=t=>cn(t)==="[object Set]",un=t=>cn(t)==="[object Date]",st=t=>typeof t=="symbol",w=Array.isArray,I=t=>t!==null&&typeof t=="object";var Xn={0:"createApp can't find root element. You must define either a valid `selector` or an `element`. Example: createApp({}, {selector: '#app', html: '...'})",1:t=>`Component template cannot be found. selector: ${t} .`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:t=>`${t} requires ref source argument`,4:"computed is readonly.",5:"persist requires a string key."},j=(t,...e)=>{let n=Xn[t];return new Error(K(n)?n.call(Xn,...e):n)};var Tt=[],Yn=()=>{let t={onMounted:[],onUnmounted:[]};return Tt.push(t),t},Ue=t=>{let e=Tt[Tt.length-1];if(!e&&!t)throw j(2);return e},Zn=t=>{let e=Ue();return t&&fn(t),Tt.pop(),e},ln=Symbol("csp"),fn=t=>{let e=t,n=e[ln];if(n){let o=Ue();if(n===o)return;o.onMounted.length>0&&n.onMounted.push(...o.onMounted),o.onUnmounted.length>0&&n.onUnmounted.push(...o.onUnmounted);return}e[ln]=Ue()},xt=t=>t[ln];var Ne=t=>{var n,o;let e=(n=xt(t))==null?void 0:n.onUnmounted;e==null||e.forEach(r=>{r()}),(o=t.unmounted)==null||o.call(t)};var We=class{constructor(e,n,o,r,s){d(this,"props");d(this,"start");d(this,"end");d(this,"ctx");d(this,"autoProps",!0);d(this,"entangle",!0);d(this,"enableSwitch",!1);d(this,"onAutoPropsAssigned");d(this,"le");d(this,"emit",(e,n)=>{this.le.dispatchEvent(new CustomEvent(e,{detail:n}))});this.props=e,this.le=n,this.ctx=o,this.start=r,this.end=s}findContext(e,n=0){var r;if(n<0)return;let o=0;for(let s of(r=this.ctx)!=null?r:[])if(s instanceof e){if(o===n)return s;++o}}requireContext(e,n=0){let o=this.findContext(e,n);if(o!==void 0)return o;throw new Error(`${e} was not found in the context stack at occurrence ${n}.`)}unmount(){let e=this.start.nextSibling,n=this.end;for(;e&&e!==n;)z(e),e=e.nextSibling;for(let o of this.ctx)Ne(o)}};var Oe=t=>{let e=t,n=e[ze];if(n)return n;let o={unbinders:[],data:{}};return e[ze]=o,o};var q=(t,e)=>{Oe(t).unbinders.push(e)};var eo={8:t=>`Model binding requires a ref at ${t.outerHTML}`,7:t=>`Model binding is not supported on ${t.tagName} element at ${t.outerHTML}`,0:(t,e)=>`${t} binding expression is missing at ${e.outerHTML}`,1:(t,e,n)=>`invalid ${t} expression: ${e} at ${n.outerHTML}`,2:(t,e)=>`${t} requires object expression at ${e.outerHTML}`,3:(t,e)=>`${t} binder: key is empty on ${e.outerHTML}.`,4:(t,e,n,o)=>({msg:`Failed setting prop "${t}" on <${e.toLowerCase()}>: value ${n} is invalid.`,args:[o]}),5:(t,e)=>`${t} binding missing event type at ${e.outerHTML}`,6:(t,e)=>({msg:t,args:[e]})},V=(t,...e)=>{let n=eo[t],o=K(n)?n.call(eo,...e):n,r=it.warning;r&&(W(o)?r(o):r(o,...o.args))},it={warning:console.warn};var Et={},Ct={},to=1,no=t=>{let e=(to++).toString();return Et[e]=t,Ct[e]=0,e},pn=t=>{Ct[t]+=1},mn=t=>{--Ct[t]===0&&(delete Et[t],delete Ct[t])},oo=t=>Et[t],dn=()=>to!==1&&Object.keys(Et).length>0,at="r-switch",Ir=t=>{let e=t.filter(o=>Be(o)).map(o=>[...o.querySelectorAll("[r-switch]")].map(r=>r.getAttribute(at))),n=new Set;return e.forEach(o=>{o.forEach(r=>r&&n.add(r))}),[...n]},Ge=(t,e)=>{if(!dn())return;let n=Ir(e);n.length!==0&&(n.forEach(pn),q(t,()=>{n.forEach(mn)}))};var Rt=()=>{},hn=(t,e,n,o)=>{let r=[];for(let s of t){let i=s.cloneNode(!0);n.insertBefore(i,o),r.push(i)}ke(e,r)},yn=Symbol("r-if"),ro=Symbol("r-else"),so=t=>t[ro]===1,vt=class{constructor(e){d(this,"i");d(this,"D");d(this,"K");d(this,"z");d(this,"W");d(this,"T");d(this,"R");this.i=e,this.D=e.o.p.if,this.K=Qe(e.o.p.if),this.z=e.o.p.else,this.W=e.o.p.elseif,this.T=e.o.p.for,this.R=e.o.p.pre}Qe(e,n){let o=e.parentElement;for(;o!==null&&o!==document.documentElement;){if(o.hasAttribute(n))return!0;o=o.parentElement}return!1}N(e){let n=e.hasAttribute(this.D),o=Me(e,this.K);for(let r of o)this.b(r);return n}G(e){return e[yn]?!0:(e[yn]=!0,Me(e,this.K).forEach(n=>n[yn]=!0),!1)}b(e){if(e.hasAttribute(this.R)||this.G(e)||this.Qe(e,this.T))return;let n=e.getAttribute(this.D);if(!n){V(0,this.D,e);return}e.removeAttribute(this.D),this.O(e,n)}U(e,n,o){let r=Je(e),s=e.parentNode,i=document.createComment(`__begin__ :${n}${o!=null?o:""}`);s.insertBefore(i,e),Ge(i,r),r.forEach(c=>{z(c)}),e.remove(),n!=="if"&&(e[ro]=1);let a=document.createComment(`__end__ :${n}${o!=null?o:""}`);return s.insertBefore(a,i.nextSibling),{nodes:r,parent:s,commentBegin:i,commentEnd:a}}fe(e,n){if(!e)return[];let o=e.nextElementSibling;if(e.hasAttribute(this.z)){e.removeAttribute(this.z);let{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"else");return[{mount:()=>{hn(r,this.i,s,a)},unmount:()=>{Ce(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let r=e.getAttribute(this.W);if(!r)return[];e.removeAttribute(this.W);let{nodes:s,parent:i,commentBegin:a,commentEnd:c}=this.U(e,"elseif",` => ${r} `),l=this.i.m.k(r),u=l.value,f=this.fe(o,n),p=Rt;return q(a,()=>{l.stop(),p(),p=Rt}),p=l.subscribe(n),[{mount:()=>{hn(s,this.i,i,c)},unmount:()=>{Ce(a,c)},isTrue:()=>!!u()[0],isMounted:!1},...f]}}O(e,n){let o=e.nextElementSibling,{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"if",` => ${n} `),c=this.i.m.k(n),l=c.value,u=!1,f=this.i.m,p=f.M(),m=()=>{f.E(p,()=>{if(l()[0])u||(hn(r,this.i,s,a),u=!0),y.forEach(R=>{R.unmount(),R.isMounted=!1});else{Ce(i,a),u=!1;let R=!1;for(let E of y)!R&&E.isTrue()?(E.isMounted||(E.mount(),E.isMounted=!0),R=!0):(E.unmount(),E.isMounted=!1)}})},y=this.fe(o,m),h=Rt;q(i,()=>{c.stop(),h(),h=Rt}),m(),h=c.subscribe(m)}};var Je=t=>{let e=ye(t)?t.content.childNodes:[t],n=[];for(let o=0;o<e.length;++o){let r=e[o];if(r.nodeType===1){let s=r==null?void 0:r.tagName;if(s==="SCRIPT"||s==="STYLE")continue}n.push(r)}return n},ke=(t,e)=>{for(let n=0;n<e.length;++n){let o=e[n];o.nodeType===Node.ELEMENT_NODE&&(so(o)||t.H(o))}},Me=(t,e)=>{var o;let n=t.querySelectorAll(e);return(o=t.matches)!=null&&o.call(t,e)?[t,...n]:n},ye=t=>t instanceof HTMLTemplateElement,Be=t=>t.nodeType===Node.ELEMENT_NODE,ct=t=>t.nodeType===Node.ELEMENT_NODE,io=t=>t instanceof HTMLSlotElement,Ee=t=>ye(t)?t.content.childNodes:t.childNodes,Ce=(t,e)=>{let n=t.nextSibling;for(;n!=null&&n!==e;){let o=n.nextSibling;z(n),n=o}},ao=function(){return this()},Dr=function(t){return this(t)},Ur=()=>{throw new Error("value is readonly.")},Br={get:ao,set:Dr,enumerable:!0,configurable:!1},Pr={get:ao,set:Ur,enumerable:!0,configurable:!1},Le=(t,e)=>{Object.defineProperty(t,"value",e?Pr:Br)},co=(t,e)=>{if(!t)return!1;if(t.startsWith("["))return t.substring(1,t.length-1);let n=e.length;return t.startsWith(e)?t.substring(n,t.length-n):!1},Qe=t=>`[${CSS.escape(t)}]`,wt=(t,e)=>(t.startsWith("@")&&(t=e.p.on+":"+t.slice(1)),t.includes("[")&&(t=t.replace(/[[\]]/g,e.p.dynamic)),t),gn=t=>{let e=Object.create(null);return n=>e[n]||(e[n]=t(n))},Vr=/-(\w)/g,$=gn(t=>t&&t.replace(Vr,(e,n)=>n?n.toUpperCase():"")),Hr=/\B([A-Z])/g,Xe=gn(t=>t&&t.replace(Hr,"-$1").toLowerCase()),ut=gn(t=>t&&t.charAt(0).toUpperCase()+t.slice(1));var St={mount:()=>{}};var At=t=>{var n,o;let e=(n=xt(t))==null?void 0:n.onMounted;e==null||e.forEach(r=>{r()}),(o=t.mounted)==null||o.call(t)};var bn=Symbol("scope"),Nt=t=>{try{Yn();let e=t();fn(e);let n={context:e,unmount:()=>Ne(e),[bn]:1};return n[bn]=1,n}finally{Zn()}},uo=t=>I(t)?bn in t:!1;var Ot=Symbol("ref"),Z=Symbol("sref"),Mt=Symbol("raw");var C=t=>t!=null&&t[Z]===1;var Tn={collectRefObj:!0,mount:({parseResult:t})=>({update:({values:e})=>{let n=t.context,o=e[0];if(I(o))for(let r of Object.entries(o)){let s=r[0],i=r[1],a=n[s];a!==i&&(C(a)?a(i):n[s]=i)}}})};var ne=(t,e)=>{var n;(n=Ue(e))==null||n.onUnmounted.push(t)};var se=(t,e,n,o=!0)=>{if(!C(t))throw j(3,"observe");n&&e(t());let s=t(void 0,void 0,0,e);return o&&ne(s,!0),s};var Ye=(t,e)=>{if(t===e)return()=>{};let n=se(t,r=>e(r)),o=se(e,r=>t(r));return e(t()),()=>{n(),o()}};var Ze=t=>!!t&&t[Mt]===1;var Ve=t=>(t==null?void 0:t[Ot])===1;var pe=[],lo=t=>{var e;pe.length!==0&&((e=pe[pe.length-1])==null||e.add(t))},He=t=>{if(!t)return()=>{};let e={stop:()=>{}};return _r(t,e),ne(()=>e.stop(),!0),e.stop},_r=(t,e)=>{if(!t)return;let n=[],o=!1,r=()=>{for(let s of n)s();n=[],o=!0};e.stop=r;try{let s=new Set;if(pe.push(s),t(i=>n.push(i)),o)return;for(let i of[...s]){let a=se(i,()=>{r(),He(t)});n.push(a)}}finally{pe.pop()}},kt=t=>{let e=pe.length,n=e>0&&pe[e-1];try{return n&&pe.push(null),t()}finally{n&&pe.pop()}},Lt=t=>{try{let e=new Set;return pe.push(e),{value:t(),refs:[...e]}}finally{pe.pop()}};var Y=(t,e,n)=>{if(!C(t))return;let o=t;if(o(void 0,e,1),!n)return;let r=o();if(r){if(w(r)||ue(r))for(let s of r)Y(s,e,!0);else if(Ae(r))for(let s of r)Y(s[0],e,!0),Y(s[1],e,!0);if(I(r))for(let s in r)Y(r[s],e,!0)}};function jr(t,e,n){Object.defineProperty(t,e,{value:n,enumerable:!1,writable:!0,configurable:!0})}var et=(t,e,n)=>{n.forEach(function(o){let r=t[o];jr(e,o,function(...i){let a=r.apply(this,i),c=this[Z];for(let l of c)Y(l);return a})})},It=(t,e)=>{Object.defineProperty(t,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var fo=Array.prototype,xn=Object.create(fo),$r=["push","pop","shift","unshift","splice","sort","reverse"];et(fo,xn,$r);var po=Map.prototype,Dt=Object.create(po),qr=["set","clear","delete"];It(Dt,"Map");et(po,Dt,qr);var mo=Set.prototype,Ut=Object.create(mo),Fr=["add","clear","delete"];It(Ut,"Set");et(mo,Ut,Fr);var ge={},ie=t=>{if(C(t)||Ze(t))return t;let e={auto:!0,_value:t},n=c=>I(c)?Z in c?!0:w(c)?(Object.setPrototypeOf(c,xn),!0):ue(c)?(Object.setPrototypeOf(c,Ut),!0):Ae(c)?(Object.setPrototypeOf(c,Dt),!0):!1:!1,o=n(t),r=new Set,s=(c,l)=>{if(ge.stack&&ge.stack.length){ge.stack[ge.stack.length-1].add(a);return}r.size!==0&&kt(()=>{for(let u of[...r.keys()])r.has(u)&&u(c,l)})},i=c=>{let l=c[Z];l||(c[Z]=l=new Set),l.add(a)},a=(...c)=>{if(!(2 in c)){let u=c[0],f=c[1];return 0 in c?e._value===u||C(u)&&(u=u(),e._value===u)?u:(n(u)&&i(u),e._value=u,e.auto&&s(u,f),e._value):(lo(a),e._value)}switch(c[2]){case 0:{let u=c[3];if(!u)return()=>{};let f=p=>{r.delete(p)};return r.add(u),()=>{f(u)}}case 1:{let u=c[1],f=e._value;s(f,u);break}case 2:return r.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[Z]=1,Le(a,!1),o&&i(t),a};var be=t=>{if(Ze(t))return t;let e;if(C(t)?(e=t,t=e()):e=ie(t),t instanceof Node||t instanceof Date||t instanceof RegExp||t instanceof Promise||t instanceof Error)return e;if(e[Ot]=1,w(t)){let n=t.length;for(let o=0;o<n;++o){let r=t[o];Ve(r)||(t[o]=be(r))}return e}if(!I(t))return e;for(let n of Object.entries(t)){let o=n[1];if(Ve(o))continue;let r=n[0];st(r)||(t[r]=null,t[r]=be(o))}return e};var ho=Symbol("modelBridge"),Bt=()=>{},zr=t=>!!(t!=null&&t[ho]),Kr=t=>{t[ho]=1},Wr=t=>{let e=be(t());return Kr(e),e},yo={collectRefObj:!0,mount:({parseResult:t,option:e})=>{if(typeof e!="string"||!e)return Bt;let n=$(e),o,r,s=Bt,i=()=>{s(),s=Bt,o=void 0,r=void 0},a=()=>{s(),s=Bt},c=(u,f)=>{o!==u&&(a(),s=Ye(u,f),o=u)},l=()=>{var m;let u=(m=t.refs[0])!=null?m:t.value()[0],f=t.context,p=f[n];if(!C(u)){if(r&&p===r){r(u);return}if(i(),C(p)){p(u);return}f[n]=u;return}if(zr(u)){if(p===u)return;C(p)?c(u,p):f[n]=u;return}r||(r=Wr(u)),f[n]=r,c(u,r)};return{update:()=>{l()},unmount:()=>{s()}}}};var Pt=class{constructor(e){d(this,"i");d(this,"me");d(this,"de","");d(this,"ye",-1);this.i=e,this.me=e.o.p.inherit}N(e){this.Xe(e)}Ye(e){if(this.ye!==e.size){let n=[...e.keys()];this.de=[...n,...n.map(Xe)].join(","),this.ye=e.size}return this.de}Ze(e){var n;for(let o=0;o<e.length;++o){let r=(n=e[o])==null?void 0:n.components;if(r)for(let s in r)return!0}return!1}Xe(e){var p;let n=this.i,o=n.m,r=n.o.he,s=n.o._;if(r.size===0&&!this.Ze(o.l))return;let i=o.J(),a=o.et(),c=this.Ye(r),l=[...c?[c]:[],...a,...a.map(Xe)].join(",");if(X(l))return;let u=e.querySelectorAll(l),f=(p=e.matches)!=null&&p.call(e,l)?[e,...u]:u;for(let m of f){if(m.hasAttribute(n.R))continue;let y=m.parentNode;if(!y)continue;let h=m.nextSibling,g=$(m.tagName).toUpperCase(),R=i[g],E=R!=null?R:s.get(g);if(!E)continue;let D=E.template;if(!D)continue;let G=m.parentElement;if(!G)continue;let M=new Comment(" begin component: "+m.tagName),_=new Comment(" end component: "+m.tagName);G.insertBefore(M,m),m.remove();let ce=n.o.p.context,ee=n.o.p.contextAlias,U=n.o.p.bind,b=(x,T)=>{let v={},F=x.hasAttribute(ce);return o.E(T,()=>{o.v(v),F?n.b(Tn,x,ce):x.hasAttribute(ee)&&n.b(Tn,x,ee);let B=E.props;if(!B||B.length===0)return;B=B.map($);let N=new Map(B.map(S=>[S.toLowerCase(),S]));for(let S of[...B,...B.map(Xe)]){let P=x.getAttribute(S);P!==null&&(v[$(S)]=P,x.removeAttribute(S))}let L=n.j.ge(x,!1);for(let[S,P]of L.entries()){let[re,De]=P.Q;if(!De)continue;let Fe=N.get($(De).toLowerCase());Fe&&(re!=="."&&re!==":"&&re!==U||n.b(yo,x,S,!0,Fe,P.X))}}),v},A=[...o.M()],J=()=>{var F;let x=b(m,A),T=new We(x,m,A,M,_),v=Nt(()=>{var B;return(B=E.context(T))!=null?B:{}}).context;if(T.autoProps){for(let[B,N]of Object.entries(x))if(B in v){let L=v[B];if(L===N)continue;if(C(L)){C(N)?T.entangle?q(M,Ye(N,L)):L(N()):L(N);continue}}else v[B]=N;(F=T.onAutoPropsAssigned)==null||F.call(T)}return{componentCtx:v,head:T}},{componentCtx:me,head:qe}=J(),Te=[...Ee(D)],k=Te.length,mt=m.childNodes.length===0,O=x=>{let T=x.parentElement;if(mt){for(let N of[...x.childNodes])T.insertBefore(N,x);return}let v=x.name;X(v)&&(v=x.getAttributeNames().filter(N=>N.startsWith("#"))[0],X(v)?v="default":v=v.substring(1));let F=m.querySelector(`template[name='${v}'], template[\\#${v}]`);!F&&v==="default"&&(F=m.querySelector("template:not([name])"),F&&F.getAttributeNames().filter(N=>N.startsWith("#")).length>0&&(F=null));let B=N=>{qe.enableSwitch&&o.E(A,()=>{o.v(me);let L=b(x,o.M());o.E(A,()=>{o.v(L);let S=o.M(),P=no(S);for(let re of N)Be(re)&&(re.setAttribute(at,P),pn(P),q(re,()=>{mn(P)}))})})};if(F){let N=[...Ee(F)];for(let L of N)T.insertBefore(L,x);B(N)}else{if(v!=="default"){for(let L of[...Ee(x)])T.insertBefore(L,x);return}let N=[...Ee(m)].filter(L=>!ye(L));for(let L of N)T.insertBefore(L,x);B(N)}},Q=x=>{if(!Be(x))return;let T=x.querySelectorAll("slot");if(io(x)){O(x),x.remove();return}for(let v of T)O(v),v.remove()};(()=>{for(let x=0;x<k;++x)Te[x]=Te[x].cloneNode(!0),y.insertBefore(Te[x],h),Q(Te[x])})(),G.insertBefore(_,h);let te=()=>{if(!E.inheritAttrs)return;let x=Te.filter(v=>v.nodeType===Node.ELEMENT_NODE);x.length>1&&(x=x.filter(v=>v.hasAttribute(this.me)));let T=x[0];if(T)for(let v of m.getAttributeNames()){if(v===ce||v===ee)continue;let F=m.getAttribute(v);if(v==="class")T.classList.add(...F.split(" "));else if(v==="style"){let B=T.style,N=m.style;for(let L of N)B.setProperty(L,N.getPropertyValue(L))}else T.setAttribute(wt(v,n.o),F)}},xe=()=>{for(let x of m.getAttributeNames())!x.startsWith("@")&&!x.startsWith(n.o.p.on)&&m.removeAttribute(x)},Se=()=>{te(),xe(),o.v(me),n.be(m,!1),me.$emit=qe.emit,ke(n,Te),q(m,()=>{Ne(me)}),q(M,()=>{de(m)}),At(me)};o.E(A,Se)}}};var Cn=class{constructor(e,n){d(this,"Q");d(this,"X");d(this,"xe",[]);this.Q=e,this.X=n}},Vt=class{constructor(e){d(this,"i");d(this,"Te");d(this,"Re");d(this,"Y");var o;this.i=e,this.Te=e.o.tt(),this.Y=new Map;let n=new Map;for(let r of this.Te){let s=(o=r[0])!=null?o:"",i=n.get(s);i?i.push(r):n.set(s,[r])}this.Re=n}Ee(e){let n=this.Y.get(e);if(n)return n;let o=e,r=o.startsWith(".");r&&(o=":"+o.slice(1));let s=o.indexOf("."),a=(s<0?o:o.substring(0,s)).split(/[:@]/);X(a[0])&&(a[0]=r?".":o[0]);let c=s>=0?o.slice(s+1).split("."):[],l=!1,u=!1;for(let p=0;p<c.length;++p){let m=c[p];if(!l&&m==="camel"?l=!0:!u&&m==="prop"&&(u=!0),l&&u)break}l&&(a[a.length-1]=$(a[a.length-1])),u&&(a[0]=".");let f={terms:a,flags:c};return this.Y.set(e,f),f}ge(e,n){let o=new Map;if(!ct(e))return o;let r=this.Re,s=(c,l)=>{var f;let u=r.get((f=l[0])!=null?f:"");if(u)for(let p=0;p<u.length;++p){if(!l.startsWith(u[p]))continue;let m=o.get(l);if(!m){let y=this.Ee(l);m=new Cn(y.terms,y.flags),o.set(l,m)}m.xe.push(c);return}},i=c=>{var u;let l=c.attributes;if(!(!l||l.length===0))for(let f=0;f<l.length;++f){let p=(u=l.item(f))==null?void 0:u.name;p&&s(c,p)}};if(i(e),!n||!e.firstElementChild)return o;let a=e.querySelectorAll("*");for(let c of a)i(c);return o}};var go=()=>{},Gr=(t,e)=>{for(let n of t){let o=n.cloneNode(!0);e.appendChild(o)}},Ht=class{constructor(e){d(this,"i");d(this,"L");d(this,"Ce");this.i=e,this.L=e.o.p.is,this.Ce=Qe(this.L)+", [is]"}N(e){let n=e.hasAttribute(this.L),o=Me(e,this.Ce);for(let r of o)this.b(r);return n}b(e){let n=e.getAttribute(this.L);if(!n){if(n=e.getAttribute("is"),!n)return;if(!n.startsWith("regor:")){if(!n.startsWith("r-"))return;let o=n.slice(2).trim().toLowerCase();if(!o)return;let r=e.parentNode;if(!r)return;let s=document.createElement(o);for(let i of e.getAttributeNames())i!=="is"&&s.setAttribute(i,e.getAttribute(i));for(;e.firstChild;)s.appendChild(e.firstChild);r.insertBefore(s,e),e.remove(),this.i.H(s);return}n=`'${n.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.L),this.O(e,n)}U(e,n){let o=Je(e),r=e.parentNode,s=document.createComment(`__begin__ dynamic ${n!=null?n:""}`);r.insertBefore(s,e),Ge(s,o),o.forEach(a=>{z(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${n!=null?n:""}`);return r.insertBefore(i,s.nextSibling),{nodes:o,parent:r,commentBegin:s,commentEnd:i}}O(e,n){let{nodes:o,parent:r,commentBegin:s,commentEnd:i}=this.U(e,` => ${n} `),a=this.i.m.k(n),c=a.value,l=this.i.m,u=l.M(),f={name:""},p=ye(e)?o:[...o[0].childNodes],m=()=>{l.E(u,()=>{var E;let g=c()[0];if(I(g)&&(g.name?g=g.name:g=(E=Object.entries(l.J()).filter(D=>D[1]===g)[0])==null?void 0:E[0]),!W(g)||X(g)){Ce(s,i);return}if(f.name===g)return;Ce(s,i);let R=document.createElement(g);for(let D of e.getAttributeNames())D!==this.L&&R.setAttribute(D,e.getAttribute(D));Gr(p,R),r.insertBefore(R,i),this.i.H(R),f.name=g})},y=go;q(s,()=>{a.stop(),y(),y=go}),m(),y=a.subscribe(m)}};var H=t=>{let e=t;return e!=null&&e[Z]===1?e():e};var Jr=(t,e)=>{let[n,o]=e;K(o)?o(t,n):t.innerHTML=n==null?void 0:n.toString()},_t={mount:()=>({update:({el:t,values:e})=>{Jr(t,e)}})};var jt=class t{constructor(e){d(this,"Z");this.Z=e}static nt(e,n){var m,y;let o=e.m,r=e.o,s=r.p,i=new Set([s.for,s.if,s.else,s.elseif,s.pre]),a=r.P,c=o.J();if(Object.keys(c).length>0||r._.size>0)return;let l=e.j,u=[],f=0,p=[];for(let h=n.length-1;h>=0;--h)p.push(n[h]);for(;p.length>0;){let h=p.pop();if(h.nodeType===Node.ELEMENT_NODE){let R=h;if(R.tagName==="TEMPLATE"||R.tagName.includes("-"))return;let E=$(R.tagName).toUpperCase();if(r._.has(E)||c[E])return;let D=R.attributes;for(let G=0;G<D.length;++G){let M=(m=D.item(G))==null?void 0:m.name;if(!M)continue;if(i.has(M))return;let{terms:_,flags:ce}=l.Ee(M),[ee,U]=_,b=(y=a[M])!=null?y:a[ee];if(b){if(b===_t)return;u.push({nodeIndex:f,attrName:M,directive:b,option:U,flags:ce})}}++f}let g=h.childNodes;for(let R=g.length-1;R>=0;--R)p.push(g[R])}if(u.length!==0)return new t(u)}b(e,n){let o=[],r=[];for(let s=n.length-1;s>=0;--s)r.push(n[s]);for(;r.length>0;){let s=r.pop();s.nodeType===Node.ELEMENT_NODE&&o.push(s);let i=s.childNodes;for(let a=i.length-1;a>=0;--a)r.push(i[a])}for(let s=0;s<this.Z.length;++s){let i=this.Z[s],a=o[i.nodeIndex];a&&e.b(i.directive,a,i.attrName,!1,i.option,i.flags)}}};var Qr=(t,e)=>{let n=e.parentNode;if(n)for(let o=0;o<t.items.length;++o)n.insertBefore(t.items[o],e)},Xr=t=>{var a;let e=t.length,n=t.slice(),o=[],r,s,i;for(let c=0;c<e;++c){let l=t[c];if(l===0)continue;let u=o[o.length-1];if(u===void 0||t[u]<l){n[c]=u!=null?u:-1,o.push(c);continue}for(r=0,s=o.length-1;r<s;)i=r+s>>1,t[o[i]]<l?r=i+1:s=i;l<t[o[r]]&&(r>0&&(n[c]=o[r-1]),o[r]=c)}for(r=o.length,s=(a=o[r-1])!=null?a:-1;r-- >0;)o[r]=s,s=n[s];return o},$t=class{static ot(e){let{oldItems:n,newValues:o,getKey:r,isSameValue:s,mountNewValue:i,removeMountItem:a,endAnchor:c}=e,l=n.length,u=o.length,f=new Array(u),p=new Set;for(let b=0;b<u;++b){let A=r(o[b]);if(A===void 0||p.has(A))return;p.add(A),f[b]=A}let m=new Array(u),y=0,h=l-1,g=u-1;for(;y<=h&&y<=g;){let b=n[y];if(r(b.value)!==f[y]||!s(b.value,o[y]))break;b.value=o[y],m[y]=b,++y}for(;y<=h&&y<=g;){let b=n[h];if(r(b.value)!==f[g]||!s(b.value,o[g]))break;b.value=o[g],m[g]=b,--h,--g}if(y>h){for(let b=g;b>=y;--b){let A=b+1<u?m[b+1].items[0]:c;m[b]=i(b,o[b],A)}return m}if(y>g){for(let b=y;b<=h;++b)a(n[b]);return m}let R=y,E=y,D=g-E+1,G=new Array(D).fill(0),M=new Map;for(let b=E;b<=g;++b)M.set(f[b],b);let _=!1,ce=0;for(let b=R;b<=h;++b){let A=n[b],J=M.get(r(A.value));if(J===void 0){a(A);continue}if(!s(A.value,o[J])){a(A);continue}A.value=o[J],m[J]=A,G[J-E]=b+1,J>=ce?ce=J:_=!0}let ee=_?Xr(G):[],U=ee.length-1;for(let b=D-1;b>=0;--b){let A=E+b,J=A+1<u?m[A+1].items[0]:c;if(G[b]===0){m[A]=i(A,o[A],J);continue}let me=m[A];_&&(U>=0&&ee[U]===b?--U:me&&Qr(me,J))}return m}};var lt=class{constructor(e){d(this,"x",[]);d(this,"V",new Map);d(this,"ee");this.ee=e}get w(){return this.x.length}te(e){let n=this.ee(e.value);n!==void 0&&this.V.set(n,e)}ne(e){var o;let n=this.ee((o=this.x[e])==null?void 0:o.value);n!==void 0&&this.V.delete(n)}static rt(e,n){return{items:[],index:e,value:n,order:-1}}v(e){e.order=this.w,this.x.push(e),this.te(e)}st(e,n){let o=this.w;for(let r=e;r<o;++r)this.x[r].order=r+1;n.order=e,this.x.splice(e,0,n),this.te(n)}I(e){return this.x[e]}oe(e,n){this.ne(e),this.x[e]=n,this.te(n),n.order=e}ve(e){this.ne(e),this.x.splice(e,1);let n=this.w;for(let o=e;o<n;++o)this.x[o].order=o}we(e){let n=this.w;for(let o=e;o<n;++o)this.ne(o);this.x.splice(e)}$t(e){return this.V.has(e)}it(e){var o;let n=this.V.get(e);return(o=n==null?void 0:n.order)!=null?o:-1}};var En=Symbol("r-for"),Yr=t=>-1,bo=()=>{},Ft=class Ft{constructor(e){d(this,"i");d(this,"T");d(this,"re");d(this,"R");this.i=e,this.T=e.o.p.for,this.re=Qe(this.T),this.R=e.o.p.pre}N(e){let n=e.hasAttribute(this.T),o=Me(e,this.re);for(let r of o)this.at(r);return n}G(e){return e[En]?!0:(e[En]=!0,Me(e,this.re).forEach(n=>n[En]=!0),!1)}at(e){if(e.hasAttribute(this.R)||this.G(e))return;let n=e.getAttribute(this.T);if(!n){V(0,this.T,e);return}e.removeAttribute(this.T),this.ct(e,n)}Se(e){return fe(e)?[]:(K(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(o=>({*[Symbol.iterator](){for(let r=1;r<=o;r++)yield r}}))(e):Object.entries(e))}ct(e,n){var mt;let o=this.ut(n);if(!(o!=null&&o.list)){V(1,this.T,n,e);return}let r=this.i.o.p.key,s=this.i.o.p.keyBind,i=(mt=e.getAttribute(r))!=null?mt:e.getAttribute(s);e.removeAttribute(r),e.removeAttribute(s);let a=Je(e),c=jt.nt(this.i,a),l=e.parentNode;if(!l)return;let u=`${this.T} => ${n}`,f=new Comment(`__begin__ ${u}`);l.insertBefore(f,e),Ge(f,a),a.forEach(O=>{z(O)}),e.remove();let p=new Comment(`__end__ ${u}`);l.insertBefore(p,f.nextSibling);let m=this.i,y=m.m,h=y.M(),R=h.length===1?[void 0,h[0]]:void 0,E=this.pt(i),D=(O,Q)=>E(O)===E(Q),G=(O,Q)=>O===Q,M=(O,Q,oe)=>{let te=o.createContext(Q,O),xe=lt.rt(te.index,Q),Se=()=>{var F,B;let x=(B=(F=p.parentNode)!=null?F:f.parentNode)!=null?B:l,T=oe.previousSibling,v=[];for(let N=0;N<a.length;++N){let L=a[N].cloneNode(!0);x.insertBefore(L,oe),v.push(L)}for(c?c.b(m,v):ke(m,v),T=T.nextSibling;T!==oe;)xe.items.push(T),T=T.nextSibling};return R?(R[0]=te.ctx,y.E(R,Se)):y.E(h,()=>{y.v(te.ctx),Se()}),xe},_=(O,Q)=>{let oe=k.I(O).items,te=oe[oe.length-1].nextSibling;for(let xe of oe)z(xe);k.oe(O,M(O,Q,te))},ce=(O,Q)=>{k.v(M(O,Q,p))},ee=O=>{for(let Q of k.I(O).items)z(Q)},U=O=>{let Q=k.w;for(let oe=O;oe<Q;++oe)k.I(oe).index(oe)},b=O=>{let Q=f.parentNode,oe=p.parentNode;if(!Q||!oe)return;let te=k.w;K(O)&&(O=O());let xe=H(O[0]);if(w(xe)&&xe.length===0){Ce(f,p),k.we(0);return}let Se=[];for(let S of this.Se(O[0]))Se.push(S);let x=$t.ot({oldItems:k.x,newValues:Se,getKey:E,isSameValue:G,mountNewValue:(S,P,re)=>M(S,P,re),removeMountItem:S=>{for(let P=0;P<S.items.length;++P)z(S.items[P])},endAnchor:p});if(x){k.x=x,k.V.clear();for(let S=0;S<x.length;++S){let P=x[S];P.order=S,P.index(S);let re=E(P.value);re!==void 0&&k.V.set(re,P)}return}let T=0,v=Number.MAX_SAFE_INTEGER,F=te,B=this.i.o.forGrowThreshold,N=()=>k.w<F+B;for(let S of Se){let P=()=>{if(T<te){let re=k.I(T++);if(D(re.value,S)){if(G(re.value,S))return;_(T-1,S);return}let De=k.it(E(S));if(De>=T&&De-T<10){if(--T,v=Math.min(v,T),ee(T),k.ve(T),--te,De>T+1)for(let Fe=T;Fe<De-1&&Fe<te&&!D(k.I(T).value,S);)++Fe,ee(T),k.ve(T),--te;P();return}N()?(k.st(T-1,M(T,S,k.I(T-1).items[0])),v=Math.min(v,T-1),++te):_(T-1,S)}else ce(T++,S)};P()}let L=T;for(te=k.w;T<te;)ee(T++);k.we(L),U(v)},A=()=>{J.stop(),qe(),qe=bo},J=y.k(o.list),me=J.value,qe=bo,Te=0,k=new lt(E);for(let O of this.Se(me()[0]))k.v(M(Te++,O,p));q(f,A),qe=J.subscribe(b)}ut(e){var c,l;let n=Ft.lt.exec(e);if(!n)return;let o=(n[1]+((c=n[2])!=null?c:"")).split(",").map(u=>u.trim()),r=o.length>1?o.length-1:-1,s=r!==-1&&(o[r]==="index"||(l=o[r])!=null&&l.startsWith("#"))?o[r]:"";s&&o.splice(r,1);let i=n[3];if(!i||o.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(u,f)=>{let p={},m=H(u);if(!a&&o.length===1)p[o[0]]=u;else if(w(m)){let h=0;for(let g of o)p[g]=m[h++]}else for(let h of o)p[h]=m[h];let y={ctx:p,index:Yr};return s&&(y.index=p[s.startsWith("#")?s.substring(1):s]=ie(f)),y}}}pt(e){if(!e)return o=>o;let n=e.trim();if(!n)return o=>o;if(n.includes(".")){let o=this.ft(n),r=o.length>1?o.slice(1):void 0;return s=>{let i=H(s),a=this.Ae(i,o);return a!==void 0||!r?a:this.Ae(i,r)}}return o=>{var r;return H((r=H(o))==null?void 0:r[n])}}ft(e){return e.split(".").filter(n=>n.length>0)}Ae(e,n){var r;let o=e;for(let s of n)o=(r=H(o))==null?void 0:r[s];return H(o)}};d(Ft,"lt",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+(.*)\s*$/);var qt=Ft;var zt=class{constructor(e){d(this,"m");d(this,"Ne");d(this,"Oe");d(this,"ke");d(this,"Me");d(this,"j");d(this,"o");d(this,"R");d(this,"Le");this.m=e,this.o=e.o,this.Oe=new qt(this),this.Ne=new vt(this),this.ke=new Ht(this),this.Me=new Pt(this),this.j=new Vt(this),this.R=this.o.p.pre,this.Le=this.o.p.dynamic}mt(e){let n=ye(e)?[e]:e.querySelectorAll("template");for(let o of n){if(o.hasAttribute(this.R))continue;let r=o.parentNode;if(!r)continue;let s=o.nextSibling;if(o.remove(),!o.content)continue;let i=[...o.content.childNodes];for(let a of i)r.insertBefore(a,s);ke(this,i)}}H(e){e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.R)||this.Ne.N(e)||this.Oe.N(e)||this.ke.N(e)||(this.Me.N(e),this.mt(e),this.be(e,!0))}be(e,n){var s;let o=this.j.ge(e,n),r=this.o.P;for(let[i,a]of o.entries()){let[c,l]=a.Q,u=(s=r[i])!=null?s:r[c];if(!u){console.error("directive not found:",c);continue}let f=a.xe;for(let p=0;p<f.length;++p){let m=f[p];this.b(u,m,i,!1,l,a.X)}}}b(e,n,o,r,s,i){if(n.hasAttribute(this.R))return;let a=n.getAttribute(o);n.removeAttribute(o);let c=l=>{let u=l;for(;u;){let f=u.getAttribute(at);if(f)return f;u=u.parentElement}return null};if(dn()){let l=c(n);if(l){this.m.E(oo(l),()=>{this.O(e,n,a,s,i)});return}}this.O(e,n,a,s,i)}dt(e,n,o){if(e!==St)return!1;if(X(o))return!0;let r=document.querySelector(o);if(r){let s=n.parentElement;if(!s)return!0;let i=new Comment(`teleported => '${o}'`);s.insertBefore(i,n),n.teleportedFrom=i,i.teleportedTo=n,q(i,()=>{z(n)}),r.appendChild(n)}return!0}O(e,n,o,r,s){if(n.nodeType!==Node.ELEMENT_NODE||o==null||this.dt(e,n,o))return;let i=this.yt(r,e.once),a=this.ht(e,o),c=this.gt(a,i);q(n,c.stop);let l=this.bt(n,o,a,i,r,s),u=this.xt(e,l,c);if(!u)return;let f=this.Tt(l,a,i,r,u);f(),e.once||(c.result=a.subscribe(f),i&&(c.dynamic=i.subscribe(f)))}yt(e,n){let o=co(e,this.Le);if(o)return this.m.k($(o),void 0,void 0,void 0,n)}ht(e,n){return this.m.k(n,e.isLazy,e.isLazyKey,e.collectRefObj,e.once)}gt(e,n){let o={stop:()=>{var r,s,i;e.stop(),n==null||n.stop(),(r=o.result)==null||r.call(o),(s=o.dynamic)==null||s.call(o),(i=o.mounted)==null||i.call(o),o.result=void 0,o.dynamic=void 0,o.mounted=void 0}};return o}bt(e,n,o,r,s,i){return{el:e,expr:n,values:o.value(),previousValues:void 0,option:r?r.value()[0]:s,previousOption:void 0,flags:i,parseResult:o,dynamicOption:r}}xt(e,n,o){let r=e.mount(n);if(typeof r=="function"){o.mounted=r;return}return r!=null&&r.unmount&&(o.mounted=r.unmount),r==null?void 0:r.update}Tt(e,n,o,r,s){let i,a;return()=>{let c=n.value(),l=o?o.value()[0]:r;e.values=c,e.previousValues=i,e.option=l,e.previousOption=a,i=c,a=l,s(e)}}};var To="http://www.w3.org/1999/xlink",Zr={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function es(t){return!!t||t===""}var ts=(t,e,n,o,r,s)=>{var a;if(o){s&&s.includes("camel")&&(o=$(o)),Kt(t,o,e[0],r);return}let i=e.length;for(let c=0;c<i;++c){let l=e[c];if(w(l)){let u=(a=n==null?void 0:n[c])==null?void 0:a[0],f=l[0],p=l[1];Kt(t,f,p,u)}else if(I(l))for(let u of Object.entries(l)){let f=u[0],p=u[1],m=n==null?void 0:n[c],y=m&&f in m?f:void 0;Kt(t,f,p,y)}else{let u=n==null?void 0:n[c],f=e[c++],p=e[c];Kt(t,f,p,u)}}},Rn={mount:()=>({update:({el:t,values:e,previousValues:n,option:o,previousOption:r,flags:s})=>{ts(t,e,n,o,r,s)}})},Kt=(t,e,n,o)=>{if(o&&o!==e&&t.removeAttribute(o),fe(e)){V(3,"r-bind",t);return}if(!W(e)){V(6,`Attribute key is not string at ${t.outerHTML}`,e);return}if(e.startsWith("xlink:")){fe(n)?t.removeAttributeNS(To,e.slice(6,e.length)):t.setAttributeNS(To,e,n);return}let r=e in Zr;fe(n)||r&&!es(n)?t.removeAttribute(e):t.setAttribute(e,r?"":n)};var ns=(t,e,n)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=n==null?void 0:n[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)xo(t,s[c],i==null?void 0:i[c])}else xo(t,s,i)}},vn={mount:()=>({update:({el:t,values:e,previousValues:n})=>{ns(t,e,n)}})},xo=(t,e,n)=>{let o=t.classList,r=W(e),s=W(n);if(e&&!r){if(n&&!s)for(let i in n)(!(i in e)||!e[i])&&o.remove(i);for(let i in e)e[i]&&o.add(i)}else r?n!==e&&(s&&o.remove(...n.trim().split(/\s+/)),o.add(...e.trim().split(/\s+/))):n&&s&&o.remove(...n.trim().split(/\s+/))};function os(t,e){if(t.length!==e.length)return!1;let n=!0;for(let o=0;n&&o<t.length;o++)n=Re(t[o],e[o]);return n}function Re(t,e){if(t===e)return!0;let n=un(t),o=un(e);if(n||o)return n&&o?t.getTime()===e.getTime():!1;if(n=st(t),o=st(e),n||o)return t===e;if(n=w(t),o=w(e),n||o)return n&&o?os(t,e):!1;if(n=I(t),o=I(e),n||o){if(!n||!o)return!1;let r=Object.keys(t).length,s=Object.keys(e).length;if(r!==s)return!1;for(let i in t){let a=Object.prototype.hasOwnProperty.call(t,i),c=Object.prototype.hasOwnProperty.call(e,i);if(a&&!c||!Re(t[i],e[i]))return!1}return!0}return String(t)===String(e)}function Wt(t,e){return t.findIndex(n=>Re(n,e))}var Co=t=>{let e=parseFloat(t);return isNaN(e)?t:e};var Gt=t=>{if(!C(t))throw j(3,"pause");t(void 0,void 0,3)};var Jt=t=>{if(!C(t))throw j(3,"resume");t(void 0,void 0,4)};var Ro={mount:({el:t,parseResult:e,flags:n})=>({update:({values:o})=>{rs(t,o[0])},unmount:ss(t,e,n)})},rs=(t,e)=>{let n=Ao(t);if(n&&vo(t))w(e)?e=Wt(e,ve(t))>-1:ue(e)?e=e.has(ve(t)):e=fs(t,e),t.checked=e;else if(n&&wo(t))t.checked=Re(e,ve(t));else if(n||No(t))So(t)?t.value!==(e==null?void 0:e.toString())&&(t.value=e):t.value!==e&&(t.value=e);else if(Oo(t)){let o=t.options,r=o.length,s=t.multiple;for(let i=0;i<r;i++){let a=o[i],c=ve(a);if(s)w(e)?a.selected=Wt(e,c)>-1:a.selected=e.has(c);else if(Re(ve(a),e)){t.selectedIndex!==i&&(t.selectedIndex=i);return}}!s&&t.selectedIndex!==-1&&(t.selectedIndex=-1)}else V(7,t)},ft=t=>(C(t)&&(t=t()),K(t)&&(t=t()),t?W(t)?{trim:t.includes("trim"),lazy:t.includes("lazy"),number:t.includes("number"),int:t.includes("int")}:{trim:!!t.trim,lazy:!!t.lazy,number:!!t.number,int:!!t.int}:{trim:!1,lazy:!1,number:!1,int:!1}),vo=t=>t.type==="checkbox",wo=t=>t.type==="radio",So=t=>t.type==="number"||t.type==="range",Ao=t=>t.tagName==="INPUT",No=t=>t.tagName==="TEXTAREA",Oo=t=>t.tagName==="SELECT",ss=(t,e,n)=>{let o=e.value,r=ft(n==null?void 0:n.join(",")),s=ft(o()[1]),i={int:r.int||s.int,lazy:r.lazy||s.lazy,number:r.number||s.number,trim:r.trim||s.trim};if(!e.refs[0])return V(8,t),()=>{};let a=()=>e.refs[0],c=Ao(t);return c&&vo(t)?as(t,a):c&&wo(t)?ps(t,a):c||No(t)?is(t,i,a,o):Oo(t)?ms(t,a,o):(V(7,t),()=>{})},Eo=/[.,' ·٫]/,is=(t,e,n,o)=>{let s=e.lazy?"change":"input",i=So(t),a=()=>{!e.trim&&!ft(o()[1]).trim||(t.value=t.value.trim())},c=p=>{let m=p.target;m.composing=1},l=p=>{let m=p.target;m.composing&&(m.composing=0,m.dispatchEvent(new Event(s)))},u=()=>{t.removeEventListener(s,f),t.removeEventListener("change",a),t.removeEventListener("compositionstart",c),t.removeEventListener("compositionend",l),t.removeEventListener("change",l)},f=p=>{let m=n();if(!m)return;let y=p.target;if(!y||y.composing)return;let h=y.value,g=ft(o()[1]);if(i||g.number||g.int){if(g.int)h=parseInt(h);else{if(Eo.test(h[h.length-1])&&h.split(Eo).length===2){if(h+="0",h=parseFloat(h),isNaN(h))h="";else if(m()===h)return}h=parseFloat(h)}isNaN(h)&&(h=""),t.value=h}else g.trim&&(h=h.trim());m(h)};return t.addEventListener(s,f),t.addEventListener("change",a),t.addEventListener("compositionstart",c),t.addEventListener("compositionend",l),t.addEventListener("change",l),u},as=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=ve(t),a=t.checked,c=s();if(w(c)){let l=Wt(c,i),u=l!==-1;a&&!u?c.push(i):!a&&u&&c.splice(l,1)}else ue(c)?a?c.add(i):c.delete(i):s(ls(t,a))};return t.addEventListener(n,r),o},ve=t=>"_value"in t?t._value:t.value,Mo="trueValue",cs="falseValue",ko="true-value",us="false-value",ls=(t,e)=>{let n=e?Mo:cs;if(n in t)return t[n];let o=e?ko:us;return t.hasAttribute(o)?t.getAttribute(o):e},fs=(t,e)=>{if(Mo in t)return Re(e,t.trueValue);let o=ko;return t.hasAttribute(o)?Re(e,t.getAttribute(o)):Re(e,!0)},ps=(t,e)=>{let n="change",o=()=>{t.removeEventListener(n,r)},r=()=>{let s=e();if(!s)return;let i=ve(t);s(i)};return t.addEventListener(n,r),o},ms=(t,e,n)=>{let o="change",r=()=>{t.removeEventListener(o,s)},s=()=>{let i=e();if(!i)return;let c=ft(n()[1]).number,l=Array.prototype.filter.call(t.options,u=>u.selected).map(u=>c?Co(ve(u)):ve(u));if(t.multiple){let u=i();try{if(Gt(i),ue(u)){u.clear();for(let f of l)u.add(f)}else w(u)?(u.splice(0),u.push(...l)):i(l)}finally{Jt(i),Y(i)}}else i(l[0])};return t.addEventListener(o,s),r};var ds=["stop","prevent","capture","self","once","left","right","middle","passive"],hs=t=>{let e={};if(X(t))return;let n=t.split(",");for(let o of ds)e[o]=n.includes(o);return e},ys=(t,e,n,o,r)=>{var l,u;if(o){let f=e.value(),p=H(o.value()[0]);return W(p)?wn(t,$(p),()=>e.value()[0],(l=r==null?void 0:r.join(","))!=null?l:f[1]):()=>{}}else if(n){let f=e.value();return wn(t,$(n),()=>e.value()[0],(u=r==null?void 0:r.join(","))!=null?u:f[1])}let s=[],i=()=>{s.forEach(f=>f())},a=e.value(),c=a.length;for(let f=0;f<c;++f){let p=a[f];if(K(p)&&(p=p()),I(p))for(let m of Object.entries(p)){let y=m[0],h=()=>{let R=e.value()[f];return K(R)&&(R=R()),R=R[y],K(R)&&(R=R()),R},g=p[y+"_flags"];s.push(wn(t,y,h,g))}else V(2,"r-on",t)}return i},Sn={isLazy:(t,e)=>e===-1&&t%2===0,isLazyKey:(t,e)=>e===0&&!t.endsWith("_flags"),once:!1,collectRefObj:!0,mount:({el:t,parseResult:e,option:n,dynamicOption:o,flags:r})=>ys(t,e,n,o,r)},gs=(t,e)=>{if(t.startsWith("keydown")||t.startsWith("keyup")||t.startsWith("keypress")){e!=null||(e="");let n=[...t.split("."),...e.split(",")];t=n[0];let o=n[1],r=n.includes("ctrl"),s=n.includes("shift"),i=n.includes("alt"),a=n.includes("meta"),c=l=>!(r&&!l.ctrlKey||s&&!l.shiftKey||i&&!l.altKey||a&&!l.metaKey);return o?[t,l=>c(l)?l.key.toUpperCase()===o.toUpperCase():!1]:[t,c]}return[t,n=>!0]},wn=(t,e,n,o)=>{if(X(e))return V(5,"r-on",t),()=>{};let r=hs(o),s=r?{capture:r.capture,passive:r.passive,once:r.once}:void 0,i;[e,i]=gs(e,o);let a=u=>{if(!i(u)||!n&&e==="submit"&&(r!=null&&r.prevent))return;let f=n(u);K(f)&&(f=f(u)),K(f)&&f(u)},c=()=>{t.removeEventListener(e,l,s)},l=u=>{if(!r){a(u);return}try{if(r.left&&u.button!==0||r.middle&&u.button!==1||r.right&&u.button!==2||r.self&&u.target!==t)return;r.stop&&u.stopPropagation(),r.prevent&&u.preventDefault(),a(u)}finally{r.once&&c()}};return t.addEventListener(e,l,s),c};var bs=(t,e,n,o)=>{if(n){o&&o.includes("camel")&&(n=$(n)),tt(t,n,e[0]);return}let r=e.length;for(let s=0;s<r;++s){let i=e[s];if(w(i)){let a=i[0],c=i[1];tt(t,a,c)}else if(I(i))for(let a of Object.entries(i)){let c=a[0],l=a[1];tt(t,c,l)}else{let a=e[s++],c=e[s];tt(t,a,c)}}},Lo={mount:()=>({update:({el:t,values:e,option:n,flags:o})=>{bs(t,e,n,o)}})};function Ts(t){return!!t||t===""}var tt=(t,e,n)=>{if(fe(e)){V(3,":prop",t);return}if(e==="innerHTML"||e==="textContent"){let s=[...t.childNodes];setTimeout(()=>s.forEach(de),1),t[e]=n!=null?n:"";return}let o=t.tagName;if(e==="value"&&o!=="PROGRESS"&&!o.includes("-")){t._value=n;let s=o==="OPTION"?t.getAttribute("value"):t.value,i=n!=null?n:"";s!==i&&(t.value=i),n==null&&t.removeAttribute(e);return}let r=!1;if(n===""||n==null){let s=typeof t[e];s==="boolean"?n=Ts(n):n==null&&s==="string"?(n="",r=!0):s==="number"&&(n=0,r=!0)}try{t[e]=n}catch(s){r||V(4,e,o,n,s)}r&&t.removeAttribute(e)};var Io={once:!0,mount:({el:t,parseResult:e,expr:n})=>{let o=e,r=o.value()[0],s=w(r),i=o.refs[0];return s?r.push(t):i?i==null||i(t):o.context[n]=t,()=>{if(s){let a=r.indexOf(t);a!==-1&&r.splice(a,1)}else i==null||i(null)}}};var xs=(t,e)=>{let n=Oe(t).data,o=n._ord;Qn(o)&&(o=n._ord=t.style.display),!!e[0]?t.style.display=o:t.style.display="none"},Do={mount:()=>({update:({el:t,values:e})=>{xs(t,e)}})};var Cs=(t,e,n)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=n==null?void 0:n[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)Uo(t,s[c],i==null?void 0:i[c])}else Uo(t,s,i)}},Qt={mount:()=>({update:({el:t,values:e,previousValues:n})=>{Cs(t,e,n)}})},Uo=(t,e,n)=>{let o=t.style,r=W(e);if(e&&!r){if(n&&!W(n))for(let s in n)e[s]==null&&Nn(o,s,"");for(let s in e)Nn(o,s,e[s])}else{let s=o.display;if(r?n!==e&&(o.cssText=e):n&&t.removeAttribute("style"),"_ord"in Oe(t).data)return;o.display=s}},Bo=/\s*!important$/;function Nn(t,e,n){if(w(n))n.forEach(o=>{Nn(t,e,o)});else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{let o=Es(t,e);Bo.test(n)?t.setProperty(Xe(o),n.replace(Bo,""),"important"):t[o]=n}}var Po=["Webkit","Moz","ms"],An={};function Es(t,e){let n=An[e];if(n)return n;let o=$(e);if(o!=="filter"&&o in t)return An[e]=o;o=ut(o);for(let r=0;r<Po.length;r++){let s=Po[r]+o;if(s in t)return An[e]=s}return e}var ae=t=>Vo(H(t)),Vo=(t,e=new WeakMap)=>{if(!t||!I(t))return t;if(w(t))return t.map(ae);if(ue(t)){let o=new Set;for(let r of t.keys())o.add(ae(r));return o}if(Ae(t)){let o=new Map;for(let r of t)o.set(ae(r[0]),ae(r[1]));return o}if(e.has(t))return H(e.get(t));let n=yt({},t);e.set(t,n);for(let o of Object.entries(n))n[o[0]]=Vo(H(o[1]),e);return n};var Rs=(t,e)=>{var o;let n=e[0];t.textContent=ue(n)?JSON.stringify(ae([...n])):Ae(n)?JSON.stringify(ae([...n])):I(n)?JSON.stringify(ae(n)):(o=n==null?void 0:n.toString())!=null?o:""},Ho={mount:()=>({update:({el:t,values:e})=>{Rs(t,e)}})};var _o={mount:()=>({update:({el:t,values:e})=>{tt(t,"value",e[0])}})};var Ie=class Ie{constructor(e){d(this,"P",{});d(this,"p",{});d(this,"tt",()=>Object.keys(this.P).filter(e=>e.length===1||!e.startsWith(":")));d(this,"he",new Map);d(this,"_",new Map);d(this,"forGrowThreshold",10);d(this,"globalContext");d(this,"useInterpolation",!0);if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.Et()}static getDefault(){var e;return(e=Ie.Ve)!=null?e:Ie.Ve=new Ie}Et(){let e={},n=globalThis;for(let o of Ie.Rt.split(","))e[o]=n[o];return e.ref=be,e.sref=ie,e.flatten=ae,e}addComponent(...e){for(let n of e){if(!n.defaultName){it.warning("Registered component's default name is not defined",n);continue}this.he.set(ut(n.defaultName),n),this._.set(ut(n.defaultName).toLocaleUpperCase(),n)}}setDirectives(e){this.P={".":Lo,":":Rn,"@":Sn,[`${e}on`]:Sn,[`${e}bind`]:Rn,[`${e}html`]:_t,[`${e}text`]:Ho,[`${e}show`]:Do,[`${e}model`]:Ro,":style":Qt,[`${e}style`]:Qt,[`${e}bind:style`]:Qt,":class":vn,[`${e}bind:class`]:vn,":ref":Io,":value":_o,[`${e}teleport`]:St},this.p={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,context:":context",contextAlias:`${e}context`,bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this.P,this.p)}};d(Ie,"Ve"),d(Ie,"Rt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var le=Ie;var Xt=(t,e)=>{if(!t)return;let o=(e!=null?e:le.getDefault()).p,r=/(\{\{[^]*?\}\}|\[\[[^]*?\]\])/g,s=[{start:"{{",end:"}}"},{start:"[[",end:"]]"}];for(let i of ws(t,o.pre,s))vs(i,o.text,r,s)},vs=(t,e,n,o)=>{var c;let r=t.textContent;if(!r)return;let s=n,i=r.split(s);if(i.length<=1)return;if(((c=t.parentElement)==null?void 0:c.childNodes.length)===1&&i.length===3){let l=i[1],u=jo(l,o);if(u&&X(i[0])&&X(i[2])){let f=t.parentElement;f.setAttribute(e,l.substring(u.start.length,l.length-u.end.length)),f.innerText="";return}}let a=document.createDocumentFragment();for(let l of i){let u=jo(l,o);if(u){let f=document.createElement("span");f.setAttribute(e,l.substring(u.start.length,l.length-u.end.length)),a.appendChild(f)}else a.appendChild(document.createTextNode(l))}t.replaceWith(a)},ws=(t,e,n)=>{let o=[],r=s=>{var i;if(s.nodeType===Node.TEXT_NODE)n.some(a=>{var c;return(c=s.textContent)==null?void 0:c.includes(a.start)})&&o.push(s);else{if((i=s==null?void 0:s.hasAttribute)!=null&&i.call(s,e))return;for(let a of Ee(s))r(a)}};return r(t),o},jo=(t,e)=>e.find(n=>t.startsWith(n.start)&&t.endsWith(n.end));var Ss=9,As=10,Ns=13,Os=32,we=46,Yt=44,Ms=39,ks=34,Zt=40,nt=41,en=91,On=93,Mn=63,Ls=59,$o=58,qo=123,tn=125,_e=43,nn=45,kn=96,Fo=47,Ln=92,zo=new Set([2,3]),Xo={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},Is=Kn(yt({"=>":2},Xo),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),Yo=Object.keys(Xo),Ds=new Set(Yo),Dn=new Set(["=>"]);Yo.forEach(t=>Dn.add(t));var Ko={true:!0,false:!1,null:null},Us="this",ot="Expected ",je="Unexpected ",Bn="Unclosed ",Bs=ot+":",Wo=ot+"expression",Ps="missing }",Vs=je+"object property",Hs=Bn+"(",Go=ot+"comma",Jo=je+"token ",_s=je+"period",In=ot+"expression after ",js="missing unaryOp argument",$s=Bn+"[",qs=ot+"exponent (",Fs="Variable names cannot start with a number (",zs=Bn+'quote after "',pt=t=>t>=48&&t<=57,Qo=t=>Is[t],Un=class{constructor(e){d(this,"u");d(this,"e");this.u=e,this.e=0}get B(){return this.u.charAt(this.e)}get y(){return this.u.charCodeAt(this.e)}f(e){return this.u.charCodeAt(this.e)===e}$(e){return e>=65&&e<=90||e>=97&&e<=122||e===36||e===95||e>=128}se(e){return this.$(e)||pt(e)}r(e){return new Error(`${e} at character ${this.e}`)}h(){let e=this.y,n=this.u,o=this.e;for(;e===Os||e===Ss||e===As||e===Ns;)e=n.charCodeAt(++o);this.e=o}parse(){let e=this.ie();return e.length===1?e[0]:{type:0,body:e}}ie(e){let n=[];for(;this.e<this.u.length;){let o=this.y;if(o===Ls||o===Yt)this.e++;else{let r=this.S();if(r)n.push(r);else if(this.e<this.u.length){if(o===e)break;throw this.r(je+'"'+this.B+'"')}}}return n}S(){var n;let e=(n=this.Ct())!=null?n:this.Ie();return this.h(),this.vt(e)}ae(){this.h();let e=this.u,n=this.e,o=e.charCodeAt(n),r=e.charCodeAt(n+1),s=e.charCodeAt(n+2),i=e.charCodeAt(n+3);if(isNaN(o))return!1;let a=!1,c=0;return o===62&&r===62&&s===62&&i===61?(a=">>>=",c=4):o===61&&r===61&&s===61?(a="===",c=3):o===33&&r===61&&s===61?(a="!==",c=3):o===62&&r===62&&s===62?(a=">>>",c=3):o===60&&r===60&&s===61?(a="<<=",c=3):o===62&&r===62&&s===61?(a=">>=",c=3):o===42&&r===42&&s===61?(a="**=",c=3):o===61&&r===62?(a="=>",c=2):o===124&&r===124?(a="||",c=2):o===63&&r===63?(a="??",c=2):o===38&&r===38?(a="&&",c=2):o===61&&r===61?(a="==",c=2):o===33&&r===61?(a="!=",c=2):o===60&&r===61?(a="<=",c=2):o===62&&r===61?(a=">=",c=2):o===60&&r===60?(a="<<",c=2):o===62&&r===62?(a=">>",c=2):o===43&&r===61?(a="+=",c=2):o===45&&r===61?(a="-=",c=2):o===42&&r===61?(a="*=",c=2):o===47&&r===61?(a="/=",c=2):o===37&&r===61?(a="%=",c=2):o===38&&r===61?(a="&=",c=2):o===94&&r===61?(a="^=",c=2):o===124&&r===61?(a="|=",c=2):o===42&&r===42?(a="**",c=2):o===105&&r===110?this.se(e.charCodeAt(n+2))||(a="in",c=2):o===61?(a="=",c=1):o===124?(a="|",c=1):o===94?(a="^",c=1):o===38?(a="&",c=1):o===60?(a="<",c=1):o===62?(a=">",c=1):o===43?(a="+",c=1):o===45?(a="-",c=1):o===42?(a="*",c=1):o===47?(a="/",c=1):o===37&&(a="%",c=1),a?(this.e+=c,a):!1}Ie(){let e,n,o,r,s,i,a,c;if(s=this.q(),!s||(n=this.ae(),!n))return s;if(r={value:n,prec:Qo(n),right_a:Dn.has(n)},i=this.q(),!i)throw this.r(In+n);let l=[s,r,i];for(;n=this.ae();){o=Qo(n),r={value:n,prec:o,right_a:Dn.has(n)},c=n;let u=f=>r.right_a&&f.right_a?o>f.prec:o<=f.prec;for(;l.length>2&&u(l[l.length-2]);)i=l.pop(),n=l.pop().value,s=l.pop(),e=this.De(n,s,i),l.push(e);if(e=this.q(),!e)throw this.r(In+c);l.push(r,e)}for(a=l.length-1,e=l[a];a>1;)e=this.De(l[a-1].value,l[a-2],e),a-=2;return e}q(){let e;if(this.h(),e=this.wt(),e)return this.ce(e);let n=this.y;if(pt(n)||n===we)return this.St();if(n===Ms||n===ks)e=this.At();else if(n===en)e=this.Nt();else{let o=this.Ot();if(o){let r=this.q();if(!r)throw this.r(js);return this.ce({type:7,operator:o,argument:r})}this.$(n)?(e=this.ue(),e.name in Ko?e={type:4,value:Ko[e.name],raw:e.name}:e.name===Us&&(e={type:5})):n===Zt&&(e=this.kt())}return e?(e=this.F(e),this.ce(e)):!1}De(e,n,o){if(e==="=>"){let r=n.type===1?n.expressions:[n];return{type:15,params:r,body:o}}return Ds.has(e)?{type:16,operator:e,left:n,right:o}:{type:8,operator:e,left:n,right:o}}wt(){let e={node:!1};return this.Mt(e),e.node||(this.Lt(e),e.node)||(this.Vt(e),e.node)||(this.Ue(e),e.node)||this.It(e),e.node}ce(e){let n={node:e};return this.Dt(n),this.Ut(n),this.Pt(n),n.node}Ot(){let e=this.u,n=this.e,o=e.charCodeAt(n),r=e.charCodeAt(n+1),s=e.charCodeAt(n+2),i=e.charCodeAt(n+3);return o===nn?(this.e++,"-"):o===33?(this.e++,"!"):o===126?(this.e++,"~"):o===_e?(this.e++,"+"):o===110&&r===101&&s===119&&!this.se(i)?(this.e+=3,"new"):!1}Ct(){let e={};return this.Bt(e),e.node}vt(e){let n={node:e};return this.Ht(n),n.node}F(e){this.h();let n=this.y;for(;n===we||n===en||n===Zt||n===Mn;){let o;if(n===Mn){if(this.u.charCodeAt(this.e+1)!==we)break;o=!0,this.e+=2,this.h(),n=this.y}if(this.e++,n===en){if(e={type:3,computed:!0,object:e,property:this.S()},this.h(),n=this.y,n!==On)throw this.r($s);this.e++}else n===Zt?e={type:6,arguments:this.Pe(nt),callee:e}:(o&&this.e--,this.h(),e={type:3,computed:!1,object:e,property:this.ue()});o&&(e.optional=!0),this.h(),n=this.y}return e}St(){let e=this.u,n=this.e,o=n;for(;pt(e.charCodeAt(o));)o++;if(e.charCodeAt(o)===we)for(o++;pt(e.charCodeAt(o));)o++;let r=e.charCodeAt(o);if(r===101||r===69){o++;let a=e.charCodeAt(o);(a===_e||a===nn)&&o++;let c=o;for(;pt(e.charCodeAt(o));)o++;if(c===o){this.e=o;let l=e.slice(n,o);throw this.r(qs+l+this.B+")")}}this.e=o;let s=e.slice(n,o),i=e.charCodeAt(o);if(this.$(i))throw this.r(Fs+s+this.B+")");if(i===we||s.length===1&&s.charCodeAt(0)===we)throw this.r(_s);return{type:4,value:parseFloat(s),raw:s}}At(){let e=this.u,n=e.length,o=this.e,r=e.charCodeAt(this.e++),s=this.e,i=s,a=[],c=!1,l=!1;for(;s<n;){let f=e.charCodeAt(s);if(f===r){l=!0,this.e=s+1;break}if(f===Ln){c||(c=!0),a.push(e.slice(i,s));let p=e.charCodeAt(s+1);a.push(this.Be(p)),s+=2,i=s}else s++}let u=c?a.join("")+e.slice(i,l?s:n):e.slice(i,l?s:n);if(!l)throw this.e=s,this.r(zs+u+'"');return{type:4,value:u,raw:e.substring(o,this.e)}}Be(e){switch(e){case 110:return`
|
|
2
|
-
`;case 114:return"\r";case 116:return" ";case 98:return"\b";case 102:return"\f";case 118:return"\v";default:return isNaN(e)?"":String.fromCharCode(e)}}ue(){let e=this.y,n=this.e;if(this.$(e))this.e++;else throw this.r(je+this.B);for(;this.e<this.u.length&&(e=this.y,this.se(e));)this.e++;return{type:2,name:this.u.slice(n,this.e)}}Pe(e){let n=[],o=!1,r=0;for(;this.e<this.u.length;){this.h();let s=this.y;if(s===e){if(o=!0,this.e++,e===nt&&r&&r>=n.length)throw this.r(Jo+String.fromCharCode(e));break}else if(s===Yt){if(this.e++,r++,r!==n.length){if(e===nt)throw this.r(Jo+",");for(let i=n.length;i<r;i++)n.push(null)}}else{if(n.length!==r&&r!==0)throw this.r(Go);{let i=this.S();if(!i||i.type===0)throw this.r(Go);n.push(i)}}}if(!o)throw this.r(ot+String.fromCharCode(e));return n}kt(){this.e++;let e=this.ie(nt);if(this.f(nt))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.r(Hs)}Nt(){return this.e++,{type:9,elements:this.Pe(On)}}Mt(e){if(this.f(qo)){this.e++;let n=[];for(;!isNaN(this.y);){if(this.h(),this.f(tn)){this.e++,e.node=this.F({type:10,properties:n});return}let o=this.S();if(!o)break;if(this.h(),o.type===2&&(this.f(Yt)||this.f(tn)))n.push({type:12,computed:!1,key:o,value:o,shorthand:!0});else if(this.f($o)){this.e++;let r=this.S();if(!r)throw this.r(Vs);let s=o.type===9;n.push({type:12,computed:s,key:s?o.elements[0]:o,value:r,shorthand:!1}),this.h()}else n.push(o);this.f(Yt)&&this.e++}throw this.r(Ps)}}Lt(e){let n=this.y;if((n===_e||n===nn)&&n===this.u.charCodeAt(this.e+1)){this.e+=2;let o=e.node={type:13,operator:n===_e?"++":"--",argument:this.F(this.ue()),prefix:!0};if(!o.argument||!zo.has(o.argument.type))throw this.r(je+o.operator)}}Ut(e){let n=e.node,o=this.y;if((o===_e||o===nn)&&o===this.u.charCodeAt(this.e+1)){if(!zo.has(n.type))throw this.r(je+(o===_e?"++":"--"));this.e+=2,e.node={type:13,operator:o===_e?"++":"--",argument:n,prefix:!1}}}Vt(e){this.u.charCodeAt(this.e)===we&&this.u.charCodeAt(this.e+1)===we&&this.u.charCodeAt(this.e+2)===we&&(this.e+=3,e.node={type:14,argument:this.S()})}Ht(e){if(e.node&&this.f(Mn)){this.e++;let n=e.node,o=this.S();if(!o)throw this.r(Wo);if(this.h(),this.f($o)){this.e++;let r=this.S();if(!r)throw this.r(Wo);e.node={type:11,test:n,consequent:o,alternate:r}}else throw this.r(Bs)}}Bt(e){if(this.h(),this.f(Zt)){let n=this.e;if(this.e++,this.h(),this.f(nt)){this.e++;let o=this.ae();if(o==="=>"){let r=this.Ie();if(!r)throw this.r(In+o);e.node={type:15,params:null,body:r};return}}this.e=n}}Pt(e){let n=e.node,o=n.type;(o===2||o===3)&&this.f(kn)&&(e.node={type:17,tag:n,quasi:this.Ue(e)})}Ue(e){if(!this.f(kn))return;let n=this.u,o=n.length,r={type:19,quasis:[],expressions:[]},s=++this.e,i=[],a=[],c=!1,l=u=>{if(!c){let m=n.slice(s,this.e);return r.quasis.push({type:18,value:{raw:m,cooked:m},tail:u})}i.push(n.slice(s,this.e)),a.push(n.slice(s,this.e));let f=i.join(""),p=a.join("");return i.length=0,a.length=0,c=!1,r.quasis.push({type:18,value:{raw:f,cooked:p},tail:u})};for(;this.e<o;){let u=n.charCodeAt(this.e);if(u===kn)return l(!0),this.e+=1,e.node=r,r;if(u===36&&n.charCodeAt(this.e+1)===qo){if(l(!1),this.e+=2,r.expressions.push(...this.ie(tn)),!this.f(tn))throw this.r("unclosed ${");this.e+=1,s=this.e}else if(u===Ln){c||(c=!0),i.push(n.slice(s,this.e)),a.push(n.slice(s,this.e));let f=n.charCodeAt(this.e+1);i.push(n.slice(this.e,this.e+2)),a.push(this.Be(f)),this.e+=2,s=this.e}else this.e+=1}throw this.r("Unclosed `")}Dt(e){let n=e.node;if(!n||n.operator!=="new"||!n.argument)return;if(!n.argument||![6,3].includes(n.argument.type))throw this.r("Expected new function()");e.node=n.argument;let o=e.node;for(;o.type===3||o.type===6&&o.callee.type===3;)o=o.type===3?o.object:o.callee.object;o.type=20}It(e){if(!this.f(Fo))return;let n=++this.e,o=!1;for(;this.e<this.u.length;){if(this.y===Fo&&!o){let r=this.u.slice(n,this.e),s="";for(;++this.e<this.u.length;){let a=this.y;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.B;else break}let i;try{i=new RegExp(r,s)}catch(a){throw this.r(a.message)}return e.node={type:4,value:i,raw:this.u.slice(n-1,this.e)},e.node=this.F(e.node),e.node}this.f(en)?o=!0:o&&this.f(On)&&(o=!1),this.e+=this.f(Ln)?2:1}throw this.r("Unclosed Regex")}},Zo=t=>new Un(t).parse();var Ks={"=>":(t,e)=>{},"=":(t,e)=>{},"*=":(t,e)=>{},"**=":(t,e)=>{},"/=":(t,e)=>{},"%=":(t,e)=>{},"+=":(t,e)=>{},"-=":(t,e)=>{},"<<=":(t,e)=>{},">>=":(t,e)=>{},">>>=":(t,e)=>{},"&=":(t,e)=>{},"^=":(t,e)=>{},"|=":(t,e)=>{},"||":(t,e)=>t()||e(),"??":(t,e)=>{var n;return(n=t())!=null?n:e()},"&&":(t,e)=>t()&&e(),"|":(t,e)=>t|e,"^":(t,e)=>t^e,"&":(t,e)=>t&e,"==":(t,e)=>t==e,"!=":(t,e)=>t!=e,"===":(t,e)=>t===e,"!==":(t,e)=>t!==e,"<":(t,e)=>t<e,">":(t,e)=>t>e,"<=":(t,e)=>t<=e,">=":(t,e)=>t>=e,in:(t,e)=>t in e,"<<":(t,e)=>t<<e,">>":(t,e)=>t>>e,">>>":(t,e)=>t>>>e,"+":(t,e)=>t+e,"-":(t,e)=>t-e,"*":(t,e)=>t*e,"/":(t,e)=>t/e,"%":(t,e)=>t%e,"**":(t,e)=>ht(t,e)},Ws={"-":t=>-t,"+":t=>+t,"!":t=>!t,"~":t=>~t,new:t=>t},or=t=>{if(!(t!=null&&t.some(nr)))return t;let e=[];return t.forEach(n=>nr(n)?e.push(...n):e.push(n)),e},er=(...t)=>or(t),Pn=(t,e)=>{if(!t)return e;let n=Object.create(e!=null?e:{});return n.$event=t,n},Gs={"++":(t,e)=>{let n=t[e];if(C(n)){let o=n();return n(++o),o}return++t[e]},"--":(t,e)=>{let n=t[e];if(C(n)){let o=n();return n(--o),o}return--t[e]}},Js={"++":(t,e)=>{let n=t[e];if(C(n)){let o=n();return n(o+1),o}return t[e]++},"--":(t,e)=>{let n=t[e];if(C(n)){let o=n();return n(o-1),o}return t[e]--}},tr={"=":(t,e,n)=>{let o=t[e];return C(o)?o(n):t[e]=n},"+=":(t,e,n)=>{let o=t[e];return C(o)?o(o()+n):t[e]+=n},"-=":(t,e,n)=>{let o=t[e];return C(o)?o(o()-n):t[e]-=n},"*=":(t,e,n)=>{let o=t[e];return C(o)?o(o()*n):t[e]*=n},"/=":(t,e,n)=>{let o=t[e];return C(o)?o(o()/n):t[e]/=n},"%=":(t,e,n)=>{let o=t[e];return C(o)?o(o()%n):t[e]%=n},"**=":(t,e,n)=>{let o=t[e];return C(o)?o(ht(o(),n)):t[e]=ht(t[e],n)},"<<=":(t,e,n)=>{let o=t[e];return C(o)?o(o()<<n):t[e]<<=n},">>=":(t,e,n)=>{let o=t[e];return C(o)?o(o()>>n):t[e]>>=n},">>>=":(t,e,n)=>{let o=t[e];return C(o)?o(o()>>>n):t[e]>>>=n},"|=":(t,e,n)=>{let o=t[e];return C(o)?o(o()|n):t[e]|=n},"&=":(t,e,n)=>{let o=t[e];return C(o)?o(o()&n):t[e]&=n},"^=":(t,e,n)=>{let o=t[e];return C(o)?o(o()^n):t[e]^=n}},on=(t,e)=>K(t)?t.bind(e):t,Vn=class{constructor(e,n,o,r,s){d(this,"l");d(this,"He");d(this,"_e");d(this,"je");d(this,"A");d(this,"$e");d(this,"qe");this.l=w(e)?e:[e],this.He=n,this._e=o,this.je=r,this.qe=!!s}Fe(e,n){if(n&&e in n)return n;for(let o of this.l)if(e in o)return o}2(e,n,o){let r=e.name;if(r==="$root")return this.l[this.l.length-1];if(r==="$parent")return this.l[1];if(r==="$ctx")return[...this.l];if(o&&r in o)return this.A=o[r],on(H(o[r]),o);for(let i of this.l)if(r in i)return this.A=i[r],on(H(i[r]),i);let s=this.He;if(s&&r in s)return this.A=s[r],on(H(s[r]),s)}5(e,n,o){return this.l[0]}0(e,n,o){return this.Ke(n,o,er,...e.body)}1(e,n,o){return this.C(n,o,(...r)=>r.pop(),...e.expressions)}3(e,n,o){let{obj:r,key:s}=this.pe(e,n,o),i=r==null?void 0:r[s];return this.A=i,on(H(i),r)}4(e,n,o){return e.value}6(e,n,o){let r=(i,...a)=>K(i)?i(...or(a)):i,s=this.C(++n,o,r,e.callee,...e.arguments);return this.A=s,s}7(e,n,o){return this.C(n,o,Ws[e.operator],e.argument)}8(e,n,o){let r=Ks[e.operator];switch(e.operator){case"||":case"&&":case"??":return r(()=>this.g(e.left,n,o),()=>this.g(e.right,n,o))}return this.C(n,o,r,e.left,e.right)}9(e,n,o){return this.Ke(++n,o,er,...e.elements)}10(e,n,o){let r={},s=(...i)=>{i.forEach(a=>{Object.assign(r,a)})};return this.C(++n,o,s,...e.properties),r}11(e,n,o){return this.C(n,o,r=>this.g(r?e.consequent:e.alternate,n,o),e.test)}12(e,n,o){var u;let r={},s=f=>(f==null?void 0:f.type)!==15,i=(u=this.je)!=null?u:()=>!1,a=n===0&&this.qe,c=f=>this.ze(a,e.key,n,Pn(f,o)),l=f=>this.ze(a,e.value,n,Pn(f,o));if(e.shorthand){let f=e.key.name;r[f]=s(e.key)&&i(f,n)?c:c()}else if(e.computed){let f=H(c());r[f]=s(e.value)&&i(f,n)?l:l()}else{let f=e.key.type===4?e.key.value:e.key.name;r[f]=s(e.value)&&i(f,n)?()=>l:l()}return r}pe(e,n,o){let r=this.g(e.object,n,o),s=e.computed?this.g(e.property,n,o):e.property.name;return{obj:r,key:s}}13(e,n,o){let r=e.argument,s=e.operator,i=e.prefix?Gs:Js;if(r.type===2){let a=r.name,c=this.Fe(a,o);return fe(c)?void 0:i[s](c,a)}if(r.type===3){let{obj:a,key:c}=this.pe(r,n,o);return i[s](a,c)}}16(e,n,o){let r=e.left,s=e.operator;if(r.type===2){let i=r.name,a=this.Fe(i,o);if(fe(a))return;let c=this.g(e.right,n,o);return tr[s](a,i,c)}if(r.type===3){let{obj:i,key:a}=this.pe(r,n,o),c=this.g(e.right,n,o);return tr[s](i,a,c)}}14(e,n,o){let r=this.g(e.argument,n,o);return w(r)&&(r.s=rr),r}17(e,n,o){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},n,o)}19(e,n,o){let r=(...s)=>s.reduce((i,a,c)=>i+=a+e.quasis[c+1].value.cooked,e.quasis[0].value.cooked);return this.C(n,o,r,...e.expressions)}18(e,n,o){return e.value.cooked}20(e,n,o){let r=(s,...i)=>new s(...i);return this.C(n,o,r,e.callee,...e.arguments)}15(e,n,o){return(...r)=>{let s=Object.create(o!=null?o:{}),i=e.params;if(i){let a=0;for(let c of i)s[c.name]=r[a++]}return this.g(e.body,n,s)}}g(e,n,o){let r=H(this[e.type](e,n,o));return this.$e=e.type,r}ze(e,n,o,r){let s=this.g(n,o,r);return e&&this.We()?this.A:s}We(){let e=this.$e;return(e===2||e===3||e===6)&&C(this.A)}eval(e,n){let{value:o,refs:r}=Lt(()=>this.g(e,-1,n)),s={value:o,refs:r};return this.We()&&(s.ref=this.A),s}C(e,n,o,...r){let s=r.map(i=>i&&this.g(i,e,n));return o(...s)}Ke(e,n,o,...r){let s=this._e;if(!s)return this.C(e,n,o,...r);let i=r.map((a,c)=>a&&(a.type!==15&&s(c,e)?l=>this.g(a,e,Pn(l,n)):this.g(a,e,n)));return o(...i)}},rr=Symbol("s"),nr=t=>(t==null?void 0:t.s)===rr,sr=(t,e,n,o,r,s,i)=>new Vn(e,n,o,r,i).eval(t,s);var ir={},ar=t=>!!t,rn=class{constructor(e,n){d(this,"l");d(this,"o");d(this,"Ge",[]);this.l=e,this.o=n}v(e){this.l=[e,...this.l]}J(){return this.l.map(n=>n.components).filter(ar).reverse().reduce((n,o)=>{for(let[r,s]of Object.entries(o))n[r.toUpperCase()]=s;return n},{})}et(){let e=[],n=new Set,o=this.l.map(r=>r.components).filter(ar).reverse();for(let r of o)for(let s of Object.keys(r))n.has(s)||(n.add(s),e.push(s));return e}k(e,n,o,r,s){var R;let i=[],a=[],c=new Set,l=()=>{for(let E=0;E<a.length;++E)a[E]();a.length=0},p={value:()=>i,stop:()=>{l(),c.clear()},subscribe:(E,D)=>(c.add(E),D&&E(i),()=>{c.delete(E)}),refs:[],context:this.l[0]};if(X(e))return p;let m=this.o.globalContext,y=[],h=new Set,g=(E,D,G,M)=>{try{let _=sr(E,D,m,n,o,M,r);return G&&_.refs.length>0&&y.push(..._.refs),{value:_.value,refs:_.refs,ref:_.ref}}catch(_){V(6,`evaluation error: ${e}`,_)}return{value:void 0,refs:[]}};try{let E=(R=ir[e])!=null?R:Zo("["+e+"]");ir[e]=E;let D=this.l.slice(),G=E.elements,M=G.length,_=new Array(M);p.refs=_;let ce=()=>{y.length=0,s||(h.clear(),l());let ee=new Array(M);for(let U=0;U<M;++U){let b=G[U];if(n!=null&&n(U,-1)){ee[U]=J=>g(b,D,!1,{$event:J}).value;continue}let A=g(b,D,!0);ee[U]=A.value,_[U]=A.ref}if(!s)for(let U of y)h.has(U)||(h.add(U),a.push(se(U,ce)));if(i=ee,c.size!==0)for(let U of c)c.has(U)&&U(i)};ce()}catch(E){V(6,`parse error: ${e}`,E)}return p}M(){return this.l.slice()}oe(e){this.Ge.push(this.l),this.l=e}E(e,n){try{this.oe(e),n()}finally{this._t()}}_t(){var e;this.l=(e=this.Ge.pop())!=null?e:[]}};var cr=t=>{let e=t.charCodeAt(0);return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122||t==="-"||t==="_"||t===":"},Qs=(t,e)=>{let n="";for(let o=e;o<t.length;++o){let r=t[o];if(n){r===n&&(n="");continue}if(r==='"'||r==="'"){n=r;continue}if(r===">")return o}return-1},Xs=(t,e)=>{let n=e?2:1;for(;n<t.length&&(t[n]===" "||t[n]===`
|
|
3
|
-
`);)++
|
|
1
|
+
"use strict";var dt=Object.defineProperty,vr=Object.defineProperties,wr=Object.getOwnPropertyDescriptor,Sr=Object.getOwnPropertyDescriptors,Ar=Object.getOwnPropertyNames,zn=Object.getOwnPropertySymbols;var Kn=Object.prototype.hasOwnProperty,Nr=Object.prototype.propertyIsEnumerable;var ht=Math.pow,cn=(n,e,t)=>e in n?dt(n,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):n[e]=t,yt=(n,e)=>{for(var t in e||(e={}))Kn.call(e,t)&&cn(n,t,e[t]);if(zn)for(var t of zn(e))Nr.call(e,t)&&cn(n,t,e[t]);return n},Wn=(n,e)=>vr(n,Sr(e));var Or=(n,e)=>{for(var t in e)dt(n,t,{get:e[t],enumerable:!0})},Mr=(n,e,t,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Ar(e))!Kn.call(n,r)&&r!==t&&dt(n,r,{get:()=>e[r],enumerable:!(o=wr(e,r))||o.enumerable});return n};var kr=n=>Mr(dt({},"__esModule",{value:!0}),n);var d=(n,e,t)=>cn(n,typeof e!="symbol"?e+"":e,t);var Gn=(n,e,t)=>new Promise((o,r)=>{var s=c=>{try{a(t.next(c))}catch(l){r(l)}},i=c=>{try{a(t.throw(c))}catch(l){r(l)}},a=c=>c.done?o(c.value):Promise.resolve(c.value).then(s,i);a((t=t.apply(n,e)).next())});var ai={};Or(ai,{ComponentHead:()=>We,ContextRegistry:()=>an,RegorConfig:()=>le,addUnbinder:()=>q,batch:()=>Rr,collectRefs:()=>Lt,computeMany:()=>yr,computeRef:()=>gr,computed:()=>hr,createApp:()=>pr,defineComponent:()=>mr,drainUnbind:()=>Qn,endBatch:()=>Fn,entangle:()=>Ye,flatten:()=>ae,getBindData:()=>Oe,html:()=>$n,isDeepRef:()=>Ve,isRaw:()=>Ze,isRef:()=>C,markRaw:()=>br,observe:()=>se,observeMany:()=>Cr,observerCount:()=>Er,onMounted:()=>dr,onUnmounted:()=>ne,pause:()=>Gt,persist:()=>Tr,raw:()=>xr,ref:()=>be,removeNode:()=>z,resume:()=>Jt,silence:()=>kt,sref:()=>ie,startBatch:()=>qn,toFragment:()=>$e,toJsonTemplate:()=>rt,trigger:()=>Y,unbind:()=>de,unref:()=>H,useScope:()=>Nt,warningHandler:()=>it,watchEffect:()=>He});module.exports=kr(ai);var ze=Symbol(":regor");var de=n=>{let e=[n];for(let t=0;t<e.length;++t){let o=e[t];Lr(o);for(let r=o.lastChild;r!=null;r=r.previousSibling)e.push(r)}},Lr=n=>{let e=n[ze];if(!e)return;let t=e.unbinders;for(let o=0;o<t.length;++o)t[o]();t.length=0,n[ze]=void 0};var Ke=[],gt=!1,bt,Jn=()=>{if(gt=!1,bt=void 0,Ke.length!==0){for(let n=0;n<Ke.length;++n)de(Ke[n]);Ke.length=0}},z=n=>{n.remove(),Ke.push(n),gt||(gt=!0,bt=setTimeout(Jn,1))},Qn=()=>Gn(null,null,function*(){Ke.length===0&&!gt||(bt&&clearTimeout(bt),Jn())});var K=n=>typeof n=="function",W=n=>typeof n=="string",Xn=n=>typeof n=="undefined",fe=n=>n==null||typeof n=="undefined",X=n=>typeof n!="string"||!(n!=null&&n.trim()),Ir=Object.prototype.toString,un=n=>Ir.call(n),Ae=n=>un(n)==="[object Map]",ue=n=>un(n)==="[object Set]",ln=n=>un(n)==="[object Date]",st=n=>typeof n=="symbol",w=Array.isArray,I=n=>n!==null&&typeof n=="object";var Yn={0:"createApp can't find root element. You must define either a valid `selector` or an `element`. Example: createApp({}, {selector: '#app', html: '...'})",1:n=>`Component template cannot be found. selector: ${n} .`,2:"Use composables in scope. usage: useScope(() => new MyApp()).",3:n=>`${n} requires ref source argument`,4:"computed is readonly.",5:"persist requires a string key."},j=(n,...e)=>{let t=Yn[n];return new Error(K(t)?t.call(Yn,...e):t)};var Tt=[],Zn=()=>{let n={onMounted:[],onUnmounted:[]};return Tt.push(n),n},Ue=n=>{let e=Tt[Tt.length-1];if(!e&&!n)throw j(2);return e},eo=n=>{let e=Ue();return n&&pn(n),Tt.pop(),e},fn=Symbol("csp"),pn=n=>{let e=n,t=e[fn];if(t){let o=Ue();if(t===o)return;o.onMounted.length>0&&t.onMounted.push(...o.onMounted),o.onUnmounted.length>0&&t.onUnmounted.push(...o.onUnmounted);return}e[fn]=Ue()},xt=n=>n[fn];var Ne=n=>{var t,o;let e=(t=xt(n))==null?void 0:t.onUnmounted;e==null||e.forEach(r=>{r()}),(o=n.unmounted)==null||o.call(n)};var We=class{constructor(e,t,o,r,s){d(this,"props");d(this,"start");d(this,"end");d(this,"ctx");d(this,"autoProps",!0);d(this,"entangle",!0);d(this,"enableSwitch",!1);d(this,"onAutoPropsAssigned");d(this,"le");d(this,"emit",(e,t)=>{this.le.dispatchEvent(new CustomEvent(e,{detail:t}))});this.props=e,this.le=t,this.ctx=o,this.start=r,this.end=s}findContext(e,t=0){var r;if(t<0)return;let o=0;for(let s of(r=this.ctx)!=null?r:[])if(s instanceof e){if(o===t)return s;++o}}requireContext(e,t=0){let o=this.findContext(e,t);if(o!==void 0)return o;throw new Error(`${e} was not found in the context stack at occurrence ${t}.`)}unmount(){let e=this.start.nextSibling,t=this.end;for(;e&&e!==t;)z(e),e=e.nextSibling;for(let o of this.ctx)Ne(o)}};var Oe=n=>{let e=n,t=e[ze];if(t)return t;let o={unbinders:[],data:{}};return e[ze]=o,o};var q=(n,e)=>{Oe(n).unbinders.push(e)};var to={8:n=>`Model binding requires a ref at ${n.outerHTML}`,7:n=>`Model binding is not supported on ${n.tagName} element at ${n.outerHTML}`,0:(n,e)=>`${n} binding expression is missing at ${e.outerHTML}`,1:(n,e,t)=>`invalid ${n} expression: ${e} at ${t.outerHTML}`,2:(n,e)=>`${n} requires object expression at ${e.outerHTML}`,3:(n,e)=>`${n} binder: key is empty on ${e.outerHTML}.`,4:(n,e,t,o)=>({msg:`Failed setting prop "${n}" on <${e.toLowerCase()}>: value ${t} is invalid.`,args:[o]}),5:(n,e)=>`${n} binding missing event type at ${e.outerHTML}`,6:(n,e)=>({msg:n,args:[e]})},V=(n,...e)=>{let t=to[n],o=K(t)?t.call(to,...e):t,r=it.warning;r&&(W(o)?r(o):r(o,...o.args))},it={warning:console.warn};var Et={},Ct={},no=1,oo=n=>{let e=(no++).toString();return Et[e]=n,Ct[e]=0,e},mn=n=>{Ct[n]+=1},dn=n=>{--Ct[n]===0&&(delete Et[n],delete Ct[n])},ro=n=>Et[n],hn=()=>no!==1&&Object.keys(Et).length>0,at="r-switch",Dr=n=>{let e=n.filter(o=>Be(o)).map(o=>[...o.querySelectorAll("[r-switch]")].map(r=>r.getAttribute(at))),t=new Set;return e.forEach(o=>{o.forEach(r=>r&&t.add(r))}),[...t]},Ge=(n,e)=>{if(!hn())return;let t=Dr(e);t.length!==0&&(t.forEach(mn),q(n,()=>{t.forEach(dn)}))};var Rt=()=>{},yn=(n,e,t,o)=>{let r=[];for(let s of n){let i=s.cloneNode(!0);t.insertBefore(i,o),r.push(i)}ke(e,r)},gn=Symbol("r-if"),so=Symbol("r-else"),io=n=>n[so]===1,vt=class{constructor(e){d(this,"i");d(this,"D");d(this,"K");d(this,"z");d(this,"W");d(this,"T");d(this,"R");this.i=e,this.D=e.o.p.if,this.K=Qe(e.o.p.if),this.z=e.o.p.else,this.W=e.o.p.elseif,this.T=e.o.p.for,this.R=e.o.p.pre}Qe(e,t){let o=e.parentElement;for(;o!==null&&o!==document.documentElement;){if(o.hasAttribute(t))return!0;o=o.parentElement}return!1}N(e){let t=e.hasAttribute(this.D),o=Me(e,this.K);for(let r of o)this.b(r);return t}G(e){return e[gn]?!0:(e[gn]=!0,Me(e,this.K).forEach(t=>t[gn]=!0),!1)}b(e){if(e.hasAttribute(this.R)||this.G(e)||this.Qe(e,this.T))return;let t=e.getAttribute(this.D);if(!t){V(0,this.D,e);return}e.removeAttribute(this.D),this.O(e,t)}U(e,t,o){let r=Je(e),s=e.parentNode,i=document.createComment(`__begin__ :${t}${o!=null?o:""}`);s.insertBefore(i,e),Ge(i,r),r.forEach(c=>{z(c)}),e.remove(),t!=="if"&&(e[so]=1);let a=document.createComment(`__end__ :${t}${o!=null?o:""}`);return s.insertBefore(a,i.nextSibling),{nodes:r,parent:s,commentBegin:i,commentEnd:a}}fe(e,t){if(!e)return[];let o=e.nextElementSibling;if(e.hasAttribute(this.z)){e.removeAttribute(this.z);let{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"else");return[{mount:()=>{yn(r,this.i,s,a)},unmount:()=>{Ce(i,a)},isTrue:()=>!0,isMounted:!1}]}else{let r=e.getAttribute(this.W);if(!r)return[];e.removeAttribute(this.W);let{nodes:s,parent:i,commentBegin:a,commentEnd:c}=this.U(e,"elseif",` => ${r} `),l=this.i.m.k(r),u=l.value,f=this.fe(o,t),p=Rt;return q(a,()=>{l.stop(),p(),p=Rt}),p=l.subscribe(t),[{mount:()=>{yn(s,this.i,i,c)},unmount:()=>{Ce(a,c)},isTrue:()=>!!u()[0],isMounted:!1},...f]}}O(e,t){let o=e.nextElementSibling,{nodes:r,parent:s,commentBegin:i,commentEnd:a}=this.U(e,"if",` => ${t} `),c=this.i.m.k(t),l=c.value,u=!1,f=this.i.m,p=f.M(),m=()=>{f.C(p,()=>{if(l()[0])u||(yn(r,this.i,s,a),u=!0),y.forEach(R=>{R.unmount(),R.isMounted=!1});else{Ce(i,a),u=!1;let R=!1;for(let E of y)!R&&E.isTrue()?(E.isMounted||(E.mount(),E.isMounted=!0),R=!0):(E.unmount(),E.isMounted=!1)}})},y=this.fe(o,m),h=Rt;q(i,()=>{c.stop(),h(),h=Rt}),m(),h=c.subscribe(m)}};var Je=n=>{let e=ye(n)?n.content.childNodes:[n],t=[];for(let o=0;o<e.length;++o){let r=e[o];if(r.nodeType===1){let s=r==null?void 0:r.tagName;if(s==="SCRIPT"||s==="STYLE")continue}t.push(r)}return t},ke=(n,e)=>{for(let t=0;t<e.length;++t){let o=e[t];o.nodeType===Node.ELEMENT_NODE&&(io(o)||n.j(o))}},Me=(n,e)=>{var o;let t=n.querySelectorAll(e);return(o=n.matches)!=null&&o.call(n,e)?[n,...t]:t},ye=n=>n instanceof HTMLTemplateElement,Be=n=>n.nodeType===Node.ELEMENT_NODE,ct=n=>n.nodeType===Node.ELEMENT_NODE,ao=n=>n instanceof HTMLSlotElement,Ee=n=>ye(n)?n.content.childNodes:n.childNodes,Ce=(n,e)=>{let t=n.nextSibling;for(;t!=null&&t!==e;){let o=t.nextSibling;z(t),t=o}},co=function(){return this()},Ur=function(n){return this(n)},Br=()=>{throw new Error("value is readonly.")},Pr={get:co,set:Ur,enumerable:!0,configurable:!1},Vr={get:co,set:Br,enumerable:!0,configurable:!1},Le=(n,e)=>{Object.defineProperty(n,"value",e?Vr:Pr)},uo=(n,e)=>{if(!n)return!1;if(n.startsWith("["))return n.substring(1,n.length-1);let t=e.length;return n.startsWith(e)?n.substring(t,n.length-t):!1},Qe=n=>`[${CSS.escape(n)}]`,wt=(n,e)=>(n.startsWith("@")&&(n=e.p.on+":"+n.slice(1)),n.includes("[")&&(n=n.replace(/[[\]]/g,e.p.dynamic)),n),bn=n=>{let e=Object.create(null);return t=>e[t]||(e[t]=n(t))},Hr=/-(\w)/g,$=bn(n=>n&&n.replace(Hr,(e,t)=>t?t.toUpperCase():"")),_r=/\B([A-Z])/g,Xe=bn(n=>n&&n.replace(_r,"-$1").toLowerCase()),ut=bn(n=>n&&n.charAt(0).toUpperCase()+n.slice(1));var St={mount:()=>{}};var At=n=>{var t,o;let e=(t=xt(n))==null?void 0:t.onMounted;e==null||e.forEach(r=>{r()}),(o=n.mounted)==null||o.call(n)};var Tn=Symbol("scope"),Nt=n=>{try{Zn();let e=n();pn(e);let t={context:e,unmount:()=>Ne(e),[Tn]:1};return t[Tn]=1,t}finally{eo()}},lo=n=>I(n)?Tn in n:!1;var Ot=Symbol("ref"),Z=Symbol("sref"),Mt=Symbol("raw");var C=n=>n!=null&&n[Z]===1;var xn={collectRefObj:!0,mount:({parseResult:n})=>({update:({values:e})=>{let t=n.context,o=e[0];if(I(o))for(let r of Object.entries(o)){let s=r[0],i=r[1],a=t[s];a!==i&&(C(a)?a(i):t[s]=i)}}})};var ne=(n,e)=>{var t;(t=Ue(e))==null||t.onUnmounted.push(n)};var se=(n,e,t,o=!0)=>{if(!C(n))throw j(3,"observe");t&&e(n());let s=n(void 0,void 0,0,e);return o&&ne(s,!0),s};var Ye=(n,e)=>{if(n===e)return()=>{};let t=se(n,r=>e(r)),o=se(e,r=>n(r));return e(n()),()=>{t(),o()}};var Ze=n=>!!n&&n[Mt]===1;var Ve=n=>(n==null?void 0:n[Ot])===1;var pe=[],fo=n=>{var e;pe.length!==0&&((e=pe[pe.length-1])==null||e.add(n))},He=n=>{if(!n)return()=>{};let e={stop:()=>{}};return jr(n,e),ne(()=>e.stop(),!0),e.stop},jr=(n,e)=>{if(!n)return;let t=[],o=!1,r=()=>{for(let s of t)s();t=[],o=!0};e.stop=r;try{let s=new Set;if(pe.push(s),n(i=>t.push(i)),o)return;for(let i of[...s]){let a=se(i,()=>{r(),He(n)});t.push(a)}}finally{pe.pop()}},kt=n=>{let e=pe.length,t=e>0&&pe[e-1];try{return t&&pe.push(null),n()}finally{t&&pe.pop()}},Lt=n=>{try{let e=new Set;return pe.push(e),{value:n(),refs:[...e]}}finally{pe.pop()}};var Y=(n,e,t)=>{if(!C(n))return;let o=n;if(o(void 0,e,1),!t)return;let r=o();if(r){if(w(r)||ue(r))for(let s of r)Y(s,e,!0);else if(Ae(r))for(let s of r)Y(s[0],e,!0),Y(s[1],e,!0);if(I(r))for(let s in r)Y(r[s],e,!0)}};function $r(n,e,t){Object.defineProperty(n,e,{value:t,enumerable:!1,writable:!0,configurable:!0})}var et=(n,e,t)=>{t.forEach(function(o){let r=n[o];$r(e,o,function(...i){let a=r.apply(this,i),c=this[Z];for(let l of c)Y(l);return a})})},It=(n,e)=>{Object.defineProperty(n,Symbol.toStringTag,{value:e,writable:!1,enumerable:!1,configurable:!0})};var po=Array.prototype,Cn=Object.create(po),qr=["push","pop","shift","unshift","splice","sort","reverse"];et(po,Cn,qr);var mo=Map.prototype,Dt=Object.create(mo),Fr=["set","clear","delete"];It(Dt,"Map");et(mo,Dt,Fr);var ho=Set.prototype,Ut=Object.create(ho),zr=["add","clear","delete"];It(Ut,"Set");et(ho,Ut,zr);var ge={},ie=n=>{if(C(n)||Ze(n))return n;let e={auto:!0,_value:n},t=c=>I(c)?Z in c?!0:w(c)?(Object.setPrototypeOf(c,Cn),!0):ue(c)?(Object.setPrototypeOf(c,Ut),!0):Ae(c)?(Object.setPrototypeOf(c,Dt),!0):!1:!1,o=t(n),r=new Set,s=(c,l)=>{if(ge.stack&&ge.stack.length){ge.stack[ge.stack.length-1].add(a);return}r.size!==0&&kt(()=>{for(let u of[...r.keys()])r.has(u)&&u(c,l)})},i=c=>{let l=c[Z];l||(c[Z]=l=new Set),l.add(a)},a=(...c)=>{if(!(2 in c)){let u=c[0],f=c[1];return 0 in c?e._value===u||C(u)&&(u=u(),e._value===u)?u:(t(u)&&i(u),e._value=u,e.auto&&s(u,f),e._value):(fo(a),e._value)}switch(c[2]){case 0:{let u=c[3];if(!u)return()=>{};let f=p=>{r.delete(p)};return r.add(u),()=>{f(u)}}case 1:{let u=c[1],f=e._value;s(f,u);break}case 2:return r.size;case 3:{e.auto=!1;break}case 4:e.auto=!0}return e._value};return a[Z]=1,Le(a,!1),o&&i(n),a};var be=n=>{if(Ze(n))return n;let e;if(C(n)?(e=n,n=e()):e=ie(n),n instanceof Node||n instanceof Date||n instanceof RegExp||n instanceof Promise||n instanceof Error)return e;if(e[Ot]=1,w(n)){let t=n.length;for(let o=0;o<t;++o){let r=n[o];Ve(r)||(n[o]=be(r))}return e}if(!I(n))return e;for(let t of Object.entries(n)){let o=t[1];if(Ve(o))continue;let r=t[0];st(r)||(n[r]=null,n[r]=be(o))}return e};var yo=Symbol("modelBridge"),Bt=()=>{},Kr=n=>!!(n!=null&&n[yo]),Wr=n=>{n[yo]=1},Gr=n=>{let e=be(n());return Wr(e),e},go={collectRefObj:!0,mount:({parseResult:n,option:e})=>{if(typeof e!="string"||!e)return Bt;let t=$(e),o,r,s=Bt,i=()=>{s(),s=Bt,o=void 0,r=void 0},a=()=>{s(),s=Bt},c=(u,f)=>{o!==u&&(a(),s=Ye(u,f),o=u)},l=()=>{var m;let u=(m=n.refs[0])!=null?m:n.value()[0],f=n.context,p=f[t];if(!C(u)){if(r&&p===r){r(u);return}if(i(),C(p)){p(u);return}f[t]=u;return}if(Kr(u)){if(p===u)return;C(p)?c(u,p):f[t]=u;return}r||(r=Gr(u)),f[t]=r,c(u,r)};return{update:()=>{l()},unmount:()=>{s()}}}};var Pt=class{constructor(e){d(this,"i");d(this,"me");d(this,"de","");d(this,"ye",-1);this.i=e,this.me=e.o.p.inherit}N(e){this.Xe(e)}Ye(e){if(this.ye!==e.size){let t=[...e.keys()];this.de=[...t,...t.map(Xe)].join(","),this.ye=e.size}return this.de}Ze(e){var t;for(let o=0;o<e.length;++o){let r=(t=e[o])==null?void 0:t.components;if(r)for(let s in r)return!0}return!1}Xe(e){var p;let t=this.i,o=t.m,r=t.o.he,s=t.o.H;if(r.size===0&&!this.Ze(o.l))return;let i=o.J(),a=o.et(),c=this.Ye(r),l=[...c?[c]:[],...a,...a.map(Xe)].join(",");if(X(l))return;let u=e.querySelectorAll(l),f=(p=e.matches)!=null&&p.call(e,l)?[e,...u]:u;for(let m of f){if(m.hasAttribute(t.R))continue;let y=m.parentNode;if(!y)continue;let h=m.nextSibling,g=$(m.tagName).toUpperCase(),R=i[g],E=R!=null?R:s.get(g);if(!E)continue;let D=E.template;if(!D)continue;let G=m.parentElement;if(!G)continue;let M=new Comment(" begin component: "+m.tagName),_=new Comment(" end component: "+m.tagName);G.insertBefore(M,m),m.remove();let ce=t.o.p.context,ee=t.o.p.contextAlias,U=t.o.p.bind,b=(x,T)=>{let v={},F=x.hasAttribute(ce);return o.C(T,()=>{o.v(v),F?t.b(xn,x,ce):x.hasAttribute(ee)&&t.b(xn,x,ee);let B=E.props;if(!B||B.length===0)return;B=B.map($);let N=new Map(B.map(S=>[S.toLowerCase(),S]));for(let S of[...B,...B.map(Xe)]){let P=x.getAttribute(S);P!==null&&(v[$(S)]=P,x.removeAttribute(S))}let L=t._.ge(x,!1);for(let[S,P]of L.entries()){let[re,De]=P.Q;if(!De)continue;let Fe=N.get($(De).toLowerCase());Fe&&(re!=="."&&re!==":"&&re!==U||t.b(go,x,S,!0,Fe,P.X))}}),v},A=[...o.M()],J=()=>{var F;let x=b(m,A),T=new We(x,m,A,M,_),v=Nt(()=>{var B;return(B=E.context(T))!=null?B:{}}).context;if(T.autoProps){for(let[B,N]of Object.entries(x))if(B in v){let L=v[B];if(L===N)continue;if(C(L)){C(N)?T.entangle?q(M,Ye(N,L)):L(N()):L(N);continue}}else v[B]=N;(F=T.onAutoPropsAssigned)==null||F.call(T)}return{componentCtx:v,head:T}},{componentCtx:me,head:qe}=J(),Te=[...Ee(D)],k=Te.length,mt=m.childNodes.length===0,O=x=>{let T=x.parentElement;if(mt){for(let N of[...x.childNodes])T.insertBefore(N,x);return}let v=x.name;X(v)&&(v=x.getAttributeNames().filter(N=>N.startsWith("#"))[0],X(v)?v="default":v=v.substring(1));let F=m.querySelector(`template[name='${v}'], template[\\#${v}]`);!F&&v==="default"&&(F=m.querySelector("template:not([name])"),F&&F.getAttributeNames().filter(N=>N.startsWith("#")).length>0&&(F=null));let B=N=>{qe.enableSwitch&&o.C(A,()=>{o.v(me);let L=b(x,o.M());o.C(A,()=>{o.v(L);let S=o.M(),P=oo(S);for(let re of N)Be(re)&&(re.setAttribute(at,P),mn(P),q(re,()=>{dn(P)}))})})};if(F){let N=[...Ee(F)];for(let L of N)T.insertBefore(L,x);B(N)}else{if(v!=="default"){for(let L of[...Ee(x)])T.insertBefore(L,x);return}let N=[...Ee(m)].filter(L=>!ye(L));for(let L of N)T.insertBefore(L,x);B(N)}},Q=x=>{if(!Be(x))return;let T=x.querySelectorAll("slot");if(ao(x)){O(x),x.remove();return}for(let v of T)O(v),v.remove()};(()=>{for(let x=0;x<k;++x)Te[x]=Te[x].cloneNode(!0),y.insertBefore(Te[x],h),Q(Te[x])})(),G.insertBefore(_,h);let te=()=>{if(!E.inheritAttrs)return;let x=Te.filter(v=>v.nodeType===Node.ELEMENT_NODE);x.length>1&&(x=x.filter(v=>v.hasAttribute(this.me)));let T=x[0];if(T)for(let v of m.getAttributeNames()){if(v===ce||v===ee)continue;let F=m.getAttribute(v);if(v==="class")T.classList.add(...F.split(" "));else if(v==="style"){let B=T.style,N=m.style;for(let L of N)B.setProperty(L,N.getPropertyValue(L))}else T.setAttribute(wt(v,t.o),F)}},xe=()=>{for(let x of m.getAttributeNames())!x.startsWith("@")&&!x.startsWith(t.o.p.on)&&m.removeAttribute(x)},Se=()=>{te(),xe(),o.v(me),t.be(m,!1),me.$emit=qe.emit,ke(t,Te),q(m,()=>{Ne(me)}),q(M,()=>{de(m)}),At(me)};o.C(A,Se)}}};var En=class{constructor(e,t){d(this,"Q");d(this,"X");d(this,"xe",[]);this.Q=e,this.X=t}},Vt=class{constructor(e){d(this,"i");d(this,"Te");d(this,"Re");d(this,"Y");var o;this.i=e,this.Te=e.o.tt(),this.Y=new Map;let t=new Map;for(let r of this.Te){let s=(o=r[0])!=null?o:"",i=t.get(s);i?i.push(r):t.set(s,[r])}this.Re=t}Ce(e){let t=this.Y.get(e);if(t)return t;let o=e,r=o.startsWith(".");r&&(o=":"+o.slice(1));let s=o.indexOf("."),a=(s<0?o:o.substring(0,s)).split(/[:@]/);X(a[0])&&(a[0]=r?".":o[0]);let c=s>=0?o.slice(s+1).split("."):[],l=!1,u=!1;for(let p=0;p<c.length;++p){let m=c[p];if(!l&&m==="camel"?l=!0:!u&&m==="prop"&&(u=!0),l&&u)break}l&&(a[a.length-1]=$(a[a.length-1])),u&&(a[0]=".");let f={terms:a,flags:c};return this.Y.set(e,f),f}ge(e,t){let o=new Map;if(!ct(e))return o;let r=this.Re,s=(c,l)=>{var f;let u=r.get((f=l[0])!=null?f:"");if(u)for(let p=0;p<u.length;++p){if(!l.startsWith(u[p]))continue;let m=o.get(l);if(!m){let y=this.Ce(l);m=new En(y.terms,y.flags),o.set(l,m)}m.xe.push(c);return}},i=c=>{var u;let l=c.attributes;if(!(!l||l.length===0))for(let f=0;f<l.length;++f){let p=(u=l.item(f))==null?void 0:u.name;p&&s(c,p)}};if(i(e),!t||!e.firstElementChild)return o;let a=e.querySelectorAll("*");for(let c of a)i(c);return o}};var bo=()=>{},Jr=(n,e)=>{for(let t of n){let o=t.cloneNode(!0);e.appendChild(o)}},Ht=class{constructor(e){d(this,"i");d(this,"L");d(this,"Ee");this.i=e,this.L=e.o.p.is,this.Ee=Qe(this.L)+", [is]"}N(e){let t=e.hasAttribute(this.L),o=Me(e,this.Ee);for(let r of o)this.b(r);return t}b(e){let t=e.getAttribute(this.L);if(!t){if(t=e.getAttribute("is"),!t)return;if(!t.startsWith("regor:")){if(!t.startsWith("r-"))return;let o=t.slice(2).trim().toLowerCase();if(!o)return;let r=e.parentNode;if(!r)return;let s=document.createElement(o);for(let i of e.getAttributeNames())i!=="is"&&s.setAttribute(i,e.getAttribute(i));for(;e.firstChild;)s.appendChild(e.firstChild);r.insertBefore(s,e),e.remove(),this.i.j(s);return}t=`'${t.slice(6)}'`,e.removeAttribute("is")}e.removeAttribute(this.L),this.O(e,t)}U(e,t){let o=Je(e),r=e.parentNode,s=document.createComment(`__begin__ dynamic ${t!=null?t:""}`);r.insertBefore(s,e),Ge(s,o),o.forEach(a=>{z(a)}),e.remove();let i=document.createComment(`__end__ dynamic ${t!=null?t:""}`);return r.insertBefore(i,s.nextSibling),{nodes:o,parent:r,commentBegin:s,commentEnd:i}}O(e,t){let{nodes:o,parent:r,commentBegin:s,commentEnd:i}=this.U(e,` => ${t} `),a=this.i.m.k(t),c=a.value,l=this.i.m,u=l.M(),f={name:""},p=ye(e)?o:[...o[0].childNodes],m=()=>{l.C(u,()=>{var E;let g=c()[0];if(I(g)&&(g.name?g=g.name:g=(E=Object.entries(l.J()).filter(D=>D[1]===g)[0])==null?void 0:E[0]),!W(g)||X(g)){Ce(s,i);return}if(f.name===g)return;Ce(s,i);let R=document.createElement(g);for(let D of e.getAttributeNames())D!==this.L&&R.setAttribute(D,e.getAttribute(D));Jr(p,R),r.insertBefore(R,i),this.i.j(R),f.name=g})},y=bo;q(s,()=>{a.stop(),y(),y=bo}),m(),y=a.subscribe(m)}};var H=n=>{let e=n;return e!=null&&e[Z]===1?e():e};var Qr=(n,e)=>{let[t,o]=e;K(o)?o(n,t):n.innerHTML=t==null?void 0:t.toString()},_t={mount:()=>({update:({el:n,values:e})=>{Qr(n,e)}})};var jt=class n{constructor(e){d(this,"Z");this.Z=e}static nt(e,t){var m,y;let o=e.m,r=e.o,s=r.p,i=new Set([s.for,s.if,s.else,s.elseif,s.pre]),a=r.P,c=o.J();if(Object.keys(c).length>0||r.H.size>0)return;let l=e._,u=[],f=0,p=[];for(let h=t.length-1;h>=0;--h)p.push(t[h]);for(;p.length>0;){let h=p.pop();if(h.nodeType===Node.ELEMENT_NODE){let R=h;if(R.tagName==="TEMPLATE"||R.tagName.includes("-"))return;let E=$(R.tagName).toUpperCase();if(r.H.has(E)||c[E])return;let D=R.attributes;for(let G=0;G<D.length;++G){let M=(m=D.item(G))==null?void 0:m.name;if(!M)continue;if(i.has(M))return;let{terms:_,flags:ce}=l.Ce(M),[ee,U]=_,b=(y=a[M])!=null?y:a[ee];if(b){if(b===_t)return;u.push({nodeIndex:f,attrName:M,directive:b,option:U,flags:ce})}}++f}let g=h.childNodes;for(let R=g.length-1;R>=0;--R)p.push(g[R])}if(u.length!==0)return new n(u)}b(e,t){let o=[],r=[];for(let s=t.length-1;s>=0;--s)r.push(t[s]);for(;r.length>0;){let s=r.pop();s.nodeType===Node.ELEMENT_NODE&&o.push(s);let i=s.childNodes;for(let a=i.length-1;a>=0;--a)r.push(i[a])}for(let s=0;s<this.Z.length;++s){let i=this.Z[s],a=o[i.nodeIndex];a&&e.b(i.directive,a,i.attrName,!1,i.option,i.flags)}}};var Xr=(n,e)=>{let t=e.parentNode;if(t)for(let o=0;o<n.items.length;++o)t.insertBefore(n.items[o],e)},Yr=n=>{var a;let e=n.length,t=n.slice(),o=[],r,s,i;for(let c=0;c<e;++c){let l=n[c];if(l===0)continue;let u=o[o.length-1];if(u===void 0||n[u]<l){t[c]=u!=null?u:-1,o.push(c);continue}for(r=0,s=o.length-1;r<s;)i=r+s>>1,n[o[i]]<l?r=i+1:s=i;l<n[o[r]]&&(r>0&&(t[c]=o[r-1]),o[r]=c)}for(r=o.length,s=(a=o[r-1])!=null?a:-1;r-- >0;)o[r]=s,s=t[s];return o},$t=class{static ot(e){let{oldItems:t,newValues:o,getKey:r,isSameValue:s,mountNewValue:i,removeMountItem:a,endAnchor:c}=e,l=t.length,u=o.length,f=new Array(u),p=new Set;for(let b=0;b<u;++b){let A=r(o[b]);if(A===void 0||p.has(A))return;p.add(A),f[b]=A}let m=new Array(u),y=0,h=l-1,g=u-1;for(;y<=h&&y<=g;){let b=t[y];if(r(b.value)!==f[y]||!s(b.value,o[y]))break;b.value=o[y],m[y]=b,++y}for(;y<=h&&y<=g;){let b=t[h];if(r(b.value)!==f[g]||!s(b.value,o[g]))break;b.value=o[g],m[g]=b,--h,--g}if(y>h){for(let b=g;b>=y;--b){let A=b+1<u?m[b+1].items[0]:c;m[b]=i(b,o[b],A)}return m}if(y>g){for(let b=y;b<=h;++b)a(t[b]);return m}let R=y,E=y,D=g-E+1,G=new Array(D).fill(0),M=new Map;for(let b=E;b<=g;++b)M.set(f[b],b);let _=!1,ce=0;for(let b=R;b<=h;++b){let A=t[b],J=M.get(r(A.value));if(J===void 0){a(A);continue}if(!s(A.value,o[J])){a(A);continue}A.value=o[J],m[J]=A,G[J-E]=b+1,J>=ce?ce=J:_=!0}let ee=_?Yr(G):[],U=ee.length-1;for(let b=D-1;b>=0;--b){let A=E+b,J=A+1<u?m[A+1].items[0]:c;if(G[b]===0){m[A]=i(A,o[A],J);continue}let me=m[A];_&&(U>=0&&ee[U]===b?--U:me&&Xr(me,J))}return m}};var lt=class{constructor(e){d(this,"x",[]);d(this,"V",new Map);d(this,"ee");this.ee=e}get w(){return this.x.length}te(e){let t=this.ee(e.value);t!==void 0&&this.V.set(t,e)}ne(e){var o;let t=this.ee((o=this.x[e])==null?void 0:o.value);t!==void 0&&this.V.delete(t)}static rt(e,t){return{items:[],index:e,value:t,order:-1}}v(e){e.order=this.w,this.x.push(e),this.te(e)}st(e,t){let o=this.w;for(let r=e;r<o;++r)this.x[r].order=r+1;t.order=e,this.x.splice(e,0,t),this.te(t)}I(e){return this.x[e]}oe(e,t){this.ne(e),this.x[e]=t,this.te(t),t.order=e}ve(e){this.ne(e),this.x.splice(e,1);let t=this.w;for(let o=e;o<t;++o)this.x[o].order=o}we(e){let t=this.w;for(let o=e;o<t;++o)this.ne(o);this.x.splice(e)}$t(e){return this.V.has(e)}it(e){var o;let t=this.V.get(e);return(o=t==null?void 0:t.order)!=null?o:-1}};var Rn=Symbol("r-for"),Zr=n=>-1,To=()=>{},Ft=class Ft{constructor(e){d(this,"i");d(this,"T");d(this,"re");d(this,"R");this.i=e,this.T=e.o.p.for,this.re=Qe(this.T),this.R=e.o.p.pre}N(e){let t=e.hasAttribute(this.T),o=Me(e,this.re);for(let r of o)this.at(r);return t}G(e){return e[Rn]?!0:(e[Rn]=!0,Me(e,this.re).forEach(t=>t[Rn]=!0),!1)}at(e){if(e.hasAttribute(this.R)||this.G(e))return;let t=e.getAttribute(this.T);if(!t){V(0,this.T,e);return}e.removeAttribute(this.T),this.ct(e,t)}Se(e){return fe(e)?[]:(K(e)&&(e=e()),Symbol.iterator in Object(e)?e:typeof e=="number"?(o=>({*[Symbol.iterator](){for(let r=1;r<=o;r++)yield r}}))(e):Object.entries(e))}ct(e,t){var mt;let o=this.ut(t);if(!(o!=null&&o.list)){V(1,this.T,t,e);return}let r=this.i.o.p.key,s=this.i.o.p.keyBind,i=(mt=e.getAttribute(r))!=null?mt:e.getAttribute(s);e.removeAttribute(r),e.removeAttribute(s);let a=Je(e),c=jt.nt(this.i,a),l=e.parentNode;if(!l)return;let u=`${this.T} => ${t}`,f=new Comment(`__begin__ ${u}`);l.insertBefore(f,e),Ge(f,a),a.forEach(O=>{z(O)}),e.remove();let p=new Comment(`__end__ ${u}`);l.insertBefore(p,f.nextSibling);let m=this.i,y=m.m,h=y.M(),R=h.length===1?[void 0,h[0]]:void 0,E=this.pt(i),D=(O,Q)=>E(O)===E(Q),G=(O,Q)=>O===Q,M=(O,Q,oe)=>{let te=o.createContext(Q,O),xe=lt.rt(te.index,Q),Se=()=>{var F,B;let x=(B=(F=p.parentNode)!=null?F:f.parentNode)!=null?B:l,T=oe.previousSibling,v=[];for(let N=0;N<a.length;++N){let L=a[N].cloneNode(!0);x.insertBefore(L,oe),v.push(L)}for(c?c.b(m,v):ke(m,v),T=T.nextSibling;T!==oe;)xe.items.push(T),T=T.nextSibling};return R?(R[0]=te.ctx,y.C(R,Se)):y.C(h,()=>{y.v(te.ctx),Se()}),xe},_=(O,Q)=>{let oe=k.I(O).items,te=oe[oe.length-1].nextSibling;for(let xe of oe)z(xe);k.oe(O,M(O,Q,te))},ce=(O,Q)=>{k.v(M(O,Q,p))},ee=O=>{for(let Q of k.I(O).items)z(Q)},U=O=>{let Q=k.w;for(let oe=O;oe<Q;++oe)k.I(oe).index(oe)},b=O=>{let Q=f.parentNode,oe=p.parentNode;if(!Q||!oe)return;let te=k.w;K(O)&&(O=O());let xe=H(O[0]);if(w(xe)&&xe.length===0){Ce(f,p),k.we(0);return}let Se=[];for(let S of this.Se(O[0]))Se.push(S);let x=$t.ot({oldItems:k.x,newValues:Se,getKey:E,isSameValue:G,mountNewValue:(S,P,re)=>M(S,P,re),removeMountItem:S=>{for(let P=0;P<S.items.length;++P)z(S.items[P])},endAnchor:p});if(x){k.x=x,k.V.clear();for(let S=0;S<x.length;++S){let P=x[S];P.order=S,P.index(S);let re=E(P.value);re!==void 0&&k.V.set(re,P)}return}let T=0,v=Number.MAX_SAFE_INTEGER,F=te,B=this.i.o.forGrowThreshold,N=()=>k.w<F+B;for(let S of Se){let P=()=>{if(T<te){let re=k.I(T++);if(D(re.value,S)){if(G(re.value,S))return;_(T-1,S);return}let De=k.it(E(S));if(De>=T&&De-T<10){if(--T,v=Math.min(v,T),ee(T),k.ve(T),--te,De>T+1)for(let Fe=T;Fe<De-1&&Fe<te&&!D(k.I(T).value,S);)++Fe,ee(T),k.ve(T),--te;P();return}N()?(k.st(T-1,M(T,S,k.I(T-1).items[0])),v=Math.min(v,T-1),++te):_(T-1,S)}else ce(T++,S)};P()}let L=T;for(te=k.w;T<te;)ee(T++);k.we(L),U(v)},A=()=>{J.stop(),qe(),qe=To},J=y.k(o.list),me=J.value,qe=To,Te=0,k=new lt(E);for(let O of this.Se(me()[0]))k.v(M(Te++,O,p));q(f,A),qe=J.subscribe(b)}ut(e){var c,l;let t=Ft.lt.exec(e);if(!t)return;let o=(t[1]+((c=t[2])!=null?c:"")).split(",").map(u=>u.trim()),r=o.length>1?o.length-1:-1,s=r!==-1&&(o[r]==="index"||(l=o[r])!=null&&l.startsWith("#"))?o[r]:"";s&&o.splice(r,1);let i=t[3];if(!i||o.length===0)return;let a=/[{[]/.test(e);return{list:i,createContext:(u,f)=>{let p={},m=H(u);if(!a&&o.length===1)p[o[0]]=u;else if(w(m)){let h=0;for(let g of o)p[g]=m[h++]}else for(let h of o)p[h]=m[h];let y={ctx:p,index:Zr};return s&&(y.index=p[s.startsWith("#")?s.substring(1):s]=ie(f)),y}}}pt(e){if(!e)return o=>o;let t=e.trim();if(!t)return o=>o;if(t.includes(".")){let o=this.ft(t),r=o.length>1?o.slice(1):void 0;return s=>{let i=H(s),a=this.Ae(i,o);return a!==void 0||!r?a:this.Ae(i,r)}}return o=>{var r;return H((r=H(o))==null?void 0:r[t])}}ft(e){return e.split(".").filter(t=>t.length>0)}Ae(e,t){var r;let o=e;for(let s of t)o=(r=H(o))==null?void 0:r[s];return H(o)}};d(Ft,"lt",/\{?\[?\(?([^)}\]]+)\)?\]?\}?([^)]+)?\s+\b(?:in|of)\b\s+(.*)\s*$/);var qt=Ft;var zt=class{constructor(e){d(this,"m");d(this,"Ne");d(this,"Oe");d(this,"ke");d(this,"Me");d(this,"_");d(this,"o");d(this,"R");d(this,"Le");this.m=e,this.o=e.o,this.Oe=new qt(this),this.Ne=new vt(this),this.ke=new Ht(this),this.Me=new Pt(this),this._=new Vt(this),this.R=this.o.p.pre,this.Le=this.o.p.dynamic}mt(e){let t=ye(e)?[e]:e.querySelectorAll("template");for(let o of t){if(o.hasAttribute(this.R))continue;let r=o.parentNode;if(!r)continue;let s=o.nextSibling;if(o.remove(),!o.content)continue;let i=[...o.content.childNodes];for(let a of i)r.insertBefore(a,s);ke(this,i)}}j(e){e.nodeType!==Node.ELEMENT_NODE||e.hasAttribute(this.R)||this.Ne.N(e)||this.Oe.N(e)||this.ke.N(e)||(this.Me.N(e),this.mt(e),this.be(e,!0))}be(e,t){var s;let o=this._.ge(e,t),r=this.o.P;for(let[i,a]of o.entries()){let[c,l]=a.Q,u=(s=r[i])!=null?s:r[c];if(!u){console.error("directive not found:",c);continue}let f=a.xe;for(let p=0;p<f.length;++p){let m=f[p];this.b(u,m,i,!1,l,a.X)}}}b(e,t,o,r,s,i){if(t.hasAttribute(this.R))return;let a=t.getAttribute(o);t.removeAttribute(o);let c=l=>{let u=l;for(;u;){let f=u.getAttribute(at);if(f)return f;u=u.parentElement}return null};if(hn()){let l=c(t);if(l){this.m.C(ro(l),()=>{this.O(e,t,a,s,i)});return}}this.O(e,t,a,s,i)}dt(e,t,o){if(e!==St)return!1;if(X(o))return!0;let r=document.querySelector(o);if(r){let s=t.parentElement;if(!s)return!0;let i=new Comment(`teleported => '${o}'`);s.insertBefore(i,t),t.teleportedFrom=i,i.teleportedTo=t,q(i,()=>{z(t)}),r.appendChild(t)}return!0}O(e,t,o,r,s){if(t.nodeType!==Node.ELEMENT_NODE||o==null||this.dt(e,t,o))return;let i=this.yt(r,e.once),a=this.ht(e,o),c=this.gt(a,i);q(t,c.stop);let l=this.bt(t,o,a,i,r,s),u=this.xt(e,l,c);if(!u)return;let f=this.Tt(l,a,i,r,u);f(),e.once||(c.result=a.subscribe(f),i&&(c.dynamic=i.subscribe(f)))}yt(e,t){let o=uo(e,this.Le);if(o)return this.m.k($(o),void 0,void 0,void 0,t)}ht(e,t){return this.m.k(t,e.isLazy,e.isLazyKey,e.collectRefObj,e.once)}gt(e,t){let o={stop:()=>{var r,s,i;e.stop(),t==null||t.stop(),(r=o.result)==null||r.call(o),(s=o.dynamic)==null||s.call(o),(i=o.mounted)==null||i.call(o),o.result=void 0,o.dynamic=void 0,o.mounted=void 0}};return o}bt(e,t,o,r,s,i){return{el:e,expr:t,values:o.value(),previousValues:void 0,option:r?r.value()[0]:s,previousOption:void 0,flags:i,parseResult:o,dynamicOption:r}}xt(e,t,o){let r=e.mount(t);if(typeof r=="function"){o.mounted=r;return}return r!=null&&r.unmount&&(o.mounted=r.unmount),r==null?void 0:r.update}Tt(e,t,o,r,s){let i,a;return()=>{let c=t.value(),l=o?o.value()[0]:r;e.values=c,e.previousValues=i,e.option=l,e.previousOption=a,i=c,a=l,s(e)}}};var xo="http://www.w3.org/1999/xlink",es={itemscope:2,allowfullscreen:2,formnovalidate:2,ismap:2,nomodule:2,novalidate:2,readonly:2,async:1,autofocus:1,autoplay:1,controls:1,default:1,defer:1,disabled:1,hidden:1,inert:1,loop:1,open:1,required:1,reversed:1,scoped:1,seamless:1,checked:1,muted:1,multiple:1,selected:1};function ts(n){return!!n||n===""}var ns=(n,e,t,o,r,s)=>{var a;if(o){s&&s.includes("camel")&&(o=$(o)),Kt(n,o,e[0],r);return}let i=e.length;for(let c=0;c<i;++c){let l=e[c];if(w(l)){let u=(a=t==null?void 0:t[c])==null?void 0:a[0],f=l[0],p=l[1];Kt(n,f,p,u)}else if(I(l))for(let u of Object.entries(l)){let f=u[0],p=u[1],m=t==null?void 0:t[c],y=m&&f in m?f:void 0;Kt(n,f,p,y)}else{let u=t==null?void 0:t[c],f=e[c++],p=e[c];Kt(n,f,p,u)}}},vn={mount:()=>({update:({el:n,values:e,previousValues:t,option:o,previousOption:r,flags:s})=>{ns(n,e,t,o,r,s)}})},Kt=(n,e,t,o)=>{if(o&&o!==e&&n.removeAttribute(o),fe(e)){V(3,"r-bind",n);return}if(!W(e)){V(6,`Attribute key is not string at ${n.outerHTML}`,e);return}if(e.startsWith("xlink:")){fe(t)?n.removeAttributeNS(xo,e.slice(6,e.length)):n.setAttributeNS(xo,e,t);return}let r=e in es;fe(t)||r&&!ts(t)?n.removeAttribute(e):n.setAttribute(e,r?"":t)};var os=(n,e,t)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=t==null?void 0:t[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)Co(n,s[c],i==null?void 0:i[c])}else Co(n,s,i)}},wn={mount:()=>({update:({el:n,values:e,previousValues:t})=>{os(n,e,t)}})},Co=(n,e,t)=>{let o=n.classList,r=W(e),s=W(t);if(e&&!r){if(t&&!s)for(let i in t)(!(i in e)||!e[i])&&o.remove(i);for(let i in e)e[i]&&o.add(i)}else r?t!==e&&(s&&o.remove(...t.trim().split(/\s+/)),o.add(...e.trim().split(/\s+/))):t&&s&&o.remove(...t.trim().split(/\s+/))};function rs(n,e){if(n.length!==e.length)return!1;let t=!0;for(let o=0;t&&o<n.length;o++)t=Re(n[o],e[o]);return t}function Re(n,e){if(n===e)return!0;let t=ln(n),o=ln(e);if(t||o)return t&&o?n.getTime()===e.getTime():!1;if(t=st(n),o=st(e),t||o)return n===e;if(t=w(n),o=w(e),t||o)return t&&o?rs(n,e):!1;if(t=I(n),o=I(e),t||o){if(!t||!o)return!1;let r=Object.keys(n).length,s=Object.keys(e).length;if(r!==s)return!1;for(let i in n){let a=Object.prototype.hasOwnProperty.call(n,i),c=Object.prototype.hasOwnProperty.call(e,i);if(a&&!c||!Re(n[i],e[i]))return!1}return!0}return String(n)===String(e)}function Wt(n,e){return n.findIndex(t=>Re(t,e))}var Eo=n=>{let e=parseFloat(n);return isNaN(e)?n:e};var Gt=n=>{if(!C(n))throw j(3,"pause");n(void 0,void 0,3)};var Jt=n=>{if(!C(n))throw j(3,"resume");n(void 0,void 0,4)};var vo={mount:({el:n,parseResult:e,flags:t})=>({update:({values:o})=>{ss(n,o[0])},unmount:is(n,e,t)})},ss=(n,e)=>{let t=No(n);if(t&&wo(n))w(e)?e=Wt(e,ve(n))>-1:ue(e)?e=e.has(ve(n)):e=ps(n,e),n.checked=e;else if(t&&So(n))n.checked=Re(e,ve(n));else if(t||Oo(n))Ao(n)?n.value!==(e==null?void 0:e.toString())&&(n.value=e):n.value!==e&&(n.value=e);else if(Mo(n)){let o=n.options,r=o.length,s=n.multiple;for(let i=0;i<r;i++){let a=o[i],c=ve(a);if(s)w(e)?a.selected=Wt(e,c)>-1:a.selected=e.has(c);else if(Re(ve(a),e)){n.selectedIndex!==i&&(n.selectedIndex=i);return}}!s&&n.selectedIndex!==-1&&(n.selectedIndex=-1)}else V(7,n)},ft=n=>(C(n)&&(n=n()),K(n)&&(n=n()),n?W(n)?{trim:n.includes("trim"),lazy:n.includes("lazy"),number:n.includes("number"),int:n.includes("int")}:{trim:!!n.trim,lazy:!!n.lazy,number:!!n.number,int:!!n.int}:{trim:!1,lazy:!1,number:!1,int:!1}),wo=n=>n.type==="checkbox",So=n=>n.type==="radio",Ao=n=>n.type==="number"||n.type==="range",No=n=>n.tagName==="INPUT",Oo=n=>n.tagName==="TEXTAREA",Mo=n=>n.tagName==="SELECT",is=(n,e,t)=>{let o=e.value,r=ft(t==null?void 0:t.join(",")),s=ft(o()[1]),i={int:r.int||s.int,lazy:r.lazy||s.lazy,number:r.number||s.number,trim:r.trim||s.trim};if(!e.refs[0])return V(8,n),()=>{};let a=()=>e.refs[0],c=No(n);return c&&wo(n)?cs(n,a):c&&So(n)?ms(n,a):c||Oo(n)?as(n,i,a,o):Mo(n)?ds(n,a,o):(V(7,n),()=>{})},Ro=/[.,' ·٫]/,as=(n,e,t,o)=>{let s=e.lazy?"change":"input",i=Ao(n),a=()=>{!e.trim&&!ft(o()[1]).trim||(n.value=n.value.trim())},c=p=>{let m=p.target;m.composing=1},l=p=>{let m=p.target;m.composing&&(m.composing=0,m.dispatchEvent(new Event(s)))},u=()=>{n.removeEventListener(s,f),n.removeEventListener("change",a),n.removeEventListener("compositionstart",c),n.removeEventListener("compositionend",l),n.removeEventListener("change",l)},f=p=>{let m=t();if(!m)return;let y=p.target;if(!y||y.composing)return;let h=y.value,g=ft(o()[1]);if(i||g.number||g.int){if(g.int)h=parseInt(h);else{if(Ro.test(h[h.length-1])&&h.split(Ro).length===2){if(h+="0",h=parseFloat(h),isNaN(h))h="";else if(m()===h)return}h=parseFloat(h)}isNaN(h)&&(h=""),n.value=h}else g.trim&&(h=h.trim());m(h)};return n.addEventListener(s,f),n.addEventListener("change",a),n.addEventListener("compositionstart",c),n.addEventListener("compositionend",l),n.addEventListener("change",l),u},cs=(n,e)=>{let t="change",o=()=>{n.removeEventListener(t,r)},r=()=>{let s=e();if(!s)return;let i=ve(n),a=n.checked,c=s();if(w(c)){let l=Wt(c,i),u=l!==-1;a&&!u?c.push(i):!a&&u&&c.splice(l,1)}else ue(c)?a?c.add(i):c.delete(i):s(fs(n,a))};return n.addEventListener(t,r),o},ve=n=>"_value"in n?n._value:n.value,ko="trueValue",us="falseValue",Lo="true-value",ls="false-value",fs=(n,e)=>{let t=e?ko:us;if(t in n)return n[t];let o=e?Lo:ls;return n.hasAttribute(o)?n.getAttribute(o):e},ps=(n,e)=>{if(ko in n)return Re(e,n.trueValue);let o=Lo;return n.hasAttribute(o)?Re(e,n.getAttribute(o)):Re(e,!0)},ms=(n,e)=>{let t="change",o=()=>{n.removeEventListener(t,r)},r=()=>{let s=e();if(!s)return;let i=ve(n);s(i)};return n.addEventListener(t,r),o},ds=(n,e,t)=>{let o="change",r=()=>{n.removeEventListener(o,s)},s=()=>{let i=e();if(!i)return;let c=ft(t()[1]).number,l=Array.prototype.filter.call(n.options,u=>u.selected).map(u=>c?Eo(ve(u)):ve(u));if(n.multiple){let u=i();try{if(Gt(i),ue(u)){u.clear();for(let f of l)u.add(f)}else w(u)?(u.splice(0),u.push(...l)):i(l)}finally{Jt(i),Y(i)}}else i(l[0])};return n.addEventListener(o,s),r};var hs=["stop","prevent","capture","self","once","left","right","middle","passive"],ys=n=>{let e={};if(X(n))return;let t=n.split(",");for(let o of hs)e[o]=t.includes(o);return e},gs=(n,e,t,o,r)=>{var l,u;if(o){let f=e.value(),p=H(o.value()[0]);return W(p)?Sn(n,$(p),()=>e.value()[0],(l=r==null?void 0:r.join(","))!=null?l:f[1]):()=>{}}else if(t){let f=e.value();return Sn(n,$(t),()=>e.value()[0],(u=r==null?void 0:r.join(","))!=null?u:f[1])}let s=[],i=()=>{s.forEach(f=>f())},a=e.value(),c=a.length;for(let f=0;f<c;++f){let p=a[f];if(K(p)&&(p=p()),I(p))for(let m of Object.entries(p)){let y=m[0],h=()=>{let R=e.value()[f];return K(R)&&(R=R()),R=R[y],K(R)&&(R=R()),R},g=p[y+"_flags"];s.push(Sn(n,y,h,g))}else V(2,"r-on",n)}return i},An={isLazy:(n,e)=>e===-1&&n%2===0,isLazyKey:(n,e)=>e===0&&!n.endsWith("_flags"),once:!1,collectRefObj:!0,mount:({el:n,parseResult:e,option:t,dynamicOption:o,flags:r})=>gs(n,e,t,o,r)},bs=(n,e)=>{if(n.startsWith("keydown")||n.startsWith("keyup")||n.startsWith("keypress")){e!=null||(e="");let t=[...n.split("."),...e.split(",")];n=t[0];let o=t[1],r=t.includes("ctrl"),s=t.includes("shift"),i=t.includes("alt"),a=t.includes("meta"),c=l=>!(r&&!l.ctrlKey||s&&!l.shiftKey||i&&!l.altKey||a&&!l.metaKey);return o?[n,l=>c(l)?l.key.toUpperCase()===o.toUpperCase():!1]:[n,c]}return[n,t=>!0]},Sn=(n,e,t,o)=>{if(X(e))return V(5,"r-on",n),()=>{};let r=ys(o),s=r?{capture:r.capture,passive:r.passive,once:r.once}:void 0,i;[e,i]=bs(e,o);let a=u=>{if(!i(u)||!t&&e==="submit"&&(r!=null&&r.prevent))return;let f=t(u);K(f)&&(f=f(u)),K(f)&&f(u)},c=()=>{n.removeEventListener(e,l,s)},l=u=>{if(!r){a(u);return}try{if(r.left&&u.button!==0||r.middle&&u.button!==1||r.right&&u.button!==2||r.self&&u.target!==n)return;r.stop&&u.stopPropagation(),r.prevent&&u.preventDefault(),a(u)}finally{r.once&&c()}};return n.addEventListener(e,l,s),c};var Ts=(n,e,t,o)=>{if(t){o&&o.includes("camel")&&(t=$(t)),tt(n,t,e[0]);return}let r=e.length;for(let s=0;s<r;++s){let i=e[s];if(w(i)){let a=i[0],c=i[1];tt(n,a,c)}else if(I(i))for(let a of Object.entries(i)){let c=a[0],l=a[1];tt(n,c,l)}else{let a=e[s++],c=e[s];tt(n,a,c)}}},Io={mount:()=>({update:({el:n,values:e,option:t,flags:o})=>{Ts(n,e,t,o)}})};function xs(n){return!!n||n===""}var tt=(n,e,t)=>{if(fe(e)){V(3,":prop",n);return}if(e==="innerHTML"||e==="textContent"){let s=[...n.childNodes];setTimeout(()=>s.forEach(de),1),n[e]=t!=null?t:"";return}let o=n.tagName;if(e==="value"&&o!=="PROGRESS"&&!o.includes("-")){n._value=t;let s=o==="OPTION"?n.getAttribute("value"):n.value,i=t!=null?t:"";s!==i&&(n.value=i),t==null&&n.removeAttribute(e);return}let r=!1;if(t===""||t==null){let s=typeof n[e];s==="boolean"?t=xs(t):t==null&&s==="string"?(t="",r=!0):s==="number"&&(t=0,r=!0)}try{n[e]=t}catch(s){r||V(4,e,o,t,s)}r&&n.removeAttribute(e)};var Do={once:!0,mount:({el:n,parseResult:e,expr:t})=>{let o=e,r=o.value()[0],s=w(r),i=o.refs[0];return s?r.push(n):i?i==null||i(n):o.context[t]=n,()=>{if(s){let a=r.indexOf(n);a!==-1&&r.splice(a,1)}else i==null||i(null)}}};var Cs=(n,e)=>{let t=Oe(n).data,o=t._ord;Xn(o)&&(o=t._ord=n.style.display),!!e[0]?n.style.display=o:n.style.display="none"},Uo={mount:()=>({update:({el:n,values:e})=>{Cs(n,e)}})};var Es=(n,e,t)=>{let o=e.length;for(let r=0;r<o;++r){let s=e[r],i=t==null?void 0:t[r];if(w(s)){let a=s.length;for(let c=0;c<a;++c)Bo(n,s[c],i==null?void 0:i[c])}else Bo(n,s,i)}},Qt={mount:()=>({update:({el:n,values:e,previousValues:t})=>{Es(n,e,t)}})},Bo=(n,e,t)=>{let o=n.style,r=W(e);if(e&&!r){if(t&&!W(t))for(let s in t)e[s]==null&&On(o,s,"");for(let s in e)On(o,s,e[s])}else{let s=o.display;if(r?t!==e&&(o.cssText=e):t&&n.removeAttribute("style"),"_ord"in Oe(n).data)return;o.display=s}},Po=/\s*!important$/;function On(n,e,t){if(w(t))t.forEach(o=>{On(n,e,o)});else if(t==null&&(t=""),e.startsWith("--"))n.setProperty(e,t);else{let o=Rs(n,e);Po.test(t)?n.setProperty(Xe(o),t.replace(Po,""),"important"):n[o]=t}}var Vo=["Webkit","Moz","ms"],Nn={};function Rs(n,e){let t=Nn[e];if(t)return t;let o=$(e);if(o!=="filter"&&o in n)return Nn[e]=o;o=ut(o);for(let r=0;r<Vo.length;r++){let s=Vo[r]+o;if(s in n)return Nn[e]=s}return e}var ae=n=>Ho(H(n)),Ho=(n,e=new WeakMap)=>{if(!n||!I(n))return n;if(w(n))return n.map(ae);if(ue(n)){let o=new Set;for(let r of n.keys())o.add(ae(r));return o}if(Ae(n)){let o=new Map;for(let r of n)o.set(ae(r[0]),ae(r[1]));return o}if(e.has(n))return H(e.get(n));let t=yt({},n);e.set(n,t);for(let o of Object.entries(t))t[o[0]]=Ho(H(o[1]),e);return t};var vs=(n,e)=>{var o;let t=e[0];n.textContent=ue(t)?JSON.stringify(ae([...t])):Ae(t)?JSON.stringify(ae([...t])):I(t)?JSON.stringify(ae(t)):(o=t==null?void 0:t.toString())!=null?o:""},_o={mount:()=>({update:({el:n,values:e})=>{vs(n,e)}})};var jo={mount:()=>({update:({el:n,values:e})=>{tt(n,"value",e[0])}})};var Ie=class Ie{constructor(e){d(this,"P",{});d(this,"p",{});d(this,"tt",()=>Object.keys(this.P).filter(e=>e.length===1||!e.startsWith(":")));d(this,"he",new Map);d(this,"H",new Map);d(this,"forGrowThreshold",10);d(this,"globalContext");d(this,"useInterpolation",!0);if(this.setDirectives("r-"),e){this.globalContext=e;return}this.globalContext=this.Ct()}static getDefault(){var e;return(e=Ie.Ve)!=null?e:Ie.Ve=new Ie}Ct(){let e={},t=globalThis;for(let o of Ie.Rt.split(","))e[o]=t[o];return e.ref=be,e.sref=ie,e.flatten=ae,e}addComponent(...e){for(let t of e){if(!t.defaultName){it.warning("Registered component's default name is not defined",t);continue}this.he.set(ut(t.defaultName),t),this.H.set(ut(t.defaultName).toLocaleUpperCase(),t)}}setDirectives(e){this.P={".":Io,":":vn,"@":An,[`${e}on`]:An,[`${e}bind`]:vn,[`${e}html`]:_t,[`${e}text`]:_o,[`${e}show`]:Uo,[`${e}model`]:vo,":style":Qt,[`${e}style`]:Qt,[`${e}bind:style`]:Qt,":class":wn,[`${e}bind:class`]:wn,":ref":Do,":value":jo,[`${e}teleport`]:St},this.p={for:`${e}for`,if:`${e}if`,else:`${e}else`,elseif:`${e}else-if`,pre:`${e}pre`,inherit:`${e}inherit`,text:`${e}text`,context:":context",contextAlias:`${e}context`,bind:`${e}bind`,on:`${e}on`,keyBind:":key",key:"key",is:":is",teleport:`${e}teleport`,dynamic:"_d_"}}updateDirectives(e){e(this.P,this.p)}};d(Ie,"Ve"),d(Ie,"Rt","Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console");var le=Ie;var Xt=(n,e)=>{if(!n)return;let o=(e!=null?e:le.getDefault()).p,r=/(\{\{[^]*?\}\}|\[\[[^]*?\]\])/g,s=[{start:"{{",end:"}}"},{start:"[[",end:"]]"}];for(let i of Ss(n,o.pre,s))ws(i,o.text,r,s)},ws=(n,e,t,o)=>{var c;let r=n.textContent;if(!r)return;let s=t,i=r.split(s);if(i.length<=1)return;if(((c=n.parentElement)==null?void 0:c.childNodes.length)===1&&i.length===3){let l=i[1],u=$o(l,o);if(u&&X(i[0])&&X(i[2])){let f=n.parentElement;f.setAttribute(e,l.substring(u.start.length,l.length-u.end.length)),f.innerText="";return}}let a=document.createDocumentFragment();for(let l of i){let u=$o(l,o);if(u){let f=document.createElement("span");f.setAttribute(e,l.substring(u.start.length,l.length-u.end.length)),a.appendChild(f)}else a.appendChild(document.createTextNode(l))}n.replaceWith(a)},Ss=(n,e,t)=>{let o=[],r=s=>{var i;if(s.nodeType===Node.TEXT_NODE)t.some(a=>{var c;return(c=s.textContent)==null?void 0:c.includes(a.start)})&&o.push(s);else{if((i=s==null?void 0:s.hasAttribute)!=null&&i.call(s,e))return;for(let a of Ee(s))r(a)}};return r(n),o},$o=(n,e)=>e.find(t=>n.startsWith(t.start)&&n.endsWith(t.end));var As=9,Ns=10,Os=13,Ms=32,we=46,Yt=44,ks=39,Ls=34,Zt=40,nt=41,en=91,Mn=93,kn=63,Is=59,qo=58,Fo=123,tn=125,_e=43,nn=45,Ln=96,zo=47,In=92,Ko=new Set([2,3]),Yo={"=":2.5,"*=":2.5,"**=":2.5,"/=":2.5,"%=":2.5,"+=":2.5,"-=":2.5,"<<=":2.5,">>=":2.5,">>>=":2.5,"&=":2.5,"^=":2.5,"|=":2.5},Ds=Wn(yt({"=>":2},Yo),{"||":3,"??":3,"&&":4,"|":5,"^":6,"&":7,"==":8,"!=":8,"===":8,"!==":8,"<":9,">":9,"<=":9,">=":9,in:9,"<<":10,">>":10,">>>":10,"+":11,"-":11,"*":12,"/":12,"%":12,"**":13}),Zo=Object.keys(Yo),Us=new Set(Zo),Un=new Set(["=>"]);Zo.forEach(n=>Un.add(n));var Wo={true:!0,false:!1,null:null},Bs="this",ot="Expected ",je="Unexpected ",Pn="Unclosed ",Ps=ot+":",Go=ot+"expression",Vs="missing }",Hs=je+"object property",_s=Pn+"(",Jo=ot+"comma",Qo=je+"token ",js=je+"period",Dn=ot+"expression after ",$s="missing unaryOp argument",qs=Pn+"[",Fs=ot+"exponent (",zs="Variable names cannot start with a number (",Ks=Pn+'quote after "',pt=n=>n>=48&&n<=57,Xo=n=>Ds[n],Bn=class{constructor(e){d(this,"u");d(this,"e");this.u=e,this.e=0}get B(){return this.u.charAt(this.e)}get y(){return this.u.charCodeAt(this.e)}f(e){return this.u.charCodeAt(this.e)===e}$(e){return e>=65&&e<=90||e>=97&&e<=122||e===36||e===95||e>=128}se(e){return this.$(e)||pt(e)}r(e){return new Error(`${e} at character ${this.e}`)}h(){let e=this.y,t=this.u,o=this.e;for(;e===Ms||e===As||e===Ns||e===Os;)e=t.charCodeAt(++o);this.e=o}parse(){let e=this.ie();return e.length===1?e[0]:{type:0,body:e}}ie(e){let t=[];for(;this.e<this.u.length;){let o=this.y;if(o===Is||o===Yt)this.e++;else{let r=this.S();if(r)t.push(r);else if(this.e<this.u.length){if(o===e)break;throw this.r(je+'"'+this.B+'"')}}}return t}S(){var t;let e=(t=this.Et())!=null?t:this.Ie();return this.h(),this.vt(e)}ae(){this.h();let e=this.u,t=this.e,o=e.charCodeAt(t),r=e.charCodeAt(t+1),s=e.charCodeAt(t+2),i=e.charCodeAt(t+3);if(isNaN(o))return!1;let a=!1,c=0;return o===62&&r===62&&s===62&&i===61?(a=">>>=",c=4):o===61&&r===61&&s===61?(a="===",c=3):o===33&&r===61&&s===61?(a="!==",c=3):o===62&&r===62&&s===62?(a=">>>",c=3):o===60&&r===60&&s===61?(a="<<=",c=3):o===62&&r===62&&s===61?(a=">>=",c=3):o===42&&r===42&&s===61?(a="**=",c=3):o===61&&r===62?(a="=>",c=2):o===124&&r===124?(a="||",c=2):o===63&&r===63?(a="??",c=2):o===38&&r===38?(a="&&",c=2):o===61&&r===61?(a="==",c=2):o===33&&r===61?(a="!=",c=2):o===60&&r===61?(a="<=",c=2):o===62&&r===61?(a=">=",c=2):o===60&&r===60?(a="<<",c=2):o===62&&r===62?(a=">>",c=2):o===43&&r===61?(a="+=",c=2):o===45&&r===61?(a="-=",c=2):o===42&&r===61?(a="*=",c=2):o===47&&r===61?(a="/=",c=2):o===37&&r===61?(a="%=",c=2):o===38&&r===61?(a="&=",c=2):o===94&&r===61?(a="^=",c=2):o===124&&r===61?(a="|=",c=2):o===42&&r===42?(a="**",c=2):o===105&&r===110?this.se(e.charCodeAt(t+2))||(a="in",c=2):o===61?(a="=",c=1):o===124?(a="|",c=1):o===94?(a="^",c=1):o===38?(a="&",c=1):o===60?(a="<",c=1):o===62?(a=">",c=1):o===43?(a="+",c=1):o===45?(a="-",c=1):o===42?(a="*",c=1):o===47?(a="/",c=1):o===37&&(a="%",c=1),a?(this.e+=c,a):!1}Ie(){let e,t,o,r,s,i,a,c;if(s=this.q(),!s||(t=this.ae(),!t))return s;if(r={value:t,prec:Xo(t),right_a:Un.has(t)},i=this.q(),!i)throw this.r(Dn+t);let l=[s,r,i];for(;t=this.ae();){o=Xo(t),r={value:t,prec:o,right_a:Un.has(t)},c=t;let u=f=>r.right_a&&f.right_a?o>f.prec:o<=f.prec;for(;l.length>2&&u(l[l.length-2]);)i=l.pop(),t=l.pop().value,s=l.pop(),e=this.De(t,s,i),l.push(e);if(e=this.q(),!e)throw this.r(Dn+c);l.push(r,e)}for(a=l.length-1,e=l[a];a>1;)e=this.De(l[a-1].value,l[a-2],e),a-=2;return e}q(){let e;if(this.h(),e=this.wt(),e)return this.ce(e);let t=this.y;if(pt(t)||t===we)return this.St();if(t===ks||t===Ls)e=this.At();else if(t===en)e=this.Nt();else{let o=this.Ot();if(o){let r=this.q();if(!r)throw this.r($s);return this.ce({type:7,operator:o,argument:r})}this.$(t)?(e=this.ue(),e.name in Wo?e={type:4,value:Wo[e.name],raw:e.name}:e.name===Bs&&(e={type:5})):t===Zt&&(e=this.kt())}return e?(e=this.F(e),this.ce(e)):!1}De(e,t,o){if(e==="=>"){let r=t.type===1?t.expressions:[t];return{type:15,params:r,body:o}}return Us.has(e)?{type:16,operator:e,left:t,right:o}:{type:8,operator:e,left:t,right:o}}wt(){let e={node:!1};return this.Mt(e),e.node||(this.Lt(e),e.node)||(this.Vt(e),e.node)||(this.Ue(e),e.node)||this.It(e),e.node}ce(e){let t={node:e};return this.Dt(t),this.Ut(t),this.Pt(t),t.node}Ot(){let e=this.u,t=this.e,o=e.charCodeAt(t),r=e.charCodeAt(t+1),s=e.charCodeAt(t+2),i=e.charCodeAt(t+3);return o===nn?(this.e++,"-"):o===33?(this.e++,"!"):o===126?(this.e++,"~"):o===_e?(this.e++,"+"):o===110&&r===101&&s===119&&!this.se(i)?(this.e+=3,"new"):!1}Et(){let e={};return this.Bt(e),e.node}vt(e){let t={node:e};return this.jt(t),t.node}F(e){this.h();let t=this.y;for(;t===we||t===en||t===Zt||t===kn;){let o;if(t===kn){if(this.u.charCodeAt(this.e+1)!==we)break;o=!0,this.e+=2,this.h(),t=this.y}if(this.e++,t===en){if(e={type:3,computed:!0,object:e,property:this.S()},this.h(),t=this.y,t!==Mn)throw this.r(qs);this.e++}else t===Zt?e={type:6,arguments:this.Pe(nt),callee:e}:(o&&this.e--,this.h(),e={type:3,computed:!1,object:e,property:this.ue()});o&&(e.optional=!0),this.h(),t=this.y}return e}St(){let e=this.u,t=this.e,o=t;for(;pt(e.charCodeAt(o));)o++;if(e.charCodeAt(o)===we)for(o++;pt(e.charCodeAt(o));)o++;let r=e.charCodeAt(o);if(r===101||r===69){o++;let a=e.charCodeAt(o);(a===_e||a===nn)&&o++;let c=o;for(;pt(e.charCodeAt(o));)o++;if(c===o){this.e=o;let l=e.slice(t,o);throw this.r(Fs+l+this.B+")")}}this.e=o;let s=e.slice(t,o),i=e.charCodeAt(o);if(this.$(i))throw this.r(zs+s+this.B+")");if(i===we||s.length===1&&s.charCodeAt(0)===we)throw this.r(js);return{type:4,value:parseFloat(s),raw:s}}At(){let e=this.u,t=e.length,o=this.e,r=e.charCodeAt(this.e++),s=this.e,i=s,a=[],c=!1,l=!1;for(;s<t;){let f=e.charCodeAt(s);if(f===r){l=!0,this.e=s+1;break}if(f===In){c||(c=!0),a.push(e.slice(i,s));let p=e.charCodeAt(s+1);a.push(this.Be(p)),s+=2,i=s}else s++}let u=c?a.join("")+e.slice(i,l?s:t):e.slice(i,l?s:t);if(!l)throw this.e=s,this.r(Ks+u+'"');return{type:4,value:u,raw:e.substring(o,this.e)}}Be(e){switch(e){case 110:return`
|
|
2
|
+
`;case 114:return"\r";case 116:return" ";case 98:return"\b";case 102:return"\f";case 118:return"\v";default:return isNaN(e)?"":String.fromCharCode(e)}}ue(){let e=this.y,t=this.e;if(this.$(e))this.e++;else throw this.r(je+this.B);for(;this.e<this.u.length&&(e=this.y,this.se(e));)this.e++;return{type:2,name:this.u.slice(t,this.e)}}Pe(e){let t=[],o=!1,r=0;for(;this.e<this.u.length;){this.h();let s=this.y;if(s===e){if(o=!0,this.e++,e===nt&&r&&r>=t.length)throw this.r(Qo+String.fromCharCode(e));break}else if(s===Yt){if(this.e++,r++,r!==t.length){if(e===nt)throw this.r(Qo+",");for(let i=t.length;i<r;i++)t.push(null)}}else{if(t.length!==r&&r!==0)throw this.r(Jo);{let i=this.S();if(!i||i.type===0)throw this.r(Jo);t.push(i)}}}if(!o)throw this.r(ot+String.fromCharCode(e));return t}kt(){this.e++;let e=this.ie(nt);if(this.f(nt))return this.e++,e.length===1?e[0]:e.length?{type:1,expressions:e}:!1;throw this.r(_s)}Nt(){return this.e++,{type:9,elements:this.Pe(Mn)}}Mt(e){if(this.f(Fo)){this.e++;let t=[];for(;!isNaN(this.y);){if(this.h(),this.f(tn)){this.e++,e.node=this.F({type:10,properties:t});return}let o=this.S();if(!o)break;if(this.h(),o.type===2&&(this.f(Yt)||this.f(tn)))t.push({type:12,computed:!1,key:o,value:o,shorthand:!0});else if(this.f(qo)){this.e++;let r=this.S();if(!r)throw this.r(Hs);let s=o.type===9;t.push({type:12,computed:s,key:s?o.elements[0]:o,value:r,shorthand:!1}),this.h()}else t.push(o);this.f(Yt)&&this.e++}throw this.r(Vs)}}Lt(e){let t=this.y;if((t===_e||t===nn)&&t===this.u.charCodeAt(this.e+1)){this.e+=2;let o=e.node={type:13,operator:t===_e?"++":"--",argument:this.F(this.ue()),prefix:!0};if(!o.argument||!Ko.has(o.argument.type))throw this.r(je+o.operator)}}Ut(e){let t=e.node,o=this.y;if((o===_e||o===nn)&&o===this.u.charCodeAt(this.e+1)){if(!Ko.has(t.type))throw this.r(je+(o===_e?"++":"--"));this.e+=2,e.node={type:13,operator:o===_e?"++":"--",argument:t,prefix:!1}}}Vt(e){this.u.charCodeAt(this.e)===we&&this.u.charCodeAt(this.e+1)===we&&this.u.charCodeAt(this.e+2)===we&&(this.e+=3,e.node={type:14,argument:this.S()})}jt(e){if(e.node&&this.f(kn)){this.e++;let t=e.node,o=this.S();if(!o)throw this.r(Go);if(this.h(),this.f(qo)){this.e++;let r=this.S();if(!r)throw this.r(Go);e.node={type:11,test:t,consequent:o,alternate:r}}else throw this.r(Ps)}}Bt(e){if(this.h(),this.f(Zt)){let t=this.e;if(this.e++,this.h(),this.f(nt)){this.e++;let o=this.ae();if(o==="=>"){let r=this.Ie();if(!r)throw this.r(Dn+o);e.node={type:15,params:null,body:r};return}}this.e=t}}Pt(e){let t=e.node,o=t.type;(o===2||o===3)&&this.f(Ln)&&(e.node={type:17,tag:t,quasi:this.Ue(e)})}Ue(e){if(!this.f(Ln))return;let t=this.u,o=t.length,r={type:19,quasis:[],expressions:[]},s=++this.e,i=[],a=[],c=!1,l=u=>{if(!c){let m=t.slice(s,this.e);return r.quasis.push({type:18,value:{raw:m,cooked:m},tail:u})}i.push(t.slice(s,this.e)),a.push(t.slice(s,this.e));let f=i.join(""),p=a.join("");return i.length=0,a.length=0,c=!1,r.quasis.push({type:18,value:{raw:f,cooked:p},tail:u})};for(;this.e<o;){let u=t.charCodeAt(this.e);if(u===Ln)return l(!0),this.e+=1,e.node=r,r;if(u===36&&t.charCodeAt(this.e+1)===Fo){if(l(!1),this.e+=2,r.expressions.push(...this.ie(tn)),!this.f(tn))throw this.r("unclosed ${");this.e+=1,s=this.e}else if(u===In){c||(c=!0),i.push(t.slice(s,this.e)),a.push(t.slice(s,this.e));let f=t.charCodeAt(this.e+1);i.push(t.slice(this.e,this.e+2)),a.push(this.Be(f)),this.e+=2,s=this.e}else this.e+=1}throw this.r("Unclosed `")}Dt(e){let t=e.node;if(!t||t.operator!=="new"||!t.argument)return;if(!t.argument||![6,3].includes(t.argument.type))throw this.r("Expected new function()");e.node=t.argument;let o=e.node;for(;o.type===3||o.type===6&&o.callee.type===3;)o=o.type===3?o.object:o.callee.object;o.type=20}It(e){if(!this.f(zo))return;let t=++this.e,o=!1;for(;this.e<this.u.length;){if(this.y===zo&&!o){let r=this.u.slice(t,this.e),s="";for(;++this.e<this.u.length;){let a=this.y;if(a>=97&&a<=122||a>=65&&a<=90||a>=48&&a<=57)s+=this.B;else break}let i;try{i=new RegExp(r,s)}catch(a){throw this.r(a.message)}return e.node={type:4,value:i,raw:this.u.slice(t-1,this.e)},e.node=this.F(e.node),e.node}this.f(en)?o=!0:o&&this.f(Mn)&&(o=!1),this.e+=this.f(In)?2:1}throw this.r("Unclosed Regex")}},er=n=>new Bn(n).parse();var Ws={"=>":(n,e)=>{},"=":(n,e)=>{},"*=":(n,e)=>{},"**=":(n,e)=>{},"/=":(n,e)=>{},"%=":(n,e)=>{},"+=":(n,e)=>{},"-=":(n,e)=>{},"<<=":(n,e)=>{},">>=":(n,e)=>{},">>>=":(n,e)=>{},"&=":(n,e)=>{},"^=":(n,e)=>{},"|=":(n,e)=>{},"||":(n,e)=>n()||e(),"??":(n,e)=>{var t;return(t=n())!=null?t:e()},"&&":(n,e)=>n()&&e(),"|":(n,e)=>n|e,"^":(n,e)=>n^e,"&":(n,e)=>n&e,"==":(n,e)=>n==e,"!=":(n,e)=>n!=e,"===":(n,e)=>n===e,"!==":(n,e)=>n!==e,"<":(n,e)=>n<e,">":(n,e)=>n>e,"<=":(n,e)=>n<=e,">=":(n,e)=>n>=e,in:(n,e)=>n in e,"<<":(n,e)=>n<<e,">>":(n,e)=>n>>e,">>>":(n,e)=>n>>>e,"+":(n,e)=>n+e,"-":(n,e)=>n-e,"*":(n,e)=>n*e,"/":(n,e)=>n/e,"%":(n,e)=>n%e,"**":(n,e)=>ht(n,e)},Gs={"-":n=>-n,"+":n=>+n,"!":n=>!n,"~":n=>~n,new:n=>n},rr=n=>{if(!(n!=null&&n.some(or)))return n;let e=[];return n.forEach(t=>or(t)?e.push(...t):e.push(t)),e},tr=(...n)=>rr(n),Vn=(n,e)=>{if(!n)return e;let t=Object.create(e!=null?e:{});return t.$event=n,t},Js={"++":(n,e)=>{let t=n[e];if(C(t)){let o=t();return t(++o),o}return++n[e]},"--":(n,e)=>{let t=n[e];if(C(t)){let o=t();return t(--o),o}return--n[e]}},Qs={"++":(n,e)=>{let t=n[e];if(C(t)){let o=t();return t(o+1),o}return n[e]++},"--":(n,e)=>{let t=n[e];if(C(t)){let o=t();return t(o-1),o}return n[e]--}},nr={"=":(n,e,t)=>{let o=n[e];return C(o)?o(t):n[e]=t},"+=":(n,e,t)=>{let o=n[e];return C(o)?o(o()+t):n[e]+=t},"-=":(n,e,t)=>{let o=n[e];return C(o)?o(o()-t):n[e]-=t},"*=":(n,e,t)=>{let o=n[e];return C(o)?o(o()*t):n[e]*=t},"/=":(n,e,t)=>{let o=n[e];return C(o)?o(o()/t):n[e]/=t},"%=":(n,e,t)=>{let o=n[e];return C(o)?o(o()%t):n[e]%=t},"**=":(n,e,t)=>{let o=n[e];return C(o)?o(ht(o(),t)):n[e]=ht(n[e],t)},"<<=":(n,e,t)=>{let o=n[e];return C(o)?o(o()<<t):n[e]<<=t},">>=":(n,e,t)=>{let o=n[e];return C(o)?o(o()>>t):n[e]>>=t},">>>=":(n,e,t)=>{let o=n[e];return C(o)?o(o()>>>t):n[e]>>>=t},"|=":(n,e,t)=>{let o=n[e];return C(o)?o(o()|t):n[e]|=t},"&=":(n,e,t)=>{let o=n[e];return C(o)?o(o()&t):n[e]&=t},"^=":(n,e,t)=>{let o=n[e];return C(o)?o(o()^t):n[e]^=t}},on=(n,e)=>K(n)?n.bind(e):n,Hn=class{constructor(e,t,o,r,s){d(this,"l");d(this,"je");d(this,"He");d(this,"_e");d(this,"A");d(this,"$e");d(this,"qe");this.l=w(e)?e:[e],this.je=t,this.He=o,this._e=r,this.qe=!!s}Fe(e,t){if(t&&e in t)return t;for(let o of this.l)if(e in o)return o}2(e,t,o){let r=e.name;if(r==="$root")return this.l[this.l.length-1];if(r==="$parent")return this.l[1];if(r==="$ctx")return[...this.l];if(o&&r in o)return this.A=o[r],on(H(o[r]),o);for(let i of this.l)if(r in i)return this.A=i[r],on(H(i[r]),i);let s=this.je;if(s&&r in s)return this.A=s[r],on(H(s[r]),s)}5(e,t,o){return this.l[0]}0(e,t,o){return this.Ke(t,o,tr,...e.body)}1(e,t,o){return this.E(t,o,(...r)=>r.pop(),...e.expressions)}3(e,t,o){let{obj:r,key:s}=this.pe(e,t,o),i=r==null?void 0:r[s];return this.A=i,on(H(i),r)}4(e,t,o){return e.value}6(e,t,o){let r=(i,...a)=>K(i)?i(...rr(a)):i,s=this.E(++t,o,r,e.callee,...e.arguments);return this.A=s,s}7(e,t,o){return this.E(t,o,Gs[e.operator],e.argument)}8(e,t,o){let r=Ws[e.operator];switch(e.operator){case"||":case"&&":case"??":return r(()=>this.g(e.left,t,o),()=>this.g(e.right,t,o))}return this.E(t,o,r,e.left,e.right)}9(e,t,o){return this.Ke(++t,o,tr,...e.elements)}10(e,t,o){let r={},s=(...i)=>{i.forEach(a=>{Object.assign(r,a)})};return this.E(++t,o,s,...e.properties),r}11(e,t,o){return this.E(t,o,r=>this.g(r?e.consequent:e.alternate,t,o),e.test)}12(e,t,o){var u;let r={},s=f=>(f==null?void 0:f.type)!==15,i=(u=this._e)!=null?u:()=>!1,a=t===0&&this.qe,c=f=>this.ze(a,e.key,t,Vn(f,o)),l=f=>this.ze(a,e.value,t,Vn(f,o));if(e.shorthand){let f=e.key.name;r[f]=s(e.key)&&i(f,t)?c:c()}else if(e.computed){let f=H(c());r[f]=s(e.value)&&i(f,t)?l:l()}else{let f=e.key.type===4?e.key.value:e.key.name;r[f]=s(e.value)&&i(f,t)?()=>l:l()}return r}pe(e,t,o){let r=this.g(e.object,t,o),s=e.computed?this.g(e.property,t,o):e.property.name;return{obj:r,key:s}}13(e,t,o){let r=e.argument,s=e.operator,i=e.prefix?Js:Qs;if(r.type===2){let a=r.name,c=this.Fe(a,o);return fe(c)?void 0:i[s](c,a)}if(r.type===3){let{obj:a,key:c}=this.pe(r,t,o);return i[s](a,c)}}16(e,t,o){let r=e.left,s=e.operator;if(r.type===2){let i=r.name,a=this.Fe(i,o);if(fe(a))return;let c=this.g(e.right,t,o);return nr[s](a,i,c)}if(r.type===3){let{obj:i,key:a}=this.pe(r,t,o),c=this.g(e.right,t,o);return nr[s](i,a,c)}}14(e,t,o){let r=this.g(e.argument,t,o);return w(r)&&(r.s=sr),r}17(e,t,o){return this[6]({type:6,callee:e.tag,arguments:[{type:9,elements:e.quasi.quasis},...e.quasi.expressions]},t,o)}19(e,t,o){let r=(...s)=>s.reduce((i,a,c)=>i+=a+e.quasis[c+1].value.cooked,e.quasis[0].value.cooked);return this.E(t,o,r,...e.expressions)}18(e,t,o){return e.value.cooked}20(e,t,o){let r=(s,...i)=>new s(...i);return this.E(t,o,r,e.callee,...e.arguments)}15(e,t,o){return(...r)=>{let s=Object.create(o!=null?o:{}),i=e.params;if(i){let a=0;for(let c of i)s[c.name]=r[a++]}return this.g(e.body,t,s)}}g(e,t,o){let r=H(this[e.type](e,t,o));return this.$e=e.type,r}ze(e,t,o,r){let s=this.g(t,o,r);return e&&this.We()?this.A:s}We(){let e=this.$e;return(e===2||e===3||e===6)&&C(this.A)}eval(e,t){let{value:o,refs:r}=Lt(()=>this.g(e,-1,t)),s={value:o,refs:r};return this.We()&&(s.ref=this.A),s}E(e,t,o,...r){let s=r.map(i=>i&&this.g(i,e,t));return o(...s)}Ke(e,t,o,...r){let s=this.He;if(!s)return this.E(e,t,o,...r);let i=r.map((a,c)=>a&&(a.type!==15&&s(c,e)?l=>this.g(a,e,Vn(l,t)):this.g(a,e,t)));return o(...i)}},sr=Symbol("s"),or=n=>(n==null?void 0:n.s)===sr,ir=(n,e,t,o,r,s,i)=>new Hn(e,t,o,r,i).eval(n,s);var ar={},cr=n=>!!n,rn=class{constructor(e,t){d(this,"l");d(this,"o");d(this,"Ge",[]);this.l=e,this.o=t}v(e){this.l=[e,...this.l]}J(){return this.l.map(t=>t.components).filter(cr).reverse().reduce((t,o)=>{for(let[r,s]of Object.entries(o))t[r.toUpperCase()]=s;return t},{})}et(){let e=[],t=new Set,o=this.l.map(r=>r.components).filter(cr).reverse();for(let r of o)for(let s of Object.keys(r))t.has(s)||(t.add(s),e.push(s));return e}k(e,t,o,r,s){var R;let i=[],a=[],c=new Set,l=()=>{for(let E=0;E<a.length;++E)a[E]();a.length=0},p={value:()=>i,stop:()=>{l(),c.clear()},subscribe:(E,D)=>(c.add(E),D&&E(i),()=>{c.delete(E)}),refs:[],context:this.l[0]};if(X(e))return p;let m=this.o.globalContext,y=[],h=new Set,g=(E,D,G,M)=>{try{let _=ir(E,D,m,t,o,M,r);return G&&_.refs.length>0&&y.push(..._.refs),{value:_.value,refs:_.refs,ref:_.ref}}catch(_){V(6,`evaluation error: ${e}`,_)}return{value:void 0,refs:[]}};try{let E=(R=ar[e])!=null?R:er("["+e+"]");ar[e]=E;let D=this.l.slice(),G=E.elements,M=G.length,_=new Array(M);p.refs=_;let ce=()=>{y.length=0,s||(h.clear(),l());let ee=new Array(M);for(let U=0;U<M;++U){let b=G[U];if(t!=null&&t(U,-1)){ee[U]=J=>g(b,D,!1,{$event:J}).value;continue}let A=g(b,D,!0);ee[U]=A.value,_[U]=A.ref}if(!s)for(let U of y)h.has(U)||(h.add(U),a.push(se(U,ce)));if(i=ee,c.size!==0)for(let U of c)c.has(U)&&U(i)};ce()}catch(E){V(6,`parse error: ${e}`,E)}return p}M(){return this.l.slice()}oe(e){this.Ge.push(this.l),this.l=e}C(e,t){try{this.oe(e),t()}finally{this.Ht()}}Ht(){var e;this.l=(e=this.Ge.pop())!=null?e:[]}};var ur=n=>{let e=n.charCodeAt(0);return e>=48&&e<=57||e>=65&&e<=90||e>=97&&e<=122||n==="-"||n==="_"||n===":"},Xs=(n,e)=>{let t="";for(let o=e;o<n.length;++o){let r=n[o];if(t){r===t&&(t="");continue}if(r==='"'||r==="'"){t=r;continue}if(r===">")return o}return-1},Ys=(n,e)=>{let t=e?2:1;for(;t<n.length&&(n[t]===" "||n[t]===`
|
|
3
|
+
`);)++t;if(t>=n.length||!ur(n[t]))return null;let o=t;for(;t<n.length&&ur(n[t]);)++t;return{start:o,end:t}},lr=new Set(["table","thead","tbody","tfoot"]),Zs=new Set(["thead","tbody","tfoot"]),ei=new Set(["caption","colgroup","thead","tbody","tfoot","tr"]),sn=n=>{var s;let e=0,t=[],o=[],r=0;for(;e<n.length;){let i=n.indexOf("<",e);if(i===-1){t.push(n.slice(e));break}if(t.push(n.slice(e,i)),n.startsWith("<!--",i)){let g=n.indexOf("-->",i+4);if(g===-1){t.push(n.slice(i));break}t.push(n.slice(i,g+3)),e=g+3;continue}let a=Xs(n,i);if(a===-1){t.push(n.slice(i));break}let c=n.slice(i,a+1),l=c.startsWith("</");if(c.startsWith("<!")||c.startsWith("<?")){t.push(c),e=a+1;continue}let f=Ys(c,l);if(!f){t.push(c),e=a+1;continue}let p=c.slice(f.start,f.end);if(l){let g=o[o.length-1];g?(o.pop(),t.push(g.replacementHost?`</${g.replacementHost}>`:c),lr.has(g.effectiveTag)&&--r):t.push(c),e=a+1;continue}let m=c.charCodeAt(c.length-2)===47,y=o[o.length-1],h=null;if(r===0?p==="tr"?h="trx":p==="td"?h="tdx":p==="th"&&(h="thx"):Zs.has((s=y==null?void 0:y.effectiveTag)!=null?s:"")?h=p==="tr"?null:"tr":(y==null?void 0:y.effectiveTag)==="table"?h=ei.has(p)?null:"tr":(y==null?void 0:y.effectiveTag)==="tr"&&(h=p==="td"||p==="th"?null:"td"),h){let g=h==="trx"||h==="tdx"||h==="thx";t.push(`${c.slice(0,f.start)}${h} is="${g?`r-${p}`:`regor:${p}`}"${c.slice(f.end)}`)}else m&&(y==null?void 0:y.effectiveTag)==="tr"?t.push(`${c.slice(0,c.length-2)}></${p}>`):t.push(c);if(!m){let g=h==="trx"?"tr":h==="tdx"?"td":h==="thx"?"th":h||p;o.push({replacementHost:h,effectiveTag:g}),lr.has(g)&&++r}e=a+1}return t.join("")};var ti="svg,animate,animateMotion,animateTransform,circle,clipPath,color-profile,defs,desc,discard,ellipse,feBlend,feColorMatrix,feComponentTransfer,feComposite,feConvolveMatrix,feDiffuseLighting,feDisplacementMap,feDistantLight,feDropShadow,feFlood,feFuncA,feFuncB,feFuncG,feFuncR,feGaussianBlur,feImage,feMerge,feMergeNode,feMorphology,feOffset,fePointLight,feSpecularLighting,feSpotLight,feTile,feTurbulence,filter,foreignObject,g,hatch,hatchpath,image,line,linearGradient,marker,mask,mesh,meshgradient,meshpatch,meshrow,metadata,mpath,path,pattern,polygon,polyline,radialGradient,rect,set,solidcolor,stop,switch,symbol,text,textPath,title,tspan,unknown,use,view",ni=new Set(ti.toUpperCase().split(",")),oi="http://www.w3.org/2000/svg",fr=(n,e)=>{ye(n)?n.content.appendChild(e):n.appendChild(e)},_n=(n,e,t,o)=>{var i;let r=n.t;if(r){let a=t&&ni.has(r.toUpperCase())?document.createElementNS(oi,r.toLowerCase()):document.createElement(r),c=n.a;if(c)for(let u of Object.entries(c)){let f=u[0],p=u[1];f.startsWith("#")&&(p=f.substring(1),f="name"),a.setAttribute(wt(f,o),p)}let l=n.c;if(l)for(let u of l)_n(u,a,t,o);fr(e,a);return}let s=n.d;if(s){let a;switch((i=n.n)!=null?i:Node.TEXT_NODE){case Node.COMMENT_NODE:a=document.createComment(s);break;case Node.TEXT_NODE:a=document.createTextNode(s);break}if(a)fr(e,a);else throw new Error("unsupported node type.")}},$e=(n,e,t)=>{t!=null||(t=le.getDefault());let o=document.createDocumentFragment();if(!w(n))return _n(n,o,!!e,t),o;for(let r of n)_n(r,o,!!e,t);return o};var pr=(n,e={selector:"#app"},t)=>{W(e)&&(e={selector:"#app",template:e}),lo(n)&&(n=n.context);let o=e.element?e.element:e.selector?document.querySelector(e.selector):null;if(!o||!Be(o))throw j(0);t||(t=le.getDefault());let r=()=>{for(let a of[...o.childNodes])z(a)},s=a=>{for(let c of a)o.appendChild(c)};if(e.template){let a=document.createRange().createContextualFragment(sn(e.template));r(),s(a.childNodes),e.element=a}else if(e.json){let a=$e(e.json,e.isSVG,t);r(),s(a.childNodes)}return t.useInterpolation&&Xt(o,t),new jn(n,o,t).b(),q(o,()=>{Ne(n)}),At(n),{context:n,unmount:()=>{z(o)},unbind:()=>{de(o)}}},jn=class{constructor(e,t,o){d(this,"_t");d(this,"Je");d(this,"o");d(this,"m");d(this,"i");this._t=e,this.Je=t,this.o=o,this.m=new rn([e],o),this.i=new zt(this.m)}b(){this.i.j(this.Je)}};var rt=n=>{if(w(n))return n.map(r=>rt(r));let e={};if(n.tagName)e.t=n.tagName;else return n.nodeType===Node.COMMENT_NODE&&(e.n=Node.COMMENT_NODE),n.textContent&&(e.d=n.textContent),e;let t=n.getAttributeNames();t.length>0&&(e.a=Object.fromEntries(t.map(r=>{var s;return[r,(s=n.getAttribute(r))!=null?s:""]})));let o=Ee(n);return o.length>0&&(e.c=[...o].map(r=>rt(r))),e};var mr=(n,e={})=>{var s,i,a,c,l,u;w(e)&&(e={props:e}),W(n)&&(n={template:n});let t=(s=e.context)!=null?s:()=>({}),o=!1;if(n.element){let f=n.element;f.remove(),n.element=f}else if(n.selector){let f=document.querySelector(n.selector);if(!f)throw j(1,n.selector);f.remove(),n.element=f}else if(n.template){let f=document.createRange().createContextualFragment(sn(n.template));n.element=f}else n.json&&(n.element=$e(n.json,n.isSVG,e.config),o=!0);n.element||(n.element=document.createDocumentFragment()),((i=e.useInterpolation)==null||i)&&Xt(n.element,(a=e.config)!=null?a:le.getDefault());let r=n.element;if(!o&&(((l=n.isSVG)!=null?l:ct(r)&&((c=r.hasAttribute)!=null&&c.call(r,"isSVG")))||ct(r)&&r.querySelector("[isSVG]"))){let f=r.content,p=f?[...f.childNodes]:[...r.childNodes],m=rt(p);n.element=$e(m,!0,e.config)}return{context:t,template:n.element,inheritAttrs:(u=e.inheritAttrs)!=null?u:!0,props:e.props,defaultName:e.defaultName}};var an=class{constructor(){d(this,"byConstructor",new Map)}register(e){this.byConstructor.set(e.constructor,e)}unregisterByClass(e){this.byConstructor.delete(e)}unregister(e){let t=e.constructor;this.byConstructor.get(t)===e&&this.byConstructor.delete(t)}find(e){for(let t of this.byConstructor.values())if(t instanceof e)return t}require(e){let t=this.find(e);if(t)return t;throw new Error(`${e.name} is not registered in ContextRegistry.`)}};var dr=n=>{var e;(e=Ue())==null||e.onMounted.push(n)};var hr=n=>{let e,t={},o=(...r)=>{if(r.length<=2&&0 in r)throw j(4);return e&&!t.isStopped?e(...r):(e=ri(n,t),e(...r))};return o[Z]=1,Le(o,!0),o.stop=()=>{var r,s;return(s=(r=t.ref)==null?void 0:r.stop)==null?void 0:s.call(r)},ne(()=>o.stop(),!0),o},ri=(n,e)=>{var s;let t=(s=e.ref)!=null?s:ie(null);e.ref=t,e.isStopped=!1;let o=0,r=He(()=>{if(o>0){r(),e.isStopped=!0,Y(t);return}t(n()),++o});return t.stop=r,t};var yr=(n,e)=>{let t={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw j(4);return o&&!t.isStopped?o(...s):(o=si(n,e,t),o(...s))};return r[Z]=1,Le(r,!0),r.stop=()=>{var s,i;return(i=(s=t.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},ne(()=>r.stop(),!0),r},si=(n,e,t)=>{var a;let o=(a=t.ref)!=null?a:ie(null);t.ref=o,t.isStopped=!1;let r=0,s=c=>{if(r>0){o.stop(),t.isStopped=!0,Y(o);return}let l=n.map(u=>u());o(e(...l)),++r},i=[];for(let c of n){let l=se(c,s);i.push(l)}return s(null),o.stop=()=>{i.forEach(c=>{c()})},o};var gr=(n,e)=>{let t={},o,r=(...s)=>{if(s.length<=2&&0 in s)throw j(4);return o&&!t.isStopped?o(...s):(o=ii(n,e,t),o(...s))};return r[Z]=1,Le(r,!0),r.stop=()=>{var s,i;return(i=(s=t.ref)==null?void 0:s.stop)==null?void 0:i.call(s)},ne(()=>r.stop(),!0),r},ii=(n,e,t)=>{var s;let o=(s=t.ref)!=null?s:ie(null);t.ref=o,t.isStopped=!1;let r=0;return o.stop=se(n,i=>{if(r>0){o.stop(),t.isStopped=!0,Y(o);return}o(e(i)),++r},!0),o};var br=n=>(n[Mt]=1,n);var Tr=(n,e)=>{if(!e)throw j(5);let o=Ve(n)?be:a=>a,r=()=>localStorage.setItem(e,JSON.stringify(ae(n()))),s=localStorage.getItem(e);if(s!=null)try{n(o(JSON.parse(s)))}catch(a){V(6,`persist: failed to parse data for key ${e}`,a),r()}else r();let i=He(r);return ne(i,!0),n};var $n=(n,...e)=>{let t="",o=n,r=e,s=o.length,i=r.length;for(let a=0;a<s;++a)t+=o[a],a<i&&(t+=r[a]);return t},xr=$n;var Cr=(n,e,t)=>{let o=[],r=()=>{e(n.map(i=>i()))};for(let i of n)o.push(se(i,r));t&&r();let s=()=>{for(let i of o)i()};return ne(s,!0),s};var Er=n=>{if(!C(n))throw j(3,"observerCount");return n(void 0,void 0,2)};var Rr=n=>{qn();try{n()}finally{Fn()}},qn=()=>{ge.stack||(ge.stack=[]),ge.stack.push(new Set)},Fn=()=>{let n=ge.stack;if(!n||n.length===0)return;let e=n.pop();if(n.length){let t=n[n.length-1];for(let o of e)t.add(o);return}delete ge.stack;for(let t of e)try{Y(t)}catch(o){console.error(o)}};
|